:root {
    /* Warm editorial palette anchored on the logo's deep indigo + periwinkle */
    --bg:        #F4EEE3;       /* warm cream paper */
    --bg-soft:   #EBE3D4;       /* deeper paper */
    --ink:       #1A1230;       /* near-black violet */
    --ink-soft:  #463A60;       /* muted violet for body */
    --rule:      #C9BFAC;       /* hairline rule */
    --purple:    #2A1B6F;       /* deep brand purple (diamond) */
    --purple-2:  #4A2FB0;       /* mid brand purple */
    --peri:      #8B7FE8;       /* periwinkle (dove) */
    --gold:      #B08A4A;       /* warm brass accent — used sparingly */
    --maxw: 1280px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
  body {
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.01em; }
  .eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--purple);
  }
  .eyebrow .dot {
    display: inline-block; width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; margin: 0 12px 2px 0; vertical-align: middle;
  }
  a { color: inherit; text-decoration: none; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

  /* ── NAV ─────────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(244,238,227,0.92);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--rule);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 40px; max-width: var(--maxw); margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 14px; }
  .nav-end { display: flex; align-items: center; gap: 18px; }
  .brand img { height: 52px; width: auto; display: block; }

  /* hamburger menu button */
  .menu-btn {
    display: inline-flex; align-items: center; gap: 14px;
    background: transparent; border: 0; cursor: pointer;
    padding: 10px 4px; color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
  }
  .menu-btn .bars {
    display: inline-flex; flex-direction: column; gap: 5px;
    width: 26px;
  }
  .menu-btn .bars span {
    display: block; height: 1.5px; background: var(--ink);
    transition: transform .35s ease, opacity .25s ease, width .3s ease;
    transform-origin: center;
  }
  .menu-btn .bars span:nth-child(1) { width: 100%; }
  .menu-btn .bars span:nth-child(2) { width: 70%; align-self: flex-end; }
  .menu-btn:hover .bars span:nth-child(2) { width: 100%; }

  .nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 999px;
    background: var(--purple); color: #fff;
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    transition: background .2s ease;
  }
  .nav-cta:hover { background: var(--purple-2); }
  .nav-cta .wa {
    width: 8px; height: 8px; border-radius: 50%; background: #6EE7A8;
    box-shadow: 0 0 0 4px rgba(110,231,168,.18);
  }

  /* ── MENU OVERLAY ────────────────────────────────────── */
  .menu-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: var(--ink);
    color: #EDE6F8;
    opacity: 0; visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
    display: grid; grid-template-rows: auto 1fr auto;
    overflow: hidden;
  }
  .menu-overlay.open { opacity: 1; visibility: visible; }
  .menu-overlay::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139,127,232,0.18), transparent 60%);
    pointer-events: none;
  }
  .menu-overlay::after {
    content: 'Ditshaba';
    position: absolute; left: -40px; bottom: -120px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 360px; line-height: 1;
    color: rgba(139,127,232,0.05);
    pointer-events: none; user-select: none;
    white-space: nowrap;
  }
  .menu-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative; z-index: 2;
  }
  .menu-head .brand img {
    height: 52px;
    filter: brightness(0) invert(1);
  }
  .menu-close {
    background: transparent; border: 0; color: #EDE6F8; cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 14px;
    padding: 10px 4px;
  }
  .menu-close .x {
    position: relative; width: 22px; height: 22px;
  }
  .menu-close .x::before,
  .menu-close .x::after {
    content: ''; position: absolute; left: 0; top: 50%; width: 100%;
    height: 1.5px; background: #EDE6F8;
  }
  .menu-close .x::before { transform: rotate(45deg); }
  .menu-close .x::after  { transform: rotate(-45deg); }

  .menu-body {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px;
    padding: 80px 80px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .menu-nav { display: flex; flex-direction: column; gap: 6px; }
  .menu-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-style: italic;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.05; color: #fff;
    letter-spacing: -0.01em;
    transition: color .2s ease, transform .35s cubic-bezier(.22,.61,.36,1), padding-left .35s ease;
    transform: translateY(20px); opacity: 0;
    display: inline-flex; align-items: baseline; gap: 22px;
    width: max-content;
  }
  .menu-overlay.open .menu-nav a {
    transform: translateY(0); opacity: 1;
  }
  .menu-overlay.open .menu-nav a:nth-child(1) { transition-delay: .10s; }
  .menu-overlay.open .menu-nav a:nth-child(2) { transition-delay: .16s; }
  .menu-overlay.open .menu-nav a:nth-child(3) { transition-delay: .22s; }
  .menu-overlay.open .menu-nav a:nth-child(4) { transition-delay: .28s; }
  .menu-overlay.open .menu-nav a:nth-child(5) { transition-delay: .34s; }
  .menu-nav a .num {
    font-family: 'Manrope', sans-serif;
    font-style: normal; font-weight: 500;
    font-size: 12px; letter-spacing: 0.2em;
    color: var(--peri); transform: translateY(-18px);
  }
  .menu-nav a:hover { color: var(--peri); padding-left: 24px; }

  .menu-side {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 60px;
    color: rgba(237,230,248,0.7);
    display: flex; flex-direction: column; gap: 32px;
  }
  .menu-side h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--peri);
    margin: 0 0 10px;
  }
  .menu-side p { margin: 0; font-size: 14px; line-height: 1.7; }
  .menu-side a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 1px; }
  .menu-side a:hover { color: var(--peri); }

  .menu-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px; letter-spacing: 0.1em;
    color: rgba(237,230,248,0.5);
    position: relative; z-index: 2;
  }
  .menu-foot .social { display: flex; gap: 24px; }
  .menu-foot .social a:hover { color: #fff; }

  body.menu-open { overflow: hidden; }

  /* nav-style: inline shows compact links and hides the menu button */
  body[data-nav-style="inline"] .menu-btn { display: none; }
  body[data-nav-style="inline"] .inline-links { display: flex; }
  body[data-nav-style="menu"]   .inline-links { display: none; }
  .inline-links {
    display: none;
    gap: 32px;
  }
  .inline-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    color: var(--ink-soft); text-transform: uppercase;
  }
  .inline-links a:hover { color: var(--purple); }

  /* anchor-style: paper variant flips the philosophy section to cream */
  body[data-anchor-style="paper"] .anchor {
    background: var(--bg-soft);
    color: var(--ink);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  body[data-anchor-style="paper"] .anchor::before { display: none; }
  body[data-anchor-style="paper"] .anchor h2 { color: var(--ink); }
  body[data-anchor-style="paper"] .anchor h2 em { color: var(--purple); }
  body[data-anchor-style="paper"] .anchor .body { color: var(--ink-soft); }
  body[data-anchor-style="paper"] .anchor .body strong { color: var(--ink); }
  body[data-anchor-style="paper"] .anchor .label { color: var(--purple); }
  body[data-anchor-style="paper"] .anchor-mark { color: var(--ink-soft); }
  body[data-anchor-style="paper"] .anchor-mark .line { background: var(--rule); }

  /* ── HERO ─────────────────────────────────────────────── */
  .hero { padding: 64px 0 96px; position: relative; overflow: hidden; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 24px 0 28px;
    color: var(--ink);
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: italic; color: var(--purple); font-weight: 400;
  }
  .hero p.lead {
    font-size: 17px; line-height: 1.65; color: var(--ink-soft);
    max-width: 540px; margin: 0 0 36px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 999px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
    transition: transform .15s ease, background .2s ease, color .2s ease;
  }
  .btn-primary { background: var(--purple); color: #fff; }
  .btn-primary:hover { background: var(--purple-2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border: 1px solid var(--ink); 
  }
  .btn-ghost:hover { background: var(--ink); color: var(--bg); }
  .btn .arr { font-size: 16px; transition: transform .2s ease; }
  .btn:hover .arr { transform: translateX(3px); }

  /* hero meta strip */
  .hero-meta {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 1px solid var(--rule);
    padding-top: 28px;
  }
  .hero-meta div { padding-right: 28px; }
  .hero-meta .k {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; line-height: 1; color: var(--purple);
    font-weight: 500;
  }
  .hero-meta .v {
    font-size: 12px; color: var(--ink-soft); margin-top: 8px;
    letter-spacing: 0.08em; text-transform: uppercase;
  }

  /* hero portrait card */
  .hero-art {
    position: relative; aspect-ratio: 5/6; width: 100%;
  }
  .hero-art .frame {
    position: absolute; inset: 0;
    background: #1A1140;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(26, 18, 48, 0.55);
  }
  .hero-art .frame img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 55% 60%;
    /* gentle warm desaturation + softened opacity so the photo sits inside the editorial palette */
    filter: saturate(0.78) contrast(1.02);
    opacity: 0.94;
  }
  /* warm cream wash over the top, deep purple shadow at the bottom — ties the photo to the brand */
  .hero-art .frame::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(244,238,227,0.10) 0%, rgba(244,238,227,0) 30%, rgba(26,18,48,0.0) 60%, rgba(26,18,48,0.55) 100%),
      linear-gradient(160deg, rgba(42,27,111,0.18) 0%, rgba(42,27,111,0) 55%);
    pointer-events: none;
  }
  /* subtle caption tucked at the bottom */
  .hero-art .caption {
    position: absolute; left: 24px; right: 24px; bottom: 22px;
    color: rgba(255,255,255,0.9);
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 15px; line-height: 1.35;
    letter-spacing: 0.01em;
    z-index: 2;
    text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  }
  .hero-art .caption::before {
    content: ''; display: inline-block;
    width: 22px; height: 1px; background: rgba(255,255,255,0.7);
    vertical-align: middle; margin-right: 10px; margin-bottom: 3px;
  }

  /* floating quiet quote chip */
  .quiet-chip {
    position: absolute; left: -36px; bottom: 56px;
    background: var(--bg);
    border: 1px solid var(--rule);
    padding: 18px 22px; border-radius: 4px;
    max-width: 240px;
    box-shadow: 0 14px 40px -20px rgba(26,18,48,0.25);
  }
  .quiet-chip .q {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 18px; line-height: 1.35; color: var(--ink);
  }
  .quiet-chip .src {
    margin-top: 10px; font-size: 11px; color: var(--ink-soft);
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* faint background mark behind hero */
  .hero::before {
    content: '';
    position: absolute; top: 120px; right: -180px;
    width: 600px; height: 600px;
    background: radial-gradient(circle at center, rgba(139,127,232,0.10), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .hero .container { position: relative; z-index: 1; }

  /* ── PHILOSOPHY ANCHOR ───────────────────────────────── */
  .anchor {
    background: var(--purple);
    color: #EDE6F8;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .anchor::before {
    content: '';
    position: absolute; left: -160px; bottom: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(139,127,232,0.22), transparent 60%);
    pointer-events: none;
  }
  .anchor .container { position: relative; }
  .anchor-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
    align-items: start;
  }
  .anchor .label {
    color: var(--peri);
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
  }
  .anchor h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-size: 56px; line-height: 1.05;
    margin: 18px 0 0;
    color: #fff;
    text-wrap: balance;
  }
  .anchor h2 em { font-style: italic; color: var(--peri); }
  .anchor .body { color: rgba(237,230,248,0.78); font-size: 16.5px; line-height: 1.75; }
  .anchor .body p + p { margin-top: 18px; }
  .anchor .body strong { color: #fff; font-weight: 600; }
  .anchor-mark {
    margin-top: 36px;
    display: flex; align-items: center; gap: 18px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: rgba(237,230,248,0.6); font-size: 15px;
  }
  .anchor-mark .line { flex: 0 0 60px; height: 1px; background: rgba(139,127,232,0.5); }

  /* ── CREDIBILITY ROW ─────────────────────────────────── */
  .creds { padding: 90px 0; border-bottom: 1px solid var(--rule); }
  .creds-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .cred {
    padding: 0 44px;
    border-left: 1px solid var(--rule);
  }
  .cred:first-child { border-left: 0; padding-left: 0; }
  .cred:last-child { padding-right: 0; }
  .cred .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; color: var(--gold); font-style: italic;
    letter-spacing: 0.1em;
  }
  .cred h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 30px; line-height: 1.15;
    margin: 18px 0 14px; color: var(--ink);
  }
  .cred p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

  /* ── SERVICES ─────────────────────────────────────────── */
  .services { padding: 120px 0 100px; }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 72px;
  }
  .services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-size: 64px; line-height: 1.02;
    margin: 16px 0 0; color: var(--ink); text-wrap: balance;
  }
  .services-header h2 em { font-style: italic; color: var(--purple); }
  .services-header .intro {
    color: var(--ink-soft); font-size: 16px; line-height: 1.7;
    max-width: 520px;
  }

  .service-list {
    border-top: 1px solid var(--ink);
  }
  .service {
    display: grid;
    grid-template-columns: 80px 1fr 1.6fr 80px;
    gap: 40px;
    padding: 34px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
    transition: background .25s ease, padding .25s ease;
    cursor: pointer;
  }
  .service:hover {
    background: linear-gradient(to right, transparent, rgba(42,27,111,0.025) 30%, rgba(42,27,111,0.04) 70%, transparent);
    padding-left: 14px; padding-right: 14px;
  }
  .service .idx {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 18px;
    color: var(--gold);
    padding-top: 8px;
  }
  .service h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 30px; line-height: 1.1;
    margin: 0; color: var(--ink); letter-spacing: -0.01em;
  }
  .service .desc {
    color: var(--ink-soft); font-size: 15px; line-height: 1.65;
    margin: 0;
    padding-top: 8px;
  }
  .service .go {
    display: grid; place-items: center;
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid var(--ink);
    color: var(--ink);
    margin-left: auto;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .service:hover .go { background: var(--purple); color: #fff; border-color: var(--purple); transform: rotate(-45deg); }

  /* services bottom note */
  .services-foot {
    margin-top: 56px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
  }
  .services-foot .note {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 20px; color: var(--ink-soft); max-width: 540px;
  }

  /* ── FOOTER ───────────────────────────────────────────── */
  footer {
    background: var(--ink);
    color: #C9C1DC;
    padding: 96px 0 0;
    position: relative;
  }
  footer .top {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  footer .brand-block { max-width: 420px; }
  footer .brand-block .logo-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  }
  footer .brand-block .logo-row img {
    height: 52px; width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  footer .brand-block .logo-row .t .name {
    font-family: 'Manrope', sans-serif; font-weight: 700;
    letter-spacing: 0.18em; font-size: 15px; color: #fff;
  }
  footer .brand-block .logo-row .t .sub {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 13px; color: var(--peri); margin-top: 4px;
  }
  footer .brand-block .addr {
    font-size: 14px; line-height: 1.7; color: #B0A6CC;
  }
  footer .brand-block .contact {
    margin-top: 22px; font-size: 14px; color: #DAD2F0;
  }
  footer .brand-block .contact a {
    display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 2px; margin-right: 18px;
  }
  footer h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--peri);
    margin: 0 0 24px;
  }
  footer .foot-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  }
  footer .links { display: flex; flex-direction: column; gap: 14px; }
  footer .links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: #E7E0F7; letter-spacing: 0;
    font-weight: 500;
    transition: color .2s ease, transform .2s ease;
    width: max-content;
  }
  footer .links a:hover { color: var(--peri); transform: translateX(4px); }

  footer .quote-col {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 60px;
  }
  footer .quote-col .q {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 24px; line-height: 1.35; color: #fff;
    text-wrap: balance;
  }
  footer .quote-col .src {
    margin-top: 20px; font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--peri);
  }

  footer .bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0 36px; font-size: 12px;
    color: #8C82AB; letter-spacing: 0.04em;
    flex-wrap: wrap; gap: 12px;
  }
  footer .bar a { color: var(--peri); border-bottom: 1px dotted rgba(139,127,232,.5); padding-bottom: 1px; }
  footer .bar a:hover { color: #fff; }

  /* Decorative footer mark */
  footer .water {
    position: absolute; right: -120px; top: 40px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 240px; line-height: 1;
    color: rgba(139,127,232,0.05);
    pointer-events: none;
    user-select: none;
  }

  /* ── responsive ──────────────────────────────────────── */
  @media (max-width: 980px) {
    .nav-cta { display: none; }
    .inline-links { display: none !important; }
    .menu-body { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
    .menu-side { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .anchor-grid { grid-template-columns: 1fr; gap: 28px; }
    .creds-grid { grid-template-columns: 1fr; gap: 36px; }
    .cred { border-left: 0; border-top: 1px solid var(--rule); padding: 28px 0 0; }
    .cred:first-child { border-top: 0; padding-top: 0; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .service { grid-template-columns: 40px 1fr 48px; }
    .service .desc { grid-column: 2 / 4; padding-top: 0; }
    footer .top { grid-template-columns: 1fr; gap: 48px; }
    footer .quote-col { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 36px; }
    .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
    .container { padding: 0 24px; }
    .nav-inner { padding: 14px 24px; }
    .quiet-chip { display: none; }
  }

  /* ════════════════════════════════════════════════════════════════════
     PAGE CHROME — page hero band (small hero used on inner pages)
     ════════════════════════════════════════════════════════════════════ */
  .inline-links a.is-active { color: var(--purple); }
  .menu-nav a.is-active { color: var(--peri); padding-left: 24px; }

  .page-hero {
    position: relative; padding: 80px 0 96px;
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; top: -120px; right: -160px;
    width: 540px; height: 540px;
    background: radial-gradient(circle at center, rgba(139,127,232,0.10), transparent 60%);
    pointer-events: none;
  }
  .page-hero .container { position: relative; }
  .page-hero .crumbs {
    font-family: 'Manrope', sans-serif; font-size: 11px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--ink-soft);
  }
  .page-hero .crumbs a { color: var(--ink-soft); }
  .page-hero .crumbs a:hover { color: var(--purple); }
  .page-hero .crumbs .sep { margin: 0 10px; color: var(--rule); }
  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: clamp(44px, 5.6vw, 80px);
    line-height: 1.05; letter-spacing: -0.02em;
    color: var(--ink);
    margin: 22px 0 0; text-wrap: balance;
    max-width: 18ch;
  }
  .page-hero h1 em { font-style: italic; color: var(--purple); font-weight: 400; }
  .page-hero .kicker {
    margin-top: 32px;
    max-width: 640px;
    font-size: 17px; line-height: 1.65;
    color: var(--ink-soft);
  }

  /* generic editorial section */
  .editorial { padding: 100px 0; }
  .editorial-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
    align-items: start;
  }
  .editorial h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 48px; line-height: 1.05;
    margin: 12px 0 0; color: var(--ink); text-wrap: balance;
  }
  .editorial h2 em { font-style: italic; color: var(--purple); }
  .editorial .prose { color: var(--ink-soft); font-size: 16.5px; line-height: 1.75; }
  .editorial .prose p { margin: 0 0 18px; }
  .editorial .prose strong { color: var(--ink); font-weight: 600; }

  /* portrait card for founder image */
  .portrait {
    position: relative; aspect-ratio: 4/5; width: 100%;
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    border-radius: 6px; overflow: hidden;
  }
  .portrait img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: saturate(.82) contrast(1.02);
    opacity: .94;
  }
  .portrait .ph {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(42,27,111,0.06) 0 12px,
      transparent 12px 24px
    );
    display: grid; place-items: center;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11px; letter-spacing: 0.06em;
    color: var(--ink-soft);
    text-align: center; padding: 24px;
  }
  .portrait .ph .tag {
    display: inline-block; padding: 4px 10px; border: 1px solid var(--rule);
    border-radius: 999px; margin-bottom: 12px; font-size: 10px;
    background: var(--bg);
  }
  .portrait-caption {
    margin-top: 16px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 16px; color: var(--ink-soft);
  }
  .portrait-caption .name {
    display: block; font-style: normal; font-family: 'Manrope', sans-serif;
    font-weight: 600; font-size: 12px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--purple);
    margin-bottom: 6px;
  }

  /* core values trio */
  .values {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ink);
  }
  .value {
    padding: 40px 36px 36px 0;
    border-right: 1px solid var(--rule);
  }
  .value:last-child { border-right: 0; padding-right: 0; }
  .value:not(:first-child) { padding-left: 36px; }
  .value .num {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 14px; color: var(--gold); letter-spacing: 0.1em;
  }
  .value h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 32px; line-height: 1.1;
    margin: 16px 0 12px; color: var(--ink);
  }
  .value p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 0; }

  /* ════════════════════════════════════════════════════════════════════
     SERVICES PAGE — detail grid
     ════════════════════════════════════════════════════════════════════ */
  .svc-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-top: 1px solid var(--ink);
  }
  .svc-card {
    padding: 48px 44px 48px 0;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
  }
  .svc-card:nth-child(2n) { padding-right: 0; padding-left: 44px; border-right: 0; }
  .svc-card:nth-last-child(-n+2) { border-bottom: 0; }
  .svc-card .idx {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 14px; color: var(--gold); letter-spacing: 0.1em;
  }
  .svc-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 32px; line-height: 1.1;
    margin: 14px 0 16px; color: var(--ink); letter-spacing: -0.01em;
  }
  .svc-card p {
    color: var(--ink-soft); font-size: 15.5px; line-height: 1.7;
    margin: 0 0 22px;
  }
  .svc-card .feats {
    list-style: none; padding: 0; margin: 0 0 24px;
    border-top: 1px solid var(--rule);
  }
  .svc-card .feats li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: baseline; gap: 14px;
  }
  .svc-card .feats li::before {
    content: ''; flex: 0 0 14px; height: 1px;
    background: var(--gold);
    transform: translateY(-4px);
  }
  .svc-card .link {
    font-family: 'Manrope', sans-serif; font-weight: 600;
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--purple);
    display: inline-flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--purple);
    padding-bottom: 4px;
  }
  .svc-card .link .arr { transition: transform .2s ease; }
  .svc-card .link:hover .arr { transform: translateX(4px); }

  /* a single full-width call to action band */
  .cta-band {
    background: var(--ink);
    color: #EDE6F8;
    padding: 80px 0;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute; right: -160px; top: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(139,127,232,0.22), transparent 60%);
    pointer-events: none;
  }
  .cta-band .container {
    position: relative;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 48px; align-items: center;
  }
  .cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400; font-size: 44px; line-height: 1.05;
    margin: 0; color: #fff; text-wrap: balance;
  }
  .cta-band h2 em { font-style: italic; color: var(--peri); }
  .cta-band p {
    color: rgba(237,230,248,.7); margin: 14px 0 0; max-width: 520px;
  }
  .cta-band .ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-self: end; }
  .cta-band .btn-primary { background: var(--peri); color: var(--ink); }
  .cta-band .btn-primary:hover { background: #fff; }
  .cta-band .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
  .cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

  /* ════════════════════════════════════════════════════════════════════
     FAQ PAGE — accordion
     ════════════════════════════════════════════════════════════════════ */
  .faq-list { border-top: 1px solid var(--ink); }
  .faq {
    border-bottom: 1px solid var(--rule);
    padding: 0;
  }
  .faq summary {
    list-style: none;
    cursor: pointer;
    padding: 36px 0;
    display: grid; grid-template-columns: 80px 1fr 60px; gap: 32px;
    align-items: start;
    transition: padding .2s ease;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq:hover summary { padding-left: 14px; }
  .faq .idx {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 18px; color: var(--gold);
    padding-top: 6px;
  }
  .faq .q {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 30px; line-height: 1.15;
    color: var(--ink); margin: 0; letter-spacing: -0.005em;
    text-wrap: balance;
  }
  .faq .plus {
    width: 36px; height: 36px;
    border-radius: 50%; border: 1px solid var(--ink);
    margin-left: auto; position: relative;
    transition: background .2s ease, border-color .2s ease, transform .3s ease;
  }
  .faq .plus::before,
  .faq .plus::after {
    content: ''; position: absolute; left: 50%; top: 50%;
    width: 14px; height: 1.5px; background: var(--ink);
    transform: translate(-50%, -50%);
    transition: transform .3s ease, background .2s ease;
  }
  .faq .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq[open] .plus { background: var(--purple); border-color: var(--purple); transform: rotate(180deg); }
  .faq[open] .plus::before,
  .faq[open] .plus::after { background: #fff; }
  .faq[open] .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
  .faq .a {
    padding: 0 60px 40px 112px;
    color: var(--ink-soft);
    font-size: 16px; line-height: 1.75;
    max-width: 78ch;
  }

  /* ════════════════════════════════════════════════════════════════════
     CONTACT PAGE
     ════════════════════════════════════════════════════════════════════ */
  .welcome-banner {
    background: var(--bg-soft);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 72px 0;
    text-align: center;
  }
  .welcome-banner .container { max-width: 920px; }
  .welcome-banner .label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--purple);
  }
  .welcome-banner blockquote {
    margin: 22px 0 0; padding: 0;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-weight: 400; font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.25; color: var(--ink);
    text-wrap: balance;
  }
  .welcome-banner blockquote::before {
    content: '\201C'; display: block;
    font-size: 64px; line-height: 0.6;
    color: var(--peri); margin-bottom: 24px;
  }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    padding: 100px 0;
  }
  .contact-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 36px; line-height: 1.1;
    margin: 12px 0 28px; color: var(--ink);
  }
  .contact-block .label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--purple);
  }
  .channel {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
  }
  .channel:first-of-type { border-top: 1px solid var(--ink); }
  .channel .ico {
    flex: 0 0 44px; height: 44px;
    border-radius: 50%; border: 1px solid var(--rule);
    display: grid; place-items: center;
    color: var(--purple);
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 18px;
    background: var(--bg-soft);
  }
  .channel .body { flex: 1; }
  .channel .body .h {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-soft); font-weight: 600;
  }
  .channel .body a, .channel .body .v {
    display: block; margin-top: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: var(--ink);
    line-height: 1.25;
  }
  .channel .body a:hover { color: var(--purple); }
  .channel .body .meta {
    margin-top: 4px;
    font-size: 13px; color: var(--ink-soft);
  }

  .address-card {
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 36px;
    position: relative;
  }
  .address-card .pin {
    position: absolute; top: 28px; right: 32px;
    width: 28px; height: 28px;
    color: var(--purple);
  }
  .address-card .ad {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; line-height: 1.4; color: var(--ink);
    margin: 14px 0 24px;
  }
  .address-card .hours {
    border-top: 1px solid var(--rule);
    padding-top: 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .address-card .hours .h {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--purple); font-weight: 600;
  }
  .address-card .hours .v {
    margin-top: 6px; font-size: 14px; color: var(--ink-soft);
  }

  /* email desks */
  .desks {
    padding: 0 0 100px;
  }
  .desks-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
    border-top: 1px solid var(--ink);
  }
  .desk {
    padding: 32px 36px 32px 0;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .desk:nth-child(2n) { padding-right: 0; padding-left: 36px; border-right: 0; }
  .desk:nth-last-child(-n+2) { border-bottom: 0; }
  .desk .role {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--purple);
  }
  .desk .name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 26px; line-height: 1.2;
    margin: 12px 0 14px; color: var(--ink);
  }
  .desk a {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px; color: var(--purple);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2px;
  }
  .desk a:hover { color: var(--purple-2); border-color: var(--purple-2); }

  /* MAP */
  .map-section {
    position: relative;
    background: var(--ink);
    overflow: hidden;
    padding: 0;
  }
  .map-wrap {
    position: relative;
    height: 540px;
    width: 100%;
  }
  .map-wrap iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(0.4) saturate(0.6) brightness(0.95);
  }
  .map-fallback {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, #1F1A40 0%, #2A1B6F 50%, #1A1230 100%);
    display: grid; place-items: center;
    color: rgba(237,230,248,0.5);
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 12px; letter-spacing: 0.08em;
  }
  /* pin card floating over the map */
  .map-pin {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    border-radius: 6px;
    padding: 28px 32px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
    max-width: 360px;
    z-index: 2;
  }
  .map-pin::after {
    content: '';
    position: absolute; left: 50%; bottom: -12px;
    transform: translateX(-50%) rotate(45deg);
    width: 20px; height: 20px;
    background: var(--bg);
    box-shadow: 4px 4px 12px rgba(0,0,0,0.15);
  }
  .map-pin .label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--purple);
  }
  .map-pin .ad {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; line-height: 1.35; color: var(--ink);
    margin: 10px 0 16px;
  }
  .map-pin .dir {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--purple);
    display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--purple);
    padding-bottom: 2px;
  }
  .map-pin .dir:hover { color: var(--purple-2); border-color: var(--purple-2); }

  @media (max-width: 980px) {
    .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
    .values, .svc-grid, .contact-grid, .desks-grid { grid-template-columns: 1fr; }
    .value, .svc-card, .desk { border-right: 0; padding-right: 0; padding-left: 0; }
    .value:not(:first-child), .svc-card:nth-child(2n), .desk:nth-child(2n) { padding-left: 0; }
    .svc-card { padding: 36px 0; }
    .cta-band .container { grid-template-columns: 1fr; }
    .cta-band .ctas { justify-self: start; }
    .faq summary { grid-template-columns: 40px 1fr 40px; gap: 16px; padding: 24px 0; }
    .faq .a { padding: 0 0 28px 56px; }
    .map-pin { left: 24px; right: 24px; max-width: none; transform: translate(0, -50%); }
    .map-pin::after { display: none; }
  }