/* =========================================================
   Leah Smith — editorial campaign art direction
   ========================================================= */

:root {
  /* palette */
  --bone:     #F2E8D8;
  --bone-2:   #ECDDC7;
  --oxblood:  #3A1620;
  --plum:     #41182B;
  --teal:     #1E4A45;
  --clay:     #D49C8B;   /* dusty rose / clay block */
  --rose:     #E0B2A1;
  --terra:    #BF5733;   /* burnt sienna primary accent */
  --terra-2:  #A3492A;
  --ochre:    #E0A53E;   /* marigold pop */
  --sage:     #6E8064;   /* cool note */
  --ink:      #25131A;

  --accent:   var(--terra);  /* tweakable warm accent */

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, sans-serif;
  --grot:  "Space Grotesk", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(22px, 5vw, 84px);

  --ry: 30px;
  --rdur: 1s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; }
a { color: inherit; }
::selection { background: var(--terra); color: var(--bone); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; }

/* ---------- film grain over everything ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  mix-blend-mode: overlay; opacity: 0.45;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODAiIGhlaWdodD0iMTgwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC44MiIgbnVtT2N0YXZlcz0iMiIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIvPjwvc3ZnPg==");
}

/* ---------- decorative shapes ---------- */
.blob, .arch { position: absolute; z-index: 0; pointer-events: none; }
.blob { filter: blur(6px); opacity: 0.9; }
.arch { border-radius: 999px 999px 0 0; }
.shape-clip { position: relative; overflow: hidden; }

/* ghost typography layer */
.ghost {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--serif); font-weight: 500; line-height: 0.8;
  white-space: nowrap; letter-spacing: -0.02em;
}

/* monogram */
.mono { display: inline-grid; place-items: center; width: 1em; height: 1em; }

/* ---------- labels / eyebrows ---------- */
.kicker {
  font-family: var(--grot); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; margin: 0;
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker .tick { width: 26px; height: 2px; background: currentColor; display: inline-block; opacity: 0.6; }
.kicker--terra { color: var(--terra-2); }

/* numbered badge */
.badge {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid currentColor;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--grot); font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; padding: 15px 28px; border-radius: 999px; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-fill { background: var(--ink); color: var(--bone); }
.btn-fill:hover { background: var(--terra); transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(58,22,32,.6); }
.btn-out { background: transparent; color: inherit; border-color: currentColor; }
.btn-out:hover { background: currentColor; transform: translateY(-3px); }
.btn-out:hover .lbl { color: var(--bone); }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: var(--ochre); transform: translateY(-3px); box-shadow: 0 18px 44px -18px rgba(0,0,0,.5); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 8000;
  transition: background .4s, border-color .4s, color .4s;
  border-bottom: 1px solid transparent;
}
header.scrolled { background: color-mix(in oklab, var(--bone), transparent 8%); backdrop-filter: blur(10px) saturate(1.1); border-bottom-color: color-mix(in oklab, var(--ink), transparent 86%); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-size: 24px; letter-spacing: .01em; white-space: nowrap; }
.brand .mark { width: 38px; height: 38px; }
.navlinks { display: flex; align-items: center; gap: 32px; }
.navlinks a.link {
  text-decoration: none; font-family: var(--grot); font-size: 13px; font-weight: 500;
  letter-spacing: .04em; color: color-mix(in oklab, var(--ink), transparent 30%);
  position: relative; padding: 5px 0; transition: color .25s;
}
.navlinks a.link::after { content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0; background: var(--terra); transition: width .32s ease; }
.navlinks a.link:hover { color: var(--ink); }
.navlinks a.link:hover::after { width: 100%; }

/* ---------- mobile nav ---------- */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5.5px;
  width: 44px; height: 44px; margin-right: -10px; padding: 11px;
  border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.1px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.1px) rotate(-45deg); }

