/* =============================================================
   Brass Lantern — Marketingové poradenství
   Design system: Victorian brass observatory, editorial luxury
   Palette:
     Antique Brass   #B6853F
     Ivory Linen     #F8F6F1
     Midnight Graphite #31343A
     Emerald Smoke   #5F7C71
     Soft Amber      #D5A35D
   ============================================================= */

:root {
  --brass: #B6853F;
  --brass-dark: #8f6830;
  --ivory: #F8F6F1;
  --graphite: #31343A;
  --graphite-soft: #40444c;
  --emerald: #5F7C71;
  --emerald-dark: #4a6459;
  --amber: #D5A35D;

  --ink: #2a2c31;
  --muted: #6c6f75;
  --line: rgba(49, 52, 58, 0.12);
  --line-strong: rgba(49, 52, 58, 0.22);

  --shadow-sm: 0 2px 10px rgba(49, 52, 58, 0.08);
  --shadow-md: 0 16px 40px rgba(49, 52, 58, 0.14);
  --shadow-lg: 0 30px 70px rgba(49, 52, 58, 0.22);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--brass-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--emerald-dark); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--graphite); line-height: 1.12; font-weight: 600; letter-spacing: .2px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brass-dark);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 1.5px; background: var(--brass); display: inline-block; }

.section { padding: 96px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: .02em;
  padding: 15px 30px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--brass); color: #fff; box-shadow: 0 10px 26px rgba(182, 133, 63, .32); }
.btn-primary:hover { background: var(--brass-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(182, 133, 63, .40); }
.btn-ghost { background: transparent; color: var(--graphite); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-dark); transform: translateY(-2px); }
.btn-dark { background: var(--graphite); color: var(--ivory); }
.btn-dark:hover { background: #23262b; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(248, 246, 241, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(248, 246, 241, 0.95); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; }
.brand svg { width: 34px; height: 34px; flex: 0 0 auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-size: 21px; color: var(--graphite); letter-spacing: .3px; }
.brand-name span { font-family: var(--sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-dark); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--graphite); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--brass); transition: width .28s var(--ease); }
.nav-links a:hover { color: var(--brass-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--graphite); display: inline-flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--graphite); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 82% 8%, rgba(213, 163, 93, .16), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(95, 124, 113, .12), transparent 60%);
  z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--brass-dark); }
.hero-lead { font-size: 19px; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.hero-stats .stat b { font-family: var(--serif); font-size: 34px; color: var(--brass-dark); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 13.5px; color: var(--muted); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(182, 133, 63, .25); position: relative;
}
.hero-media .frame img { width: 100%; height: 560px; object-fit: cover; }
.hero-badge {
  position: absolute; left: -26px; bottom: 40px; background: var(--graphite); color: var(--ivory);
  padding: 18px 22px; border-radius: 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero-badge .dot { width: 44px; height: 44px; border-radius: 12px; background: var(--brass); display: grid; place-items: center; flex: 0 0 auto; }
.hero-badge .dot svg { width: 22px; height: 22px; }
.hero-badge b { font-family: var(--serif); font-size: 17px; color: #fff; display: block; }
.hero-badge span { font-size: 12.5px; color: rgba(248,246,241,.72); }

/* ---------- Trust bar ---------- */
.trust { background: var(--graphite); color: var(--ivory); padding: 34px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust p { font-family: var(--serif); font-size: 18px; color: rgba(248,246,241,.85); font-style: italic; }
.trust ul { list-style: none; display: flex; gap: 40px; flex-wrap: wrap; }
.trust li { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(248,246,241,.6); font-weight: 600; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--brass), var(--amber)); transition: width .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(182,133,63,.35); }
.service-card:hover::after { width: 100%; }
.service-ico { width: 56px; height: 56px; border-radius: 14px; background: rgba(182,133,63,.12); display: grid; place-items: center; margin-bottom: 20px; }
.service-ico svg { width: 28px; height: 28px; stroke: var(--brass-dark); }
.service-card h3 { font-size: 23px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.service-card .more { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--brass-dark); display: inline-flex; align-items: center; gap: 7px; }
.service-card .more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- Approach / process ---------- */
.approach { background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%); }
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.approach-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(95,124,113,.2); }
.approach-media img { width: 100%; height: 480px; object-fit: cover; }
.steps { list-style: none; display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .num { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--brass); color: var(--brass-dark); display: grid; place-items: center; font-family: var(--serif); font-size: 22px; font-weight: 600; }
.step h3 { font-size: 21px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- Stats band ---------- */
.band { background: var(--emerald); color: var(--ivory); }
.band .band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.band .b b { font-family: var(--serif); font-size: 46px; display: block; line-height: 1; color: #fff; }
.band .b span { font-size: 14px; color: rgba(248,246,241,.82); letter-spacing: .04em; }

/* ---------- Pricing ---------- */
.pricing { background: var(--ivory); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 32px;
  display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--brass); box-shadow: var(--shadow-md); }
.plan.featured::before {
  content: "Nejoblíbenější"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px;
}
.plan h3 { font-size: 25px; margin-bottom: 6px; }
.plan .plan-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; min-height: 42px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price b { font-family: var(--serif); font-size: 48px; color: var(--graphite); line-height: 1; }
.plan .price .cur { font-family: var(--serif); font-size: 24px; color: var(--brass-dark); }
.plan .price .per { font-size: 14px; color: var(--muted); }
.plan .price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan ul { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.plan li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 15px; color: var(--ink); }
.plan li svg { width: 18px; height: 18px; stroke: var(--emerald); margin-top: 4px; }
.plan .btn { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 15px; }
.pricing-note b { color: var(--graphite); }

/* ---------- Compare / value ---------- */
.value-table { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; border-collapse: collapse; }
.value-table th, .value-table td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 15px; }
.value-table thead th { background: #faf8f3; font-family: var(--sans); font-weight: 600; color: var(--graphite); letter-spacing: .02em; }
.value-table td svg { width: 18px; height: 18px; stroke: var(--emerald); }
.value-table tr:last-child td { border-bottom: none; }

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.quote .stars { color: var(--amber); margin-bottom: 14px; letter-spacing: 3px; }
.quote p { font-family: var(--serif); font-size: 19px; color: var(--graphite); line-height: 1.5; margin-bottom: 22px; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote .who b { font-size: 15px; color: var(--graphite); font-family: var(--sans); }
.quote .who span { font-size: 13px; color: var(--muted); display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--serif); font-size: 21px; color: var(--graphite); }
.faq-q .ico { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--brass); position: relative; transition: background .25s var(--ease); }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--brass-dark); left: 50%; top: 50%; transition: transform .25s var(--ease), background .25s var(--ease); }
.faq-q .ico::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .ico::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .ico { background: var(--brass); }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background: #fff; }
.faq-item.open .faq-q .ico::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 24px; color: var(--muted); font-size: 16px; }

