/* ============================================================
   Soul Touch Brand — Editorial CSS
   Palette: Warm Ivory, Soft Sand, Deep Charcoal, Med. Blue, Gold
   Type: Instrument Serif (display) + Manrope (body/UI)
============================================================ */

:root {
  --ivory: #F3F0E9;
  --sand: #D8CBB8;
  --sand-soft: #E7DECC;
  --charcoal: #171717;
  --charcoal-70: rgba(23, 23, 23, 0.7);
  --charcoal-50: rgba(23, 23, 23, 0.5);
  --charcoal-30: rgba(23, 23, 23, 0.3);
  --charcoal-15: rgba(23, 23, 23, 0.15);
  --blue: #163C4A;
  --gold: #AA8B5B;
  --gold-soft: rgba(170, 139, 91, 0.35);

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--blue); }

::selection { background: var(--charcoal); color: var(--ivory); }

/* ------------------------------------------------------------
   Typography scale
------------------------------------------------------------ */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 500;
  color: var(--charcoal-70);
}
.eyebrow .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-right: 10px; vertical-align: middle;
  transform: translateY(-1px);
}

h1, .h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 130px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
h2, .h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
h3, .h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h4, .h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
}
p { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.65; color: var(--charcoal); }
p.lede {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  color: var(--charcoal);
  max-width: 62ch;
  font-weight: 300;
}

.italic { font-style: italic; }
.muted { color: var(--charcoal-70); }
.small { font-size: 12px; letter-spacing: 0.06em; }

/* ------------------------------------------------------------
   Layout
------------------------------------------------------------ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--tight { padding: clamp(60px, 8vw, 110px) 0; }
.section--flush { padding: 0; }

.hairline {
  border: 0;
  border-top: 1px solid var(--charcoal-15);
  margin: 0;
}
.hairline--gold { border-color: var(--gold-soft); }

/* ------------------------------------------------------------
   Nav
------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease),
              border-color .5s var(--ease), color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-over-dark { color: var(--ivory); }
.nav.is-scrolled {
  background: rgba(243, 240, 233, 0.78);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom-color: var(--charcoal-15);
  color: var(--charcoal);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1720px;
  margin: 0 auto;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}
.nav__links {
  display: flex; gap: clamp(14px, 1.8vw, 28px);
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-slow);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__links a[aria-current="page"] { color: var(--blue); }
.nav.is-over-dark .nav__links a[aria-current="page"] { color: var(--gold); }

/* ------------------------------------------------------------
   Nav dropdown
------------------------------------------------------------ */
.nav__links .has-sub {
  position: relative;
}
.nav__links .has-sub > a,
.nav__links .has-sub > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  padding: 6px 0;
  cursor: pointer;
  letter-spacing: inherit;
  position: relative;
  font-weight: 500;
}
.nav__links .has-sub > a::after,
.nav__links .has-sub > button::after {
  /* keep underline sweep on toggle button */
  content: "";
  position: absolute; left: 0; right: 12px; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-slow);
}
.nav__links .has-sub:hover > a::after,
.nav__links .has-sub:hover > button::after,
.nav__links .has-sub.is-open > a::after,
.nav__links .has-sub.is-open > button::after { transform: scaleX(1); transform-origin: left; }
.nav__caret {
  display: inline-block;
  font-size: 8px;
  line-height: 1;
  margin-left: 2px;
  transform: translateY(1px);
  transition: transform .3s var(--ease);
  opacity: 0.7;
}
.nav__links .has-sub:hover .nav__caret,
.nav__links .has-sub.is-open .nav__caret { transform: translateY(1px) rotate(180deg); opacity: 1; }

.nav__submenu {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 240px;
  padding: 22px 26px 24px;
  margin-top: 12px;
  background: rgba(243, 240, 233, 0.96);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border: 1px solid var(--charcoal-15);
  border-top: 2px solid var(--gold);
  color: var(--charcoal);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease), transform .35s var(--ease-slow);
  z-index: 10;
  box-shadow: 0 20px 40px -20px rgba(23,23,23,0.18);
}
.nav__submenu::before {
  content: "";
  position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav__links .has-sub:hover .nav__submenu,
.nav__links .has-sub:focus-within .nav__submenu,
.nav__links .has-sub.is-open .nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__submenu li + li { margin-top: 4px; }
.nav__submenu a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--charcoal);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.nav__submenu a:hover { color: var(--blue); }
.nav__submenu a::after { display: none !important; }
.nav__submenu a .desc {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-50);
  font-weight: 500;
  transition: color .3s var(--ease);
}
.nav__submenu a:hover .desc { color: var(--gold); }

/* Mobile submenu */
.mobilemenu .has-sub {
  display: block;
}
.mobilemenu .has-sub > .mobile-sub {
  list-style: none;
  padding: 0 0 22px 0;
  margin: -6px 0 0 0;
}
.mobilemenu .has-sub > .mobile-sub li {
  border-bottom: 1px solid rgba(243,240,233,0.08);
  overflow: hidden;
}
.mobilemenu .has-sub > .mobile-sub li a {
  display: block; padding: 12px 0 12px 24px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(243,240,233,0.72);
  line-height: 1;
}

