/* ============================================================
   TOKENS — 3 background colours, 2 fonts, gold accent
   ============================================================ */
:root {
  --cream: #F4ECD7;          /* matches hero map paper exactly */
  --cream-soft: #F7F0DD;     /* slightly lighter inner */
  --parchment: #EBE0BD;      /* warmer surface for rhythm */
  --crimson: #7A1428;
  --crimson-soft: #8E2A3E;
  --crimson-deep: #5A0D1E;
  --forest: #2C3E2D;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --gold: #B8902B;
  --gold-light: #D4B048;
  --gold-deep: #6B4D14;
  --stone: #8B8378;
  --line: #DDD2B0;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   TYPE SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.3px;
  color: var(--ink);
}
h1 { font-size: clamp(38px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; }
em { font-style: italic; }
.italic-gold { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.nowrap { white-space: nowrap; }

/* Brand name — uses Times (logo wordmark face) so the "J" sits properly + ties to the logo */
.brand-name {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================================
   SCROLL EFFECTS — restrained, editorial, accessible
   ============================================================ */

/* Scroll progress bar — thin gold line at the top */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 101;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* Fade-in on scroll: starts slightly down + transparent, settles when visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Illustration parallax — subtle drift for hero map */
.parallax { will-change: transform; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .parallax { transform: none !important; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
}

p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 16px;
  display: inline-block;
}
.eyebrow.light { color: var(--gold-light); }

.sublead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ============================================================
   LAYOUT — single max-width, consistent gutters
   ============================================================ */
.wrap     { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { width: 100%; max-width: 880px;  margin: 0 auto; padding: 0 22px; }

section { padding: var(--space-6) 0; }
@media (min-width: 900px) { section { padding: var(--space-7) 0; } }

/* Section heads */
.head { max-width: 720px; margin: 0 auto var(--space-5); text-align: center; position: relative; }
.head h2 + .sublead { margin-top: 14px; }
.head.left { margin-left: 0; text-align: left; }

/* Roman numerals removed per Emi */
.head-ornament { display: flex; justify-content: center; margin: 10px auto 12px; }
.head-ornament img { width: 64px; height: auto; mix-blend-mode: multiply; }
.dark .head-ornament img { filter: brightness(0) invert(1) opacity(0.7); mix-blend-mode: normal; }

/* ============================================================
   BUTTONS — two variants only
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  min-height: 52px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--crimson); color: var(--cream); border: 1px solid var(--crimson); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost   { background: transparent; color: var(--crimson); border: 1px solid var(--crimson); }
.btn-ghost:hover { background: var(--crimson); color: var(--cream); }
.btn-arrow::after { content: " →"; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* On crimson surfaces */
.on-crimson .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.on-crimson .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.on-crimson .btn-ghost { color: var(--cream); border-color: rgba(250,246,236,0.5); }
.on-crimson .btn-ghost:hover { background: var(--cream); color: var(--crimson); border-color: var(--cream); }

/* ============================================================
   ILLUSTRATIONS — universal blend treatment
   Multiply makes cream paper of illustration blend with cream page
   ============================================================ */
.illus { mix-blend-mode: multiply; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--crimson);
  border-bottom: 1px solid rgba(250,246,236,0.12);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 22px;
}
.nav-logo { display: flex; align-items: center; max-width: 55%; }
.nav-logo img { height: 68px; width: auto; max-width: 100%; display: block; }
@media (max-width: 900px) { .nav-logo img { height: 54px; } .nav-logo { max-width: 62%; } }
@media (max-width: 640px) { .nav-logo img { height: 42px; } .nav-logo { max-width: 72%; } }
.nav-links { display: none; align-items: center; gap: 26px; }
.nav-links > a, .nav-links .nav-parent > a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  color: var(--cream); position: relative;
}
.nav-links > a:hover, .nav-links .nav-parent > a:hover { color: var(--gold-light); opacity: 1; }

/* ---- DESKTOP DROPDOWN ---- */
.nav-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* Hover buffer is provided by .nav-dropdown::before below — no padding here so
     the top-nav items align on the same baseline. */
}
.nav-parent > a::after {
  content: " ⌄"; font-size: 10px; margin-left: 4px; letter-spacing: 0;
  color: var(--gold-light); position: relative; top: -1px;
}
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 280px; background: var(--crimson);
  border: 1px solid rgba(184,144,43,0.35); border-top: 3px solid var(--gold);
  padding: 12px 0; margin-top: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease 0.12s, transform 0.18s ease 0.12s, visibility 0s linear 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
/* Wide invisible bridge — covers the buffer above the dropdown so cursor
   never leaves hover zone when moving from parent link to dropdown */
.nav-dropdown::before {
  content: ""; position: absolute; top: -32px; left: -40px; right: -40px; height: 34px;
}
.nav-parent:hover .nav-dropdown,
.nav-parent:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, visibility 0s linear 0s;
}
.nav-dropdown a {
  display: block; padding: 10px 22px;
  font-family: var(--serif); font-size: 15px; letter-spacing: 0;
  text-transform: none; font-weight: 400; color: var(--cream);
  border-bottom: 1px solid rgba(250,246,236,0.06);
  transition: background 0.15s ease, color 0.15s ease, padding 0.15s ease;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: rgba(184,144,43,0.12); color: var(--gold-light);
  padding-left: 28px;
}
.nav-dropdown .dd-eyebrow {
  padding: 8px 22px 6px; font-family: var(--sans); font-size: 9px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light);
  font-weight: 600; border-bottom: 1px solid rgba(184,144,43,0.25);
  margin-bottom: 4px; pointer-events: none;
}

