/* ===========================================================================
   Agbaje Law, P.C. — dark navy luxury design system
   Inspiration: B308 LLC (navy + gold, Playfair Display + Inter)
   =========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #0A1024;
  --navy-2:      #0F1730;
  --navy-3:      #16203F;
  --navy-glass:  rgba(20, 30, 60, 0.55);
  --gold:        #C8A96E;
  --gold-light:  #E8C98A;
  --gold-dark:   #B8913A;
  --ink:         #F2F5FB;
  --muted:       #9FB0C9;
  --muted-dark:  #6B7C99;
  --border:      rgba(200, 169, 110, 0.16);
  --border-soft: rgba(255, 255, 255, 0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --pad-y: clamp(4.5rem, 9vw, 9rem);
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);
  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--pad-y); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.gold { color: var(--gold); }
.serif-italic { font-style: italic; font-weight: 500; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.95rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.3s var(--ease);
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1A1206; box-shadow: 0 10px 30px -10px rgba(200, 169, 110, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(200, 169, 110, 0.75); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 16, 36, 0.72);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: grid; place-items: center; color: #1A1206;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  box-shadow: 0 6px 18px -6px rgba(200, 169, 110, 0.7);
}
.brand-logo { height: 44px; width: auto; flex: none; mix-blend-mode: screen; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: 0.02em; }
.brand-sub { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.25s var(--ease); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; font-size: 1.6rem; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; padding-block: clamp(5rem, 11vw, 10rem) clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(200, 169, 110, 0.16), transparent 70%),
    radial-gradient(50% 45% at 12% 88%, rgba(30, 86, 200, 0.14), transparent 70%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.8rem clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hero-portrait { width: 100%; box-shadow: var(--shadow); }
.hero-photo { grid-column: 1; grid-row: 1; max-width: 440px; margin: 0; }
.hero-card { grid-column: 1; grid-row: 2; max-width: 440px; }
.hero-text { grid-column: 2; grid-row: 1 / span 2; }
.hero-rot { font-size: clamp(1.9rem, 4vw, 3.4rem); line-height: 1.16; }
.rotator { display: inline-block; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.rotator.rotate-out { opacity: 0; transform: translateY(-14px); }
@media (prefers-reduced-motion: reduce) { .rotator { transition: opacity 0.2s linear; } .rotator.rotate-out { transform: none; } }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero p.lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-top: 1.6rem; max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-phone { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.8rem; color: var(--muted); font-size: 0.95rem; }
.hero-phone a { color: var(--gold-light); font-weight: 600; }

/* Hero side card */
.hero-card {
  background: linear-gradient(160deg, rgba(200,169,110,0.08), rgba(20,30,60,0.4));
  border: 1px solid var(--border); border-radius: 20px; padding: 2.2rem;
  box-shadow: var(--shadow); backdrop-filter: blur(6px);
}
.hero-card .badge { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero-card h3 { font-size: 1.5rem; margin-top: 0.5rem; }
.hero-card ul { list-style: none; margin-top: 1.4rem; display: grid; gap: 1rem; }
.hero-card li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--muted); }
.hero-card li b { color: var(--ink); font-weight: 600; }
.tick { color: var(--gold); flex: none; margin-top: 0.15rem; }

/* ── Trust strip ─────────────────────────────────────────────────────────── */
.trust { border-block: 1px solid var(--border-soft); background: var(--navy-2); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 2rem; padding-block: 2rem; }
.trust-item { display: flex; flex-direction: column; }
.trust-item .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold-light); }
.trust-item .lbl { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ── Section heading ─────────────────────────────────────────────────────── */
.head { max-width: 60ch; margin-bottom: 3.2rem; }
.head.center { margin-inline: auto; text-align: center; }
.head h1, .head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ── Cards / practice areas ──────────────────────────────────────────────── */
.grid { display: grid; gap: 1.4rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.9rem; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 22px 50px -26px rgba(200,169,110,0.5); }
.card .ico {
  width: 48px; height: 48px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(200,169,110,0.12); color: var(--gold-light); margin-bottom: 1.2rem;
  border: 1px solid var(--border);
}
.card h3 { font-size: 1.22rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card.muted { background: var(--navy-2); }

/* ── Approach / steps ────────────────────────────────────────────────────── */
.bg-alt { background: var(--navy-2); }
.step { display: flex; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border-soft); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; flex: none; width: 2.4rem; }
.step h4 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ── Quote / testimonial ─────────────────────────────────────────────────── */
.quote-wrap { max-width: 50rem; margin-inline: auto; text-align: center; }
.quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.4; color: var(--ink);
}
.quote .mark { color: var(--gold); }
.quote-by { margin-top: 1.6rem; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.05em; }
.stars { color: var(--gold); letter-spacing: 0.2em; font-size: 1.1rem; margin-bottom: 1.6rem; }