.mobile-menu {
  position: fixed; left: 0; right: 0; top: 78px; z-index: 7990;
  display: flex; flex-direction: column;
  padding: 14px var(--pad) 30px;
  background: color-mix(in oklab, var(--bone), transparent 4%);
  -webkit-backdrop-filter: blur(14px) saturate(1.1); backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid color-mix(in oklab, var(--ink), transparent 86%);
  visibility: hidden; opacity: 0; transform: translateY(-14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.mobile-menu.open { visibility: visible; opacity: 1; transform: none; }
.mobile-menu a.m-link {
  font-family: var(--serif); font-size: 30px; text-decoration: none; color: var(--ink);
  padding: 15px 0; border-bottom: 1px solid color-mix(in oklab, var(--ink), transparent 90%);
  transition: color .25s;
}
.mobile-menu a.m-link:hover { color: var(--terra); }
.mobile-menu .btn { margin-top: 22px; align-self: flex-start; }
@media (min-width: 801px) { .mobile-menu { display: none; } }
@media (max-width: 800px) {
  .navlinks { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- reveals ---------- */
.js .reveal { opacity: 0; transition: opacity var(--rdur) cubic-bezier(.16,.72,.2,1), transform var(--rdur) cubic-bezier(.16,.72,.2,1); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.js .reveal.r-up   { transform: translateY(var(--ry)); }
.js .reveal.r-left { transform: translateX(calc(-1 * var(--ry) - 8px)); }
.js .reveal.r-right{ transform: translateX(calc(var(--ry) + 8px)); }
.js .reveal.r-scale{ transform: scale(.93); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transition: none !important; transform: none !important; opacity: 1 !important; }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 8vh, 110px) 0 clamp(60px, 11vh, 150px); }
.hero__mesh {
  position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 50% at 18% 26%, color-mix(in oklab, var(--rose), transparent 30%), transparent 70%),
    radial-gradient(40% 46% at 84% 16%, color-mix(in oklab, var(--ochre), transparent 55%), transparent 72%),
    radial-gradient(50% 52% at 78% 82%, color-mix(in oklab, var(--clay), transparent 40%), transparent 74%),
    radial-gradient(44% 50% at 30% 88%, color-mix(in oklab, var(--sage), transparent 68%), transparent 76%);
  filter: blur(14px); opacity: .9; animation: meshDrift 22s ease-in-out infinite alternate;
}
@keyframes meshDrift { 0% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(2%, -1.5%, 0) scale(1.06); } 100% { transform: translate3d(-2%, 1.5%, 0) scale(1.02); } }
.hero .ghost--hero { top: clamp(120px, 24vh, 280px); right: -6vw; font-size: clamp(180px, 34vw, 560px); color: transparent; -webkit-text-stroke: 1.5px color-mix(in oklab, var(--terra), transparent 72%); }
.hero-inner { position: relative; z-index: 2; }
.hero-name { font-family: var(--grot); font-size: 13px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--terra-2); margin: 0 0 30px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.hero-name .dot { width:6px; height:6px; border-radius:50%; background: var(--ochre); }
h1.hero-title { font-size: clamp(46px, 8.4vw, 128px); line-height: 0.94; letter-spacing: -0.02em; margin: 0 0 36px; max-width: 15ch; font-weight: 500; }
h1.hero-title em { font-style: italic; color: var(--terra); }
.hero-sub { font-family: var(--sans); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.55; color: color-mix(in oklab, var(--ink), transparent 18%); max-width: 46ch; margin: 0 0 42px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-actions .seehow { font-family: var(--grot); font-size: 14px; font-weight:600; letter-spacing:.02em; text-decoration:none; color: var(--ink); display:inline-flex; align-items:center; gap:9px; padding: 15px 6px; }
.hero-actions .seehow .ln { width: 26px; height: 1.5px; background: var(--terra); display:inline-block; transition: width .3s; }
.hero-actions .seehow:hover .ln { width: 44px; }

/* =========================================================
   CREDIBILITY — oxblood band + marquee + stats
   ========================================================= */
.cred { background: var(--oxblood); color: var(--bone); position: relative; overflow: hidden; }
.cred .blob-1 { width: 460px; height: 460px; left: -160px; bottom: -220px; border-radius: 48% 52% 60% 40% / 50% 44% 56% 50%; background: color-mix(in oklab, var(--plum), transparent 20%); }
.marquee { position: relative; z-index:2; overflow: hidden; padding: 30px 0; border-bottom: 1px solid color-mix(in oklab, var(--bone), transparent 86%); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; white-space: nowrap; gap: 0; will-change: transform; animation: marq 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__track .item { font-family: var(--serif); font-style: italic; font-size: clamp(30px, 4.4vw, 56px); padding: 0 .5em; display:inline-flex; align-items:center; gap: .6em; }
.marquee__track .item::after { content:"✶"; font-style: normal; font-size: .5em; color: var(--ochre); }
.cred-stats { position: relative; z-index:2; padding-top: 56px; padding-bottom: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.cred-stats .stat .num { font-family: var(--serif); font-size: clamp(30px, 4vw, 54px); line-height: .95; color: var(--ochre); white-space: nowrap; }
.cred-stats .stat .lbl { font-family: var(--grot); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: color-mix(in oklab, var(--bone), transparent 32%); margin-top: 12px; display:flex; align-items:center; gap:9px; }
@media (max-width: 900px) { .cred-stats { grid-template-columns: repeat(2, 1fr); gap: 36px 26px; } }
@media (max-width: 460px) { .cred-stats { grid-template-columns: 1fr; gap: 26px; } }

/* placeholder tag */
.ph-tag { font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: .03em; padding: .18em .5em; border-radius: 3px; background: color-mix(in oklab, var(--ochre), transparent 78%); color: var(--ochre); vertical-align: middle; }
.on-light .ph-tag { background: color-mix(in oklab, var(--terra), transparent 84%); color: var(--terra-2); }

/* =========================================================
   section scaffolding
   ========================================================= */
section[id] { scroll-margin-top: 112px; }
.sec { position: relative; overflow: hidden; padding: clamp(104px, 15vh, 200px) 0 clamp(80px, 13vh, 168px); }
.sec-head { margin-bottom: clamp(44px, 6vw, 76px); position: relative; z-index: 2; }
.sec-title { font-size: clamp(36px, 5.6vw, 76px); line-height: 1.0; letter-spacing: -0.018em; margin: 16px 0 0; max-width: 18ch; }
.sec-title em { font-style: italic; color: var(--terra); }

/* =========================================================
   SERVICES — clay/rose block, staggered offset cards
   ========================================================= */
.services-sec { background: var(--clay); color: var(--ink); }
.services-sec .ghost--svc { bottom: -4vw; left: -2vw; font-size: clamp(150px, 26vw, 440px); color: color-mix(in oklab, var(--ink), transparent 90%); }
.services-sec .sec-title em { color: var(--oxblood); }
.services-sec .kicker--terra { color: var(--oxblood); }
.svc-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: clamp(20px, 2.4vw, 34px); }
.svc {
  padding: clamp(30px, 3vw, 46px); border-radius: 6px; position: relative;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .4s cubic-bezier(.16,.72,.2,1), box-shadow .4s;
}
.svc:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -32px rgba(37,19,26,.55); }
.svc h3 { font-size: clamp(26px, 3vw, 38px); line-height: 1.04; margin: 0; }
.svc p { margin: 0; font-family: var(--sans); font-size: 15.5px; line-height: 1.58; }
.svc .badge { color: inherit; }
.svc .svc-top { display:flex; align-items:center; justify-content: space-between; gap: 16px; }
.svc .arc { width: 30px; height: 15px; border-radius: 999px 999px 0 0; }
/* === service card colorways (driven by data-cards on <html>) === */
/* uniform: oxblood (default) */
[data-cards="oxblood"] .svc { background: var(--oxblood); color: var(--bone); }
[data-cards="oxblood"] .svc p { color: color-mix(in oklab, var(--bone), transparent 22%); }
[data-cards="oxblood"] .svc .badge { color: var(--ochre); }
[data-cards="oxblood"] .svc .arc { background: var(--ochre); }
/* uniform: cream */
[data-cards="cream"] .svc { background: var(--bone); color: var(--ink); }
[data-cards="cream"] .svc p { color: color-mix(in oklab, var(--ink), transparent 22%); }
[data-cards="cream"] .svc .badge { color: var(--terra-2); }
[data-cards="cream"] .svc .arc { background: var(--terra); }
/* earthy: four distinct harmonious tones */
[data-cards="earthy"] .svc.c-gold  { background: var(--ochre);   color: var(--ink); }
[data-cards="earthy"] .svc.c-terra { background: var(--terra);   color: var(--bone); }
[data-cards="earthy"] .svc.c-ox    { background: var(--oxblood); color: var(--bone); }
[data-cards="earthy"] .svc.c-sage  { background: var(--sage);    color: var(--bone); }
[data-cards="earthy"] .svc.c-gold p { color: color-mix(in oklab, var(--ink), transparent 24%); }
[data-cards="earthy"] .svc.c-terra p, [data-cards="earthy"] .svc.c-ox p, [data-cards="earthy"] .svc.c-sage p { color: color-mix(in oklab, var(--bone), transparent 18%); }
[data-cards="earthy"] .svc.c-gold .badge { color: var(--oxblood); }
[data-cards="earthy"] .svc.c-gold .arc { background: var(--oxblood); }
[data-cards="earthy"] .svc.c-terra .badge, [data-cards="earthy"] .svc.c-ox .badge, [data-cards="earthy"] .svc.c-sage .badge { color: var(--ochre); }
[data-cards="earthy"] .svc.c-terra .arc, [data-cards="earthy"] .svc.c-ox .arc, [data-cards="earthy"] .svc.c-sage .arc { background: var(--ochre); }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PHILOSOPHY — plum dark editorial moment
   ========================================================= */
.philosophy { background: var(--plum); color: var(--bone); position: relative; overflow: hidden; text-align: center; }
.philosophy .wrap { padding-top: clamp(96px, 17vh, 200px); padding-bottom: clamp(96px, 17vh, 200px); }
.philosophy .ghost--phil { top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: clamp(200px, 40vw, 720px); color: transparent; -webkit-text-stroke: 1.5px color-mix(in oklab, var(--bone), transparent 90%); }
.philosophy .arch-top { width: min(520px, 70vw); height: min(260px, 35vw); left: 50%; top: 0; transform: translateX(-50%); background: color-mix(in oklab, var(--oxblood), transparent 40%); }
.phil-quote { position: relative; z-index: 2; font-family: var(--serif); font-size: clamp(30px, 5vw, 68px); line-height: 1.12; letter-spacing: -0.01em; max-width: 19ch; margin: 26px auto 40px; font-weight: 500; }
.phil-quote em { font-style: italic; color: var(--ochre); }
.phil-sub { position: relative; z-index: 2; font-family: var(--grot); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: color-mix(in oklab, var(--bone), transparent 36%); margin: 0; display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.phil-sub .sep { color: var(--ochre); }
.philosophy .kicker { color: var(--ochre); justify-content: center; }

/* =========================================================
   APPROACH — bone, offset, sage accents
   ========================================================= */
.approach { background: var(--bone); }
.approach .ghost--app { top: 4vw; right: -3vw; font-size: clamp(140px, 22vw, 360px); color: color-mix(in oklab, var(--sage), transparent 86%); }
.approach-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 100px); align-items: start; }
.approach-lead { font-family: var(--serif); font-size: clamp(25px, 3vw, 40px); line-height: 1.24; }
.approach-lead em { font-style: italic; color: var(--terra); }
.pts { display: flex; flex-direction: column; }
.pt { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid color-mix(in oklab, var(--ink), transparent 86%); align-items: start; }
.pt:last-child { border-bottom: 1px solid color-mix(in oklab, var(--ink), transparent 86%); }
.pt .badge { color: var(--sage); }
.pt h4 { font-family: var(--grot); font-size: 17px; font-weight: 600; margin: 4px 0 8px; }
.pt p { margin: 0; color: color-mix(in oklab, var(--ink), transparent 26%); font-size: 15.5px; }
@media (max-width: 840px) { .approach-grid { grid-template-columns: 1fr; gap: 38px; } }

/* =========================================================
   RESULTS — deep teal (the cool note), overlapping cards
   ========================================================= */
.results-sec { background: var(--teal); color: var(--bone); }
.results-sec .sec-title em { color: var(--ochre); }
.results-sec .kicker--terra { color: var(--ochre); }
.results-sec .blob-2 { width: 420px; height: 420px; right: -140px; top: -160px; border-radius: 52% 48% 42% 58% / 46% 56% 44% 54%; background: color-mix(in oklab, var(--sage), transparent 55%); }
.cases { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 30px); }
.case { background: color-mix(in oklab, var(--bone), transparent 92%); border: 1px solid color-mix(in oklab, var(--bone), transparent 80%); border-radius: 6px; padding: clamp(26px, 2.8vw, 40px); display: flex; flex-direction: column; gap: 16px; transition: transform .4s, background .4s, box-shadow .4s; }
.case:nth-child(2) { transform: translateY(36px); }
.case:hover { transform: translateY(-6px); background: color-mix(in oklab, var(--bone), transparent 86%); box-shadow: 0 30px 60px -34px rgba(0,0,0,.5); }
.case:nth-child(2):hover { transform: translateY(30px); }
.case .metric { font-family: var(--serif); font-size: clamp(44px, 5.6vw, 70px); line-height: .92; color: var(--ochre); letter-spacing: -.01em; }
.case .metric-lbl { font-family: var(--grot); font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase; color: color-mix(in oklab, var(--bone), transparent 38%); }
.case .rule { height: 1px; background: color-mix(in oklab, var(--bone), transparent 82%); }
.case .chal { font-family: var(--grot); font-size: 13.5px; color: color-mix(in oklab, var(--bone), transparent 34%); }
.case .out { font-family: var(--sans); font-size: 16px; line-height: 1.5; color: var(--bone); }
.case .out strong { color: var(--ochre); font-weight: 600; }
@media (max-width: 880px) { .cases { grid-template-columns: 1fr; } .case:nth-child(2) { transform: none; } .case:nth-child(2):hover { transform: translateY(-6px); } }