/* CTA button — higher specificity so it beats .nav-links > a inheritance */
.nav-links a.nav-cta, a.nav-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  background: transparent; color: var(--cream) !important;
  padding: 9px 18px !important;
  font-family: var(--serif) !important; font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  border: 1px solid var(--gold); border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  line-height: 1.2;
}
.nav-links a.nav-cta::after, a.nav-cta::after {
  content: "→"; font-family: var(--sans);
  font-size: 13px; line-height: 1;
  transition: transform 0.25s ease;
}
.nav-links a.nav-cta:hover, a.nav-cta:hover {
  background: var(--gold); color: var(--ink) !important;
  transform: translateY(-1px);
}
.nav-links a.nav-cta:hover::after, a.nav-cta:hover::after { transform: translateX(3px); }
@media (max-width: 640px) { .nav-links a.nav-cta, a.nav-cta { display: none !important; } }

.nav-burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 12px 10px;
  border: 1px solid rgba(250,246,236,0.3); border-radius: 2px; background: transparent;
}
.nav-burger span { display: block; height: 1.5px; background: var(--cream); transition: transform 0.2s, opacity 0.2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--crimson); padding: 32px 24px; overflow-y: auto;
  transform: translateY(-110%); transition: transform 0.3s ease;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a {
  display: block; padding: 16px 0; border-bottom: 1px solid rgba(250,246,236,0.15);
  font-family: var(--serif); font-size: 24px; color: var(--cream);
  text-transform: none; letter-spacing: 0; font-weight: 400;
}
.nav-drawer .nav-drawer-group { border-bottom: 1px solid rgba(250,246,236,0.15); position: relative; }
/* Top-level parent row: parent-link + chevron button */
.nav-drawer .nav-drawer-group > a {
  border: none; padding: 16px 44px 16px 0;
  display: block; position: relative;
}
/* Chevron toggle — added by JS, positioned absolute inside .nav-drawer-group */
.nav-drawer .drawer-toggle {
  position: absolute; top: 8px; right: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--gold-light);
  font-family: var(--sans); font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.nav-drawer .drawer-toggle::before { content: "+"; }
.nav-drawer .nav-drawer-group.open .drawer-toggle { transform: rotate(45deg); color: var(--cream); }

/* Sub-menu — hidden by default, revealed when parent has .open */
.nav-drawer .nav-drawer-group .sub {
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(184,144,43,0.4);
  margin: 0 0 0 4px;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease;
}
.nav-drawer .nav-drawer-group.open .sub {
  max-height: 480px;
  opacity: 1;
  padding: 4px 0 14px 22px;
  margin: 0 0 12px 4px;
}
.nav-drawer .nav-drawer-group .sub a {
  padding: 8px 0; font-size: 15px; border: none;
  font-family: var(--sans); font-weight: 400;
  color: rgba(250,246,236,0.85);
}
.nav-drawer .nav-drawer-group .sub a::before {
  content: "→"; color: var(--gold-light); margin-right: 10px;
}
.nav-drawer .drawer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; padding: 14px 26px;
  background: transparent; color: var(--cream);
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  letter-spacing: 0.02em; text-transform: none;
  border: 1px solid var(--gold); border-radius: 999px;
  width: auto; border-bottom: 1px solid var(--gold);
}
.nav-drawer .drawer-cta::after { content: "→"; }