.nav__right {
  display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.6vw, 22px);
  font-size: 12px; letter-spacing: 0.08em;
  white-space: nowrap;
}
.lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.lang button {
  background: none; border: 0; color: inherit; cursor: pointer;
  font: inherit; letter-spacing: inherit; text-transform: inherit;
  padding: 4px 2px; opacity: 0.5; transition: opacity .3s var(--ease);
}
.lang button.is-active { opacity: 1; color: var(--gold); }
.lang button:hover { opacity: 1; }
.lang .sep { opacity: 0.35; }

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer;
  background: transparent;
}
.cta:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.nav.is-over-dark .cta:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.cta--solid { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.cta--solid:hover { background: var(--blue); border-color: var(--blue); color: var(--ivory); }
.cta--ivory { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.cta--ivory:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.cta--small { padding: 10px 18px; font-size: 11px; }
.cta__arrow { display: inline-block; transition: transform .4s var(--ease); }
.cta:hover .cta__arrow { transform: translateX(4px); }

.burger {
  display: none;
  width: 40px; height: 40px; background: none; border: 0; cursor: pointer;
  padding: 10px; color: inherit;
}
.burger span {
  display: block; width: 22px; height: 1px; background: currentColor;
  margin: 5px auto; transition: transform .35s var(--ease), opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile fullscreen menu */
.mobilemenu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--charcoal); color: var(--ivory);
  padding: calc(var(--nav-h) + 40px) var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .6s var(--ease-slow);
  pointer-events: none;
}
.mobilemenu.is-open { transform: translateY(0); pointer-events: auto; }
.mobilemenu ul { list-style: none; }
.mobilemenu li {
  border-bottom: 1px solid rgba(243,240,233,0.12);
  overflow: hidden;
}
.mobilemenu li a {
  display: block; padding: 22px 0;
  font-family: var(--serif); font-size: clamp(32px, 8vw, 52px); line-height: 1;
  letter-spacing: -0.01em;
}
.mobilemenu__foot { display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }

/* ------------------------------------------------------------
   Hero
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--ivory);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__media img,
.hero__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroDrift 22s var(--ease-slow) both;
}
@keyframes heroDrift {
  from { transform: scale(1.14) translateY(1%); filter: brightness(0.7); }
  to   { transform: scale(1.02) translateY(0);  filter: brightness(0.86); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,23,23,0.55) 0%, rgba(23,23,23,0.15) 30%, rgba(23,23,23,0) 55%, rgba(23,23,23,0.55) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  width: 100%;
  padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  align-items: end;
  gap: 40px;
}
.hero__eyebrow {
  color: var(--ivory); opacity: 0.85;
  margin-bottom: clamp(24px, 3.4vw, 44px);
}
.hero h1 {
  font-size: clamp(48px, 8.4vw, 132px);
  color: var(--ivory);
  max-width: 16ch;
}
.hero h1 .em { font-style: italic; color: var(--sand); }
.hero__sub {
  margin-top: clamp(20px, 2.4vw, 32px);
  max-width: 52ch;
  color: rgba(243,240,233,0.86);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.55;
}
.hero__ctas {
  margin-top: clamp(28px, 3.6vw, 44px);
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__meta {
  color: var(--ivory);
  font-size: 12px; letter-spacing: 0.12em;
  text-align: right;
  line-height: 1.9;
  opacity: 0.9;
  align-self: end;
  padding-bottom: 6px;
}
.hero__meta .brandline {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-style: italic;
}
.hero__meta .brandline small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.28em;
  margin-top: 6px;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__bottombar {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.75;
  border-top: 1px solid rgba(243,240,233,0.2);
  padding-top: 16px;
  max-width: var(--max); margin: 0 auto;
}
.soundtoggle {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: 1px solid rgba(243,240,233,0.35);
  color: inherit; padding: 8px 14px; border-radius: 999px;
  font: inherit; letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px;
  cursor: pointer; transition: background .3s var(--ease), border-color .3s var(--ease);
}
.soundtoggle:hover { background: rgba(243,240,233,0.1); border-color: rgba(243,240,233,0.6); }
.soundtoggle .wave {
  width: 14px; height: 12px; display: inline-flex; align-items: end; gap: 2px;
}
.soundtoggle .wave i {
  display: block; width: 2px; background: currentColor; height: 40%;
  animation: wv 1.4s ease-in-out infinite;
}
.soundtoggle .wave i:nth-child(2) { animation-delay: .18s; }
.soundtoggle .wave i:nth-child(3) { animation-delay: .36s; }
.soundtoggle .wave i:nth-child(4) { animation-delay: .54s; }
@keyframes wv { 0%,100% { height: 22%; } 50% { height: 100%; } }
.soundtoggle.is-muted .wave i { animation-play-state: paused; height: 30%; opacity: 0.5; }

/* ------------------------------------------------------------
   Section header composition
------------------------------------------------------------ */
.sechead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 90px);
}
.sechead__index {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--charcoal-70);
}
.sechead__index .num { color: var(--gold); font-weight: 600; }
.sechead h2 { margin-top: 14px; }
.sechead__side { align-self: end; max-width: 46ch; }