/* =========================================================
   ABOUT — bone, duotone photo, offset
   ========================================================= */
.about { background: var(--bone); }
.about .ghost--about { bottom: -3vw; left: -2vw; font-size: clamp(150px, 24vw, 400px); color: color-mix(in oklab, var(--clay), transparent 64%); }
.about-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(34px, 6vw, 92px); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; position: relative; box-shadow: 0 40px 80px -50px rgba(37,19,26,.7); }
.about-photo .about-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.85) contrast(1.02); }
.duotone {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(160deg, color-mix(in oklab, var(--oxblood), transparent 55%), color-mix(in oklab, var(--terra), transparent 70%));
  mix-blend-mode: multiply; opacity: .55;
}
.about-photo .tag-badge { position: absolute; bottom: -22px; right: -16px; width: 96px; height: 96px; border-radius: 50%; background: var(--ochre); color: var(--ink); display: grid; place-items: center; text-align: center; font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.05; box-shadow: 0 16px 36px -18px rgba(0,0,0,.45); }
.about-body .opening { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 42px); line-height: 1.24; color: var(--ink); margin: 14px 0 24px; }
.about-body .opening em { font-style: italic; color: var(--terra); }
.about-body p { color: color-mix(in oklab, var(--ink), transparent 22%); font-size: clamp(16px, 1.7vw, 18px); line-height: 1.7; margin: 0 0 20px; }
.about-body .sig { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--ink); margin-top: 6px; }
@media (max-width: 840px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } .about-photo .frame { max-width: 380px; } }

