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

:root {
  --brand:       #3E5053;
  --brand-dark:  #2E3D40;
  --brand-deep:  #1B2528;
  --brand-soft:  #A8C3C7;
  --bg:          #212D30;
  --text:        #F1F3F2;
  --muted:       #93A5A7;
  --border:      rgba(241,243,242,0.12);
  --gold:        #C9A96E;
  --gold-light:  #E8C88A;
  --cream:       #F7F8F7;
  --nav-h:       80px;
  --expo:        cubic-bezier(0.19, 1, 0.22, 1);
  --smooth:      cubic-bezier(0.65, 0, 0.35, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

@keyframes pageEnter { from { opacity: 0; } to { opacity: 1; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  animation: pageEnter 0.7s ease both;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  left: 0; top: 0;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--expo), height 0.3s var(--expo), background 0.3s ease;
  mix-blend-mode: multiply;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  left: 0; top: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(62,80,83,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--expo), height 0.4s var(--expo), border-color 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}
body.hovered .cursor      { width: 48px; height: 48px; background: var(--gold); mix-blend-mode: normal; }
body.hovered .cursor-ring { opacity: 0; }

/* ─── PAGE TRANSITION VEIL ─── */
.veil {
  position: fixed; inset: 0;
  background: var(--brand-deep);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
}
.veil.out {
  opacity: 0;
  animation: veilOut 0.32s ease forwards;
}
.veil.in {
  opacity: 1;
  animation: veilIn 0.38s ease forwards;
}
@keyframes veilOut { from { opacity: 0; } to { opacity: 1; } }
@keyframes veilIn  { from { opacity: 1; } to { opacity: 0; } }

.veil-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.veil-arc {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: veilSpin 1.4s linear infinite;
  will-change: transform;
}
.veil-thb {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  position: relative; z-index: 1;
}
@keyframes veilSpin { to { transform: rotate(360deg); } }

/* ─── LOADER (home only) ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--brand-deep);
  z-index: 10001;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  display: flex; flex-direction: column; align-items: center;
  font-family: 'Fraunces', serif;
  color: var(--cream);
  line-height: 0.92;
  opacity: 0;
  animation: fadeUp 0.5s var(--expo) 0.15s forwards;
}
.loader-logo .ll-1 { font-size: clamp(34px, 6vw, 64px); font-weight: 500; }
.loader-logo .ll-2 { font-size: clamp(46px, 8vw, 88px); font-weight: 500; margin-top: -0.08em; }
.loader-tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.5s var(--expo) 0.35s forwards;
}
.loader-track {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.3s ease 0.45s forwards;
}
.loader-track::after {
  content: '';
  display: block; width: 100%; height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loadBar 0.75s var(--expo) 0.5s forwards;
}

@keyframes loadBar  { to { transform: translateX(0); } }
@keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 52px;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
nav.solid {
  background: rgba(247,248,247,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

/* logo image */
.nav-logo-img {
  display: block;
  height: 92px; width: auto;
  margin: -16px 0;
  transition: opacity 0.3s ease;
}
a:hover > .nav-logo-img { opacity: 0.85; }
.foot-logo-img { display: block; height: 104px; width: auto; margin: -14px 0; }
.loader-logo-img {
  display: block;
  width: clamp(200px, 30vw, 300px); height: auto;
  margin: -30px 0;
  opacity: 0;
  animation: fadeUp 0.7s var(--expo) 0.3s forwards;
}

/* logo wordmark — stacked lowercase, echoes the brand mark */
.nav-logo {
  display: flex; flex-direction: column;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 0.88;
  color: var(--brand);
  text-decoration: none;
  cursor: none;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.nav-logo:hover { color: var(--brand-dark); }
.nav-logo .lg-1 { font-size: 16px; letter-spacing: 0.01em; }
.nav-logo .lg-2 { font-size: 21px; letter-spacing: 0.01em; margin-top: -0.06em; }

.nav-links { display: flex; gap: 44px; list-style: none; margin-left: 48px; }
.nav-links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 22px; margin-left: auto; }

.btn-ig {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s ease;
}
.btn-ig:hover { color: var(--brand); }
.btn-ig svg { width: 17px; height: 17px; }

.btn-cta {
  padding: 12px 28px;
  background: var(--brand);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: 1px solid var(--brand);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.btn-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--brand-deep); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--expo), opacity 0.3s ease, background 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--cream); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--cream); }

/* menu overlay */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--brand-deep);
  z-index: 990;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}
.mob-menu.open { opacity: 1; visibility: visible; }

.mm-bg { position: absolute; inset: 0; pointer-events: none; }
.mm-rings {
  position: absolute;
  top: 50%; right: -18vmin;
  width: 90vmin; height: 90vmin;
  transform: translateY(-50%) rotate(0deg);
  color: rgba(168,195,199,0.1);
  transition: transform 1.6s var(--expo);
}
.mob-menu.open .mm-rings { transform: translateY(-50%) rotate(40deg); }
.mm-ghost {
  position: absolute; bottom: -0.16em; left: -0.04em;
  font-family: 'Fraunces', serif;
  font-size: clamp(120px, 24vw, 340px);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241,243,242,0.05);
  white-space: nowrap; user-select: none;
  line-height: 1;
}

.mm-inner {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px clamp(28px, 8vw, 110px) 48px;
  max-width: 760px;
}

.mm-eyebrow {
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--expo), transform 0.5s var(--expo);
}
.mob-menu.open .mm-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }

.mm-links { display: flex; flex-direction: column; }