/* ------------------------------------------------------------
   Selected Work — asymmetric editorial grid
------------------------------------------------------------ */
.work {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(20px, 2.6vw, 40px);
}
.work__item { position: relative; overflow: hidden; }
.work__item a { display: block; }
.work__frame {
  position: relative; overflow: hidden;
  background: var(--sand-soft);
  aspect-ratio: 4 / 5;
}
.work__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-slow), filter 1.4s var(--ease-slow);
}
.work__item:hover .work__frame img {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.work__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 20px; gap: 12px;
}
.work__title {
  font-family: var(--serif); font-size: clamp(22px, 2.1vw, 30px); letter-spacing: -0.01em;
  line-height: 1.1;
}
.work__cat {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-70);
}
.work__loc {
  font-size: 12px; letter-spacing: 0.08em; color: var(--charcoal-70); margin-top: 6px;
}

.work__item--a { grid-column: 1 / span 7; }
.work__item--a .work__frame { aspect-ratio: 16 / 11; }
.work__item--b { grid-column: 9 / span 4; align-self: end; }
.work__item--b .work__frame { aspect-ratio: 3 / 4; }
.work__item--c { grid-column: 1 / span 4; margin-top: clamp(20px, 4vw, 60px); }
.work__item--c .work__frame { aspect-ratio: 4 / 5; }
.work__item--d { grid-column: 6 / span 7; margin-top: clamp(0px, 3vw, 40px); }
.work__item--d .work__frame { aspect-ratio: 16 / 10; }

.work__footer {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 30px;
  border-top: 1px solid var(--charcoal-15);
}

/* ------------------------------------------------------------
   Philosophy — full-bleed statement
------------------------------------------------------------ */
.philosophy {
  position: relative;
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}
.philosophy__bg {
  position: absolute; inset: 0; opacity: 0.35;
}
.philosophy__bg img { width: 100%; height: 100%; object-fit: cover; }
.philosophy__inner {
  position: relative;
  padding: clamp(120px, 18vw, 220px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.philosophy__eyebrow { color: rgba(243,240,233,0.7); }
.philosophy h2 {
  color: var(--ivory);
  font-size: clamp(40px, 6.6vw, 108px);
  line-height: 0.98;
  margin-top: 22px;
  max-width: 12ch;
}
.philosophy h2 em { color: var(--sand); font-style: italic; }
.philosophy__body { color: rgba(243,240,233,0.82); max-width: 46ch; font-size: 17px; line-height: 1.7; font-weight: 300; }
.philosophy__body p + p { margin-top: 20px; }
.philosophy__sig { font-family: var(--serif); font-style: italic; font-size: 18px; margin-top: 30px; color: var(--sand); }

/* ------------------------------------------------------------
   Services
------------------------------------------------------------ */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 50px);
}
.svc {
  border-top: 1px solid var(--charcoal);
  padding-top: 28px;
}
.svc__num {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  color: var(--gold); font-weight: 600;
}
.svc h3 { margin-top: 10px; }
.svc__body { margin-top: 18px; color: var(--charcoal-70); font-size: 15px; line-height: 1.65; max-width: 34ch; }
.svc__list { margin-top: 24px; list-style: none; font-size: 13px; letter-spacing: 0.02em; }
.svc__list li { padding: 8px 0; border-top: 1px solid var(--charcoal-15); color: var(--charcoal-70); display: flex; justify-content: space-between; }
.svc__list li::before { content: "—"; margin-right: 10px; color: var(--gold); }

/* ------------------------------------------------------------
   AI Studio
------------------------------------------------------------ */
.ai {
  background: var(--sand-soft);
  overflow: hidden;
}
.ai__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}
.ai__left h2 { max-width: 12ch; }
.ai__left .lede { margin-top: 22px; }
.ai__ctas { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.ai__right {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--charcoal);
}
.ai__right::before,
.ai__right::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(170,139,91,0.18) 60%, transparent 80%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.ai__right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.ai__tag {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  color: var(--ivory);
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(243,240,233,0.35);
  padding-top: 14px;
}
.ai__tag em { color: var(--gold); font-style: normal; }

/* ------------------------------------------------------------
   Founder
------------------------------------------------------------ */
.founder__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}
.founder__portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder__portrait .caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  color: var(--ivory);
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(243,240,233,0.35);
  padding-top: 12px;
}
.founder h2 { max-width: 14ch; }
.founder__quote {
  margin-top: 30px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3;
  color: var(--charcoal);
  max-width: 34ch;
}
.founder__body { margin-top: 26px; max-width: 46ch; color: var(--charcoal-70); }
.founder__sig {
  margin-top: 34px;
  display: flex; align-items: baseline; gap: 24px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-70);
}
.founder__sig strong { color: var(--charcoal); font-weight: 500; letter-spacing: 0.24em; }

