/* ==========================================================================
   Logokollektiv – Praxis für Logopädie, Wien 1050
   Faithful rebuild of the approved site, hand-coded for Vercel.
   Palette + content preserved 1:1; layout cleaned up and made responsive.
   ========================================================================== */

:root {
  /* Brand palette (pulled from the original site) */
  --ink:    #1f2d3d;   /* primary text */
  --navy:   #1e3a5f;   /* brand navy – icons, headings accents */
  --navy-deep: #16263d;
  --sky:    #71c1e8;   /* soft sky blue accent */
  --sky-soft: #eaf6fc;
  --rose:   #e195ab;   /* warm rose accent */
  --rose-soft: #fbecf1;
  --cream:  #fff8e3;   /* warm cream background */
  --peach:  #ffe3ca;   /* peach background */
  --mint:   #e8f6ee;
  --green:  #2fae66;   /* success / checkmarks */
  --paper:  #ffffff;
  --muted:  #5b6675;
  --line:   #e7ebf0;
  --shadow: 0 18px 40px -24px rgba(22, 38, 61, .35);
  --shadow-sm: 0 8px 24px -16px rgba(22, 38, 61, .4);

  --maxw: 1160px;
  --radius: 22px;
  --radius-sm: 14px;
  --font-head: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint   { background: var(--sky-soft); }
.section--cream  { background: var(--cream); }
.section--peach  { background: linear-gradient(180deg, #fff 0%, var(--peach) 100%); }

.eyebrow {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; font-size: .78rem; color: var(--rose); margin-bottom: .6rem;
}
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-deep); color: #fff; }
.btn--rose { background: var(--rose); color: #fff; }
.btn--rose:hover { background: #d77d97; color: #fff; }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--sky); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px var(--rose-soft); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink); padding: .35rem 0; position: relative; }
.nav-links a:hover { text-decoration: none; color: var(--navy); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--sky); transition: width .2s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; }
/* Header CTA: keep button text bright/readable — nav-link colour rules must not win */
.nav-links a.btn { color: #fff; padding: .62rem 1.3rem; font-size: .92rem; }
.nav-links a.btn:hover { color: #fff; }
.nav-links a.btn::after { display: none; }
.nav-links a.btn--ghost, .nav-links a.btn--ghost:hover { color: var(--navy); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--sky-soft) 0%, #fff 55%, var(--rose-soft) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; padding: clamp(2.5rem, 6vw, 5rem) 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .35rem .9rem; font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--navy); box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin-bottom: .4rem; }
.hero h1 .accent { color: var(--sky); }
.hero .lead-line { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.45rem); color: var(--rose); margin-bottom: 1.1rem; }
.hero p.sub { font-size: 1.12rem; color: var(--muted); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-note { font-size: .9rem; color: var(--muted); margin-top: .9rem; display: flex; align-items: center; gap: .4rem; }
.hero-media { position: relative; }
.hero-media .blob { position: absolute; inset: 11% -7% -9% 9%; background: linear-gradient(140deg, var(--peach), var(--rose-soft) 72%); border-radius: 34px; z-index: 0; }
.hero-media img { position: relative; z-index: 1; width: 100%; border-radius: 28px; box-shadow: 0 32px 60px -28px rgba(22,38,61,.42); }

/* ---------- Cards / Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; transition: transform .2s ease, box-shadow .2s ease; text-align: center; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(22,38,61,.45); }
.service-card .ic { width: clamp(120px, 17vw, 144px); height: clamp(120px, 17vw, 144px); border-radius: 28px; flex: none; align-self: center; object-fit: contain; background: var(--cream); padding: 12px; box-shadow: 0 12px 26px -14px rgba(22,38,61,.38); }
.service-card.kinder .ic { background: var(--peach); }
.service-card.gender .ic { background: var(--rose-soft); }
.service-card.neuro  .ic { background: var(--sky-soft); }
.service-card.fees   .ic { background: var(--mint); }
.service-card h3 { margin-bottom: .2rem; }
.service-card .intro { color: var(--muted); margin: 0; }
.service-list { list-style: none; margin: .4rem 0 0; padding: 0; display: grid; gap: .7rem; text-align: left; }
.service-list li { padding-left: 1.6rem; position: relative; font-size: .98rem; }
.service-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 50%; background: var(--sky); }
.service-list strong { color: var(--ink); }

/* ---------- Process / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 1.8rem; box-shadow: var(--shadow); position: relative; }
.step .step-ic { width: 72px; height: 72px; margin-bottom: 1rem; }
.step .num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--sky-soft); line-height: 1; }
.step h3 { font-size: 1.2rem; }
.step ul { list-style: none; margin: .6rem 0 0; padding: 0; display: grid; gap: .55rem; }
.step ul li { padding-left: 1.5rem; position: relative; color: var(--muted); font-size: .96rem; }
.step ul li::before { content: "›"; position: absolute; left: .2rem; top: -.05rem; color: var(--rose); font-weight: 700; }
.step .gives { margin-top: 1rem; padding-top: .9rem; border-top: 1px dashed var(--line); font-size: .92rem; }
.step .gives b { color: var(--navy); }
/* Motto / closing CTA band — turns the lone slogan into a deliberate flourish */
.motto-cta { max-width: 660px; margin: clamp(2.4rem, 5vw, 3.4rem) auto 0; text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--rose-soft) 55%, var(--sky-soft) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem) 2rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.motto-cta::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, rgba(113,193,232,.12), transparent 62%); }
.motto-cta > * { position: relative; }
.motto-cta .eyebrow { margin-bottom: .5rem; }
.motto-cta .motto { font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 4.8vw, 2.8rem); color: var(--navy); letter-spacing: -.02em; line-height: 1.08; margin: 0;
  display: inline-block; position: relative; padding-bottom: .6rem; }
.motto-cta .motto::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 72px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--rose), var(--sky)); }
.motto-cta .btn { margin-top: 1.5rem; }

