/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --ink:         #0E0E0C;
  --ink-soft:    #1C1B18;
  --charcoal:    #2A2824;
  --warm-grey:   #5C5850;
  --cool-grey:   #8A8680;
  --rule:        #D6D0C6;
  --rule-dark:   rgba(255,255,255,0.09);
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-pale:   rgba(201,168,76,0.12);
  --white:       #FDFCF9;
  --off-white:   #F7F4EE;
  --parchment:   #F2EEE6;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Poppins', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CUSTOM SCROLLBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #a8892e; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CURSOR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#c-cursor {
  position: fixed; z-index: 9999;
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .22s, height .22s, background .22s;
}
#c-follower {
  position: fixed; z-index: 9998;
  width: 30px; height: 30px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .28s, height .28s, border-color .28s;
}
body.hovering #c-cursor  { width: 5px; height: 5px; background: var(--gold); }
body.hovering #c-follower { width: 44px; height: 44px; border-color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100svh;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 52px 72px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: var(--ink);
  overflow: hidden;
}

/* Three animated orbs that drift independently */
.hero-bg::before,
.hero-bg::after,
.hero-bg-orb {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-bg::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: orbDrift1 14s ease-in-out infinite, orbFadeIn .8s ease .3s forwards;
}

.hero-bg::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  bottom: -10%; right: 5%;
  animation: orbDrift2 18s ease-in-out infinite, orbFadeIn .8s ease .6s forwards;
}

/* Third orb — centre-right, larger, very subtle */
.hero-bg-orb {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  top: 30%; right: 20%;
  animation: orbDrift3 22s ease-in-out infinite, orbFadeIn .8s ease .9s forwards;
}

@keyframes orbFadeIn {
  to { opacity: 1; }
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0)     scale(1); }
  33%  { transform: translate(60px, 40px)  scale(1.08); }
  66%  { transform: translate(20px, -30px) scale(0.95); }
  100% { transform: translate(0, 0)     scale(1); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0, 0)      scale(1); }
  40%  { transform: translate(-50px, -40px) scale(1.1); }
  75%  { transform: translate(30px, 20px)  scale(0.92); }
  100% { transform: translate(0, 0)      scale(1); }
}
@keyframes orbDrift3 {
  0%   { transform: translate(0, 0)      scale(1); }
  30%  { transform: translate(-30px, 50px)  scale(1.06); }
  65%  { transform: translate(40px, -20px)  scale(0.96); }
  100% { transform: translate(0, 0)      scale(1); }
}

/* Subtle noise/vignette overlay to add depth */
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(14,14,12,0.55) 100%);
}
/* Geometric grid accent — the signature element */
.hero-grid {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 42%; pointer-events: none; overflow: hidden;
}
.hero-grid svg { width: 100%; height: 100%; opacity: 0.07; }

.hero-rule {
  position: absolute; top: 0; left: 52px; right: 52px;
  height: 1px; background: rgba(201,168,76,0.2);
  transform: scaleX(0); transform-origin: left;
  animation: ruleIn 1.4s var(--ease-io) .2s forwards;
}
@keyframes ruleIn { to { transform: scaleX(1); } }