/* ------------------------------------------------------------
   Clients — typographic wordmarks (no fake logos)
------------------------------------------------------------ */
.clients { text-align: center; }
.clients h4 { color: var(--charcoal-70); margin-bottom: clamp(40px, 5vw, 70px); }
.clients__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--charcoal-15);
  border-left: 1px solid var(--charcoal-15);
}
.clients__cell {
  padding: clamp(28px, 4vw, 48px) 20px;
  border-right: 1px solid var(--charcoal-15);
  border-bottom: 1px solid var(--charcoal-15);
  display: flex; align-items: center; justify-content: center;
  min-height: 120px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: 0.04em;
  color: var(--charcoal-70);
  transition: color .4s var(--ease), background .4s var(--ease);
  text-align: center;
  line-height: 1.15;
}
.clients__cell:hover { color: var(--charcoal); background: var(--sand-soft); }
.clients__cell small {
  display: block;
  font-family: var(--sans); font-size: 9.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--charcoal-50); margin-top: 8px;
}

/* ------------------------------------------------------------
   Final CTA
------------------------------------------------------------ */
.finalcta {
  position: relative; overflow: hidden;
  color: var(--ivory);
  min-height: 82vh;
  display: flex; align-items: center;
}
.finalcta__bg { position: absolute; inset: 0; }
.finalcta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroDrift 30s var(--ease-slow) both;
}
.finalcta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0.15), rgba(23,23,23,0.55));
}
.finalcta__inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) var(--gutter);
  width: 100%;
}
.finalcta h2 {
  color: var(--ivory);
  font-size: clamp(42px, 6.6vw, 108px);
  max-width: 16ch;
  line-height: 1;
}
.finalcta h2 em { color: var(--sand); font-style: italic; }
.finalcta__row {
  margin-top: clamp(30px, 4vw, 50px);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.finalcta__sub { color: rgba(243,240,233,0.86); max-width: 40ch; font-weight: 300; font-size: clamp(15px, 1.15vw, 18px); }

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(60px, 8vw, 110px) var(--gutter) 40px;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}
.footer__brand { max-width: 34ch; }
.footer__brand .mark {
  font-family: var(--serif); font-size: 32px; letter-spacing: -0.01em; line-height: 1;
}
.footer__brand .mark small {
  display: block;
  font-family: var(--sans); font-style: normal;
  font-size: 10px; letter-spacing: 0.28em; margin-top: 8px;
  text-transform: uppercase; opacity: 0.7;
}
.footer__brand p { margin-top: 26px; color: rgba(243,240,233,0.7); font-size: 14px; line-height: 1.7; }
.footer__col h5 {
  font-family: var(--sans); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(243,240,233,0.55); margin-bottom: 22px;
}
.footer__col ul { list-style: none; }
.footer__col li { padding: 6px 0; font-size: 14px; }
.footer__col li a { color: rgba(243,240,233,0.85); }
.footer__col li a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max); margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(243,240,233,0.15);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(243,240,233,0.5);
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   Reveals
------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-slow), transform 1.1s var(--ease-slow); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--img { opacity: 0; clip-path: inset(0 0 100% 0); transition: clip-path 1.4s var(--ease-slow), opacity 0.6s var(--ease); }
.reveal--img.is-in { opacity: 1; clip-path: inset(0 0 0 0); }
.reveal--fade { opacity: 0; transition: opacity 1.4s var(--ease-slow); }
.reveal--fade.is-in { opacity: 1; }

.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.001s !important; }
  .reveal, .reveal--img, .reveal--fade { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__media img, .hero__media video { transform: none !important; }
}

/* ------------------------------------------------------------
   Case study specifics
------------------------------------------------------------ */
.case-hero {
  min-height: 100vh; min-height: 100svh;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.case-hero__bg { position: absolute; inset: 0; }
.case-hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroDrift 22s var(--ease-slow) both; }
.case-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(23,23,23,0.35), rgba(23,23,23,0.0) 30%, rgba(23,23,23,0.6)); }
.case-hero__inner { position: relative; padding: 0 var(--gutter) clamp(60px, 8vw, 110px); width: 100%; max-width: var(--max); margin: 0 auto; }
.case-hero__meta { display: flex; gap: clamp(20px, 3vw, 44px); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(243,240,233,0.8); margin-bottom: 28px; }
.case-hero__meta strong { display: block; color: var(--ivory); font-weight: 500; margin-top: 6px; letter-spacing: 0.12em; }
.case-hero h1 { color: var(--ivory); max-width: 14ch; }
.case-hero h1 em { color: var(--sand); font-style: italic; }
.case-hero__sub { margin-top: 28px; color: rgba(243,240,233,0.82); max-width: 52ch; font-weight: 300; font-size: 18px; }

.case-intro { padding: clamp(90px, 12vw, 150px) 0; }
.case-intro__grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(30px, 6vw, 90px); }
.case-intro__grid p { max-width: 52ch; font-size: clamp(17px, 1.35vw, 22px); line-height: 1.55; font-weight: 300; }

.case-fig { margin: clamp(40px, 6vw, 90px) 0; }
.case-fig__frame { overflow: hidden; }
.case-fig__frame img { width: 100%; height: auto; }
.case-fig__cap { display: flex; justify-content: space-between; margin-top: 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal-70); }