/* ---------- Prices ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.price-card.feature { border-color: var(--sky); box-shadow: 0 24px 48px -26px rgba(113,193,232,.7); }
.price-card .tag { font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.price-card .dur { color: var(--muted); font-size: .95rem; margin: .2rem 0 1rem; }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card .btn { margin-top: 1.4rem; }
.price-note { margin: 0 auto 2.2rem; max-width: 760px; text-align: center; color: var(--muted); }
.refund { margin-top: 2.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.refund img { border-radius: var(--radius-sm); }
.callout { background: var(--cream); border-left: 4px solid var(--rose); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.4rem 1.6rem; margin-top: 2.4rem; }
.callout h3 { font-size: 1.15rem; }
.callout ul { margin: .6rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.callout a { color: var(--navy); font-weight: 600; }

/* ---------- Team ---------- */
.team-intro { max-width: 760px; margin: 0 auto clamp(2rem,4vw,3rem); text-align: center; color: var(--muted); }
.team-intro b { color: var(--ink); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.member .photo { aspect-ratio: 1/1; background: var(--sky-soft); overflow: hidden; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; }
.member .body { padding: 1.5rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.member h3 { margin: 0; }
.member .role { font-family: var(--font-head); font-weight: 600; color: var(--rose); font-size: .95rem; }
.member .since { color: var(--muted); font-size: .9rem; }
.member .contact { display: flex; flex-direction: column; gap: .25rem; margin: .5rem 0; font-size: .92rem; }
.member .contact a { color: var(--navy); word-break: break-word; }
.member .sub-h { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-top: .6rem; }
.member .chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip { background: var(--sky-soft); color: var(--navy); border-radius: 999px; padding: .25rem .7rem; font-size: .8rem; font-weight: 600; font-family: var(--font-head); }
.member details { margin-top: .4rem; }
.member details summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); list-style: none; padding: .4rem 0; }
.member details summary::-webkit-details-marker { display: none; }
.member details summary::after { content: " ▾"; color: var(--rose); }
.member details[open] summary::after { content: " ▴"; }
.member details ul { margin: .3rem 0 .6rem; padding-left: 1.1rem; color: var(--muted); font-size: .9rem; display: grid; gap: .25rem; }
.member .btn { margin-top: auto; }