.mob-menu a.mob-link {
  display: flex; align-items: baseline; gap: 22px;
  padding: clamp(12px, 2.4vh, 22px) 0;
  border-bottom: 1px solid rgba(241,243,242,0.08);
  text-decoration: none;
  cursor: none;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--expo), transform 0.6s var(--expo), padding-left 0.4s var(--expo);
}
.mob-menu a.mob-link:first-child { border-top: 1px solid rgba(241,243,242,0.08); }
.mob-menu.open a.mob-link { opacity: 1; transform: translateY(0); }
.mob-menu.open a.mob-link:nth-child(1) { transition-delay: 0.22s, 0.22s, 0s; }
.mob-menu.open a.mob-link:nth-child(2) { transition-delay: 0.3s, 0.3s, 0s; }
.mob-menu.open a.mob-link:nth-child(3) { transition-delay: 0.38s, 0.38s, 0s; }
.mob-menu.open a.mob-link:nth-child(4) { transition-delay: 0.46s, 0.46s, 0s; }
.mob-menu a.mob-link:hover { padding-left: 16px; }

.mm-num {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold);
  flex-shrink: 0;
}
.mm-txt {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 6.2vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  transition: color 0.3s ease, font-style 0.3s ease;
}
.mob-menu a.mob-link:hover .mm-txt { color: var(--brand-soft); font-style: italic; }
.mob-menu a.mob-link.active .mm-txt { color: var(--gold); font-style: italic; }

.mm-arrow {
  width: 22px; height: 22px;
  margin-left: auto;
  align-self: center;
  color: var(--muted);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s var(--expo), color 0.3s ease;
}
.mob-menu a.mob-link:hover .mm-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }
.mob-menu a.mob-link.active .mm-arrow { opacity: 0.6; transform: translateX(0); color: var(--gold); }

.mm-foot {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 44px;
  margin-top: clamp(28px, 6vh, 56px);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--expo), transform 0.6s var(--expo);
}
.mob-menu.open .mm-foot { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.mm-foot-label {
  display: block;
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(241,243,242,0.35);
  margin-bottom: 5px;
}
.mm-foot a {
  font-size: 14px; color: rgba(241,243,242,0.75);
  text-decoration: none; cursor: none;
  transition: color 0.3s ease;
}
.mm-foot a:hover { color: var(--gold); }
.mm-tag {
  margin-left: auto;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; color: rgba(241,243,242,0.3);
}

@media (max-width: 600px) {
  .mm-tag { display: none; }
  .mm-foot { gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .mm-eyebrow, .mob-menu a.mob-link, .mm-foot { opacity: 1; transform: none; transition: none; }
  .mm-rings { transition: none; }
}

/* ─── SHARED ─── */
main { padding-top: var(--nav-h); }

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--expo), transform 0.9s var(--expo);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* Portfolio card reveal — faster, crisper, column-staggered */
.wi.reveal {
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.wi.reveal.in { opacity: 1; transform: translateY(0) scale(1); }
.wi.d1 { transition-delay: 0.08s; }
.wi.d2 { transition-delay: 0.16s; }
.wi.d3 { transition-delay: 0.24s; }

.eyebrow {
  display: block;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.teal { color: var(--brand); }

.sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
}
.sec-title em { font-style: italic; font-weight: 400; color: var(--brand); }

.page-head {
  padding: 72px 52px 52px;
  border-bottom: 1px solid var(--border);
}
.page-head .lede {
  max-width: 560px;
  margin-top: 28px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85;
  color: var(--muted);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-outline:hover { background: var(--brand); color: var(--cream); }
.btn-outline-gold { border-color: rgba(201,169,110,0.6); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--brand-deep); }

/* ─── HERO (home) ─── */
#home {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  isolation: isolate;
}

/* animated hero backdrop */
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* faint vertical hairlines kill the "bare white" feeling */
.hb-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(62,80,83,0.06) 1px, transparent 1px);
  background-size: 25% 100%;
  background-position: 12.5% 0;
}