.case-two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }

.case-quote {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}
.case-quote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 4.4vw, 62px);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--charcoal);
}
.case-quote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans); font-style: normal;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.case-quote cite::before { content: "—  "; color: var(--gold); }

.case-strip { position: relative; overflow: hidden; }
.case-strip img { width: 100%; height: 78vh; object-fit: cover; }

.case-next {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--charcoal-15);
}
.case-next a {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px;
}
.case-next__title { font-family: var(--serif); font-size: clamp(36px, 6vw, 84px); line-height: 1; letter-spacing: -0.015em; }
.case-next__title em { font-style: italic; color: var(--gold); }
.case-next__arrow { font-family: var(--serif); font-size: clamp(36px, 6vw, 84px); }

/* ------------------------------------------------------------
   Contact page
------------------------------------------------------------ */
.contact-hero {
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 110px)) 0 clamp(60px, 8vw, 110px);
}
.contact-hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(30px, 6vw, 100px);
  align-items: end;
}
.contact-hero h1 { font-size: clamp(52px, 9vw, 148px); max-width: 12ch; }
.contact-hero h1 em { font-style: italic; color: var(--gold); }
.contact-hero__side p { color: var(--charcoal-70); max-width: 34ch; }

.contact-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 100px); padding-bottom: clamp(80px, 10vw, 140px); }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-70);
}
.field input,
.field select,
.field textarea {
  font: inherit; font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--charcoal-30);
  padding: 12px 0;
  color: var(--charcoal);
  outline: none;
  transition: border-color .3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-actions { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }

.info-block { border-top: 1px solid var(--charcoal); padding-top: 22px; }
.info-block + .info-block { margin-top: 40px; }
.info-block h4 { color: var(--gold); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; }
.info-block p { margin-top: 12px; font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.35; letter-spacing: -0.005em; }
.info-block a { color: inherit; border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; }

/* ============================================================
   Journal page
============================================================ */
.jrn-hero {
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 110px)) 0 clamp(50px, 6vw, 80px);
}
.jrn-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
}
.jrn-hero h1 {
  font-size: clamp(52px, 9vw, 148px);
  max-width: 12ch;
  margin-top: 22px;
}
.jrn-hero h1 em { font-style: italic; color: var(--gold); }
.jrn-hero__side p { color: var(--charcoal-70); max-width: 40ch; }
.jrn-hero__side .meta {
  margin-top: 22px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
  display: flex; gap: 20px;
}
.jrn-hero__side .meta strong { color: var(--charcoal); font-weight: 500; }

/* Filter bar */
.jrn-filter {
  border-top: 1px solid var(--charcoal-15);
  border-bottom: 1px solid var(--charcoal-15);
  padding: 22px 0;
  margin-top: clamp(40px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.jrn-filter__group {
  display: flex; gap: clamp(14px, 2vw, 28px); flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.jrn-filter__group button {
  background: none; border: 0; font: inherit; padding: 6px 0;
  letter-spacing: inherit; text-transform: inherit;
  color: var(--charcoal-70); cursor: pointer;
  position: relative;
  transition: color .3s var(--ease);
}
.jrn-filter__group button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-slow);
}
.jrn-filter__group button.is-active,
.jrn-filter__group button:hover { color: var(--charcoal); }
.jrn-filter__group button.is-active::after,
.jrn-filter__group button:hover::after { transform: scaleX(1); transform-origin: left; }
.jrn-filter__meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--charcoal-70); }

/* Featured essay */
.jrn-featured {
  padding: clamp(70px, 9vw, 130px) 0;
}
.jrn-featured__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: stretch;
}
.jrn-featured__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.jrn-featured__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-slow), filter 1.6s var(--ease-slow);
}
.jrn-featured:hover .jrn-featured__image img {
  transform: scale(1.03);
  filter: brightness(0.96);
}
.jrn-featured__tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--ivory);
  padding: 8px 14px;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--charcoal);
}
.jrn-featured__tag::before {
  content: ""; display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold);
  margin-right: 10px; vertical-align: middle; transform: translateY(-1px);
}
.jrn-featured__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(20px, 3vw, 40px) 0;
}
.jrn-featured__cat {
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.jrn-featured__body h2 {
  margin-top: 22px;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  max-width: 14ch;
}
.jrn-featured__excerpt {
  margin-top: 26px;
  color: var(--charcoal-70);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  max-width: 44ch;
  font-weight: 300;
}
.jrn-featured__meta {
  margin-top: 34px;
  display: flex; align-items: center; gap: 18px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.jrn-featured__meta .sep { opacity: 0.4; }
.jrn-featured__cta {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer;
}
.jrn-featured__cta:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.jrn-featured__cta .cta__arrow { transition: transform .4s var(--ease); }
.jrn-featured__cta:hover .cta__arrow { transform: translateX(4px); }

/* Grid header */
.jrn-grid-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--charcoal-15);
  padding-top: clamp(40px, 5vw, 70px);
  margin-bottom: clamp(40px, 5vw, 60px);
}
.jrn-grid-head h3 { font-size: clamp(22px, 2.4vw, 32px); }
.jrn-grid-head span {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-70);
}