@media (min-width: 900px) {
  .nav-burger, .nav-drawer { display: none; }
  .nav-links { display: flex; }
}

/* ============================================================
   HERO — text left, map right (desktop) · text first, map below (mobile)
   ============================================================ */
.hero { background: var(--cream); padding-top: 100px; padding-bottom: var(--space-5); overflow: hidden; }
.hero-grid {
  display: flex; flex-direction: column;
  gap: var(--space-3); align-items: center;
}
.hero-body { text-align: center; order: 1; max-width: 760px; margin: 0 auto; }
.hero-illus { text-align: center; width: 100%; order: 2; }
.hero-illus img {
  width: 100%; max-width: 600px; margin: 0 auto;
  /* color matched to page — no blend mode, no plate */
}
.hero h1 { color: var(--crimson); margin-bottom: 20px; }
.hero .sublead { max-width: 520px; margin: 0 auto var(--space-4); }
.hero-cta { display: flex; flex-direction: column; gap: 12px; max-width: 360px; margin: 0 auto var(--space-3); }
.hero-cta .btn { width: 100%; }
.hero-trust {
  font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; margin-right: 8px; }

@media (min-width: 900px) {
  .hero { padding-top: 130px; padding-bottom: var(--space-7); }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.05fr;
    gap: var(--space-3);
    align-items: center;
  }
  .hero-body { order: 0; text-align: left; max-width: none; margin: 0; position: relative; z-index: 2; min-width: 0; }
  .hero-illus { order: 0; text-align: left; position: relative; z-index: 1; min-width: 0; }
  .hero-illus img {
    width: 110%;
    max-width: 110%;
    margin: 0 -20px 0 -80px;
  }
  .hero h1 { font-size: clamp(40px, 4vw, 58px); line-height: 1.08; }
  .hero .sublead { margin: 0 0 var(--space-4); max-width: none; }
  .hero-cta { flex-direction: row; max-width: none; margin: 0 0 var(--space-3); justify-content: flex-start; flex-wrap: wrap; }
  .hero-cta .btn { width: auto; min-width: 0; padding: 16px 22px; white-space: nowrap; }
  .hero-trust { text-align: left; }
}

/* ============================================================
   TRUST STRIP — dark band, 4 stats
   ============================================================ */
.trust { background: var(--ink); color: var(--cream); padding: var(--space-4) 0; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-4); text-align: center; }
.trust .stat { padding: 8px 4px; position: relative; }
.trust .n { font-family: var(--serif); font-style: italic; font-size: clamp(48px, 6vw, 72px); color: var(--gold-light); line-height: 1; margin-bottom: 10px; font-weight: 400; }
.trust .l { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(250,246,236,0.78); font-weight: 600; margin-bottom: 8px; }
.trust .c { font-family: var(--serif); font-style: italic; font-size: 13px; color: rgba(250,246,236,0.55); line-height: 1.4; max-width: 180px; margin: 0 auto; }
@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }
@media (min-width: 900px) { .trust { padding: var(--space-5) 0; } }

/* ============================================================
   FOUNDER — real photo left, note right
   ============================================================ */
.founder { background: var(--cream); }
.founder-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); align-items: center; }
.founder-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; max-width: 420px; margin: 0 auto; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.85) 80%);
  color: var(--cream);
}
.founder-photo .cap .role { font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 4px; }
.founder-photo .cap .name { font-family: var(--serif); font-size: 22px; color: var(--cream); }
.founder-text h2 { color: var(--crimson); margin-bottom: var(--space-2); }
.founder-text p { margin-bottom: 14px; font-size: 16px; line-height: 1.78; }
.founder-text p.opener::first-letter {
  font-family: var(--serif);
  font-style: italic;
  float: left;
  font-size: 88px;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--crimson);
  font-weight: 400;
}
.founder-text p em { font-style: italic; color: var(--crimson); font-weight: 500; }
.founder-signoff {
  margin-top: var(--space-3); padding-top: var(--space-2);
  border-top: 1px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--crimson);
}
.founder-signoff small {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--stone);
  margin-top: 6px;
}
@media (min-width: 900px) {
  .founder-grid { grid-template-columns: 0.7fr 1.3fr; gap: var(--space-7); align-items: start; }
  .founder-photo { max-width: 360px; margin-top: 60px; }
  .founder-text { padding-top: 0; }
  .founder-text h2 { font-size: clamp(32px, 3.6vw, 48px); max-width: 620px; }
}