/* =========================================================
   CONTACT — oxblood, marigold pop
   ========================================================= */
.contact { background: var(--oxblood); color: var(--bone); position: relative; overflow: hidden; }
.contact .ghost--cta { top: -2vw; right: -3vw; font-size: clamp(160px, 30vw, 520px); color: transparent; -webkit-text-stroke: 1.5px color-mix(in oklab, var(--ochre), transparent 80%); }
.contact .blob-3 { width: 380px; height: 380px; left: -120px; bottom: -180px; border-radius: 50% 50% 44% 56% / 52% 48% 52% 48%; background: color-mix(in oklab, var(--plum), transparent 24%); }
.contact .wrap { padding-top: clamp(90px, 15vh, 176px); padding-bottom: clamp(90px, 15vh, 176px); position: relative; z-index: 2; }
.contact .kicker { color: var(--ochre); }
.contact h2 { font-size: clamp(42px, 6.6vw, 96px); line-height: .98; letter-spacing: -.02em; margin: 22px 0 32px; max-width: 14ch; }
.contact h2 em { font-style: italic; color: var(--ochre); }
.contact .lead { font-family: var(--sans); font-size: clamp(17px, 1.9vw, 21px); color: color-mix(in oklab, var(--bone), transparent 26%); max-width: 46ch; margin: 0 0 44px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; }
.mail { font-family: var(--grot); font-size: 16px; color: var(--bone); text-decoration: none; border-bottom: 1.5px solid color-mix(in oklab, var(--ochre), transparent 20%); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.mail:hover { color: var(--ochre); }

/* footer */
footer { background: var(--ink); color: color-mix(in oklab, var(--bone), transparent 52%); }
.foot { padding: 34px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--grot); font-size: 12.5px; letter-spacing: .03em; }
.foot .brand { color: var(--bone); font-size: 19px; gap: 10px; }
.foot .brand .mark { width: 30px; height: 30px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--bone); }

/* ---------- mobile body-scroll lock when menu open ---------- */
body.menu-open { overflow: hidden; }

/* =========================================================
   MOBILE — keep the decorative "ghost" words readable.
   On desktop these large serif words intentionally bleed off
   the edge; on small screens that clips them to fragments
   ("rowth", "ohesive", "t's talk"). Here we re-center each one
   and size it to fit the viewport so the whole word reads.
   (.ghost elements are .par — parallax only sets a vertical
   transform, so left/right/text-align below are preserved.)
   ========================================================= */
@media (max-width: 640px) {
  .ghost { left: 0; right: 0; text-align: center; }

  .hero .ghost--hero { top: clamp(150px, 30vh, 300px); right: 0; font-size: 27vw; }
  .services-sec .ghost--svc { bottom: -2vw; left: 0; font-size: 26vw; }
  .philosophy .ghost--phil { left: 0; right: 0; font-size: 46vw; }
  .approach .ghost--app { top: 3vw; right: 0; font-size: 22vw; }
  .about .ghost--about { bottom: -1vw; left: 0; font-size: 30vw; }
  .contact .ghost--cta { top: 2vw; right: 0; font-size: 18vw; }
}