/* Article grid */
.jrn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.6vw, 60px) clamp(24px, 3vw, 40px);
}
.jrn-card { position: relative; }
.jrn-card a { display: block; }
.jrn-card__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand-soft);
}
.jrn-card__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-slow), filter 1.4s var(--ease-slow);
}
.jrn-card:hover .jrn-card__frame img {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.jrn-card__cat {
  position: absolute; top: 16px; left: 16px;
  background: rgba(243,240,233,0.94);
  padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal);
  backdrop-filter: blur(6px);
}
.jrn-card__body { padding-top: 22px; }
.jrn-card__meta {
  display: flex; gap: 14px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.jrn-card__meta .sep { opacity: 0.4; }
.jrn-card h3 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.jrn-card__exc {
  margin-top: 12px;
  color: var(--charcoal-70);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 40ch;
}
.jrn-card__more {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.jrn-card:hover .jrn-card__more { border-bottom-color: var(--gold); color: var(--blue); }

/* Load more */
.jrn-load {
  padding: clamp(60px, 8vw, 100px) 0 0;
  display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--charcoal-15);
  margin-top: clamp(60px, 7vw, 100px);
  padding-top: 40px;
}
.jrn-load__pag {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-70);
}

/* Newsletter block */
.jrn-newsletter {
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}
.jrn-newsletter__inner {
  padding: clamp(90px, 12vw, 150px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.jrn-newsletter__tag {
  color: rgba(243,240,233,0.7);
}
.jrn-newsletter h2 {
  color: var(--ivory);
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 1;
  margin-top: 22px;
  max-width: 12ch;
}
.jrn-newsletter h2 em { color: var(--sand); font-style: italic; }
.jrn-newsletter__body p {
  color: rgba(243,240,233,0.82);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  max-width: 44ch;
  font-weight: 300;
}
.jrn-newsletter__form {
  margin-top: 32px;
  display: flex;
  border-bottom: 1px solid rgba(243,240,233,0.35);
  transition: border-color .3s var(--ease);
}
.jrn-newsletter__form:focus-within { border-bottom-color: var(--gold); }
.jrn-newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 0;
  font: inherit;
  color: var(--ivory);
  font-size: 16px;
  outline: none;
}
.jrn-newsletter__form input::placeholder { color: rgba(243,240,233,0.5); }
.jrn-newsletter__form button {
  background: none;
  border: 0;
  color: var(--ivory);
  font: inherit;
  padding: 14px 0 14px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}
.jrn-newsletter__form button:hover { color: var(--gold); }
.jrn-newsletter__note {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(243,240,233,0.5);
}

/* ============================================================
   Home retouch showcase (slice of the Retouch page on the homepage)
============================================================ */
.home-retouch {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ivory);
}
.home-retouch__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.home-retouch__side h2 { max-width: 12ch; margin-top: 14px; }
.home-retouch__side h2 em { color: var(--gold); font-style: italic; }
.home-retouch__side .lede { margin-top: 22px; }
.home-retouch__cta {
  margin-top: 34px;
}
.home-retouch__stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid var(--charcoal-15);
  padding-top: 24px;
}
.home-retouch__stat {
  display: flex; flex-direction: column; gap: 4px;
}
.home-retouch__stat .num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.home-retouch__stat .lbl {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.home-retouch__frame {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
}
.home-retouch__frame .rtch-compare {
  aspect-ratio: auto !important;
  height: 100%;
}
.home-retouch__caption {
  margin-top: 14px;
  display: flex; justify-content: space-between;
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.home-retouch__caption em { color: var(--gold); font-style: normal; }

@media (max-width: 1000px) {
  .home-retouch__inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .home-retouch__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ============================================================
   Retouch page — before/after showcase
============================================================ */
.rtch-hero {
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 110px)) 0 clamp(40px, 5vw, 70px);
}
.rtch-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
}
.rtch-hero h1 {
  font-size: clamp(52px, 8.6vw, 138px);
  max-width: 13ch;
  margin-top: 22px;
}
.rtch-hero h1 em { font-style: italic; color: var(--gold); }
.rtch-hero__side p { color: var(--charcoal-70); max-width: 42ch; }
.rtch-hero__meta {
  margin-top: 22px;
  display: flex; gap: 22px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.rtch-hero__meta strong { color: var(--charcoal); font-weight: 500; }

/* Intro */
.rtch-intro {
  padding: clamp(50px, 7vw, 100px) 0 clamp(30px, 4vw, 50px);
  border-top: 1px solid var(--charcoal-15);
}
.rtch-intro__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(30px, 6vw, 90px);
}
.rtch-intro p {
  max-width: 52ch;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
  font-weight: 300;
}

/* Compare grid */
.rtch-grid {
  padding: clamp(30px, 4vw, 50px) 0 clamp(80px, 10vw, 130px);
  display: grid;
  gap: clamp(50px, 7vw, 100px);
}