/* ============================================================
   PAIN POINTS — typographic, dark dramatic section
   ============================================================ */
.pain { background: var(--forest); color: var(--cream); }
.pain .eyebrow { color: var(--gold-light); }
.pain h2 { color: var(--cream); }
.pain h2 .italic-gold { color: var(--gold-light); }
.pain .head-ornament img { filter: brightness(0) invert(1) opacity(0.85); mix-blend-mode: normal; }
.pain-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-4); }
.pain-item { padding-left: 22px; border-left: 2px solid var(--gold-light); }
.pain-item .q {
  font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.4;
  color: var(--cream); margin-bottom: 12px;
}
.pain-item .a { font-size: 14.5px; color: rgba(244,236,215,0.85); line-height: 1.7; }
.pain-item .a strong { color: var(--gold-light); font-weight: 600; }
.pain-cta { text-align: center; margin-top: var(--space-5); }
.pain-cta .btn-ghost { color: var(--cream); border-color: rgba(244,236,215,0.5); }
.pain-cta .btn-ghost:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
@media (min-width: 600px) { .pain-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); } }

/* ============================================================
   SERVICES — 2 lead cards with illustrations + 3 supporting (typographic)
   ============================================================ */
.services { background: var(--cream); }
.svc-lead { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-bottom: var(--space-6); }
.svc-card { text-align: left; }
.svc-illus {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.svc-illus img { max-width: 100%; max-height: 100%; object-fit: contain; }
.svc-card .tag {
  display: inline-block; font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  padding: 5px 11px; margin-bottom: 12px;
  background: var(--crimson); color: var(--cream);
}
.svc-card.usp .tag { background: var(--gold); color: var(--ink); }
.svc-card h3 { color: var(--crimson); margin-bottom: 12px; }
.svc-card .desc {
  font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.5;
  color: var(--ink); margin-bottom: 14px;
}
.svc-card ul { list-style: none; margin-bottom: 18px; }
.svc-card ul li {
  padding-left: 18px; position: relative; font-size: 14px; line-height: 1.6;
  color: var(--ink-soft); margin-bottom: 6px;
}
.svc-card ul li::before { content: "—"; color: var(--gold); position: absolute; left: 0; }
.svc-card .more {
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  color: var(--crimson);
}
.svc-card.usp .more { color: var(--gold-deep); }

.svc-supporting {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.svc-sup {
  padding: var(--space-3) 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
}
.svc-sup .n { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--gold); line-height: 1; }
.svc-sup h4 { color: var(--crimson); margin-bottom: 4px; }
.svc-sup p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (min-width: 600px) {
  .svc-lead { grid-template-columns: 1fr 1fr; }
  .svc-supporting { grid-template-columns: repeat(3, 1fr); }
  .svc-sup { border-bottom: none; border-right: 1px solid var(--line); padding: var(--space-3); }
  .svc-sup:last-child { border-right: none; }
}

/* ============================================================
   USP — cream, big map illustration
   ============================================================ */
.usp { background: var(--cream); }
.usp-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); align-items: center; }
.usp-illus { text-align: center; }
.usp-illus img { max-width: 100%; }
.usp-text h2 { color: var(--crimson); margin-bottom: 16px; }
.usp-text p { margin-bottom: 14px; font-size: 16px; }
.usp-jurisdictions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: var(--space-3) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.jur { text-align: center; padding: 18px 4px; border-right: 1px solid var(--line); }
.jur:last-child { border-right: none; }
.jur .code { font-family: var(--serif); font-size: 28px; color: var(--crimson); line-height: 1; }
.jur .lbl { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--stone); font-weight: 500; margin-top: 4px; }
@media (min-width: 900px) {
  .usp-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-6); }
}

/* ============================================================
   WHERE — 3 city illustrations
   ============================================================ */