.hero-kicker {
  font-family: var(--f-body);
  font-size: 10.5px; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp .8s ease .7s forwards;
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(68px, 10vw, 158px);
  font-weight: 300; font-style: italic;
  line-height: .92; letter-spacing: -.01em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .4s forwards;
}
.hero-headline em {
  font-style: normal; display: block;
  color: rgba(253,252,249,0.15);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-foot {
  margin-top: 52px;
  display: flex; align-items: flex-end; justify-content: space-between;
  opacity: 0; animation: fadeUp .8s ease 1s forwards;
}
.hero-desc {
  max-width: 360px;
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(253,252,249,0.45); letter-spacing: .01em;
}
.hero-cta-group { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  transition: color .25s, gap .25s;
}
.hero-cta:hover { color: var(--gold-light); gap: 20px; }
.hero-cta-line { display: block; width: 40px; height: 1px; background: currentColor; transition: width .25s; }
.hero-cta:hover .hero-cta-line { width: 58px; }
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sr { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.sr.in { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .1s; }
.sr-d2 { transition-delay: .2s; }
.sr-d3 { transition-delay: .3s; }
.sr-d4 { transition-delay: .4s; }

.eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
h2.display {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; color: var(--ink);
}
h2.display em { font-style: normal; }
.hairline { width: 100%; height: 1px; background: var(--rule); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MANIFESTO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.manifesto {
  background: var(--off-white);
  padding: 120px 52px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.manifesto-left { padding-top: 6px; }
.manifesto-left p {
  font-size: 12px; line-height: 2; color: var(--cool-grey); letter-spacing: .03em;
}
.manifesto-right h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300; line-height: 1.35; color: var(--ink);
  margin-bottom: 36px;
}
.manifesto-right h2 em { font-style: italic; color: var(--gold); }
.manifesto-right p {
  font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--warm-grey);
  max-width: 560px; margin-bottom: 16px;
}
.manifesto-stats {
  display: flex; gap: 56px; margin-top: 52px; padding-top: 52px;
  border-top: 1px solid var(--rule);
}
.m-stat-n {
  font-family: var(--f-display);
  font-size: 50px; font-weight: 300; font-style: italic;
  line-height: 1; color: var(--ink);
}
.m-stat-n sub { font-style: normal; font-size: 20px; }
.m-stat-l {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cool-grey); margin-top: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES — ACCORDION ROW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services {
  background: var(--white);
  padding: 0 52px;
}
.services-header {
  padding: 96px 0 64px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.services-header p {
  max-width: 280px; font-size: 13px; line-height: 1.8;
  color: var(--cool-grey); text-align: right;
}
.svc-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr auto;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule);
  gap: 40px;
  cursor: none;
  position: relative;
  transition: background .2s;
}
.svc-row::before {
  content: ''; position: absolute; left: -52px; right: -52px; top: 0; bottom: 0;
  background: var(--parchment); opacity: 0; transition: opacity .3s; pointer-events: none;
}
.svc-row:hover::before { opacity: 1; }
.svc-row * { position: relative; }
.svc-n {
  font-family: var(--f-display);
  font-size: 13px; font-style: italic; color: var(--cool-grey); letter-spacing: .04em;
}
.svc-name {
  font-family: var(--f-display);
  font-size: 25px; font-weight: 400; color: var(--ink); letter-spacing: .01em;
}
.svc-desc {
  font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--warm-grey);
}
.svc-arr {
  font-size: 18px; color: var(--gold); opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
}
.svc-row:hover .svc-arr { opacity: 1; transform: translateX(0); }
.services-footer {
  padding: 48px 0 96px;
  display: flex; align-items: center; gap: 32px;
}
.btn-bare {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink); transition: color .2s, gap .25s;
}
.btn-bare:hover { color: var(--gold); gap: 20px; }
.btn-bare .al { display: block; width: 36px; height: 1px; background: currentColor; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process {
  background: var(--off-white);
  padding: 120px 52px;
}
.process-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.process-intro p {
  font-size: 14px; line-height: 1.85; font-weight: 300; color: var(--warm-grey);
}
.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--rule);
}
.ps {
  padding: 48px 32px;
  border-right: 1px solid var(--rule);
}
.ps:nth-child(3n) { border-right: none; }
.ps:nth-child(n+4) { border-top: 1px solid var(--rule); }
/* flush left edge on first column, flush right on third */
.ps:nth-child(3n+1) { padding-left: 0; }
.ps:nth-child(3n)   { padding-right: 0; }
.ps-label {
  font-family: var(--f-body); font-size: 10.5px; font-weight: 600;
  font-style: normal; color: var(--gold);
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px;
}
.ps h4 {
  font-family: var(--f-display); font-size: 24px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; line-height: 1.25;
}
.ps p { font-size: 13px; line-height: 1.8; font-weight: 300; color: var(--warm-grey); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORK / PROOF STRIP (dark)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proof {
  background: var(--ink);
  padding: 0 52px;
}
.proof-header {
  padding: 96px 0 72px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--rule-dark);
}
.proof-header h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 300; font-style: italic; line-height: 1.15;
  color: var(--white);
}
.proof-header h2 em { font-style: normal; color: var(--gold-light); }
.proof-label {
  font-family: var(--f-display);
  font-size: 80px; font-weight: 300; font-style: italic;
  color: rgba(201,168,76,0.1); line-height: 1; text-align: right;
}
.proof-label span {
  display: block; font-family: var(--f-body);
  font-size: 10px; font-style: normal; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cool-grey); margin-top: -8px;
}