/* ---------- Contact ---------- */
.contact { background: var(--graphite); color: var(--ivory); }
.contact h2 { color: #fff; }
.contact .section-head p { color: rgba(248,246,241,.72); }
.contact .eyebrow { color: var(--amber); }
.contact .eyebrow::before { background: var(--amber); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: start; }
.contact-info { display: grid; gap: 26px; }
.contact-info .ci { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.contact-info .ci .ci-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(213,163,93,.16); display: grid; place-items: center; }
.contact-info .ci .ci-ico svg { width: 22px; height: 22px; stroke: var(--amber); }
.contact-info .ci b { display: block; color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: .04em; margin-bottom: 3px; }
.contact-info .ci a, .contact-info .ci span { color: rgba(248,246,241,.78); font-size: 15.5px; }
.contact-info .ci a:hover { color: var(--amber); }

.form-card { background: var(--ivory); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--graphite); margin-bottom: 8px; letter-spacing: .02em; }
.field label .req { color: var(--brass-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 10px;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(182,133,63,.15); }
.field.err input, .field.err select, .field.err textarea { border-color: #c0503f; }
.field .msg { font-size: 12.5px; color: #c0503f; margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: 13.5px; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brass); flex: 0 0 auto; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; background: rgba(95,124,113,.12); border: 1px solid rgba(95,124,113,.4); color: var(--emerald-dark);
  border-radius: 12px; padding: 18px 20px; font-size: 15px; margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #262930; color: rgba(248,246,241,.72); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(248,246,241,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand p { font-size: 14.5px; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: rgba(248,246,241,.72); font-size: 14.5px; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(248,246,241,.55); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: rgba(248,246,241,.6); }
.footer-legal a:hover { color: var(--amber); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 120; max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 24px 26px; transform: translateY(160%); transition: transform .5s var(--ease); opacity: 0;
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie h4 { font-size: 19px; margin-bottom: 8px; }
.cookie p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.cookie p a { font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 22px; font-size: 14px; }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--graphite); color: var(--ivory); padding: 66px 0 54px; }
.legal-hero .eyebrow { color: var(--amber); }
.legal-hero .eyebrow::before { background: var(--amber); }
.legal-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); }
.legal-hero p { color: rgba(248,246,241,.72); margin-top: 12px; font-size: 16px; }
.legal-body { padding: 70px 0 90px; }
.legal-body .wrap { max-width: 860px; }
.legal-body h2 { font-size: 26px; margin: 40px 0 14px; }
.legal-body h3 { font-size: 20px; margin: 26px 0 10px; color: var(--brass-dark); }
.legal-body p { margin-bottom: 16px; color: var(--ink); }
.legal-body ul { margin: 0 0 18px 22px; }
.legal-body li { margin-bottom: 9px; }
.legal-body .toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 40px; }
.legal-body .toc h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-dark); margin-bottom: 14px; }
.legal-body .toc ul { list-style: none; margin: 0; columns: 2; }
.legal-body .toc li { margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 14px; font-style: italic; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; }
.legal-body table th, .legal-body table td { border: 1px solid var(--line); padding: 12px 16px; text-align: left; font-size: 14.5px; }
.legal-body table th { background: #faf8f3; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media .frame img { height: 440px; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .pricing-grid, .quotes-grid { grid-template-columns: 1fr 1fr; }
  .band .band-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line); padding: 10px 24px 20px; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links li { width: 100%; }
  .nav.open .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a::after { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .services-grid, .pricing-grid, .quotes-grid, .footer-grid, .form-row, .band .band-grid { grid-template-columns: 1fr; }
  .legal-body .toc ul { columns: 1; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