.where { background: var(--cream); }
.where .head { margin-bottom: var(--space-3); }
.where-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: var(--space-3); }
.where-card { text-align: center; padding: 0; }
.where-card img { width: 100%; max-width: 300px; height: auto; object-fit: contain; margin: 0 auto -8px; }
.where-card .country { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 4px; }
.where-card .city { font-family: var(--serif); font-size: 26px; color: var(--crimson); line-height: 1; margin-bottom: 6px; }
.where-card .detail { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-soft); max-width: 280px; margin: 0 auto; line-height: 1.5; padding-bottom: var(--space-3); }
.where-note {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  text-align: center;
}
.where-note .lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  max-width: 620px; margin: 0 auto;
  line-height: 1.45;
}
.where-note .lead strong { font-style: normal; color: var(--crimson); font-weight: 500; }
@media (min-width: 700px) {
  .where-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
  .where-card img { max-width: 380px; margin-bottom: -6px; }
  .where-card .detail { padding-bottom: 0; }
}

/* ============================================================
   INDUSTRIES — 4 illustration tiles
   ============================================================ */
.industries { background: var(--forest); color: var(--cream); }
.industries .eyebrow { color: var(--gold-light); }
.industries h2 { color: var(--cream); }
.industries h2 .italic-gold { color: var(--gold-light); }
.industries .sublead { color: rgba(244,236,215,0.85); }
.industries .head-ornament img { filter: brightness(0) invert(1) opacity(0.85); mix-blend-mode: normal; }
.ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-5); }
.ind-tile { text-align: center; transition: transform 0.3s; }
.ind-tile:hover { transform: translateY(-6px); }
.ind-illus {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.22));
}
.ind-illus img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ind-tile .plate {
  font-family: var(--serif); font-style: italic; font-size: 11.5px;
  color: var(--gold-light); letter-spacing: 0.5px; opacity: 0.85;
  margin-bottom: 4px; display: block;
}
.ind-tile h4 { color: var(--cream); margin-bottom: 6px; }
.ind-tile p { font-size: 13px; line-height: 1.55; color: rgba(244,236,215,0.78); max-width: 240px; margin: 0 auto; }
@media (min-width: 800px) { .ind-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   TESTIMONIAL — dark dramatic pull-quote
   ============================================================ */
.testimonial { background: var(--ink); color: var(--cream); padding: var(--space-7) 0; text-align: center; position: relative; }
.testimonial::before {
  content: "“"; position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 160px; color: var(--gold); opacity: 0.18; line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.8vw, 34px); line-height: 1.4; color: var(--cream);
  max-width: 780px; margin: 0 auto 22px; position: relative; z-index: 1;
}
.testimonial cite {
  font-style: normal; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(250,246,236,0.7); font-weight: 500;
}
.testimonial cite strong { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   STORY — cream, oak tree illustration left, text right
   ============================================================ */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); align-items: center; }
.story-illus { text-align: center; }
.story-illus img { max-width: 420px; margin: 0 auto; }
.story-text h2 { color: var(--crimson); margin-bottom: 16px; }
.story-text p { margin-bottom: 14px; font-size: 16px; }
.story-text p em { font-style: italic; color: var(--crimson); font-weight: 500; }
.story-text .more {
  display: inline-block; margin-top: 12px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  color: var(--crimson); border-bottom: 1px solid var(--gold); padding-bottom: 4px;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.8fr 1.2fr; gap: var(--space-7); }
  .story-illus img { max-width: 100%; }
}

/* ============================================================
   PROCESS — 4 numbered editorial steps
   ============================================================ */