.rtch-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.rtch-item__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; flex-wrap: wrap;
  padding-bottom: 4px;
}
.rtch-item__meta {
  display: flex; align-items: baseline; gap: 16px;
}
.rtch-item__num {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.rtch-item h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.rtch-item__cat {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.rtch-item__hint {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-50);
}

/* The compare widget */
.rtch-compare {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  aspect-ratio: 16 / 10;
}
.rtch-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
/* "After" image is the base */
.rtch-compare__after { z-index: 1; }
/* "Before" image is clipped to a percentage of width via clip-path */
.rtch-compare__before {
  z-index: 2;
  clip-path: inset(0 var(--rtch-clip, 50%) 0 0);
  filter: saturate(0.62) contrast(0.88) brightness(1.03) hue-rotate(-6deg);
}
/* Labels */
.rtch-compare__label {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 6px 12px;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--charcoal);
  background: rgba(243, 240, 233, 0.94);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.rtch-compare__label--before { left: 18px; }
.rtch-compare__label--after {
  right: 18px;
  color: var(--ivory);
  background: rgba(23, 23, 23, 0.6);
}
/* Divider handle */
.rtch-compare__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(100% - var(--rtch-clip, 50%));
  width: 2px;
  background: var(--ivory);
  z-index: 3;
  pointer-events: none;
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.rtch-compare__handle {
  position: absolute;
  top: 50%;
  left: calc(100% - var(--rtch-clip, 50%));
  width: 56px; height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  border-radius: 50%;
  background: var(--ivory);
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  pointer-events: none;
  transition: transform .2s var(--ease);
}
.rtch-compare:hover .rtch-compare__handle,
.rtch-compare:focus-within .rtch-compare__handle {
  transform: scale(1.05);
}
.rtch-compare__handle::before,
.rtch-compare__handle::after {
  content: "";
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.rtch-compare__handle::before {
  border-right: 6px solid var(--charcoal);
}
.rtch-compare__handle::after {
  border-left: 6px solid var(--charcoal);
}
.rtch-compare:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* Services + closing CTA */
.rtch-services {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--sand-soft);
}
.rtch-services__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
}
.rtch-services__inner .lead {
  max-width: 20ch;
}
.rtch-services__inner h2 {
  margin-top: 22px;
  max-width: 14ch;
}
.rtch-services__inner h2 em { color: var(--gold); font-style: italic; }
.rtch-services__list {
  list-style: none;
  border-top: 1px solid var(--charcoal-15);
  columns: 2;
  column-gap: clamp(30px, 4vw, 60px);
}
.rtch-services__list li {
  break-inside: avoid;
  padding: 18px 0;
  border-bottom: 1px solid var(--charcoal-15);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  display: flex; align-items: baseline; gap: 12px;
}
.rtch-services__list li::before {
  content: attr(data-num);
  font-size: 10px; letter-spacing: 0.28em; color: var(--gold);
  font-weight: 600;
  min-width: 24px;
}

/* Retouch closing CTA — reuse .finalcta but with charcoal background */
.rtch-finalcta {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(90px, 12vw, 150px) 0;
}
.rtch-finalcta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}
.rtch-finalcta h2 {
  color: var(--ivory);
  font-size: clamp(40px, 6.4vw, 96px);
  max-width: 14ch;
  line-height: 1;
}
.rtch-finalcta h2 em { color: var(--sand); font-style: italic; }
.rtch-finalcta__side p {
  color: rgba(243,240,233,0.82);
  max-width: 42ch;
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 18px);
}
.rtch-finalcta__side .cta {
  margin-top: 28px;
}

/* Retouch responsive */
@media (max-width: 1000px) {
  .rtch-hero__grid { grid-template-columns: 1fr; }
  .rtch-intro__grid { grid-template-columns: 1fr; }
  .rtch-services__inner { grid-template-columns: 1fr; }
  .rtch-finalcta__inner { grid-template-columns: 1fr; }
  .rtch-compare { aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .rtch-services__list { columns: 1; }
  .rtch-compare__label { font-size: 9px; letter-spacing: 0.2em; padding: 5px 9px; top: 12px; }
  .rtch-compare__label--before { left: 12px; }
  .rtch-compare__label--after { right: 12px; }
  .rtch-compare__handle { width: 44px; height: 44px; margin-left: -22px; margin-top: -22px; }
}

/* ============================================================
   Journal — Article page (long-form editorial reader)
============================================================ */
.art-topbar {
  padding: calc(var(--nav-h) + clamp(28px, 3vw, 44px)) 0 clamp(20px, 2vw, 28px);
  border-bottom: 1px solid var(--charcoal-15);
}
.art-topbar__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.art-back {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.art-back:hover { color: var(--charcoal); gap: 16px; }
.art-back .arrow {
  display: inline-block;
  font-family: var(--serif); font-size: 22px; line-height: 1;
  transition: transform .3s var(--ease);
  color: var(--gold);
}
.art-back:hover .arrow { transform: translateX(-4px); }
.art-topbar__meta {
  display: flex; gap: 20px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.art-topbar__meta .sep { opacity: 0.4; }

/* Article hero */
.art-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
}
.art-hero__grid {
  max-width: 900px;
  margin: 0 auto;
}
.art-cat {
  display: inline-block;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.art-hero h1 {
  margin-top: 22px;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.art-hero h1 em { font-style: italic; color: var(--gold); }
.art-hero__deck {
  margin-top: 26px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--charcoal-70);
  max-width: 42ch;
  font-weight: 300;
  font-style: italic;
  font-family: var(--serif);
}
.art-hero__byline {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--charcoal-15);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--charcoal-70);
}
.art-hero__byline strong { color: var(--charcoal); font-weight: 500; }

/* Cover image */
.art-cover {
  margin: 0 auto clamp(50px, 6vw, 90px);
  max-width: 1240px;
  padding: 0 var(--gutter);
}
.art-cover__frame {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sand);
}
.art-cover__frame img { width: 100%; height: 100%; object-fit: cover; }
.art-cover__cap {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal-70);
}