/* ── About preview / split ───────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.portrait {
  aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--navy-3), var(--navy-2));
  border: 1px solid var(--border); display: grid; place-items: center; text-align: center;
}
.portrait .ph { color: var(--muted-dark); font-size: 0.82rem; letter-spacing: 0.08em; padding: 1.5rem; }
.portrait .ph svg { margin: 0 auto 0.8rem; opacity: 0.5; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.about-list li { display: flex; gap: 0.7rem; color: var(--muted); font-size: 0.96rem; }
.about-list b { color: var(--ink); }

/* ── Meet the Attorney (photo + nameplate + bio) ──────────────────────────── */
.attorney-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.attorney-photo { position: relative; margin: 0; max-width: 420px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.attorney-photo img { display: block; width: 100%; height: auto; }
.attorney-nameplate { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 0.2rem;
  padding: 2.6rem 1.4rem 1.2rem; background: linear-gradient(to top, rgba(6,11,24,0.94) 12%, rgba(6,11,24,0.5) 55%, rgba(6,11,24,0)); }
.attorney-name { font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 700; color: #fff; line-height: 1.15; }
.attorney-role { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 860px) {
  .attorney-grid { grid-template-columns: 1fr; }
  .attorney-photo { max-width: 360px; margin-inline: auto; }
}

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.info-row { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--border-soft); }
.info-row:last-child { border-bottom: none; }
.info-row .ico { color: var(--gold); flex: none; }
.info-row .k { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-dark); }
.info-row .v { font-size: 1rem; color: var(--ink); }
.info-row .v a:hover { color: var(--gold-light); }

form .field { margin-bottom: 1.1rem; }
form label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.45rem; letter-spacing: 0.03em; }
form input, form select, form textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--navy-2); border: 1px solid var(--border-soft); border-radius: 10px;
  padding: 0.85rem 1rem; transition: border-color 0.25s var(--ease);
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--gold); }
form textarea { resize: vertical; min-height: 120px; }
form .btn { width: 100%; justify-content: center; }
.form-status { margin-top: 1rem; font-size: 0.92rem; line-height: 1.5; padding: 0.85rem 1rem; border-radius: 10px; border: 1px solid var(--border-soft); }
.form-status.ok { color: #d8f3e3; background: rgba(46, 160, 110, 0.14); border-color: rgba(46, 160, 110, 0.45); }
.form-status.err { color: #f6dcdc; background: rgba(200, 70, 70, 0.14); border-color: rgba(200, 70, 70, 0.45); }

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(200,169,110,0.14), rgba(20,30,60,0.5));
  border: 1px solid var(--border); border-radius: 22px; padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { color: var(--muted); margin: 1rem auto 2rem; max-width: 46ch; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--navy-2); border-top: 1px solid var(--border-soft); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 34ch; }
.footer h5 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: 0.65rem; }
.footer ul a, .footer ul li { color: var(--muted); font-size: 0.92rem; }
.footer ul a:hover { color: var(--ink); }
.footer-base { border-top: 1px solid var(--border-soft); padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer-base, .footer-base a { color: var(--muted-dark); font-size: 0.8rem; }
.disclaimer { color: var(--muted-dark); font-size: 0.76rem; line-height: 1.6; max-width: 100%; margin-top: 1.2rem; }

/* ── FAQ accordion ───────────────────────────────────────────────────────── */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  overflow: hidden; transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.5rem; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.5rem; line-height: 1; flex: none; transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.5rem 1.35rem; color: var(--muted); font-size: 0.96rem; line-height: 1.65; }