/* spin wrappers: JS applies scroll rotation here, SVG self-rotates inside */
.hb-spin {
  position: absolute;
  top: 50%; left: 50%;
  width: min(96vmin, 860px);
  height: min(96vmin, 860px);
  margin-left: calc(min(96vmin, 860px) / -2);
  margin-top: calc(min(96vmin, 860px) / -2);
  will-change: transform;
}
.hb-rings, .hb-arc { display: block; width: 100%; height: 100%; will-change: transform; }
.hb-rings {
  color: rgba(62,80,83,0.14);
  animation: ringsSpin 90s linear infinite;
}
.hb-arc {
  opacity: 0.55;
  animation: arcSpin 36s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes ringsSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes arcSpin   { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hb-glow-wrap { position: absolute; will-change: transform; }
.hb-gw-1 { top: -12vmax; left: -10vmax; }
.hb-gw-2 { bottom: -14vmax; right: -10vmax; }
.hb-glow {
  width: 46vmax; height: 46vmax;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hb-glow-1 {
  background: radial-gradient(circle, rgba(62,80,83,0.13) 0%, transparent 65%);
  animation: glowDrift1 18s ease-in-out infinite alternate;
}
.hb-glow-2 {
  background: radial-gradient(circle, rgba(201,169,110,0.16) 0%, transparent 65%);
  animation: glowDrift2 22s ease-in-out infinite alternate;
}
@keyframes glowDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(7vmax, 5vmax) scale(1.15); } }
@keyframes glowDrift2 { from { transform: translate(0,0) scale(1.1); } to { transform: translate(-6vmax, -5vmax) scale(0.95); } }

/* hero content sits above backdrop */
#home > *:not(.hero-bg):not(.hero-rail):not(.hero-scroll-ind):not(.hero-ghost) { position: relative; z-index: 1; }

/* side meta rails */
.hero-rail {
  position: absolute; top: 50%;
  display: flex; align-items: center;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s var(--expo) 3s forwards;
}
.hero-rail span {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.hero-rail-l { left: 36px; transform: translateY(-50%); }
.hero-rail-r { right: 36px; transform: translateY(-50%); }
.hero-rail-l span { transform: rotate(180deg); }

@media (prefers-reduced-motion: reduce) {
  .hb-rings, .hb-arc, .hb-glow { animation: none; }
  .hero-rail { opacity: 1; }
}
@media (max-width: 900px) {
  .hero-rail { display: none; }
  .hb-lines { background-size: 50% 100%; background-position: 25% 0; }
}

.hero-top {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.8s var(--expo) 1.6s forwards;
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(58px, 11vw, 148px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.01em;
  overflow: hidden;
  margin-bottom: 28px;
  color: var(--brand);
}

.hero-line {
  display: block;
  opacity: 0; transform: translateY(105%);
  animation: revealUp 1.1s var(--expo) forwards;
}
.hero-line:nth-child(1) { animation-delay: 1.8s; }
.hero-line:nth-child(2) { animation-delay: 1.95s; }
.hero-line:nth-child(3) { font-style: italic; font-weight: 400; color: var(--text); animation-delay: 2.1s; }

.hero-tagline {
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.8s var(--expo) 2.4s forwards;
}

.hero-pills {
  display: flex; align-items: center; gap: 20px;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.8s var(--expo) 2.6s forwards;
}
.hero-pill {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-sep { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero-scroll-ind {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-bottom: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s ease 3.2s forwards, scrollDrift 2s ease-in-out infinite 4s;
}
@keyframes scrollDrift {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(14px); }
}
.hero-scroll-ind span {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite 3.8s;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

.hero-ghost {
  position: absolute; bottom: -0.12em; left: 50%; transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(110px, 22vw, 300px);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62,80,83,0.07);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  letter-spacing: 0.02em;
}

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--brand-deep); padding: 56px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: scrollMarquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.marquee-set {
  display: flex; align-items: center; gap: 52px;
  padding-right: 52px;
  flex-shrink: 0;
}
.m-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 38px);
  font-style: italic;
  color: rgba(247,248,247,0.25);
  white-space: nowrap;
}
.m-text.lit { color: var(--gold); }
.m-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: 0.5; }

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── HOME: intro split ─── */
.home-intro {
  padding: 56px 52px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  align-items: start;
  background:
    linear-gradient(to right, rgba(62,80,83,0.05) 1px, transparent 1px) 50% 0 / 50% 100% no-repeat;
}
.home-intro-body p {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
}
.home-intro-body strong { color: var(--brand); font-weight: 400; }

.home-services { display: flex; flex-direction: column; margin-top: 8px; }
.hs-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  cursor: none;
  transition: padding-left 0.4s var(--expo);
}
.hs-row:first-child { border-top: 1px solid var(--border); }
.hs-row:hover { padding-left: 14px; }
.hs-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}
.hs-row:hover .hs-name { color: var(--brand); }
.hs-num {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold);
}
.hs-arr {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.hs-arr-svg {
  display: block;
  animation: arr-drift 2.4s ease-in-out infinite;
}
@keyframes arr-drift {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(3px, -3px); }
}
.hs-row:hover .hs-arr { color: var(--gold); }
.hs-row:hover .hs-arr-svg { animation-duration: 1s; }

/* ─── FLOATING CHAT BUTTON ─── */
.chat-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.35s var(--expo), box-shadow 0.35s var(--expo);
  animation: chat-pulse 3s ease-in-out infinite;
}
.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201,169,110,0.5), 0 4px 12px rgba(0,0,0,0.3);
  animation: none;
}
.chat-btn svg { display: block; }
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,169,110,0.35), 0 2px 8px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 4px 28px rgba(201,169,110,0.55), 0 2px 8px rgba(0,0,0,0.3); }
}

/* ─── HOME: services bubbles ─── */
.hs-bubbles-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin: 24px 0 0;
}
.hs-bubbles {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 28px 0 4px;
}
.hs-bubble {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 100px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text);
  background: rgba(201,169,110,0.05);
  cursor: default;
  position: relative; overflow: hidden;
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  animation: hs-float 5s ease-in-out infinite;
  animation-delay: calc(var(--bi) * 0.8s);
  box-shadow: 0 0 0 0 rgba(201,169,110,0);
}
.hs-bubble::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(201,169,110,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.hs-bubble:hover::before { transform: translateX(100%); }
.hs-bubble:hover {
  border-color: rgba(201,169,110,0.9);
  color: var(--brand);
  background: rgba(201,169,110,0.1);
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 8px 32px rgba(201,169,110,0.18), 0 0 0 1px rgba(201,169,110,0.15);
}
.hs-b-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 6px rgba(201,169,110,0.5);
}
.hs-bubble:hover .hs-b-dot { opacity: 1; transform: scale(1.4); }
@keyframes hs-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ─── HOME: featured work strip ─── */
.feat-link {
  text-decoration: none;
  color: inherit;
  cursor: none;
  background: linear-gradient(120deg, currentColor 0%, currentColor 100%) no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 0.4s var(--expo);
  display: inline;
  position: relative;
}
.feat-link em { color: var(--brand); font-style: italic; font-weight: 400; transition: color 0.4s ease; }
.feat-link:hover { opacity: 0.75; }
.feat-link:hover em { color: var(--gold); }