.process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-top: var(--space-4); }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.process-step .n { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--gold); line-height: 1; }
.process-step h4 { color: var(--crimson); margin-bottom: 6px; font-size: 19px; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
@media (min-width: 700px) { .process-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-6); } }
@media (min-width: 1100px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq { background: var(--cream); }
.faq-list { margin-top: var(--space-4); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  width: 100%; padding: 22px 0; text-align: left;
  font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink);
}
.faq-q .toggle {
  font-family: var(--sans); font-weight: 300; font-size: 28px; line-height: 1; color: var(--crimson);
  transition: transform 0.2s; flex-shrink: 0;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-a p { font-size: 14.5px; line-height: 1.7; }

/* ============================================================
   CTA — crimson, big, single action
   ============================================================ */
.cta { background: var(--crimson); color: var(--cream); text-align: center; padding: var(--space-7) 0; position: relative; overflow: hidden; }
.cta-door {
  position: absolute;
  right: -50px; bottom: -60px;
  width: 360px; height: auto;
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.cta-door-left {
  position: absolute;
  left: -70px; top: -60px;
  width: 320px; height: auto;
  opacity: 0.28;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1);
}
.cta .wrap-narrow { position: relative; z-index: 2; }
.cta-mark { width: 64px; margin: 0 auto var(--space-3); position: relative; z-index: 2; }
.cta-mark img { width: 100%; }
@media (min-width: 900px) {
  .cta-door { width: 540px; right: -80px; bottom: -100px; }
  .cta-door-left { width: 460px; left: -120px; top: -100px; }
}
.cta h2 { color: var(--cream); margin-bottom: 16px; }
.cta h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.cta p {
  font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5;
  color: rgba(250,246,236,0.88); max-width: 540px; margin: 0 auto var(--space-4);
}
.cta-email { margin-top: 18px; font-size: 12px; letter-spacing: 1px; color: rgba(250,246,236,0.7); }
.cta-email a { color: var(--gold-light); text-decoration: underline; }

/* ============================================================
   FOOTER — ink
   ============================================================ */
footer { background: var(--ink); color: rgba(250,246,236,0.7); padding: var(--space-6) 0 100px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-5); }
.footer-brand img { width: 200px; margin-bottom: 16px; }
.footer-brand p { font-family: var(--serif); font-style: italic; font-size: 15px; color: rgba(250,246,236,0.7); max-width: 320px; line-height: 1.5; }
.footer-col h5 { font-family: var(--sans); font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(250,246,236,0.7); }
.footer-col a:hover { color: var(--cream); }
.footer-bar {
  border-top: 1px solid rgba(250,246,236,0.12);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 10px; text-align: center;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(250,246,236,0.5);
}
.footer-bar .offices { display: flex; gap: 14px; justify-content: center; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .footer-meta { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
}
@media (min-width: 700px) { .footer-bar { flex-direction: row; justify-content: space-between; } }
@media (min-width: 900px) { footer { padding-bottom: var(--space-4); } }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; gap: 8px;
  background: var(--cream); border-top: 1px solid var(--line);
  padding: 12px 14px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.sticky-cta .btn { flex: 1; min-height: 48px; padding: 14px 14px; font-size: 10.5px; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
/* ============================================================
   INSIGHTS HUB + ARTICLE PAGES
   ============================================================ */

/* Hub */
.insights-hero { padding: 130px 0 var(--space-5); background: var(--cream); text-align: center; }
.insights-hero h1 { color: var(--crimson); font-size: clamp(40px, 5vw, 64px); margin-bottom: 16px; }
.insights-hero h1 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.insights-hero .sublead { max-width: 600px; margin: 0 auto; }

.insights-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-top: var(--space-5); }
@media (min-width: 700px) { .insights-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .insights-grid { grid-template-columns: 1fr 1fr 1fr; } }

.insights-card {
  background: transparent;
  border-top: 1px solid var(--line);
  padding: var(--space-3) 0;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.insights-card:hover { opacity: 1; }
.insights-card:hover h3 { color: var(--gold-deep); }
.insights-card .meta {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  margin-bottom: 12px;
}
.insights-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: var(--crimson); line-height: 1.2; margin-bottom: 10px;
  transition: color 0.2s;
}
.insights-card .excerpt {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.55; color: var(--ink-soft);
  margin-bottom: 14px;
}
.insights-card .read {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--crimson); font-weight: 600;
}

/* Featured */
.insights-feature {
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
  padding: var(--space-5) 0; align-items: center;
  border-top: 2px solid var(--gold); border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) { .insights-feature { grid-template-columns: 1fr 1.2fr; gap: var(--space-6); } }