/* ── Map embed ───────────────────────────────────────────────────────────── */
.map-embed { margin-top: 1.6rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-soft); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(0.9); }

/* ── Legal / prose pages ─────────────────────────────────────────────────── */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.4rem; }
.prose .updated { color: var(--muted-dark); font-size: 0.85rem; margin-bottom: 2.2rem; }
.prose h2 { font-size: 1.3rem; color: var(--gold-light); margin: 2.2rem 0 0.8rem; }
.prose p, .prose li { color: var(--muted); font-size: 0.98rem; line-height: 1.75; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.2rem; display: grid; gap: 0.5rem; }
.prose a { color: var(--gold-light); }

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

/* ── Reviews / testimonials ──────────────────────────────────────────────── */
.rating-hero { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 3rem; margin-top: 2.2rem; }
.rating-box { display: flex; align-items: center; gap: 1rem; }
.rating-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.rating-box .stars { margin-bottom: 0.35rem; }
.rating-meta { color: var(--muted); font-size: 0.9rem; line-height: 1.4; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.85rem; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card .stars { font-size: 1rem; margin-bottom: 1rem; }
.review-text { font-family: var(--font-display); font-style: italic; font-size: 1.14rem; line-height: 1.5; color: var(--ink); flex: 1 1 auto; }
.review-meta { margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--border-soft); }
.review-name { display: block; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.review-src { display: block; color: var(--muted-dark); font-size: 0.8rem; letter-spacing: 0.04em; margin-top: 0.2rem; }

/* ── Testimonials marquee (animated scrolling columns) ───────────────────── */
.tcols {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: 2.5rem;
  max-height: 720px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}
.tcol { display: flex; flex-direction: column; gap: 1.5rem; flex: 1 1 0; max-width: 380px; animation: marquee-up var(--dur, 24s) linear infinite; will-change: transform; }
.tcols:hover .tcol { animation-play-state: paused; }
@keyframes marquee-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.t-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 1.6rem;
}
.t-text { color: var(--ink); font-size: 0.98rem; line-height: 1.6; }
.t-person { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.25rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-light), var(--gold-dark));
  color: var(--navy); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em;
}
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); line-height: 1.2; }
.t-role { font-size: 0.78rem; color: var(--muted-dark); margin-top: 0.15rem; }
.t-avatar { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 4px 12px -5px rgba(0,0,0,0.55); }
.t-avatar.a1 { background: linear-gradient(150deg, #E8C98A, #B8913A); color: #1A1206; }
.t-avatar.a2 { background: linear-gradient(150deg, #AEC0DA, #43546F); color: #0A1024; }
.t-avatar.a3 { background: linear-gradient(150deg, #D8B271, #8A6526); color: #1A1206; }
.t-avatar.a4 { background: linear-gradient(150deg, #D2DBEA, #5C6E8B); color: #0A1024; }
.t-avatar.a5 { background: linear-gradient(150deg, #E9CE92, #7E5F22); color: #1A1206; }
.t-avatar.a6 { background: linear-gradient(150deg, #9FB0C9, #3C4D69); color: #0A1024; }
.t-photo { width: 42px; height: 42px; border-radius: 50%; flex: none; object-fit: cover; background: var(--navy-3); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 4px 12px -5px rgba(0,0,0,0.55); }

/* ── Brand logo ──────────────────────────────────────────────────────────── */
.footer-logo { width: 230px; max-width: 72%; height: auto; mix-blend-mode: screen; }
@media (max-width: 1024px) { .tcol.lg-only { display: none; } }
@media (max-width: 768px)  { .tcol.md-only { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .tcol { animation: none; }
  .tcols { max-height: none; -webkit-mask-image: none; mask-image: none; }
  .t-dup { display: none; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split .portrait { max-width: 360px; }
  .hero-photo, .hero-card, .hero-text { grid-column: 1; grid-row: auto; max-width: 100%; }
  .hero-photo { order: 1; max-width: 360px; margin-inline: auto; }
  .hero-text { order: 2; }
  .hero-card { order: 3; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--navy-2); border-bottom: 1px solid var(--border-soft); padding: 0.5rem var(--pad-x) 1.5rem;
    transform: translateY(-120%); transition: transform 0.35s var(--ease); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 0.85rem 0; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reveal { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
