/* =====================================================================
   Lohan & Co. Solicitors — Luxury Editorial Design System
   Palette: Warm monochrome (alabaster, charcoal) with metallic gold accent
   Type:    Playfair Display (headings, editorial serif) / Inter (body, UI)
   Philosophy: Elegance through restraint, precision, and depth.
   ===================================================================== */

:root {
  /* Brand — Sophisticated Monochrome */
  --bg:          #F9F8F6;   /* Warm Alabaster */
  --fg:          #1A1A1A;   /* Rich Charcoal */
  --muted-bg:    #EBE5DE;   /* Pale Taupe */
  --muted-fg:    #6C6863;   /* Warm Grey */
  --accent:      #D4AF37;   /* Metallic Gold — use sparingly */
  --accent-fg:   #FFFFFF;
  --danger:      #9a2828;

  --maxw: 1600px;
  --radius: 0px;

  /* Shadows — subtle layered depth */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-btn: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-btn-hover: 0 8px 24px rgba(0,0,0,0.25);

  --ff-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.625;
  font-size: 17px;
}
img, svg, iframe { max-width: 100%; display: block; }
a {
  color: var(--fg);
  text-decoration: none;
  transition: color 500ms ease-out;
}
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--fg);
  line-height: 0.95;
  font-weight: 400;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 0; }
h2 em, h1 em {
  font-style: italic; color: var(--accent);
}
h3 { font-size: 1.3rem; line-height: 1.2; }
p  { margin: 0 0 1rem; }

/* ---------- Paper noise texture ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Visible grid lines ---------- */
.grid-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
}

/* ---------- Accessibility helpers ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--fg); color: var(--bg); padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 1px solid var(--fg); outline-offset: 2px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section { padding: clamp(5rem, 8vw, 8rem) 0; }
.section-alt { background: var(--fg); color: var(--bg); }
.section-alt h2, .section-alt h3 { color: var(--bg); }
.section-alt p { color: rgba(249,248,246,0.7); }
.section-alt a { color: var(--bg); }
.section-alt a:hover { color: var(--accent); }

.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.eyebrow, .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted-fg);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before, .hero-eyebrow::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--fg);
  opacity: 0.3;
}
.section-alt .eyebrow { color: rgba(249,248,246,0.5); }
.section-alt .eyebrow::before { background: var(--bg); }
.section-lead { font-size: 1.05rem; color: var(--muted-fg); line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 500; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0 2.5rem; height: 48px;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: all 500ms ease-out; line-height: 1;
  position: relative; overflow: hidden;
}
.btn-sm { height: 40px; padding: 0 1.5rem; font-size: 0.65rem; }
.btn-block { width: 100%; }

/* Primary — dark with gold slide */
.btn-accent {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
  box-shadow: var(--shadow-btn);
  z-index: 0;
}
.btn-accent::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.btn-accent:hover::before { transform: translateX(0); }
.btn-accent:hover {
  color: var(--bg); border-color: var(--accent);
  box-shadow: var(--shadow-btn-hover);
}

/* Ghost — transparent with border */
.btn-ghost {
  background: transparent; color: var(--bg); border-color: rgba(249,248,246,0.4);
}
.btn-ghost:hover { background: rgba(249,248,246,0.08); color: var(--bg); border-color: var(--bg); }

/* Ghost dark */
.btn-ghost-dark {
  background: transparent; color: var(--fg); border-color: rgba(26,26,26,0.2);
}
.btn-ghost-dark:hover { background: var(--fg); color: var(--bg); }

/* Outline */
.btn-outline {
  background: transparent; color: var(--fg); border-color: rgba(26,26,26,0.15);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,248,246,0.95);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px;
}
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  font-family: var(--ff-head); font-weight: 400; color: var(--accent);
  font-size: 1.3rem; letter-spacing: -0.02em;
}
.brand-mark-light { color: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: var(--fg); }
.brand-text strong { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 400; }
.brand-text small {
  color: var(--muted-fg); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  color: var(--fg); text-decoration: none; font-weight: 500;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  transition: color 500ms ease-out;
}
.nav-list a:hover { color: var(--accent); }
.nav-list .btn-accent { color: var(--bg); }
.nav-list .btn-accent:hover { color: var(--bg); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 1px;
  background: var(--fg); transition: 0.3s ease-out;
}
.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { top: -7px; }
.nav-toggle-bar::after { top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--bg); isolation: isolate;
  background: var(--fg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212,175,55,0.08), transparent 60%);
}
.hero-overlay { display: none; }
.hero-inner { padding: clamp(5rem, 12vw, 10rem) 0; position: relative; z-index: 1; }
.hero-content { max-width: 800px; margin-left: 8%; }