.home-feat { padding: 52px 52px 72px; }
.home-feat-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 32px; flex-wrap: wrap;
}
.feat-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: flex-start;
}
.feat-row .wi { aspect-ratio: 1; flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); }

/* ─── WORK GRID ─── */
.work-section { padding: 52px 52px 72px; }

/* ── 3-column portfolio grid (centers gracefully when fewer cards exist) ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 380px));
  gap: 20px;
  justify-content: center;
  align-items: start;
}
.work-grid .wi { aspect-ratio: 4/5; }
.wi.shape-portrait  { aspect-ratio: 4/5; }
.wi.shape-square    { aspect-ratio: 1/1; }
.wi.shape-landscape { aspect-ratio: 16/9; }
.wi.shape-circle    { aspect-ratio: 1/1; border-radius: 50%; }
.wi.shape-circle .work-card { border-radius: 50%; }

.wi {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(201,169,110,0.45);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.28),
    0 12px 28px -6px rgba(0,0,0,0.36);
  transform: translateY(0) scale(1) translateZ(0);
  transition:
    transform 0.6s var(--expo),
    box-shadow 0.6s var(--expo),
    border-color 0.6s var(--expo);
  will-change: transform;
  backface-visibility: hidden;
}
.wi:hover {
  transform: translateY(-14px) scale(1.02) translateZ(0);
  border-color: rgba(201,169,110,0.75);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.22),
    0 18px 40px -8px rgba(0,0,0,0.42);
}

.work-card {
  position: relative; overflow: hidden;
  cursor: none; width: 100%; height: 100%;
  background: var(--brand-deep);
  border-radius: 18px;
}

/* ── Animated gradient background on placeholder cards ── */
.wc-bg {
  position: absolute; inset: 0;
  transition: transform 1.1s var(--expo);
}
.work-card:hover .wc-bg { transform: scale(1.05); }

/* Subtle animated shimmer overlay on all placeholder cards */
.wc-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(201,169,110,0.04) 50%,
    transparent 70%
  );
  background-size: 300% 100%;
  animation: wc-shim 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wc-shim {
  0%   { background-position: 120% 0; }
  100% { background-position: -20% 0; }
}

/* Dot-grid texture */
.wc-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.work-card:hover .wc-dots { opacity: 1; }

.wc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,20,22,0.58) 0%, rgba(12,20,22,0.1) 50%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.wc-info {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  opacity: 1; transform: translateY(0);
  transition: opacity 0.45s var(--expo), transform 0.45s var(--expo);
}

.wc-cat { display: none; }
.feat-view-mobile { display: none; }
.wc-name {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #fff; line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.7);
}

