:root {
    --cream: #EFE7D7;
    --cream-soft: #F6EFE0;
    --cream-deep: #E2D6BE;
    --cream-card: #FAF3E2;
    --ink: #1F1A15;
    --ink-soft: #3A332B;
    --muted: #6B6258;
    --line: #D0C2A6;
    --line-soft: #E2D6BE;
    --burgundy: #8B1F29;
    --burgundy-deep: #5E1319;
    --gold: #B8975B;
    --gold-dark: #7A5F30;  /* WCAG AA (5.4:1) against cream backgrounds */
    --slate: #4A5560;
    --slate-dark: #2E3840;
    --serif: 'EB Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* Skip-to-content link — hidden until keyboard focused */
.skip {
    position: absolute;
    top: 0;
    left: 16px;
    padding: 12px 22px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 0 0 6px 6px;
    transform: translateY(-120%);
    transition: transform 0.2s;
    z-index: 1000;
}
.skip:focus {
    transform: translateY(0);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.corner {
    position: absolute;
    width: 160px;
    height: 160px;
    color: var(--gold);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.corner-tl { top: 100px; left: 0; }
.corner-br { bottom: 100px; right: 0; color: var(--burgundy); opacity: 0.25; }

.sect-eye {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}
.sect-eye-light { color: var(--gold); }

/* Nav */
.nav {
    padding: 28px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: saturate(180%) blur(8px);
    background-color: rgba(239, 231, 215, 0.94);
}
.nav-row { display: flex; align-items: center; gap: 32px; position: relative; }
.brand { display: flex; align-items: center; gap: 14px; }
.b-mark { width: 44px; height: 44px; color: var(--burgundy); flex-shrink: 0; }
.b-mark svg { width: 100%; height: 100%; }
.b-words { display: flex; flex-direction: column; line-height: 1.1; }
.b-name { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 500; }
.b-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-top: 4px; white-space: nowrap; }
.nav-links { margin-left: auto; display: flex; gap: 8px; }
.nav-links a { padding: 8px 16px; font-size: 14px; color: var(--ink-soft); border-radius: 999px; transition: all 0.25s; }
.nav-links a:hover { background: var(--cream-deep); color: var(--burgundy); }
.nav-tel {
    padding: 11px 20px;
    background: var(--cream-card);
    border: 1px solid var(--burgundy);
    color: var(--burgundy);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    transition: all 0.25s;
}
.nav-tel:hover { background: var(--burgundy); color: var(--cream); }

/* Hamburger menu button — visible on mobile only */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--cream-card);
    border: 1px solid var(--burgundy);
    border-radius: 999px;
    color: var(--burgundy);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.nav-toggle:hover { background: var(--burgundy); color: var(--cream); }
.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s, opacity 0.2s;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero { padding: 100px 0 100px; text-align: center; position: relative; }
.hero-wrap { max-width: 960px; margin: 0 auto; }
.mantra-eye {
    font-family: var(--serif);
    font-size: 17px;
    letter-spacing: 0.05em;
    color: var(--slate);
    margin-bottom: 32px;
    font-style: italic;
}
.mantra {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 104px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 48px;
}
.mantra em { color: var(--burgundy); font-style: italic; }
.mantra .dot { color: var(--gold); }
.hero-lede {
    font-family: var(--serif);
    font-size: clamp(19px, 1.5vw, 22px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 680px;
    margin: 0 auto 48px;
}
.hero-ctas {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: all 0.25s;
    border: 1px solid transparent;
}
.btn-primary { background: var(--burgundy); color: var(--cream); }
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-1px); }
.btn-quiet { color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--gold); border-radius: 0; }
.btn-quiet:hover { color: var(--burgundy); border-color: var(--burgundy); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--burgundy); }

/* Context */
.context { padding: 56px 0; background: var(--cream-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); position: relative; }
.context::before,
.context::after {
    content: '';
    position: absolute;
    left: 32px; right: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}