/* Featured testimonial */
.proof-featured {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule-dark);
}
.proof-featured blockquote {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 300; font-style: italic;
  line-height: 1.4; color: var(--white);
  max-width: 860px; margin-bottom: 32px;
}
.testi-attr { display: flex; align-items: center; gap: 16px; }
.testi-init {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 16px; color: var(--gold-light);
  flex-shrink: 0;
}
.testi-attr-text h5 { font-size: 13px; font-weight: 500; color: var(--white); letter-spacing: .04em; }
.testi-attr-text p  { font-size: 11.5px; color: var(--cool-grey); letter-spacing: .04em; margin-top: 3px; }

/* Proof grid cards */
.proof-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--rule-dark);
}
.pg-card {
  padding: 52px 36px;
  border-right: 1px solid var(--rule-dark);
}
.pg-card:first-child { padding-left: 0; }
.pg-card:last-child  { border-right: none; padding-right: 0; }
.pg-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.pg-card blockquote {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 300; font-style: italic;
  line-height: 1.65; color: rgba(253,252,249,0.7); margin-bottom: 28px;
}
.pg-card .testi-attr-text h5 { color: rgba(253,252,249,0.82); }

.proof-foot {
  border-top: 1px solid var(--rule-dark);
  padding: 52px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.proof-foot p { font-size: 13px; color: var(--cool-grey); }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; text-decoration: none; color: var(--white);
  transition: color .2s, gap .25s;
}
.btn-ghost-light:hover { color: var(--gold-light); gap: 20px; }
.btn-ghost-light .al { display: block; width: 36px; height: 1px; background: currentColor; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMMITMENT STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.commitment {
  background: var(--gold);
  padding: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.commitment-text {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.28;
}
.commitment-pillars { display: flex; gap: 48px; flex-shrink: 0; }
.cp { text-align: center; }
.cp-n {
  font-family: var(--f-display);
  font-size: 36px; font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1;
}
.cp-l {
  font-size: 10px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(14,14,12,0.55); margin-top: 5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STACK — TECHNOLOGIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stack {
  background: var(--white);
  padding: 120px 52px;
}
.stack-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 72px; align-items: end;
}
.stack-intro p {
  font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--warm-grey);
}
.tech-list {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.tech-item {
  width: 25%; padding: 30px 26px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  cursor: none; transition: background .25s;
}
.tech-item:hover { background: var(--parchment); }
.tech-item:hover .t-arr { opacity: 1; transform: translateX(0); }
.t-name {
  font-family: var(--f-display); font-size: 19px; font-weight: 400; color: var(--ink);
}
.t-arr {
  font-size: 15px; color: var(--gold);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact {
  background: var(--off-white);
  padding: 120px 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.contact-l h2 { margin-bottom: 24px; }
.contact-l > p {
  font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--warm-grey);
  margin-bottom: 48px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px;
}
.cd-label {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cool-grey); min-width: 68px; flex-shrink: 0; padding-top: 2px;
}
.cd-val {
  font-size: 14px; color: var(--charcoal); line-height: 1.6; font-weight: 300;
  text-decoration: none; transition: color .2s;
  min-width: 0; word-break: break-word;
}
a.cd-val:hover { color: var(--gold); }
.contact-form-title {
  font-family: var(--f-display);
  font-size: 27px; font-weight: 400; font-style: italic;
  color: var(--ink); margin-bottom: 36px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-row > * { min-width: 0; }
.cf-group { margin-bottom: 20px; }
.cf-group label {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cool-grey); margin-bottom: 8px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--rule);
  padding: 10px 0; font-size: 14px; font-weight: 300;
  color: var(--ink); font-family: var(--f-body);
  outline: none; appearance: none;
  transition: border-color .25s;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus { border-color: var(--gold); }
.cf-group textarea { min-height: 100px; resize: none; }

/* Custom dropdown (replaces native <select> appearance) */
.cf-select-native-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  left: -9999px !important; top: auto !important;
  overflow: hidden !important;
  opacity: 0; pointer-events: none;
}
.cf-select { position: relative; }
.cf-select-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; border-bottom: 1px solid var(--rule);
  padding: 10px 0; font-size: 14px; font-weight: 300; font-family: var(--f-body);
  color: var(--ink); cursor: none; transition: border-color .25s;
  text-align: left;
}
.cf-select.open .cf-select-trigger,
.cf-select-trigger:focus { border-color: var(--gold); outline: none; }
.cf-select-value.is-placeholder { color: var(--cool-grey); }
.cf-select-arrow { flex-shrink: 0; color: var(--gold); margin-left: 12px; transition: transform .25s; }
.cf-select.open .cf-select-arrow { transform: rotate(180deg); }
.cf-select-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  background: var(--white); border: 1px solid var(--rule);
  list-style: none; margin: 0; padding: 6px;
  max-height: 260px; overflow-y: auto;
  box-shadow: 0 18px 48px rgba(14,14,12,0.14);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.cf-select.open .cf-select-list { opacity: 1; visibility: visible; transform: translateY(0); }