/* teal-family card gradients */
.bg-1 { background: linear-gradient(145deg, #2E3D40 0%, #3E5053 60%, #28363a 100%); }
.bg-2 { background: linear-gradient(145deg, #1d2a2d 0%, #34464a 100%); }
.bg-3 { background: linear-gradient(145deg, #2a3033 0%, #1c2426 100%); }
.bg-4 { background: linear-gradient(145deg, #233438 0%, #16201f 100%); }
.bg-5 { background: linear-gradient(145deg, #3a3326 0%, #2a2014 100%); }
.bg-6 { background: linear-gradient(145deg, #2E3D40 0%, #485e62 100%); }
.bg-7 { background: linear-gradient(145deg, #1a2628 0%, #2c3c40 100%); }
.bg-8 { background: linear-gradient(145deg, #32302a 0%, #3E5053 100%); }

/* Floating geometric accents */
.wc-accent {
  position: absolute; opacity: 0.13;
  animation: wc-float 7s ease-in-out infinite;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.wc-accent-b {
  position: absolute; opacity: 0.06;
  animation: wc-float 11s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes wc-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(2deg); }
  66%       { transform: translateY(5px) rotate(-1.5deg); }
}
.work-card:hover .wc-accent   { opacity: 0.3; }
.work-card:hover .wc-accent-b { opacity: 0.12; }

/* Gold corner accent line */
.wc-corner {
  position: absolute; top: 16px; left: 16px;
  width: 28px; height: 28px;
  border-top: 1px solid rgba(201,169,110,0.4);
  border-left: 1px solid rgba(201,169,110,0.4);
  opacity: 0;
  transition: opacity 0.5s ease, width 0.5s var(--expo), height 0.5s var(--expo);
}
.wc-corner-br {
  position: absolute; bottom: 16px; right: 16px;
  width: 28px; height: 28px;
  border-bottom: 1px solid rgba(201,169,110,0.4);
  border-right: 1px solid rgba(201,169,110,0.4);
  opacity: 0;
  transition: opacity 0.5s ease 0.05s, width 0.5s var(--expo) 0.05s, height 0.5s var(--expo) 0.05s;
}
.work-card:hover .wc-corner,
.work-card:hover .wc-corner-br { opacity: 1; width: 44px; height: 44px; }

.work-foot { margin-top: 60px; text-align: center; }

/* ─── ABOUT ─── */
.about-dark {
  padding: 72px 52px 80px;
  background: var(--brand-deep); color: var(--cream);
}
.about-dark .sec-title { color: var(--cream); }
.about-dark .sec-title em { color: var(--gold); }

.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: stretch;
}

.about-body p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85;
  color: rgba(247,248,247,0.65);
  margin-bottom: 22px;
}
.about-body strong { color: var(--cream); font-weight: 400; }

.about-vals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 52px;
}
.av {
  border-top: 1px solid rgba(247,248,247,0.12);
  padding-top: 22px;
}
.av-title {
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500;
  color: var(--cream); margin-bottom: 9px;
}
.av-text { font-size: 13px; color: rgba(247,248,247,0.5); line-height: 1.6; }

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 40px;
  margin-top: 72px; padding-top: 52px;
  border-top: 1px solid rgba(247,248,247,0.1);
}
.as-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.as-lbl {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,248,247,0.4);
}

.about-vis { position: relative; height: auto; min-height: 580px; }
.av-main {
  position: absolute; top: 0; right: 0;
  width: 84%; height: 68%;
  background: linear-gradient(145deg, #2E3D40, rgba(201,169,110,0.06));
  overflow: hidden;
}
.av-main::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,80,83,0.22);
  box-shadow: inset 0 0 0 1.5px rgba(201,169,110,0.45);
  pointer-events: none;
}
.av-accent {
  position: absolute; bottom: 0; left: 0;
  width: 68%; height: 46%;
  background: linear-gradient(145deg, rgba(201,169,110,0.05), #2E3D40);
  overflow: hidden;
}
.av-accent::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,80,83,0.22);
  box-shadow: inset 0 0 0 1.5px rgba(201,169,110,0.38);
  pointer-events: none;
}
.av-ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(60px, 7vw, 92px);
  font-style: italic; font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.38);
  white-space: nowrap; pointer-events: none; user-select: none;
  animation: av-ghost-drift 9s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(201,169,110,0.12);
}
@keyframes av-ghost-drift {
  0%   { transform: translate(-50%, -50%) translateY(0px) translateX(0px); opacity: 0.7; }
  33%  { transform: translate(-50%, -50%) translateY(-8px) translateX(4px); opacity: 1; }
  66%  { transform: translate(-50%, -50%) translateY(5px) translateX(-5px); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) translateY(0px) translateX(0px); opacity: 0.7; }
}

/* about: process strip (light) */
/* ─── PRESS CITATION ─── */
.press-cite {
  display: block;
  text-decoration: none;
  margin-top: 36px;
  padding-top: 24px;
  position: relative;
  overflow: hidden;
}
/* underline sweep on hover — draws across the title */
.press-cite::before {
  content: '';
  position: absolute;
  bottom: 38px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(201,169,110,0.45);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  transition: transform 0.5s var(--expo);
}
.press-cite:hover::before { transform: scaleX(1); }

/* animated top rule */
.pc-top-rule {
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, rgba(201,169,110,0.7), rgba(201,169,110,0.15));
  margin-bottom: 18px;
}
.press-cite.in .pc-top-rule {
  animation: pcRuleDraw 0.8s var(--expo) 0s forwards;
}

/* eyebrow */
.pc-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(10px);
}
.press-cite.in .pc-eyebrow {
  animation: pcFadeUp 0.5s var(--expo) 0.35s forwards;
}
.pc-outlet {
  font-weight: 500;
  color: var(--gold);
  font-style: normal;
}

/* main layout */
.pc-main {
  display: flex;
  align-items: center;
  gap: 2px;
}
.pc-title-wrap { flex: 0 1 auto; overflow: hidden; }

/* quote marks — spring bounce in */
.pc-q {
  font-family: 'Fraunces', serif;
  font-size: clamp(54px, 6.5vw, 80px);
  line-height: 0.72;
  color: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  user-select: none;
  filter: blur(6px);
  will-change: transform, opacity, filter;
}
.pc-q-l {
  align-self: flex-start;
  margin-top: -4px;
  transform: scale(0.3) rotate(-15deg);
}
.pc-q-r {
  align-self: flex-end;
  margin-bottom: -4px;
  transform: scale(0.3) rotate(15deg);
}
.press-cite.in .pc-q-l {
  animation: pcQuoteL 0.7s var(--spring) 0.5s forwards;
}
.press-cite.in .pc-q-r {
  animation: pcQuoteR 0.7s var(--spring) 0.88s forwards;
}
.press-cite:hover .pc-q {
  opacity: 0.55 !important;
  filter: none !important;
  transform: scale(1) rotate(0deg) !important;
}

/* title — word spans injected by JS */
.pc-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.28;
}
.pc-word {
  display: inline-block;
  opacity: 0;
  clip-path: inset(0 0 110% 0);
  transform: translateY(6px);
}
.press-cite.in .pc-word {
  animation: pcWordRise 0.6s var(--expo) forwards;
}

/* read hint */
.pc-read-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
  opacity: 0;
  transform: translateY(6px);
  transition: color 0.3s ease;
}
.press-cite.in .pc-read-hint {
  animation: pcFadeUp 0.45s ease 1.1s forwards;
}
.pc-read-hint svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.35s var(--expo);
}
.press-cite:hover .pc-read-hint { color: rgba(201,169,110,0.9); }
.press-cite:hover .pc-read-hint svg { transform: translate(4px,-4px); }

@keyframes pcRuleDraw  { to { width: 100%; } }
@keyframes pcFadeUp    { to { opacity: 1; transform: translateY(0); } }
@keyframes pcQuoteL    { to { opacity: 0.32; transform: scale(1) rotate(0deg); filter: blur(0); } }
@keyframes pcQuoteR    { to { opacity: 0.32; transform: scale(1) rotate(0deg); filter: blur(0); } }
@keyframes pcWordRise  { to { opacity: 1; clip-path: inset(0 0 0% 0); transform: translateY(0); } }

.process { padding: 72px 52px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 64px;
}
.pr-step { border-top: 1px solid var(--border); padding-top: 26px; }
.pr-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 19px; color: var(--gold); margin-bottom: 14px; display: block;
}
.pr-title { display: none; }
.pr-text { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ─── FRONT PHASE ─── */
.fp-section { padding: 60px 52px 80px; }

.fp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.fp-card {
  position: relative; overflow: hidden;
  aspect-ratio: 9/16; cursor: none;
}
.fp-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.9s var(--expo);
}
.fp-card:hover .fp-card-bg { transform: scale(1.06); }