/* Clinical experience band */
.clinic { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: center; }
.clinic .card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 2rem; box-shadow: var(--shadow); }
.clinic ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .8rem; }
.clinic ul li { padding-left: 2rem; position: relative; }
.clinic ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--green); width: 1.3rem; height: 1.3rem; border-radius: 50%; font-size: .8rem; display: grid; place-items: center; }
.clinic .media { background: var(--navy); border-radius: var(--radius); aspect-ratio: 16/10; display: grid; place-items: center; color: #fff; text-align: center; padding: 2rem; box-shadow: var(--shadow); }
.clinic .media .play { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; margin: 0 auto 1rem; border: 2px solid rgba(255,255,255,.5); }
.clinic .media .play::before { content: ""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }

/* ---------- Testimonials ---------- */
.tcols { columns: 3 280px; column-gap: 1.4rem; }
.tcard { break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.4rem; margin: 0 0 1.4rem; box-shadow: var(--shadow-sm); }
.tcard .stars { color: #f5b301; letter-spacing: 2px; margin-bottom: .5rem; }
.tcard p { margin: 0; color: var(--ink); font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .9rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .4rem 1.4rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: .9rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rose); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 1rem; color: var(--muted); }
.faq details > div strong { color: var(--ink); }

/* ---------- Contact + Map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px var(--sky-soft); }
.field textarea { min-height: 120px; resize: vertical; }
.form-consent { font-size: .85rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start; margin: .4rem 0 1.1rem; }
.form-consent input { margin-top: .25rem; width: 18px; height: 18px; flex: none; }
.form-status { display: none; padding: .9rem 1rem; border-radius: 12px; font-size: .95rem; margin-top: 1rem; }
.form-status.ok  { display: block; background: var(--mint); color: #1c6b3f; border: 1px solid #b6e3c8; }
.form-status.err { display: block; background: #fdecec; color: #b42418; border: 1px solid #f3c3c0; }
.form-alt { text-align: center; margin: 1.1rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .92rem; color: var(--muted); }
.form-alt a { color: var(--navy); font-weight: 600; }
.contact-aside .info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.6rem; }
.contact-aside .info-card h3 { color: #fff; }
.contact-aside .info-card a { color: #fff; }
.info-row { display: flex; gap: .8rem; margin-bottom: 1rem; align-items: flex-start; }
.info-row .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.12); display: grid; place-items: center; flex: none; font-size: 1.1rem; }
.info-row b { font-family: var(--font-head); display: block; font-size: .95rem; }
.info-row span { color: rgba(255,255,255,.8); font-size: .92rem; }
.transit { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.transit li { display: flex; gap: .6rem; align-items: baseline; font-size: .95rem; }
.transit li b { color: var(--navy); font-family: var(--font-head); min-width: 96px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-facade { cursor: pointer; min-height: 260px; background:
    linear-gradient(135deg, rgba(30,58,95,.06), rgba(113,193,232,.12)),
    repeating-linear-gradient(45deg, #f3f8fb 0 14px, #eaf1f7 14px 28px);
  display: grid; place-items: center; text-align: center; transition: box-shadow .2s ease; }
.map-facade:hover, .map-facade:focus-visible { box-shadow: 0 22px 44px -24px rgba(22,38,61,.5); outline: none; }
.map-facade-inner { display: grid; gap: .25rem; justify-items: center; padding: 1.5rem; }
.map-facade-inner .map-pin { font-size: 2rem; }
.map-facade-inner strong { font-family: var(--font-head); color: var(--ink); }
.map-facade-inner small { color: var(--muted); font-size: .8rem; margin-top: .4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.82); padding: 3rem 0 2rem; }
.footer-top { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.site-footer .brand { color: #fff; }
.site-footer .brand .dot { box-shadow: 0 0 0 4px rgba(225,149,171,.25); }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; color: rgba(255,255,255,.6); display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--ink); }
.legal .muted { color: var(--muted); }
.legal a { color: var(--navy); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-family: var(--font-head); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip:focus { left: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-media { max-width: 460px; margin: 0 auto; order: -1; }
  .services, .price-grid, .team-grid, .clinic, .refund, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tcols { columns: 2 260px; }
}
@media (max-width: 740px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 22px 1.2rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border: 0; }
  .nav-links a { display: block; padding: .9rem 0; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: .6rem 0 0; }
  .nav-toggle { display: block; }
  .tcols { columns: 1; }
  body { font-size: 16px; }
}