.cf-select-list li {
  padding: 11px 14px; font-size: 13.5px; font-weight: 300; color: var(--charcoal);
  cursor: none; border-radius: 1px; transition: background .15s, color .15s;
}
.cf-select-list li:hover,
.cf-select-list li.is-active { background: var(--parchment); color: var(--ink); }
.cf-select-list li[data-value=""] { color: var(--cool-grey); }
.cf-consent {
  font-size: 11px; font-weight: 300; line-height: 1.7;
  color: var(--cool-grey); margin-bottom: 32px;
}
.cf-submit {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: var(--white);
  font-family: var(--f-body); font-size: 11.5px;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border: none; padding: 18px 36px; cursor: none;
  transition: background .25s, color .25s;
}
.cf-submit:hover { background: var(--gold); color: var(--ink); }
#form-msg {
  margin-top: 16px; font-size: 13px; padding: 12px 16px; display: none;
  border: 1px solid;
}
#form-msg.success { display: block; color: #5a7a3a; background: rgba(90,122,58,0.06); border-color: rgba(90,122,58,0.2); }
#form-msg.error   { display: block; color: #8b2a2a; background: rgba(139,42,42,0.06); border-color: rgba(139,42,42,0.2); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-sec {
  background: var(--white);
  padding: 0 52px 120px;
}
.faq-rule { height: 1px; background: var(--rule); margin-bottom: 80px; }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.faq-intro p { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--warm-grey); margin-top: 12px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-btn {
  width: 100%; background: none; border: none; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--f-display); font-size: 18px; font-weight: 400;
  color: var(--ink); text-align: left; cursor: none;
}
.faq-plus {
  font-family: var(--f-body); font-size: 20px; font-weight: 300;
  color: var(--gold); flex-shrink: 0; transition: transform .3s;
}
.faq-btn.open .faq-plus { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-body.open { max-height: 220px; }
.faq-body p {
  padding-bottom: 22px;
  font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--warm-grey);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--charcoal);
  padding: 80px 52px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(253,252,249,0.09);
  margin-bottom: 40px;
}
.footer-brand-logo {
  height: 38px; width: auto; display: block; margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(253,252,249,0.32); max-width: 260px; margin-bottom: 28px;
}
.footer-col h6 {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300; color: rgba(253,252,249,0.38);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 11.5px; font-weight: 300; color: rgba(253,252,249,0.22); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11.5px; font-weight: 300; color: rgba(253,252,249,0.22);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COOKIE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: rgba(42,40,36,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 20px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
#cookie-bar p { font-size: 12.5px; font-weight: 300; color: rgba(253,252,249,0.5); }
#cookie-bar a { color: var(--gold-light); }
.ck-btns { display: flex; gap: 12px; }
.ck-reject {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: none; border: 1px solid rgba(253,252,249,0.15);
  color: rgba(253,252,249,0.4); padding: 9px 18px; cursor: none;
  transition: border-color .2s, color .2s;
}
.ck-reject:hover { border-color: rgba(253,252,249,0.35); color: rgba(253,252,249,0.7); }
.ck-allow {
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); border: none; color: var(--ink);
  padding: 9px 20px; cursor: none; transition: background .2s;
}
.ck-allow:hover { background: var(--gold-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .svc-row { grid-template-columns: 1fr 1fr auto; }
  .svc-n { display: none; }
  .process-intro { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .ps { padding: 40px 32px; }
  .ps:nth-child(1) { padding-left: 0; }
  .ps:nth-child(2n) { border-right: none; padding-right: 0; }
  .ps:nth-child(3n) { border-right: 1px solid var(--rule); }
  .ps:nth-child(2n) { border-right: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .commitment { flex-direction: column; align-items: flex-start; }
  .stack-intro { grid-template-columns: 1fr; gap: 20px; }
  .tech-item { width: 33.333%; }
  .contact { grid-template-columns: 1fr; gap: 64px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .proof-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 56px;
    justify-content: center;
  }
  .hero-headline { font-size: clamp(42px, 12vw, 68px); }
  .hero-rule { left: 24px; right: 24px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 36px; }
  .hero-cta-group { align-items: flex-start; }
  .manifesto, .process, .stack, .contact, .faq-sec, .site-footer { padding-left: 24px; padding-right: 24px; }
  .services { padding-left: 24px; padding-right: 24px; }
  .proof { padding: 0 24px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-header p { text-align: left; }
  .svc-row { grid-template-columns: 1fr auto; gap: 20px; }
  .svc-desc { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .pg-card { border-right: none; }
  .commitment { padding: 40px 24px; }
  .commitment-pillars { flex-wrap: wrap; gap: 28px; }
  .tech-item { width: 50%; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  #cookie-bar { padding: 16px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .ps { border-right: none !important; padding: 36px 0 !important; }
  .manifesto-stats { flex-wrap: wrap; gap: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .sr { opacity: 1; transform: none; }
  .hero-bg::before, .hero-bg::after, .hero-bg-orb { opacity: 1; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INNER PAGE HEADER (services, work, process, contact, legal)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-header {
  background: var(--ink);
  padding: 180px 52px 96px;
  position: relative; overflow: hidden;
}
.page-header-kicker {
  font-size: 10.5px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.page-header-kicker::before { content:''; display:block; width:28px; height:1px; background:var(--gold-light); }
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300; font-style: italic;
  line-height: 1.05; color: var(--white);
  max-width: 880px;
}
.page-header h1 em { font-style: normal; color: rgba(253,252,249,0.18); }
.page-header p {
  margin-top: 28px; max-width: 540px;
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(253,252,249,0.5);
}

/* Simple top utility bar: back-to-home link, sits above page-header */
.page-topbar {
  background: var(--ink);
  padding: 28px 52px 0;
}
.page-topbar a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(253,252,249,0.4); text-decoration: none; transition: color .2s;
}
.page-topbar a:hover { color: var(--gold-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE DETAIL PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-detail {
  background: var(--off-white);
  padding: 100px 52px;
}
.svc-detail-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.svc-detail-aside { position: sticky; top: 100px; }
.svc-detail-aside h3 {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.svc-aside-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.svc-aside-list a {
  display: block; padding: 12px 0; font-size: 14px; font-weight: 300;
  color: var(--warm-grey); text-decoration: none; border-bottom: 1px solid var(--rule);
  transition: color .2s, padding-left .2s;
}
.svc-aside-list a:hover { color: var(--gold); padding-left: 6px; }
.svc-aside-list a.current { color: var(--ink); font-weight: 500; }
.svc-detail-body p {
  font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--warm-grey);
  margin-bottom: 24px; max-width: 640px;
}
.svc-detail-body h2 {
  font-family: var(--f-display); font-size: clamp(26px,3vw,36px); font-weight: 300;
  font-style: italic; color: var(--ink); margin: 48px 0 20px;
}
.svc-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); margin: 40px 0;
}
.svc-feature {
  background: var(--white); padding: 32px;
}
.svc-feature h4 {
  font-family: var(--f-display); font-size: 19px; font-weight: 400; color: var(--ink);
  margin-bottom: 10px;
}
.svc-feature p { font-size: 13px; line-height: 1.75; color: var(--warm-grey); margin: 0; }
.svc-cta-band {
  margin-top: 64px; padding: 44px; background: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.svc-cta-band p {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: clamp(18px,2vw,26px); color: var(--white); margin: 0; max-width: 420px;
}
.btn-gold-solid {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: var(--gold); color: var(--ink); text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 1px; transition: background .2s, transform .2s;
}
.btn-gold-solid:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STANDALONE CONTACT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-page {
  background: var(--off-white); padding: 100px 52px 120px;
  max-width: 100vw; overflow-x: hidden;
}
.contact-page-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-page-grid > * { min-width: 0; }
#contact-form { max-width: 100%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIMPLE CONTENT PAGE (legal, process narrative, work listing)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.content-page {
  background: var(--off-white); padding: 100px 52px 120px;
}
.content-page-inner { max-width: 760px; margin: 0 auto; }
.content-page-inner h2 {
  font-family: var(--f-display); font-size: clamp(24px,2.6vw,32px); font-weight: 300;
  font-style: italic; color: var(--ink); margin: 48px 0 18px;
}
.content-page-inner h2:first-child { margin-top: 0; }
.content-page-inner p {
  font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--warm-grey); margin-bottom: 18px;
}
.content-page-inner ul { margin: 0 0 18px 20px; padding: 0; }
.content-page-inner li {
  font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--warm-grey); margin-bottom: 8px;
}
.content-page-inner strong { color: var(--ink); font-weight: 500; }
.last-updated {
  font-size: 12px; color: var(--cool-grey); letter-spacing: .04em; margin-bottom: 40px; display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORK / PORTFOLIO LISTING PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.work-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule);
}
.work-card { background: var(--white); padding: 44px; }
.work-card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.work-card h3 {
  font-family: var(--f-display); font-size: 24px; font-weight: 400; color: var(--ink);
  margin-bottom: 12px;
}
.work-card p { font-size: 13.5px; line-height: 1.8; color: var(--warm-grey); margin-bottom: 18px; }
.work-card-stats { display: flex; gap: 28px; padding-top: 18px; border-top: 1px solid var(--rule); }
.work-card-stats > div { display: flex; flex-direction: column; gap: 2px; }
.work-stat-n { font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--ink); }
.work-stat-l { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--cool-grey); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS PAGE (expanded narrative version)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process-detail { max-width: 900px; margin: 0 auto; }
.process-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 32px;
  padding: 40px 0; border-top: 1px solid var(--rule);
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }
.process-step-n {
  font-family: var(--f-display); font-style: italic; font-size: 36px; color: var(--gold);
}
.process-step h3 {
  font-family: var(--f-display); font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 10px;
}
.process-step p { font-size: 14px; line-height: 1.85; color: var(--warm-grey); margin: 0; }

@media (max-width: 1024px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-aside { position: static; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .page-header { padding: 140px 24px 64px; }
  .page-topbar { padding: 24px 24px 0; }
  .svc-detail, .contact-page, .content-page { padding: 56px 24px 80px; }
  .svc-feature-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { padding: 32px; }
  .process-step { grid-template-columns: 1fr; gap: 8px; }
  .svc-cta-band { flex-direction: column; align-items: flex-start; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SITE NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 52px;
  background: transparent;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(14,14,12,0.92);
  backdrop-filter: blur(10px);
  padding: 16px 52px;
  border-bottom: 1px solid rgba(201,168,76,0.14);
}
/* Inner pages have a solid --ink page-header right under the nav, so the
   nav should read as solid from the start rather than transparent-over-white */
body.inner-page .site-nav { background: rgba(14,14,12,0.92); backdrop-filter: blur(10px); padding: 18px 52px; border-bottom: 1px solid rgba(201,168,76,0.1); }
body.inner-page .site-nav.scrolled { padding: 14px 52px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; cursor: none; }
.nav-logo img { height: 26px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-link, .nav-services-trigger, .nav-mobile-services-trigger {
  font-family: var(--f-body);
  background: none; border: none; font: inherit;
}
.nav-link {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(253,252,249,0.75); text-decoration: none;
  cursor: none; transition: color .2s;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link .nav-caret {
  width: 8px; height: 8px; transition: transform .2s;
}
.nav-services.open .nav-services-trigger .nav-caret { transform: rotate(180deg); }

.nav-cta {
  font-family: var(--f-body); font-size: 11.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink) !important; background: var(--gold);
  padding: 11px 22px; border-radius: 1px; text-decoration: none;
  cursor: none; transition: background .2s, transform .2s;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--ink) !important; }

/* Services dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--ink-soft); border: 1px solid rgba(201,168,76,0.18);
  min-width: 248px; padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.nav-services.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 11px 14px;
  font-family: var(--f-body); font-size: 13px; font-weight: 400;
  color: rgba(253,252,249,0.7); text-decoration: none;
  cursor: none; transition: background .15s, color .15s;
  border-radius: 1px;
}
.nav-dropdown a:hover { background: rgba(201,168,76,0.1); color: var(--gold-light); }
.nav-dropdown a.active { color: var(--gold-light); }

/* Hamburger (mobile only) */
.nav-hamburger {
  display: none;
  position: relative;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 1100;
}
.nav-hamburger span {
  position: absolute; left: 4px; right: 4px;
  height: 1.5px;
  background: var(--white); transition: transform .25s, opacity .25s;
}
.nav-hamburger span:nth-child(1) { top: 11px; }
.nav-hamburger span:nth-child(2) { top: 15.5px; }
.nav-hamburger span:nth-child(3) { top: 20px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile menu panel */
.nav-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.76,0,.24,1);
  overflow-y: auto;
}
.nav-mobile-panel.open { transform: translateY(0); }
.nav-mobile-close {
  position: absolute; top: 26px; right: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--white);
}
.nav-mobile-close svg { width: 18px; height: 18px; }
.nav-mobile-close:hover { color: var(--gold-light); }
.nav-mobile-links { list-style: none; display: flex; flex-direction: column; }
.nav-mobile-links > li { border-bottom: 1px solid rgba(253,252,249,0.08); }
.nav-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 4px; font-family: var(--f-display); font-size: 22px;
  font-weight: 400; font-style: italic; color: var(--white); text-decoration: none;
  cursor: pointer;
}
.nav-mobile-link.active { color: var(--gold-light); }
.nav-mobile-link .nav-caret { width: 11px; height: 11px; transition: transform .25s; flex-shrink: 0; }
.nav-mobile-services.open .nav-mobile-services-trigger .nav-caret { transform: rotate(180deg); }
.nav-mobile-sublist {
  list-style: none; max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.nav-mobile-services.open .nav-mobile-sublist { max-height: 400px; padding-bottom: 12px; }
.nav-mobile-sublist a {
  display: block; padding: 11px 4px 11px 18px;
  font-family: var(--f-body); font-size: 14.5px; font-weight: 300;
  color: rgba(253,252,249,0.6); text-decoration: none;
}
.nav-mobile-sublist a:hover { color: var(--gold-light); }
.nav-mobile-cta {
  margin-top: 32px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink); text-decoration: none;
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 16px; border-radius: 1px;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { padding: 20px 24px; }
  .site-nav.scrolled, body.inner-page .site-nav { padding: 16px 24px; }
}
@media (max-width: 480px) {
  .nav-mobile-panel { padding: 88px 24px 32px; }
  .nav-mobile-link { font-size: 19px; }
}

/* Push page content below the fixed nav on pages where the first section
   isn't already a full-bleed dark hero (i.e. every inner page). */
body.inner-page { padding-top: 0; }