.fp-bg-1 { background: linear-gradient(180deg, #222E31 0%, #3a3014 100%); }
.fp-bg-2 { background: linear-gradient(180deg, #1b2629 0%, #3E5053 100%); }
.fp-bg-3 { background: linear-gradient(180deg, #20292b 0%, #14383b 100%); }

.fp-veil {
  position: absolute; inset: 0 0 -2px 0;
  background: linear-gradient(to top, rgba(18,26,28,0.92) 0%, rgba(18,26,28,0.4) 35%, transparent 65%);
}
.fp-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.fp-play {
  width: 68px; height: 68px;
  border: 1.5px solid rgba(201,169,110,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 0 8px rgba(0,0,0,0.15), 0 4px 24px rgba(0,0,0,0.4);
  transition: border-color 0.35s ease, transform 0.35s var(--expo), background 0.35s ease;
}
.fp-card:hover .fp-play { border-color: var(--gold); background: rgba(0,0,0,0.6); transform: scale(1.1); }
.fp-play svg { width: 22px; height: 22px; color: var(--gold); margin-left: 4px; }

.fp-info { position: absolute; bottom: 28px; left: 28px; right: 28px; }
.fp-label {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 2px 20px rgba(0,0,0,0.6);
}
.fp-title {
  font-size: clamp(14px, 1.6vw, 20px); font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 4px 32px rgba(0,0,0,0.4);
}

.fp-foot {
  display: flex; align-items: center; gap: 40px;
  margin-top: 72px;
}
.fp-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 34px);
  font-style: italic; color: var(--brand);
}

/* ─── CONTACT ─── */
.contact-dark {
  padding: 60px 52px 80px;
  background: var(--brand-deep); color: var(--cream);
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
}
.contact-dark .sec-title { color: var(--cream); }
.contact-dark .sec-title em { color: var(--gold); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  margin-top: 72px;
}

.contact-blurb {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85; color: rgba(247,248,247,0.6);
  margin-bottom: 48px;
}

.contact-deets { display: flex; flex-direction: column; gap: 24px; }
.cd-label {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(247,248,247,0.35); margin-bottom: 4px; display: block;
}
.cd-val {
  font-size: 15px; color: rgba(247,248,247,0.8);
  text-decoration: none; cursor: none;
  transition: color 0.3s ease;
}
a.cd-val:hover { color: var(--gold); }

.cform { display: flex; flex-direction: column; gap: 28px; }
.fg label {
  display: block;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,248,247,0.4); margin-bottom: 14px;
}
.fg input, .fg textarea, .fg select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(247,248,247,0.15);
  padding: 12px 0;
  font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--cream); outline: none;
  transition: border-color 0.35s ease;
  cursor: none;
  -webkit-appearance: none; appearance: none;
  border-radius: 0;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(247,248,247,0.25); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-bottom-color: var(--gold); }
.fg textarea { resize: none; height: 96px; }
.fg select option { background: var(--brand-dark); }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.btn-send {
  align-self: flex-start;
  padding: 15px 44px;
  background: var(--gold);
  color: var(--brand-deep);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-send:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-send:disabled { transform: none; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--brand);
  padding: 72px 52px;
  text-align: center;
}
.cta-band .sec-title { color: var(--cream); }
.cta-band .sec-title em { color: var(--gold); }
.cta-band p {
  color: rgba(247,248,247,0.65);
  max-width: 480px; margin: 24px auto 44px;
  font-size: 15px; line-height: 1.8;
}
.cta-band .btn-send { align-self: center; }

/* ─── FOOTER ─── */
footer {
  background: var(--brand-deep);
  border-top: 1px solid rgba(247,248,247,0.06);
  padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.foot-logo {
  display: flex; flex-direction: column;
  font-family: 'Fraunces', serif;
  font-weight: 500; line-height: 0.88;
  color: rgba(247,248,247,0.7);
  text-decoration: none; cursor: none;
  transition: color 0.3s ease;
}
.foot-logo:hover { color: var(--cream); }
.foot-logo .lg-1 { font-size: 15px; }
.foot-logo .lg-2 { font-size: 20px; margin-top: -0.06em; }

.foot-nav { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.foot-nav a {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(247,248,247,0.4); text-decoration: none; cursor: none;
  transition: color 0.3s ease;
}
.foot-nav a:hover { color: var(--gold); }

.foot-copy { font-size: 11px; letter-spacing: 0.08em; color: rgba(247,248,247,0.25); }
.foot-ig a {
  display: flex; align-items: center;
  color: rgba(247,248,247,0.4); text-decoration: none; cursor: none;
  transition: color 0.3s ease;
}
.foot-ig a:hover { color: var(--gold); }
.foot-ig svg { width: 18px; height: 18px; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-line, .hero-top, .hero-tagline, .hero-pills, .hero-scroll-ind { opacity: 1; transform: none; }
  #loader, .veil { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-head { padding: 80px 32px 56px; }
  .work-section, .fp-section, .process { padding: 70px 32px 100px; }
  .home-intro { grid-template-columns: 1fr; gap: 56px; padding: 100px 32px; }
  .home-feat { padding: 60px 32px 100px; }
  .about-dark, .contact-dark, .cta-band { padding: 90px 32px 100px; }
  .about-wrap { grid-template-columns: 1fr; gap: 64px; }
  .about-vis { height: 380px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 64px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  nav .btn-cta { display: none; }

  /* push hero text content down to align with circle center on mobile */
  #home { padding-top: 180px; }
  .page-head { padding: 64px 24px 48px; }
  .work-section, .fp-section, .process { padding: 56px 24px 52px; }
  .home-intro { padding: 52px 24px; }
  .home-feat { padding: 48px 24px 52px; }
  .about-dark, .contact-dark { padding: 80px 24px 52px; }
  .cta-band { padding: 48px 24px 52px; }

  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .feat-row { gap: 12px; }
  .feat-row .wi { flex: 0 0 calc((100% - 12px) / 2); max-width: calc((100% - 12px) / 2); }
  .wc-info { bottom: 12px; left: 14px; right: 14px; }
  .wc-name { font-size: 10px; letter-spacing: 0.2em; }
  .home-feat-head .btn-outline { display: none; }
  .feat-view-mobile { display: inline-block; margin-top: 36px; }
  .about-vals { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .fp-grid { grid-template-columns: 1fr; gap: 3px; }
  .fp-card { aspect-ratio: 4/3; }
  .fp-foot { flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 32px; }
  .frow { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 36px 24px; }
  .foot-logo { align-items: center; }
}

@media (max-width: 375px) {
  .hero-h1 { font-size: 44px; }
}

/* ─── DARK THEME ADJUSTMENTS ─── */
.cursor { background: var(--cream); mix-blend-mode: difference; }
.cursor-ring { border-color: rgba(241,243,242,0.35); }

nav.solid {
  background: rgba(27,37,40,0.88);
  border-bottom-color: rgba(241,243,242,0.08);
}

.sec-title em { color: var(--brand-soft); }
.cta-band .sec-title em, .about-dark .sec-title em, .contact-dark .sec-title em { color: var(--gold); }

.hero-h1 { color: var(--text); }
.hero-line:nth-child(3) { color: var(--brand-soft); }
.hero-ghost { -webkit-text-stroke-color: rgba(241,243,242,0.06); }
.hb-lines {
  background-image: linear-gradient(to right, rgba(241,243,242,0.05) 1px, transparent 1px);
}
.hb-rings { color: rgba(168,195,199,0.16); }
.hb-glow-1 { background: radial-gradient(circle, rgba(168,195,199,0.10) 0%, transparent 65%); }
.hb-glow-2 { background: radial-gradient(circle, rgba(201,169,110,0.13) 0%, transparent 65%); }
.scroll-line { background: linear-gradient(to bottom, var(--muted), transparent); }

.home-intro {
  background:
    linear-gradient(to right, rgba(241,243,242,0.07) 1px, transparent 1px) 50% 0 / 50% 100% no-repeat;
}
.hs-row:hover .hs-name { color: var(--brand-soft); }

.btn-outline { border-color: rgba(241,243,242,0.3); color: var(--text); }
.btn-outline:hover { background: var(--cream); border-color: var(--cream); color: var(--brand-deep); }

.btn-cta { background: var(--gold); border-color: var(--gold); color: var(--brand-deep); }
.btn-cta:hover { background: var(--gold-light); border-color: var(--gold-light); }

.work-card { outline: 1px solid rgba(241,243,242,0.06); outline-offset: -1px; }

.fp-quote { color: var(--brand-soft); }

.cta-band {
  background: var(--brand);
  border-top: 1px solid rgba(241,243,242,0.08);
  border-bottom: 1px solid rgba(241,243,242,0.08);
}

.marquee-strip { border-top: 1px solid rgba(241,243,242,0.06); border-bottom: 1px solid rgba(241,243,242,0.06); }

footer { border-top-color: rgba(241,243,242,0.08); }

.fg select option { background: var(--brand-deep); }

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(241,243,242,0.25);
  border-radius: 50%;
  color: var(--text);
  font-family: 'Tajawal', 'Jost', sans-serif;
  font-size: 14px; font-weight: 400;
  cursor: none;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--gold); background: var(--gold); color: var(--brand-deep); }
.lang-toggle-mm { width: 44px; height: 44px; }

/* ─── RTL / ARABIC ─── */
[dir="rtl"] body, body.rtl {
  font-family: 'Tajawal', 'Jost', sans-serif;
}
body.rtl .sec-title, body.rtl .wc-name, body.rtl .fp-title,
body.rtl .hs-name, body.rtl .av-title, body.rtl .pr-title, body.rtl .m-text,
body.rtl .fp-quote, body.rtl .as-num, body.rtl .mm-txt, body.rtl .mm-tag {
  font-family: 'Amiri', 'Fraunces', serif;
}

/* Arabic stats: number + label on the same line */
body.rtl .about-stats > div {
  display: flex; flex-direction: row-reverse; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
body.rtl .as-num { font-size: clamp(24px, 2.8vw, 38px); margin-bottom: 0; }
body.rtl .as-lbl { font-size: 13px; letter-spacing: 0.04em; }
body.rtl .sec-title em, body.rtl .hero-line:nth-child(3) { font-style: normal; }

/* uppercase tracking doesn't suit Arabic letterforms */
body.rtl .eyebrow, body.rtl .nav-links a, body.rtl .btn-cta, body.rtl .btn-ig,
body.rtl .btn-outline, body.rtl .btn-send, body.rtl .hero-top, body.rtl .hero-tagline,
body.rtl .hero-pill, body.rtl .wc-cat, body.rtl .fp-label, body.rtl .cd-label,
body.rtl .fg label, body.rtl .as-lbl, body.rtl .mm-eyebrow, body.rtl .mm-foot-label,
body.rtl .foot-nav a, body.rtl .hero-scroll-ind span, body.rtl .mm-num, body.rtl .hs-num,
body.rtl .pr-num, body.rtl .foot-copy {
  letter-spacing: 0.05em;
  font-size: 12px;
}
body.rtl .nav-links a { font-size: 15px; }
body.rtl .pc-eyebrow { font-size: 14px; letter-spacing: 0.06em; }
body.rtl .pr-num { font-size: 16px; }
body.rtl .hero-tagline { font-size: clamp(15px, 1.6vw, 19px); }

/* keep latin ghost marks LTR-positioned */
body.rtl .hero-ghost, body.rtl .mm-ghost, body.rtl .av-ghost { direction: ltr; }

/* hide vertical english rails in arabic */
body.rtl .hero-rail { display: none; }

/* nav margin swap for RTL */
body.rtl .nav-links { margin-left: 0; margin-right: 48px; }
body.rtl .nav-right  { margin-left: 0; margin-right: auto; }

/* marquee must stay LTR internally or the loop breaks in RTL */
body.rtl .marquee-strip,
body.rtl .marquee-track { direction: ltr; }

/* hover shift flips */
body.rtl .hs-row:hover { padding-left: 0; padding-right: 14px; }
body.rtl .mob-menu a.mob-link:hover { padding-left: 0; padding-right: 16px; }
body.rtl .mm-arrow { transform: translateX(12px) rotate(180deg); margin-left: 0; margin-right: auto; }
body.rtl .mob-menu a.mob-link:hover .mm-arrow,
body.rtl .mob-menu a.mob-link.active .mm-arrow { transform: translateX(0) rotate(180deg); }
body.rtl .mm-tag { margin-left: 0; margin-right: auto; }

/* line-height: arabic needs more breathing room */
body.rtl .sec-title { line-height: 1.25; }

/* ═══ SITE-WIDE 3D SCROLL SCENE (js/site-3d.js) ═══
   Fixed canvas backdrop the camera dollies through on scroll, with
   content sitting in floating glass panels over it. Same pattern as
   the Front Phase page, themed to the main brand teal/gold palette. */
#site-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, #29373a 0%, #1b2528 55%, #111618 100%);
  opacity: 0;
  animation: site-canvas-fade 1.4s ease forwards;
}
@keyframes site-canvas-fade { to { opacity: 1; } }
body:has(#site-canvas) main, body:has(#site-canvas) footer { position: relative; z-index: 1; }

.glass-panel {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 28px auto;
  border-radius: 32px;
  background: rgba(27,37,40,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(241,243,242,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.36), 0 1px 0 rgba(241,243,242,0.07) inset;
}
.glass-panel.cta-band { background: rgba(62,80,83,0.82); }
.glass-panel.about-dark, .glass-panel.contact-dark { background: rgba(22,32,35,0.85); }
@media (max-width: 900px) {
  .glass-panel { margin: 20px 16px; border-radius: 22px; }
}

/* generic 3D scroll-reveal modifiers — pair with the site's existing
   .reveal/.in IntersectionObserver (main.js); these just swap the
   resting transform for a perspective one. */
.home-intro, .home-feat, .work-hero, .work-section, .about-dark, .process, .contact-dark, .cta-band {
  perspective: 1800px;
}
.reveal.tilt-l, .reveal.tilt-r, .reveal.tilt-up, .reveal.tilt-card {
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.reveal.tilt-l {
  transform: translate3d(-70px, 50px, -260px) rotateY(40deg) rotateX(8deg);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.tilt-l.in { transform: translate3d(0,0,0) rotateY(0deg) rotateX(0deg); }
.reveal.tilt-r {
  transform: translate3d(70px, 50px, -260px) rotateY(-40deg) rotateX(8deg);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.tilt-r.in { transform: translate3d(0,0,0) rotateY(0deg) rotateX(0deg); }
.reveal.tilt-up {
  transform-origin: bottom center;
  transform: translate3d(0, 110px, -200px) rotateX(38deg);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.tilt-up.in { transform: translate3d(0,0,0) rotateX(0deg); }
.reveal.tilt-card {
  transform-origin: bottom center;
  transform: translate3d(0, 80px, -340px) rotateX(58deg) scale(0.86);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.tilt-card.in { transform: translate3d(0,0,0) rotateX(0deg) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal.tilt-l, .reveal.tilt-r, .reveal.tilt-up, .reveal.tilt-card { transform: none !important; }
}
@media (max-width: 768px) {
  .home-intro, .home-feat, .work-hero, .work-section, .about-dark, .process, .contact-dark, .cta-band { perspective: none; }
  .reveal.tilt-l, .reveal.tilt-r, .reveal.tilt-up, .reveal.tilt-card {
    transform: translateY(28px);
    transition: opacity 0.7s var(--expo), transform 0.7s var(--expo);
  }
  .reveal.tilt-l.in, .reveal.tilt-r.in, .reveal.tilt-up.in, .reveal.tilt-card.in { transform: translateY(0); }
}

/* latin handles/emails keep LTR order inside RTL text */
body.rtl .mm-foot a, body.rtl .cd-val, body.rtl .foot-copy, body.rtl .btn-ig {
  direction: ltr; unicode-bidi: isolate;
}

/* ─── MOUSE GLOW ─── */
body::after {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(
    600px circle at var(--mx, -9999px) var(--my, -9999px),
    rgba(201, 169, 110, 0.008) 0%,
    rgba(201, 169, 110, 0.004) 25%,
    rgba(201, 169, 110, 0.001) 55%,
    transparent 80%
  );
  mix-blend-mode: screen;
}