.insights-feature .meta { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 14px; }
.insights-feature h2 { color: var(--crimson); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.insights-feature h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.insights-feature .excerpt { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 20px; }
.insights-feature .illus { text-align: center; }
.insights-feature .illus img { max-width: 360px; margin: 0 auto; mix-blend-mode: multiply; }

/* Article page */
.article-header {
  padding: 130px 0 var(--space-5);
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.article-header .crumb {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  margin-bottom: 18px;
}
.article-header .crumb a { color: var(--gold-deep); }
.article-header h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1; color: var(--crimson);
  max-width: 880px; margin: 0 auto 18px;
}
.article-header .deck {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.45;
  color: var(--ink-soft); max-width: 720px; margin: 0 auto;
}
.article-byline {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: var(--space-4);
}
.article-byline .avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--ink);
}
.article-byline .avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-byline .info { text-align: left; }
.article-byline .name {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--crimson); line-height: 1.2;
}
.article-byline .meta {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stone); font-weight: 500;
}

/* Article body */
.article-body {
  padding: var(--space-6) 0;
  background: var(--cream);
}
.article-content {
  max-width: 740px; margin: 0 auto; padding: 0 22px;
}
.article-content p {
  font-family: var(--serif); font-size: 18.5px; line-height: 1.78;
  color: var(--ink); margin-bottom: var(--space-3);
}
.article-content p.opener::first-letter {
  font-family: var(--serif); font-style: italic;
  float: left; font-size: 84px; line-height: 0.85;
  padding: 6px 14px 0 0; color: var(--crimson); font-weight: 400;
}
.article-content h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 38px);
  color: var(--crimson); margin: var(--space-5) 0 var(--space-2);
  font-weight: 500; line-height: 1.15;
}
.article-content h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.article-content h3 {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 24px);
  color: var(--ink); margin: var(--space-4) 0 12px;
  font-weight: 500; font-style: italic;
}
.article-content ul, .article-content ol {
  margin: var(--space-2) 0 var(--space-3) 22px;
  font-family: var(--serif); font-size: 17.5px; line-height: 1.7;
  color: var(--ink);
}
.article-content li { margin-bottom: 10px; }
.article-content a {
  color: var(--crimson); text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-content a:hover { color: var(--gold-deep); }
.article-content strong { font-weight: 600; color: var(--ink); }
.article-content em { font-style: italic; }
.article-content blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.45;
  color: var(--crimson);
  margin: var(--space-5) 0;
  padding-left: 24px; border-left: 3px solid var(--gold);
}
.article-content .callout {
  background: var(--cream-soft); border-left: 4px solid var(--crimson);
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  margin: var(--space-4) 0;
}
.article-content .callout .lbl {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--crimson); font-weight: 700;
  margin-bottom: 8px;
}
.article-content .callout p { margin-bottom: 8px; font-size: 16px; }
.article-content .callout p:last-child { margin-bottom: 0; }
.article-content table {
  width: 100%; border-collapse: collapse;
  margin: var(--space-3) 0;
  font-family: var(--sans); font-size: 14px;
}
.article-content table th, .article-content table td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.article-content table th {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 700;
  background: var(--cream-soft);
}

/* Article TOC */
.article-toc {
  background: var(--cream-soft);
  padding: var(--space-3);
  margin-bottom: var(--space-4);
  border-left: 3px solid var(--gold);
}
.article-toc .lbl {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 700;
  margin-bottom: 10px;
}
.article-toc ol {
  list-style: none; margin: 0; padding: 0;
  counter-reset: toc;
}
.article-toc li {
  counter-increment: toc;
  margin-bottom: 4px;
  font-family: var(--serif); font-size: 15px; line-height: 1.5;
}
.article-toc li::before {
  content: counter(toc, upper-roman) ". ";
  font-style: italic; color: var(--gold-deep); margin-right: 4px;
}
.article-toc a { color: var(--ink); text-decoration: none; }
.article-toc a:hover { color: var(--crimson); }

/* Article footer / author bio */
.article-author-bio {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 2px solid var(--gold);
  display: grid; grid-template-columns: 1fr; gap: 18px; align-items: center;
}
@media (min-width: 600px) { .article-author-bio { grid-template-columns: 100px 1fr; } }
.article-author-bio .avatar-lg {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden; background: var(--ink);
}
.article-author-bio .avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.article-author-bio .name {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--crimson); margin-bottom: 6px;
}
.article-author-bio .bio {
  font-family: var(--serif); font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
}

/* Related articles */
.related-section { background: var(--cream-soft); padding: var(--space-6) 0; }
.related-section .head { margin-bottom: var(--space-4); }
.related-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 700px) { .related-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); } }