/* Body — reader column */
.art-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(70px, 10vw, 130px);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 400;
}
.art-body > * + * { margin-top: 24px; }
.art-body p { text-wrap: pretty; }
.art-body p.first::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--charcoal);
}
.art-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: clamp(40px, 4vw, 60px);
}
.art-body h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: clamp(40px, 4vw, 60px);
}
.art-body blockquote {
  margin: clamp(40px, 5vw, 70px) 0;
  padding: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  color: var(--charcoal);
  text-align: center;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.art-body blockquote::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 30px;
}
.art-body ul, .art-body ol {
  padding-left: 24px;
}
.art-body li + li { margin-top: 8px; }
.art-body figure {
  margin: clamp(40px, 5vw, 70px) calc(-1 * var(--gutter));
  max-width: none;
}
.art-body figure img {
  width: 100%; height: auto; display: block;
}
.art-body figure figcaption {
  padding: 12px var(--gutter) 0;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--charcoal-70);
  display: flex; justify-content: space-between;
}
.art-body a { color: var(--blue); border-bottom: 1px solid var(--gold-soft); padding-bottom: 1px; }
.art-body a:hover { border-bottom-color: var(--gold); }

/* Author signature */
.art-sig {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px) var(--gutter);
  border-top: 1px solid var(--charcoal-15);
  border-bottom: 1px solid var(--charcoal-15);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; flex-wrap: wrap;
}
.art-sig__name {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
}
.art-sig__role {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-70);
}

/* Continue reading */
.art-continue {
  padding: clamp(60px, 8vw, 110px) 0;
}
.art-continue__label {
  text-align: center;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--charcoal-70);
  margin-bottom: clamp(30px, 4vw, 50px);
}
.art-continue__label .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  margin-right: 10px; vertical-align: middle; transform: translateY(-1px);
}
.art-next {
  max-width: 1100px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.art-next__card { display: block; }
.art-next__frame {
  overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--sand-soft);
}
.art-next__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}
.art-next__card:hover .art-next__frame img { transform: scale(1.05); }
.art-next__body { padding-top: 18px; }
.art-next__cat {
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.art-next__title {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  max-width: 26ch;
}
.art-next__label {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--charcoal-70);
  margin-bottom: 10px;
}
.art-back-to-index {
  display: flex; justify-content: center;
  padding: clamp(40px, 5vw, 70px) 0 clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--charcoal-15);
}

@media (max-width: 720px) {
  .art-next { grid-template-columns: 1fr; gap: 40px; }
  .art-topbar__meta { display: none; }
  .art-body p.first::first-letter { font-size: 3.4em; }
}

/* Journal responsive */
@media (max-width: 1000px) {
  .jrn-hero__grid { grid-template-columns: 1fr; }
  .jrn-featured__inner { grid-template-columns: 1fr; }
  .jrn-grid { grid-template-columns: repeat(2, 1fr); }
  .jrn-newsletter__inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .jrn-grid { grid-template-columns: 1fr; }
  .jrn-filter { flex-direction: column; align-items: flex-start; }
  .jrn-filter__group { gap: 16px; }
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */
@media (max-width: 1000px) {
  .work__item--a, .work__item--b, .work__item--c, .work__item--d { grid-column: 1 / -1; margin-top: 0; }
  .services { grid-template-columns: 1fr; }
  .services .svc + .svc { margin-top: 40px; }
  .philosophy__inner, .ai__inner, .founder__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-body { grid-template-columns: 1fr; }
  .contact-hero__grid { grid-template-columns: 1fr; }
  .sechead { grid-template-columns: 1fr; gap: 20px; }
  .case-intro__grid, .case-two { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__meta { text-align: left; }
}
/* Tighten nav a touch below full desktop */
@media (max-width: 1180px) {
  .nav__links { gap: 14px; font-size: 12.5px; }
  .nav__right { gap: 14px; }
  .nav .cta--small { padding: 9px 14px; font-size: 10.5px; letter-spacing: 0.12em; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .nav__right .cta { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact-form .row2 { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: 1fr 1fr; }
  .hero__bottombar { font-size: 9.5px; letter-spacing: 0.2em; }
}