.context::before { top: 20px; }
.context::after { bottom: 20px; }
.context-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.ctx { position: relative; padding: 0 20px; }
.ctx:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 20%; bottom: 20%;
    width: 1px;
    background: var(--line);
}
.ctx-lbl {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-dark);
    margin-bottom: 12px;
}
.ctx-val {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 8px;
}
.ctx-val em { font-style: italic; color: var(--burgundy); font-weight: 400; font-size: 0.7em; vertical-align: super; }
.ctx-accent .ctx-val em { font-size: 1em; vertical-align: baseline; color: var(--burgundy); }
.ctx-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Intro */
.intro { padding: 120px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.intro-image {
    margin-top: 40px;
    position: relative;
}
.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(31, 26, 21, 0.25);
}
.intro-image::before {
    content: '';
    position: absolute;
    top: 14px; left: 14px; right: -14px; bottom: -14px;
    border: 1px solid var(--gold);
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}
.intro-image figcaption {
    margin-top: 16px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--muted);
    text-align: center;
}
.firm-h {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-top: 16px;
}
.firm-h em { font-style: italic; color: var(--burgundy); }
.intro-r { max-width: 620px; }
.firm-lede {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: var(--burgundy);
    margin-bottom: 24px;
}
.intro-r p:not(.firm-lede) {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

/* Sect head */
.sect-head { max-width: 780px; margin-bottom: 60px; }
.sect-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.sect-h {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 20px;
}
.sect-h em { font-style: italic; color: var(--burgundy); }
.sect-sub { font-family: var(--serif); font-size: 19px; line-height: 1.55; color: var(--muted); font-style: italic; }

/* Services */
.practice { padding: 120px 0; background: var(--cream-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.svc-list { list-style: none; border-top: 2px solid var(--ink); }
.svc { display: grid; grid-template-columns: 80px 1fr; gap: 40px; padding: 44px 0; border-bottom: 1px solid var(--line); align-items: start; transition: all 0.3s; }
.svc:hover { padding-left: 16px; padding-right: 16px; background: var(--cream-card); }
.svc:last-child { border-bottom: 2px solid var(--ink); }
.svc-roman { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--burgundy); font-style: italic; letter-spacing: -0.01em; }
.svc-body h3 {
    font-family: var(--serif);
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.1;
}
.svc-body p { font-family: var(--serif); font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 720px; }

/* Internal content link (other pages on kingrowelaw.com) */
.link-int {
    color: var(--burgundy);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: all 0.2s;
}
.link-int:hover {
    color: var(--ink);
    border-color: var(--burgundy);
}

/* External content link (statute refs, citations, etc.) */
.link-ext {
    color: var(--burgundy);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    white-space: nowrap;
    transition: all 0.2s;
}
.link-ext::after {
    content: '↗';
    font-size: 0.82em;
    margin-left: 3px;
    color: var(--gold-dark);
    display: inline-block;
    transition: transform 0.2s;
}
.link-ext:hover {
    color: var(--ink);
    border-color: var(--burgundy);
}
.link-ext:hover::after {
    transform: translate(2px, -2px);
    color: var(--burgundy);
}

/* Quote */
.quote { padding: 100px 0; background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.quote-wrap { max-width: 920px; margin: 0 auto; }
.q-rule { position: relative; height: 1px; background: var(--gold); opacity: 0.5; margin: 0 auto; max-width: 240px; }
.q-diamond { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; background: var(--gold); transform: translate(-50%, -50%) rotate(45deg); }
.q p {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.3;
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    letter-spacing: -0.01em;
    padding: 48px 0 32px;
}
.q footer { margin-bottom: 48px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--burgundy); }

/* Attorney */
.attorney { padding: 120px 0; }
.att-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center; max-width: 1080px; margin: 0 auto; }
.att-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 4px;
    background: linear-gradient(170deg, var(--burgundy) 0%, var(--burgundy-deep) 80%, var(--slate-dark) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 48px -24px rgba(31, 26, 21, 0.35);
}
.att-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}
.ap-inner { position: absolute; inset: 14px; border: 1px solid var(--gold); opacity: 0.55; z-index: 2; pointer-events: none; }
.ap-sig { font-family: var(--serif); font-size: 72px; font-weight: 500; color: var(--cream); letter-spacing: -0.02em; z-index: 1; }
.att-role { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); margin: 20px 0 10px; }
.att-name { font-family: var(--serif); font-size: clamp(40px, 4.5vw, 56px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); line-height: 1; margin-bottom: 20px; }
.att-name em { font-style: italic; color: var(--burgundy); }
.att-bio { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }
.att-creds { display: grid; gap: 10px; margin-bottom: 24px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.att-creds > div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: baseline; }
.att-creds dt { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.att-creds dd { font-size: 14px; color: var(--ink); }
.att-link { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--burgundy); padding-bottom: 4px; border-bottom: 1px solid var(--gold); transition: all 0.2s; }
.att-link:hover { border-color: var(--burgundy); }