/* ============================================================
   TEAM SECTION — the people behind DMJF
   ============================================================ */
.team-section { background: var(--cream); padding: var(--space-6) 0; }
.team-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
  margin-top: var(--space-4);
}
@media (min-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: 1fr 1fr 1fr; } }

.team-card { text-align: center; }
.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: var(--space-3);
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.02); }
.team-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 60%, rgba(26,26,26,0.55) 100%);
  pointer-events: none;
}
.team-photo .badge {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  color: var(--cream); text-align: left; z-index: 2;
}
.team-photo .badge .role {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-light); font-weight: 600;
  margin-bottom: 4px;
}
.team-photo .badge .name {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--cream); line-height: 1.1;
}

.team-card .team-body {
  text-align: left; max-width: 380px; margin: 0 auto;
}
.team-card .team-body .lead {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; line-height: 1.5; color: var(--crimson);
  margin-bottom: 14px;
}
.team-card .team-body p {
  font-size: 14.5px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 10px;
}
.team-card .team-body p:last-child { margin-bottom: 0; }
.team-card .team-body p strong { color: var(--ink); font-weight: 600; }

/* Featured / senior card can be full-width on first row */
.team-card.featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
  text-align: left;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-3);
}
@media (min-width: 800px) {
  .team-card.featured {
    grid-template-columns: 0.6fr 1fr;
    gap: var(--space-5);
    align-items: center;
  }
  .team-card.featured .team-photo { margin: 0; max-width: none; }
  .team-card.featured .team-body { max-width: none; }
  .team-card.featured .team-body .lead { font-size: 20px; }
}

/* ============================================================
   HOMEPAGE — where-card linking + arrow
   ============================================================ */
a.where-card {
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
a.where-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(122,20,40,0.14);
  border-color: var(--gold);
}
.where-card .where-arrow {
  display: inline-block; margin-top: 14px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}
a.where-card:hover .where-arrow {
  color: var(--crimson);
  transform: translateX(4px);
}

/* ============================================================
   HOMEPAGE — service cards clickable
   ============================================================ */
a.service-card {
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
a.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(122,20,40,0.12);
  border-color: var(--gold);
}
a.service-card .service-arrow {
  display: inline-block; margin-top: 14px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}
a.service-card:hover .service-arrow {
  color: var(--crimson);
  transform: translateX(4px);
}

/* ============================================================
   HOMEPAGE — supporting service tiles clickable
   ============================================================ */
a.svc-sup {
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, background 0.3s ease;
}
a.svc-sup:hover {
  transform: translateY(-3px);
  background: rgba(184,144,43,0.06);
}
.svc-sup-arrow {
  display: inline-block; margin-top: 12px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}
a.svc-sup:hover .svc-sup-arrow {
  color: var(--crimson);
  transform: translateX(4px);
}
.svc-card h3 a { color: inherit; transition: color 0.2s; }
.svc-card h3 a:hover { color: var(--crimson); }

/* ============================================================
   HOMEPAGE — "Inside the office" band
   ============================================================ */
.inside-office { background: var(--cream); padding: var(--space-6) 0; }
@media (min-width: 900px) { .inside-office { padding: var(--space-7) 0; } }
.inside-office-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center;
}
@media (min-width: 900px) {
  .inside-office-grid { grid-template-columns: 1.05fr 1fr; gap: var(--space-6); }
}
.inside-photo {
  margin: 0; position: relative;
  border: 1px solid rgba(184,144,43,0.3);
  padding: 12px;
  background: var(--cream-soft);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.inside-photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.inside-photo figcaption {
  margin-top: 14px; padding: 0 6px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--gold-deep); text-align: center;
}
.inside-photo figcaption::before, .inside-photo figcaption::after {
  content: "— "; opacity: 0.5;
}
.inside-photo figcaption::after { content: " —"; }
.inside-text h2 { color: var(--crimson); margin-bottom: 18px; }
.inside-text .eyebrow { margin-bottom: 14px; }
.inside-text p { margin-bottom: 16px; font-size: 16.5px; line-height: 1.78; }
.inside-text .more {
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--crimson); font-weight: 600;
  display: inline-block; margin-top: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px; transition: color 0.2s, border-color 0.2s;
}
.inside-text .more:hover { color: var(--gold-deep); border-color: var(--crimson); }