.hero .hero-eyebrow {
  color: rgba(249,248,246,0.5);
}
.hero .hero-eyebrow::before {
  background: var(--accent); opacity: 1; width: 3rem;
}
.hero h1 {
  color: var(--bg);
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem; color: rgba(249,248,246,0.65);
  max-width: 55ch; line-height: 1.7;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.5rem 0 2rem;
}
.hero-trust {
  font-size: 0.7rem; color: rgba(249,248,246,0.4);
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0;
}
.hero-trust::before { content: ""; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.card {
  background: transparent;
  border-top: 1px solid var(--fg);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: background 700ms ease-out;
}
.card:hover { background: rgba(235,229,222,0.3); }
.card-icon {
  margin-bottom: 1.5rem;
  color: var(--accent);
  opacity: 0.8;
  display: flex;
}
.card h3 {
  font-family: var(--ff-head); font-weight: 400;
  margin: 0 0 0.75rem; font-size: 1.4rem; line-height: 1.25;
}
.card p { color: var(--muted-fg); font-size: 0.92rem; flex: 1; line-height: 1.6; }
.card-link {
  font-weight: 500; text-decoration: none; margin-top: 1.2rem;
  color: var(--fg); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; transition: color 500ms ease-out;
}
.card-link:hover { color: var(--accent); }

/* ---------- Practice areas ---------- */
.pa-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.pa-item {
  background: transparent;
  border-top: 1px solid rgba(26,26,26,0.12);
  border-left: none;
  border-radius: 0;
  padding: 2.5rem 2rem 2.5rem 0;
  transition: all 500ms ease-out;
}
.section-alt .pa-item { border-top-color: rgba(249,248,246,0.12); }
.pa-item:hover { padding-left: 1rem; }
.pa-item h3 {
  font-family: var(--ff-head); font-weight: 400;
  font-size: 1.4rem; margin-top: 0; margin-bottom: 1rem; line-height: 1.2;
}
.section-alt .pa-item h3 { color: var(--bg); }
.pa-item p { line-height: 1.75; margin-bottom: 1.2rem; }
.tick-list { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.tick-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: .75rem;
  color: var(--muted-fg); font-size: 0.92rem; line-height: 1.6;
}
.tick-list li::before {
  content: "—"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 400;
}
.section-alt .tick-list li { color: rgba(249,248,246,0.7); }
.section-alt .tick-list li::before { color: var(--accent); }

/* ---------- Legal callouts ---------- */
.legal-callout {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(26,26,26,0.1);
  border-radius: 0;
  padding: 1.5rem 0;
  margin-top: 1.8rem; font-size: .88rem;
}
.legal-callout strong {
  color: var(--fg); display: block; margin-bottom: .5rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-family: var(--ff-body);
}
.legal-callout p { margin: 0 0 .4rem; color: var(--muted-fg); line-height: 1.6; }
.legal-callout-sub { font-size: .78rem; opacity: .7; }
.section-alt .legal-callout { border-top-color: rgba(249,248,246,0.1); }
.section-alt .legal-callout strong { color: var(--bg); }
.section-alt .legal-callout p { color: rgba(249,248,246,0.6); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 4rem; align-items: start; }
.about-text p { color: var(--muted-fg); line-height: 1.7; }
.about-text p strong { color: var(--fg); }
.about-aside {
  background: var(--fg); color: var(--bg);
  padding: 2.5rem; position: sticky; top: 100px;
  border-top: 3px solid var(--accent);
}
.about-aside h3 {
  color: var(--bg); margin-top: 0;
  font-family: var(--ff-head); font-weight: 400;
}
.about-aside .tick-list li { color: rgba(249,248,246,0.7); }
.about-aside .tick-list li::before { color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-details h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
}
.contact-list { display: grid; gap: 1.2rem; margin: 2rem 0; }
.contact-list dt {
  font-weight: 500; color: var(--muted-fg); font-size: .65rem;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.contact-list dd { margin: .25rem 0 0; color: var(--fg); font-size: 0.95rem; }
.contact-list a { color: var(--fg); border-bottom: 1px solid rgba(26,26,26,0.15); }
.contact-list a:hover { color: var(--accent); border-color: var(--accent); }

/* Contact in dark section */
.section-alt .contact-list dt { color: rgba(249,248,246,0.45); }
.section-alt .contact-list dd { color: var(--bg); }
.section-alt .contact-list a { color: var(--bg); border-bottom-color: rgba(249,248,246,0.2); }
.section-alt .contact-list a:hover { color: var(--accent); border-color: var(--accent); }
.section-alt .section-lead { color: rgba(249,248,246,0.6); }

.map-wrap { margin-top: 1.5rem; border: 1px solid rgba(249,248,246,0.1); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 320px; display: block; }
.section-alt .map-wrap { border-color: rgba(249,248,246,0.1); }

/* Form in dark section */
.section-alt .form-card { border-top-color: var(--accent); }
.section-alt .form-card h3 { color: var(--bg); }
.section-alt .form-intro { color: rgba(249,248,246,0.5); }
.section-alt .field label { color: rgba(249,248,246,0.45); }
.section-alt .field input,
.section-alt .field select,
.section-alt .field textarea {
  color: var(--bg);
  border-bottom-color: rgba(249,248,246,0.2);
  background-color: rgba(249,248,246,0.06);
  padding: .8rem .75rem;
}
.section-alt .field input::placeholder,
.section-alt .field textarea::placeholder {
  color: rgba(249,248,246,0.4);
}
.section-alt .field input:focus,
.section-alt .field select:focus,
.section-alt .field textarea:focus {
  border-bottom-color: var(--accent);
}
.section-alt .field select {
  background-color: var(--fg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23D4AF37' stroke-width='1.5'/%3E%3C/svg%3E");
}
.section-alt .field select option {
  background: #2a2a2a;
  color: #F9F8F6;
}
.section-alt .checkbox { color: rgba(249,248,246,0.6); }
.section-alt .checkbox a { color: var(--bg); }
.section-alt .form-disclaimer { color: rgba(249,248,246,0.35); }
.section-alt .form-status.ok { color: var(--accent); }
.section-alt .err { color: #e8a0a0; }
.section-alt .req { color: var(--accent); }
.section-alt .btn-outline { color: var(--bg); border-color: rgba(249,248,246,0.2); }
.section-alt .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Form ---------- */
.form-card {
  background: transparent;
  border: none;
  border-top: 3px solid var(--accent);
  padding: 2.5rem 0 0;
  position: sticky; top: 100px;
}
.form-card h3 {
  margin-top: 0; font-family: var(--ff-head); font-weight: 400; font-size: 1.5rem;
}
.form-intro { font-size: .88rem; color: var(--muted-fg); margin-bottom: 2rem; }
.field { margin-bottom: 1.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field label {
  display: block; font-weight: 500; font-size: .65rem;
  margin-bottom: .6rem; color: var(--muted-fg);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.req { color: var(--accent); }

.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 0; font: inherit; color: var(--fg);
  background: transparent; border: none; border-bottom: 1px solid rgba(26,26,26,0.2);
  border-radius: 0; transition: border-color 500ms ease-out;
  font-size: 0.95rem;
}
.field input::placeholder, .field textarea::placeholder {
  font-family: var(--ff-head); font-style: italic;
  color: var(--muted-fg); opacity: 0.7;
}
.field select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236C6863' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--accent); outline: none;
  box-shadow: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.err { color: var(--danger); font-size: .78rem; display: block; margin-top: .4rem; }
.checkbox {
  display: flex; gap: .75rem; align-items: flex-start;
  font-weight: 400; font-size: .85rem; color: var(--muted-fg);
}
.checkbox input { width: auto; margin-top: .2rem; border: 1px solid rgba(26,26,26,0.3); }
.consent-field label { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .85rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin: 1.5rem 0; min-height: 65px; }
.form-status { font-size: .88rem; font-weight: 500; margin: 1rem 0 0; }
.form-status.ok { color: #2f5d4f; }
.form-status.bad { color: var(--danger); }
.form-disclaimer { font-size: .72rem; color: var(--muted-fg); margin: 1.5rem 0 0; line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--fg); color: rgba(249,248,246,0.6); margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding: 5rem 2rem 3rem;
}
.footer-firm { margin: 1rem 0 .5rem; color: var(--bg); font-size: 0.92rem; }
.footer-contact a {
  color: var(--accent); text-decoration: none;
  transition: opacity 500ms ease-out;
}
.footer-contact a:hover { opacity: 0.7; }
.site-footer h4 {
  color: var(--bg); font-family: var(--ff-body); font-size: .6rem;
  text-transform: uppercase; letter-spacing: 0.25em; margin: 0 0 1.2rem;
  font-weight: 500;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .7rem; }
.site-footer a { color: rgba(249,248,246,0.55); text-decoration: none; font-size: .88rem; }
.site-footer a:hover { color: var(--accent); }
.footer-legal {
  border-top: 1px solid rgba(249,248,246,0.08); padding: 2rem 2rem 3rem;
  font-size: .75rem; color: rgba(249,248,246,0.35);
}
.footer-legal p { margin: 0 0 .6rem; line-height: 1.5; }
.footer-copy { color: rgba(249,248,246,0.25); }
.footer-credit { margin-left: 0.5rem; font-size: inherit; }
.footer-credit a { color: rgba(249,248,246,0.35); font-size: inherit; }
.footer-credit a:hover { color: var(--accent); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: var(--bg); border-top: 1px solid rgba(26,26,26,0.08);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; padding: 2rem; }
.cookie-text h2 { font-size: 1.2rem; margin: 0 0 .5rem; line-height: 1.2; }
.cookie-text p {
  font-size: .88rem; color: var(--muted-fg); margin: 0 0 1rem; max-width: 70ch; line-height: 1.6;
}
.cookie-prefs {
  display: grid; gap: .8rem; margin: .5rem 0 1.5rem; padding: 1.5rem;
  background: var(--muted-bg); border: none;
}
.cookie-prefs[hidden] { display: none; }
.cookie-toggle {
  display: flex; gap: .75rem; align-items: flex-start; font-size: .85rem; color: var(--muted-fg);
}
.cookie-toggle input { margin-top: .2rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
.cookie-actions .btn {
  height: auto; padding: .75rem 1.2rem;
  font-size: 0.65rem; white-space: nowrap;
}

/* ---------- Legal page ---------- */
.legal-page { padding: 5rem 0 6rem; }
.legal-page h1 { margin-bottom: .5rem; }
.legal-meta { color: var(--muted-fg); font-size: .85rem; }
.legal-page h2 { font-size: 1.3rem; margin-top: 2.5rem; font-weight: 400; }
.placeholder-note {
  background: var(--muted-bg); border: 1px solid rgba(26,26,26,0.08);
  padding: 1.5rem; font-size: .88rem; color: var(--muted-fg); margin: 2rem 0;
}
.placeholder-note strong { display: block; color: var(--fg); margin-bottom: .4rem; }
.back-link { margin-top: 2.5rem; }

/* ---------- Responsive ---------- */

/* Tablet (iPad) */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-aside, .form-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content { margin-left: 4%; }
}

/* Small tablet / large phone */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg); padding: 1.5rem 1.5rem 2rem;
    display: none; border-bottom: 1px solid rgba(26,26,26,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-list.open { display: flex; }
  .nav-list li { padding: .75rem 0; border-bottom: 1px solid rgba(26,26,26,0.05); }
  .nav-list a { font-size: 0.85rem; }
  .nav-list .btn { width: 100%; margin-top: .75rem; }
  .pa-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { margin-left: 0; }
  .section { padding: clamp(3.5rem, 6vw, 5rem) 0; }
}

/* Mobile */
@media (max-width: 680px) {
  .container { padding: 0 1.25rem; }
  .card-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: 0ms !important; }
}