/* Figures */
.figures { padding: 90px 0; background: var(--cream-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.figures-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.fg { position: relative; }
.fg:not(:last-child)::after { content: ''; position: absolute; right: -20px; top: 20%; bottom: 20%; width: 1px; background: var(--line); }
.fg-n { display: block; font-family: var(--serif); font-size: clamp(52px, 5.5vw, 84px); font-weight: 500; line-height: 1; letter-spacing: -0.025em; color: var(--burgundy); font-variant-numeric: tabular-nums; }
.fg-n em { font-style: italic; color: var(--gold); font-size: 0.55em; vertical-align: super; margin-left: 3px; font-weight: 400; }
.fg-l { display: block; margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted); line-height: 1.5; max-width: 200px; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq { padding: 120px 0; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq details { padding: 28px 0; border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-tog { font-family: var(--serif); font-size: 28px; color: var(--burgundy); width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; flex-shrink: 0; transition: all 0.25s; }
.faq details[open] .faq-tog { transform: rotate(45deg); background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.faq details p { font-family: var(--serif); font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-top: 20px; max-width: 780px; }
.faq details p strong { color: var(--ink); font-weight: 600; }

/* Visit */
.visit { padding: 140px 0; }
.visit-card { background: linear-gradient(150deg, var(--ink) 0%, var(--slate-dark) 100%); border-radius: 16px; padding: 88px 64px; color: var(--cream); display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; position: relative; overflow: hidden; border: 1px solid var(--burgundy); }
.visit-card::before { content: ''; position: absolute; inset: 20px; border: 1px solid var(--gold); opacity: 0.3; border-radius: 8px; pointer-events: none; }
.visit-text { position: relative; z-index: 1; }
.visit-h { font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); line-height: 1.05; font-weight: 500; letter-spacing: -0.015em; color: var(--cream); margin: 20px 0 24px; }
.visit-h em { font-style: italic; color: var(--gold); }
.visit-lede { font-family: var(--serif); font-size: 20px; line-height: 1.55; color: rgba(239, 231, 215, 0.85); font-style: italic; margin-bottom: 32px; max-width: 500px; }
.visit-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-offices { position: relative; z-index: 1; display: grid; gap: 16px; padding-left: 32px; border-left: 1px solid rgba(184, 151, 91, 0.3); }
.vo { padding: 22px 26px; background: rgba(239, 231, 215, 0.06); border: 1px solid rgba(184, 151, 91, 0.28); border-radius: 8px; backdrop-filter: blur(8px); }
.vo-tag { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--gold); margin-bottom: 10px; font-weight: 500; }
.vo-line { font-family: var(--serif); font-size: 16px; color: var(--cream); line-height: 1.55; }

/* Related reading — appears at the end of each landing page */
.related {
    padding: 100px 0 120px;
    background: var(--cream-soft);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.r-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px;
    background: var(--cream-card);
    border: 1px solid var(--line);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}
.r-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.r-card:hover { border-color: var(--burgundy); transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(31, 26, 21, 0.15); }
.r-card:hover::before { transform: scaleX(1); }
.r-cat {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.r-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ink);
    transition: color 0.25s;
}
.r-card:hover .r-title { color: var(--burgundy); }
.r-excerpt {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
}
.r-more {
    margin-top: auto;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
}
.r-more em {
    font-style: normal;
    margin-left: 4px;
    transition: margin-left 0.2s;
}
.r-card:hover .r-more em { margin-left: 10px; }

/* Page meta — last updated + reviewed-by line for E-E-A-T signals */
.page-meta {
    padding: 36px 0;
    background: var(--cream);
    border-top: 1px solid var(--line-soft);
}
.page-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-align: center;
}
.pm-lbl {
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-right: 4px;
}
.page-meta-row time { font-variant-numeric: tabular-nums; }
.page-meta-row a {
    color: var(--burgundy);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}
.page-meta-row a:hover { border-color: var(--burgundy); }
.pm-sep { color: var(--gold); }

/* Footer */
.foot { padding: 40px 0 32px; background: var(--cream-soft); border-top: 1px solid var(--line); }
.foot-bottom {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted);
}
.foot-logo {
    flex-shrink: 0;
    display: block;
    transition: opacity 0.25s;
}
.foot-logo:hover { opacity: 0.7; }
.foot-logo img {
    width: 120px;
    height: auto;
    display: block;
}
.foot-text {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.disc { max-width: 620px; font-family: var(--serif); font-style: italic; font-size: 13px; }

/* Responsive */
@media (max-width: 1080px) {
    /* Mobile nav: hamburger visible; links collapse into a dropdown below */
    .nav-toggle { display: inline-flex; }
    /* Tighten nav elements so everything fits on one line on phone widths,
       and push the phone + hamburger to the right edge. */
    .nav-row { gap: 14px; }
    .nav-tel { padding: 9px 14px; font-size: 13px; margin-left: auto; }
    .b-name { font-size: 22px; }
    .b-sub  { font-size: 10px; letter-spacing: 0.2em; }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        margin-left: 0;
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 4px;
        box-shadow: 0 20px 40px -16px rgba(31, 26, 21, 0.18);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.3s;
    }
    .nav-row.is-menu-open .nav-links {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 15px;
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a:hover { background: var(--cream-soft); }

    .corner { display: none; }
    .context-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ctx::after { display: none; }
    .intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .intro-r { padding-top: 0; }
    .att-grid { grid-template-columns: 1fr; gap: 40px; }
    .att-photo { max-width: 280px; margin: 0 auto; }
    .figures-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .fg::after { display: none; }
    .visit-card { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
    .visit-offices { padding-left: 0; border-left: none; padding-top: 28px; border-top: 1px solid rgba(184, 151, 91, 0.3); }

    /* Tighten the FAQ → Visit transition on mobile (no background change
       between these two sections makes the full desktop padding feel like
       dead space on narrower screens). */
    .faq  { padding: 80px 0; }
    .visit { padding: 40px 0 80px; }

    /* Related reading stacks on mobile */
    .related-grid { grid-template-columns: 1fr; }
    .related { padding: 80px 0; }
}
@media (max-width: 640px) {
    .wrap { padding: 0 20px; }
    .context-row, .figures-row { grid-template-columns: 1fr; }
    .svc { grid-template-columns: 50px 1fr; gap: 20px; }
    .foot-bottom { flex-direction: column; }
}
