/* ══════════════════════════════════════════════
   Curious Works — Main Stylesheet
   Converted from static HTML to WordPress theme
   ══════════════════════════════════════════════ */

:root {
  --bg:         #ffffff;
  --bg-warm:    #f8f9fa;
  --bg-card:    #ffffff;
  --surface:    #ffffff;
  --border:     rgba(26, 34, 71, 0.08);
  --border-med: rgba(26, 34, 71, 0.15);

  --ink:        #1B2045;
  --gold:       #E86A33;
  --green:      #1A7B42;

  --text:       #1B2045;
  --text-soft:  rgba(27, 32, 69, 0.7);
  --text-mute:  rgba(27, 32, 69, 0.4);
  --cream:      #f4f4f2;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-sans:    'Jost', sans-serif;
  --f-mono:    'DM Mono', monospace;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.87, 0, 0.13, 1);

  --pad-x:       clamp(24px, 6vw, 100px);
  --pad-section: clamp(80px, 12vw, 180px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: auto; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: #fff; }
@media (hover: none) { body { cursor: auto; } }

/* ── CUSTOM LOGO (WP) ── */
.nav__logo .wp-block-site-logo,
.nav__logo figure,
.custom-logo-link {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.custom-logo-link img,
.nav__logo img {
  height: 36px !important;
  width: auto !important;
  max-width: 160px !important;
  display: block !important;
}

/* ── CURSOR ── */
#cur-dot, #cur-ring {
  position: fixed; border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%); will-change: left,top;
  mix-blend-mode: difference;
}
#cur-dot  {
  width: 5px; height: 5px;
  background: #ffffff;
  transition: background .2s;
}
#cur-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: width .5s var(--ease-expo), height .5s var(--ease-expo), border-color .4s;
}
body.c-hover #cur-ring { width: 52px; height: 52px; border-color: #ffffff; }
body.c-hover #cur-dot  { background: #ffffff; }
@media (hover:none) { #cur-dot,#cur-ring { display:none; } }

/* ── PROGRESS ── */
#progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 9001;
  transform-origin: left; transform: scaleX(0);
}

/* ── PAGE OVERLAY ── */
#page-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--bg); transform: scaleY(0);
  transform-origin: bottom; pointer-events: none;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.pl__mark {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400; letter-spacing: 0.02em;
  overflow: hidden;
}
.pl__mark span { display: inline-block; transform: translateY(110%); }
.pl__line-wrap {
  width: clamp(100px, 14vw, 180px); height: 1px;
  background: var(--border); position: relative; overflow: hidden;
}
.pl__line {
  position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
}
.pl__num {
  position: absolute; bottom: 28px; right: 28px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--text-mute);
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--f-display); font-size: 19px; font-weight: 400;
  letter-spacing: 0.03em; display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav__logo img,
.nav__logo .custom-logo {
  height: 36px !important;
  width: auto !important;
  max-width: 160px;
  display: block;
}
.nav__logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.nav__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.nav__links { display: flex; align-items: center; gap: clamp(20px,3vw,44px); }
.nav__link {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-soft); transition: color .3s;
}
.nav__link:hover { color: var(--text); }
.nav__ham {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px;
  background: none; border: none; cursor: none;
}
.nav__ham span { display: block; height: 1px; background: var(--text); transition: transform .4s var(--ease-expo), opacity .3s; }
body.menu-open .nav__ham span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__ham span:nth-child(2) { opacity: 0; }
body.menu-open .nav__ham span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 790; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease-inout);
}
body.menu-open #mobile-menu { clip-path: inset(0 0 0% 0); }
.mob-link {
  font-family: var(--f-display); font-size: clamp(32px, 9vw, 56px);
  font-weight: 400; color: var(--text-soft); transition: color .3s;
}
.mob-link:hover { color: var(--text); }

/* ══════════ HERO ══════════ */
#hero {
  background: var(--ink);
  position: relative; width: 100%; height: 100svh; min-height: 620px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 var(--pad-x);
  overflow: hidden;
}
#hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.45;
  filter: grayscale(20%) contrast(110%);
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(14,12,9,0.88) 0%, rgba(14,12,9,0.4) 55%, transparent 100%),
    linear-gradient(to top, rgba(14,12,9,0.6) 0%, transparent 40%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8.5vw, 130px);
  font-weight: 400; line-height: 0.95; letter-spacing: -0.01em;
  color: #f5f0e8;
}
.hero__h1 .ln { overflow: hidden; display: block; }
.hero__h1 .ln-inner { display: block; transform: translateY(110%); }
.hero__h1 em { font-style: italic; color: var(--gold-pale); }
.hero__cta {
  margin-top: 52px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); opacity: 0;
  transition: gap .4s var(--ease-expo);
}
.hero__cta:hover { gap: 24px; }
.hero__cta-line { width: 32px; height: 1px; background: var(--bg); transition: width .4s var(--ease-expo); }
.hero__cta:hover .hero__cta-line { width: 52px; }
.hero__scroll {
  position: absolute; bottom: 36px; left: var(--pad-x); z-index: 2;
  display: flex; align-items: center; gap: 14px; opacity: 0;
}
.hero__scroll-lbl {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,232,216,0.35);
}
.hero__scroll-track { width: 44px; height: 1px; background: rgba(240,232,216,0.12); position: relative; overflow: hidden; }
.hero__scroll-track::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 1px;
  background: var(--gold-pale); animation: slide 2s ease-in-out infinite;
}
@keyframes slide { 0%{left:-100%} 100%{left:100%} }

/* ── MARQUEE ── */
.marquee-band {
  background: var(--ink);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 13px 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding: 0 24px; flex-shrink: 0;
}
.marquee-track .sep { color: var(--gold); padding: 0 4px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════ ABOUT ══════════ */
#about {
  padding: var(--pad-section) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
}
.about__tag {
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgb(100, 81, 81); margin-bottom: 32px;
}
.about__h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400; line-height: 1.08; letter-spacing: 0.01em;
  margin-bottom: 52px;
}
.about__h2 em { font-style: italic; color: black; }
.about__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  transition: gap .35s var(--ease-expo);
}
.about__link:hover { gap: 22px; }
.about__link-line { width: 28px; height: 1px; background: var(--gold); transition: width .35s var(--ease-expo); }
.about__link:hover .about__link-line { width: 44px; }
.about__body {
  font-family: var(--f-sans); font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 300; line-height: 1.9; color: var(--text-soft); margin-bottom: 48px;
}
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.stat { background: var(--cream); padding: 32px 24px; }
.stat__n {
  font-family: var(--f-display); font-size: clamp(42px, 5vw, 68px);
  font-weight: 400; line-height: 1; color: var(--text); margin-bottom: 10px;
}
.stat__n sup { font-size: 0.45em; color: var(--gold); }
.stat__l {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text);
}

/* ══════════ SERVICES ══════════ */
#services { background: var(--bg); }
.svc__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  min-height: 100vh;
}
.svc__left {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 8vw, 120px) clamp(32px, 5vw, 80px) clamp(48px, 8vw, 120px) var(--pad-x);
}
.svc__tag {
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgb(100, 81, 81); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.svc__tag::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: rgba(15, 15, 15, 0.2);
}
.svc__h2 {
  font-family: var(--f-display);
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 400; line-height: 0.85;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 40px;
}
.svc__h2 em { color: var(--gold); font-weight: 300; }
.svc__left-body {
  font-family: var(--f-sans); font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
  max-width: 340px; margin-bottom: 64px;
}
.svc__dots { display: flex; flex-direction: column; gap: 16px; }
.svc__dot-row {
  display: flex; align-items: center; gap: 0px;
  cursor: none; opacity: 0.3;
  transition: opacity 0.5s ease, gap 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.svc__dot-row.active { opacity: 1; gap: 16px; }
.svc__dot {
  width: 0px; height: 1px; background: var(--text);
  border-radius: 0;
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.svc__dot-row.active .svc__dot { width: 40px; }
.svc__dot-label {
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.svc__right {
  padding: 10vh clamp(32px, 5vw, 80px) 20vh 0;
  position: relative;
}
.svc-panel {
  position: sticky;
  height: 65vh; min-height: 480px;
  background: var(--ink);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(40px, 5vw, 60px);
  box-shadow: 0 -20px 80px rgba(0,0,0,0.08);
  margin-bottom: 6vh;
  overflow: hidden;
  display: flex; align-items: center;
  transition: transform 0.6s var(--ease-expo), filter 0.6s;
  transform-origin: top center;
}
.svc-panel:nth-child(1) { top: 10vh; z-index: 1; }
.svc-panel:nth-child(2) { top: 13vh; z-index: 2; }
.svc-panel:nth-child(3) { top: 16vh; z-index: 3; }
.svc-panel:nth-child(4) { top: 19vh; z-index: 4; }
.svc-panel:nth-child(5) { top: 22vh; z-index: 5; }
.svc-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0; pointer-events: none;
}
.svc-panel.card-priority {
  border: 1px solid var(--gold);
  background: rgba(27, 32, 69, 0.95);
  box-shadow: 0 -20px 80px rgba(232, 106, 51, 0.15);
}
.svc-panel.card-priority .svc-panel__tag { border-color: rgba(232, 106, 51, 0.4); }
.svc-panel__inner {
  position: relative; z-index: 1;
  max-width: 100%;
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.svc-panel__num {
  position: absolute; top: -20px; right: 0;
  font-family: var(--f-display); font-size: clamp(80px, 10vw, 160px);
  line-height: 0.8; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.03); pointer-events: none;
}
.svc-panel__title {
  font-family: var(--f-display); font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 400; line-height: 1.05; color: #f4f4f2; margin-bottom: 24px;
  margin-top: auto;
}
.svc-panel__title em { font-style: italic; color: rgba(255,255,255,0.4); }
.svc-panel__desc {
  font-family: var(--f-sans); font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 40px;
  max-width: 90%;
}
.svc-panel__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: auto; }
.svc-panel__tag {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 100px; transition: all 0.4s ease;
}
.svc-panel:hover .svc-panel__tag { border-color: rgba(255,255,255,0.4); color: #fff; }
.svc-panel__cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
  transition: gap .4s var(--ease-expo); margin-top: 40px;
}
.svc-panel__cta:hover { gap: 24px; }
.svc-panel__cta-line { width: 32px; height: 1px; background: #fff; transition: width .4s var(--ease-expo); }
.svc-panel__cta:hover .svc-panel__cta-line { width: 56px; }
.svc-panel__art {
  position: absolute; bottom: -20px; right: -20px;
  width: clamp(140px, 18vw, 240px); height: auto;
  opacity: 0.05; transform: rotate(-15deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s;
  pointer-events: none; z-index: 0;
}
.svc-panel:hover .svc-panel__art { transform: rotate(0deg) scale(1.1) translate(-10px, -10px); opacity: 0.15; }

/* ══════════ TRUST ══════════ */
#trust {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.trust__image {
  width: 100%; height: 100%; min-height: 400px;
  border-radius: 24px; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(26, 34, 71, 0.05);
}
.trust__image img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease-expo);
}
.trust__image:hover img { transform: scale(1.05); }
.trust__quote {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3; color: var(--ink); position: relative;
}
.trust__quote::before {
  content: '"';
  position: absolute; top: -40px; left: -20px;
  font-size: 80px; color: var(--gold); opacity: 0.2;
  font-family: serif;
}
.trust__author {
  font-family: var(--f-sans); font-size: 16px; font-weight: 500;
  margin-top: 32px; color: var(--text);
}
.trust__author span {
  display: block; font-weight: 300;
  color: var(--text-soft); font-size: 14px; margin-top: 4px;
}

/* ══════════ WHO WE SERVE ══════════ */
.wws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
}
.wws-card {
  padding: clamp(40px, 6vw, 60px) clamp(32px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.6s ease, background 0.6s ease;
}
.wws-card:hover { background: rgba(255, 255, 255, 0.035); border-color: rgba(255, 255, 255, 0.12); }
.wws-card::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--card-glow);
  filter: blur(120px); opacity: 0.15;
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 0; pointer-events: none;
}
.wws-card:hover::before { opacity: 0.25; transform: scale(1.1); }
.wws-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.wws-h3 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400; color: var(--cream);
  margin-bottom: 24px; line-height: 1; letter-spacing: -0.01em;
}
.wws-p {
  font-family: var(--f-sans); font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300; line-height: 1.8;
  color: rgba(255, 255, 255, 0.5); margin-bottom: 48px;
}
.wws-features {
  display: flex; flex-direction: column;
  gap: 0; margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.wws-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--f-sans); font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300; color: rgba(255, 255, 255, 0.75);
}
.wws-feature::before {
  content: '■'; font-size: 9px;
  color: var(--card-glow); opacity: 0.8;
  transform: translateY(6px);
}

/* ══════════ BOTTOM CTA ══════════ */
#bottom-cta {
  padding: var(--pad-section) var(--pad-x);
  background: var(--ink);
  text-align: center;
  color: var(--cream);
}
.cta__h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.1; margin-bottom: 48px;
}
.cta__h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.cta__actions { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta__btn-primary, .cta__btn-secondary {
  padding: 20px 48px; border-radius: 100px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.4s ease; cursor: none;
}
.cta__btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.cta__btn-primary:hover { background: transparent; color: var(--gold); }
.cta__btn-secondary { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.2); }
.cta__btn-secondary:hover { border-color: var(--cream); }

.careers-band {
  background: var(--gold); padding: 24px var(--pad-x); text-align: center;
}
.careers-band a {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; transition: opacity 0.3s;
}
.careers-band a:hover { opacity: 0.7; }

/* ══════════ CONTACT ══════════ */
#contact {
  background: var(--bg);
  padding: clamp(100px, 15vw, 200px) var(--pad-x);
  display: flex; justify-content: center;
  position: relative; overflow: hidden;
}
#contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0; pointer-events: none;
}
#contact::after {
  content: ''; position: absolute;
  width: 1000px; height: 1000px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 32, 69, 0.03) 0%, transparent 60%);
  top: -300px; left: -200px;
  z-index: 0; pointer-events: none;
}
.contact__inner {
  width: 100%; max-width: 1400px;
  display: flex; flex-direction: column; gap: clamp(60px, 10vw, 100px);
  position: relative; z-index: 1;
}
.contact__head { text-align: center; }
.contact__tag {
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 24px;
}
.contact__h2 {
  font-family: var(--f-display);
  font-size: clamp(60px, 14vw, 240px);
  font-weight: 400; line-height: 0.8;
  letter-spacing: -0.03em; color: var(--ink);
}
.contact__h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.contact__body {
  display: grid; grid-template-columns: 1fr 280px;
  gap: clamp(60px, 8vw, 120px); align-items: start;
}
.contact__form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-dark .form-field {
  border-bottom: 1px solid var(--border-med);
  position: relative; padding: 28px 0 12px;
}
.form-dark .form-field::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.form-dark .form-field:focus-within::after { transform: scaleX(1); }
.form-dark .form-field label {
  color: var(--text-soft);
  position: absolute; top: 30px; left: 0;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.24em; text-transform: uppercase;
  pointer-events: none;
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1), font-size .5s, color .3s;
}
.form-dark .form-field input, .form-dark .form-field textarea {
  color: var(--ink); background: transparent !important;
  border: none !important; outline: none !important; box-shadow: none !important;
  -webkit-appearance: none; width: 100%; position: relative; z-index: 1;
  font-family: var(--f-sans); font-size: 18px; font-weight: 300;
}
.form-dark .form-field textarea { min-height: 40px; }
.form-dark .form-field input:-webkit-autofill,
.form-dark .form-field textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset !important;
  -webkit-text-fill-color: var(--ink) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.form-dark .form-field input:focus ~ label, .form-dark .form-field input:valid ~ label,
.form-dark .form-field textarea:focus ~ label, .form-dark .form-field textarea:valid ~ label {
  transform: translateY(-26px); font-size: 8.5px; color: var(--ink);
}
.contact__submit-wrap { margin-top: 48px; }
.contact__submit {
  background: transparent;
  border: 1px solid var(--border-med);
  color: var(--ink);
  padding: 24px 56px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: none; border-radius: 100px;
  position: relative; overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
}
.contact__submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%); border-radius: 100px;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.contact__submit:hover { color: var(--bg); border-color: transparent; }
.contact__submit:hover::before { transform: translateY(0); border-radius: 0; }
.contact__details-grid { display: flex; flex-direction: column; gap: 48px; padding-top: 24px; }
.c-detail { display: flex; flex-direction: column; gap: 10px; text-decoration: none; }
.c-detail-lbl {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute);
}
.c-detail-val {
  font-family: var(--f-sans); font-size: 18px; font-weight: 300;
  color: var(--text-soft); transition: color 0.4s;
}
a.c-detail:hover .c-detail-val { color: var(--gold); }
.form-status { color: var(--gold); }

/* ══════════ FOOTER ══════════ */
#footer {
  background: var(--ink); color: var(--cream);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(60px,8vw,120px) var(--pad-x) clamp(28px,4vw,48px);
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(3,1fr);
  gap: clamp(28px,4vw,60px); margin-bottom: clamp(56px,7vw,96px);
}
.footer__logo {
  font-family: var(--f-display); font-size: 22px; font-weight: 400;
  letter-spacing: 0.03em; margin-bottom: 16px; color: var(--cream);
}
.footer__strapline {
  font-family: var(--f-sans); font-size: 13px; font-weight: 300;
  line-height: 1.85; color: rgba(240,235,224,0.4); max-width: 240px;
}
.footer__col-title {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248,248,247,0.918); margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-family: var(--f-sans); font-size: 15px; font-weight: 300;
  color: rgba(240,235,224,0.45); transition: color .3s;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy, .footer__bottom a {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.1em; color: rgba(240,235,224,0.2);
}
.footer__bottom a:hover { color: rgba(240,235,224,0.5); }
.footer__bottom-links { display: flex; gap: 24px; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 900px) {
  .nav__links { display: none !important; }
  .nav__ham   { display: flex !important; }

  .hero__h1   { font-size: clamp(46px, 12vw, 80px); }
  .hero__inner { margin-top: -15vh; z-index: 10; pointer-events: none; }

  #about { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; padding-bottom: 40px; }

  .svc__wrapper { grid-template-columns: 1fr; }
  .svc__left { position: relative; height: auto; padding: 100px var(--pad-x) 40px; border-bottom: none; }
  .svc__h2 { font-size: clamp(48px, 12vw, 80px); margin-bottom: 24px; }
  .svc__left-body { max-width: 100%; margin-bottom: 0; }
  .svc__dots { display: none; }
  .svc__right { padding: 0 var(--pad-x) 10vh; margin-top: 0; z-index: 2; }

  .svc-panel { position: sticky; height: auto; min-height: 50vh; margin-bottom: 3vh; padding: 40px 24px; border-radius: 20px; }
  .svc-panel:nth-child(1) { top: 10vh; z-index: 1; }
  .svc-panel:nth-child(2) { top: 12vh; z-index: 2; }
  .svc-panel:nth-child(3) { top: 14vh; z-index: 3; }
  .svc-panel:nth-child(4) { top: 16vh; z-index: 4; }
  .svc-panel:nth-child(5) { top: 18vh; z-index: 5; }
  .svc-panel:last-child   { margin-bottom: 0; }
  .svc-panel__num   { font-size: 70px; top: 0; right: 10px; opacity: 0.04; }
  .svc-panel__title { font-size: 32px; }
  .svc-panel__art   { display: none; }

  #trust { grid-template-columns: 1fr; gap: 64px; }
  .trust__quote::before { left: 0; }
  .trust__image { min-height: 300px; }

  .wws-grid { grid-template-columns: 1fr; }

  #contact { padding: clamp(60px, 10vw, 100px) var(--pad-x); }
  .contact__body { grid-template-columns: 1fr; gap: 48px; }
  .contact__details-grid { flex-direction: column; gap: 24px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; margin-top: 0; }

  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero__h1      { font-size: clamp(40px, 11vw, 60px); }
  .form-row      { grid-template-columns: 1fr; gap: 24px; }
  .contact__submit { width: 100%; padding: 20px 0; }
  .footer__top   { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ══════════════════════════════════════════
   INNER PAGES — SHARED STYLES
══════════════════════════════════════════ */

/* ── INNER PAGE HERO ── */
.inner-hero {
  background: var(--ink);
  padding: clamp(140px, 18vw, 220px) var(--pad-x) clamp(80px, 10vw, 140px);
  position: relative; overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,106,51,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.inner-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.inner-hero__tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.inner-hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 82px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--cream);
  margin-bottom: 32px;
}
.inner-hero__h1 em { font-style: italic; color: var(--gold); }
.inner-hero__sub {
  font-family: var(--f-sans); font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45); max-width: 600px;
}

/* ── SECTION TAG ── */
.section-tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.section-tag::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--border-med);
}

/* ══════════ ABOUT PAGE ══════════ */
.about-body {
  padding: var(--pad-section) var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.about-body__inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 8vw, 120px);
}
.about-body__content p {
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300; line-height: 1.9;
  color: var(--text-soft); margin-bottom: 28px;
}
.about-body__content p:last-child { margin-bottom: 0; }

/* Mission & Vision */
.mv-section { padding: var(--pad-section) var(--pad-x); background: var(--bg-warm); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mv-card {
  background: var(--bg); padding: clamp(48px, 6vw, 80px);
  border: 1px solid var(--border);
}
.mv-card--dark { background: var(--ink); border-color: transparent; }
.mv-card__tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.mv-card__h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400; line-height: 1.1;
  color: var(--text); margin-bottom: 24px;
}
.mv-card__h2 em { font-style: italic; color: var(--gold); }
.mv-card__body {
  font-family: var(--f-sans); font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300; line-height: 1.85; color: var(--text-soft);
}

/* USP Banner */
.usp-banner {
  background: var(--gold);
  padding: clamp(32px, 4vw, 52px) var(--pad-x);
  text-align: center;
}
.usp-banner__text {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400; color: #fff; line-height: 1.2;
}
.usp-banner__text em { font-style: italic; }

/* What We Do */
.what-we-do { padding: var(--pad-section) var(--pad-x); }
.what-we-do__inner { max-width: 1400px; margin: 0 auto; }
.what-we-do__h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; line-height: 1.05;
  color: var(--text); margin-bottom: clamp(48px, 6vw, 80px);
}
.what-we-do__h2 em { font-style: italic; color: var(--gold); }
.verticals-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.vertical-card {
  background: var(--bg); padding: clamp(32px, 4vw, 52px);
  transition: background 0.4s ease;
}
.vertical-card:hover { background: var(--bg-warm); }
.vertical-card__num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.vertical-card__title {
  font-family: var(--f-display); font-size: clamp(20px, 2vw, 28px);
  font-weight: 400; color: var(--text); margin-bottom: 16px; line-height: 1.15;
}
.vertical-card__body {
  font-family: var(--f-sans); font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ══════════ RESPONSIVE — INNER PAGES ══════════ */
@media (max-width: 900px) {
  .about-body__inner { grid-template-columns: 1fr; gap: 32px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: clamp(36px, 6vw, 52px) clamp(24px, 4vw, 40px); }
}
@media (max-width: 600px) {
  .verticals-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SERVICE INNER PAGES
══════════════════════════════════════════ */

/* Hero CTA link */
.inner-hero__cta {
  margin-top: 48px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); transition: gap .4s var(--ease-expo);
}
.inner-hero__cta:hover { gap: 24px; }
.inner-hero__cta-line {
  width: 32px; height: 1px; background: var(--gold);
  transition: width .4s var(--ease-expo);
}
.inner-hero__cta:hover .inner-hero__cta-line { width: 52px; }

/* ── SERVICE INDEX (Services overview page) ── */
.svc-index { padding: var(--pad-section) var(--pad-x); }
.svc-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.svc-index__card {
  background: var(--bg); padding: clamp(36px, 5vw, 56px);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--text);
  transition: background .4s ease; position: relative;
}
.svc-index__card:hover { background: var(--bg-warm); }
.svc-index__card--priority {
  background: var(--ink); color: var(--cream);
}
.svc-index__card--priority:hover { background: #1e2550; }
.svc-index__card--cta {
  background: var(--cream);
  align-items: center; justify-content: center;
  text-align: center; gap: 16px;
}
.svc-index__badge {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 6px 14px; border-radius: 100px;
  display: inline-block; margin-bottom: 24px; width: fit-content;
}
.svc-index__num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 16px;
}
.svc-index__card--priority .svc-index__num { color: rgba(255,255,255,0.3); }
.svc-index__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400; line-height: 1.1; margin-bottom: 16px;
}
.svc-index__desc {
  font-family: var(--f-sans); font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300; line-height: 1.8;
  color: var(--text-soft); flex: 1; margin-bottom: 32px;
}
.svc-index__card--priority .svc-index__desc { color: rgba(255,255,255,0.5); }
.svc-index__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); transition: gap .35s var(--ease-expo);
  margin-top: auto;
}
.svc-index__card:hover .svc-index__link { gap: 22px; }
.svc-index__link-line {
  width: 24px; height: 1px; background: var(--gold);
  transition: width .35s var(--ease-expo);
}
.svc-index__card:hover .svc-index__link-line { width: 40px; }
.svc-index__cta-label {
  font-family: var(--f-sans); font-size: 16px;
  color: var(--text-soft); margin-bottom: 8px;
}
.svc-index__cta-link {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}

/* ── WHY PARTNER ── */
.why-partner { padding: var(--pad-section) var(--pad-x); background: var(--bg-warm); }
.why-partner__inner { max-width: 1400px; margin: 0 auto; }
.why-partner__h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.1;
  color: var(--text); margin-bottom: clamp(40px,6vw,72px);
}
.why-partner__h2 em { font-style: italic; color: var(--gold); }
.why-partner__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.why-partner__card {
  background: var(--bg); padding: 40px;
  border-radius: 16px; border: 1px solid var(--border);
}
.why-partner__card h3 {
  font-family: var(--f-display); font-size: 22px;
  font-weight: 400; color: var(--ink); margin-bottom: 14px;
}
.why-partner__card p {
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ── SERVICE DETAIL (inner service pages) ── */
.service-detail { padding: var(--pad-section) var(--pad-x); }
.service-detail__inner { max-width: 1400px; margin: 0 auto; }
.service-detail__h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 400; line-height: 1.05;
  color: var(--text); margin-bottom: clamp(40px,6vw,72px);
}
.service-detail__h2 em { font-style: italic; color: var(--gold); }
.service-list { display: flex; flex-direction: column; }
.service-list__item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 32px; padding: clamp(28px,4vw,48px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-list__item:first-child { border-top: 1px solid var(--border); }
.service-list__num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold); padding-top: 6px;
}
.service-list__title {
  font-family: var(--f-display); font-size: clamp(18px, 2vw, 26px);
  font-weight: 400; color: var(--text); margin-bottom: 10px; line-height: 1.15;
}
.service-list__desc {
  font-family: var(--f-sans); font-size: clamp(14px,1.1vw,16px);
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ── FOR SECTION ── */
.for-section { padding: var(--pad-section) var(--pad-x); }
.for-section__inner { max-width: 1400px; margin: 0 auto; }
.for-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px; margin-top: 48px;
}
.for-card {
  background: var(--bg); padding: 40px;
  border-radius: 16px; border: 1px solid var(--border);
}
.for-card h3 {
  font-family: var(--f-display); font-size: 22px;
  font-weight: 400; color: var(--ink); margin-bottom: 14px;
}
.for-card p {
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ── PROCESS STEPS ── */
.process-section { padding: var(--pad-section) var(--pad-x); }
.process-section__inner { max-width: 1400px; margin: 0 auto; }
.process-section__h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400; color: var(--cream);
  margin-bottom: clamp(40px,6vw,72px); line-height: 1.05;
}
.process-section__h2 em { font-style: italic; color: var(--gold); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.process-step {
  padding: clamp(32px,4vw,52px);
  background: var(--ink);
}
.process-step__num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.process-step__title {
  font-family: var(--f-display); font-size: clamp(20px,2vw,28px);
  font-weight: 400; color: var(--cream); margin-bottom: 14px;
}
.process-step__desc {
  font-family: var(--f-sans); font-size: 14px;
  font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

/* ── VALUE PROPS ── */
.value-props { padding: var(--pad-section) var(--pad-x); }
.value-props__inner { max-width: 1400px; margin: 0 auto; }
.value-props__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06); margin-top: 48px;
}
.value-prop { padding: clamp(32px,4vw,52px); background: var(--ink); }
.value-prop__title {
  font-family: var(--f-display); font-size: clamp(22px,2.5vw,32px);
  font-weight: 400; color: var(--cream); margin-bottom: 16px;
}
.value-prop__body {
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5);
}

/* ── REACH BAND ── */
.reach-band {
  padding: clamp(48px,6vw,80px) var(--pad-x);
  background: var(--bg-warm); text-align: center;
}
.reach-band__inner { max-width: 900px; margin: 0 auto; }
.reach-band__h2 {
  font-family: var(--f-display);
  font-size: clamp(24px,3vw,44px);
  font-weight: 400; line-height: 1.2; color: var(--text);
}
.reach-band__h2 em { font-style: italic; color: var(--gold); }

/* ── CROSSSELL BAND ── */
.crosssell-band {
  background: var(--cream); padding: 28px var(--pad-x);
  text-align: center; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.crosssell-band p {
  font-family: var(--f-sans); font-size: 16px;
  font-weight: 300; color: var(--text-soft);
}
.crosssell-band a { color: var(--gold); text-decoration: none; font-weight: 400; }
.crosssell-band a:hover { text-decoration: underline; }

/* ── FAQ SECTION ── */
.faq-section { padding: var(--pad-section) var(--pad-x); background: var(--bg-warm); }
.faq-section__inner { max-width: 900px; margin: 0 auto; }
.faq-section__h2 {
  font-family: var(--f-display);
  font-size: clamp(28px,3.5vw,48px);
  font-weight: 400; color: var(--text);
  margin-bottom: clamp(40px,5vw,64px); line-height: 1.1;
}
.faq-section__h2 em { font-style: italic; color: var(--gold); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: clamp(24px,3vw,40px) 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  font-family: var(--f-display); font-size: clamp(17px,1.6vw,22px);
  font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.2;
}
.faq-item__a {
  font-family: var(--f-sans); font-size: clamp(14px,1.1vw,16px);
  font-weight: 300; line-height: 1.85; color: var(--text-soft);
}

/* ── AMENITIES ── */
.amenities-section { padding: var(--pad-section) var(--pad-x); }
.amenities-section__inner { max-width: 1400px; margin: 0 auto; }
.amenities-section__h2 {
  font-family: var(--f-display);
  font-size: clamp(28px,3.5vw,52px);
  font-weight: 400; color: var(--text);
  margin-bottom: clamp(40px,5vw,64px); line-height: 1.1;
}
.amenities-section__h2 em { font-style: italic; color: var(--gold); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}
.amenity-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-sans); font-size: 16px;
  font-weight: 300; color: var(--text); padding: 20px 24px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px;
}
.amenity-item__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── LOCATION SECTION ── */
.location-section { padding: var(--pad-section) var(--pad-x); }
.location-section__inner { max-width: 1400px; margin: 0 auto; }
.location-section__h2 {
  font-family: var(--f-display);
  font-size: clamp(32px,4vw,60px);
  font-weight: 400; color: var(--text);
  margin-bottom: clamp(40px,5vw,64px);
}
.location-section__h2 em { font-style: italic; color: var(--gold); }
.location-details { display: flex; flex-direction: column; gap: 0; max-width: 600px; }
.location-detail {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.location-detail:first-child { border-top: 1px solid var(--border); }
.location-detail__label {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute);
}
.location-detail__val {
  font-family: var(--f-sans); font-size: 20px;
  font-weight: 300; color: var(--text);
}

/* ── TRUST SIGNALS ── */
.trust-signals { padding: var(--pad-section) var(--pad-x); background: var(--bg-warm); }
.trust-signals__inner { max-width: 1400px; margin: 0 auto; }
.trust-signals__grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 32px; margin-top: 48px;
}
.trust-signal {
  background: var(--bg); padding: 40px;
  border-radius: 16px; border: 1px solid var(--border);
}
.trust-signal h3 {
  font-family: var(--f-display); font-size: 22px;
  font-weight: 400; color: var(--ink); margin-bottom: 14px;
}
.trust-signal p {
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ── SELECT FIELD ── */
.cf-service-wrap {
  border-bottom: 1px solid var(--border-med); padding: 14px 0;
}
.cf-service-wrap select {
  background: transparent; border: none; outline: none;
  font-family: var(--f-sans); font-size: 16px; font-weight: 300;
  color: var(--text-soft); width: 100%; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.cf-service-wrap select:focus { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-index__grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .service-list__item { grid-template-columns: 40px 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ASSOCIATES & CAREERS PAGES
══════════════════════════════════════════ */

/* Associates list style */
.assoc-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.assoc-list li {
  font-family: var(--f-sans); font-size: clamp(14px,1.1vw,16px);
  font-weight: 300; line-height: 1.7;
  padding-left: 20px; position: relative;
  color: inherit;
}
.assoc-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* Job listings */
.job-item__head {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin-bottom: 10px;
}
.job-item__meta {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute); white-space: nowrap;
}
.job-item__apply {
  display: inline-block; margin-top: 16px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: letter-spacing .3s ease;
}
.job-item__apply:hover { letter-spacing: 0.26em; }

/* Open note */
.careers-note {
  margin-top: 56px; padding: 32px 40px;
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ══════════════════════════════════════════
   REDESIGNED INNER PAGES — v4
══════════════════════════════════════════ */

/* ── ABOUT PAGE — STATS STRIP ── */
.about-stats-section {
  background: var(--ink);
  padding: clamp(60px,8vw,100px) var(--pad-x);
}
.about-stats-section__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.about-stat {
  padding: clamp(32px,4vw,52px) clamp(24px,3vw,40px);
  background: var(--ink);
}
.about-stat__n {
  font-family: var(--f-display);
  font-size: clamp(36px,5vw,64px);
  font-weight: 400; line-height: 1;
  color: var(--cream); margin-bottom: 12px;
}
.about-stat__n sup { font-size: 0.45em; color: var(--gold); }
.about-stat__n em { font-style: normal; color: var(--gold); font-size: 0.7em; }
.about-stat__l {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── SERVICES PAGE — JUMP NAV ── */
.svc-jump-nav {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 52px;
}
.svc-jump-nav__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: border-color .3s, color .3s;
  text-decoration: none;
}
.svc-jump-nav__item:hover { border-color: var(--gold); color: var(--gold); }
.svc-jump-nav__num { color: var(--gold); }

/* ── SERVICES PAGE — FULL SECTIONS ── */
.svc-full {
  padding: clamp(80px,12vw,160px) var(--pad-x);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.svc-full--dark  { background: var(--ink); }
.svc-full--light { background: var(--bg); }
.svc-full--light:nth-child(even) { background: var(--bg-warm); }

.svc-full__inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(40px,6vw,80px);
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.svc-full__meta {
  display: flex; flex-direction: column; align-items: flex-start;
  padding-top: 8px;
}
.svc-full__num {
  font-family: var(--f-display);
  font-size: clamp(32px,4vw,56px);
  font-weight: 400; line-height: 1; display: block;
  margin-bottom: 16px;
}
.svc-full__tag {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  color: var(--text-mute);
}
.svc-full--dark .svc-full__tag { color: rgba(255,255,255,0.25); }

.svc-full__body { padding-top: 0; }
.svc-full__h2 {
  font-family: var(--f-display);
  font-size: clamp(30px,4vw,58px);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.svc-full--dark .svc-full__h2 { color: var(--cream); }
.svc-full--light .svc-full__h2 { color: var(--ink); }

.svc-full__desc {
  font-family: var(--f-sans);
  font-size: clamp(15px,1.3vw,18px);
  font-weight: 300; line-height: 1.9;
  max-width: 680px; margin-bottom: 48px;
}
.svc-full--dark .svc-full__desc { color: rgba(255,255,255,0.5); }
.svc-full--light .svc-full__desc { color: var(--text-soft); }

.svc-full__pts {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 40px; margin-bottom: 52px;
}
.svc-full__pt {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--f-sans); font-size: clamp(13px,1.1vw,15px);
  font-weight: 300; line-height: 1.6;
}
.svc-full--dark .svc-full__pt { color: rgba(255,255,255,0.55); }
.svc-full--light .svc-full__pt { color: var(--text-soft); }
.svc-full__pt-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0; margin-top: 6px;
}
.svc-full__cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: gap .4s var(--ease-expo);
}
.svc-full__cta:hover { gap: 24px; }
.svc-full__cta-line {
  width: 32px; height: 1px;
  transition: width .4s var(--ease-expo);
}
.svc-full__cta:hover .svc-full__cta-line { width: 52px; }

/* Ghost number */
.svc-full__ghost {
  position: absolute; right: -2vw; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(140px,22vw,320px);
  font-weight: 400; line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none; user-select: none;
  z-index: 0;
}
.svc-full--dark .svc-full__ghost { color: rgba(255,255,255,0.025); }
.svc-full--light .svc-full__ghost { color: rgba(27,32,69,0.04); }

/* ── CONTACT PAGE — SPLIT LAYOUT ── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
}
.contact-page__left {
  background: var(--ink);
  padding: clamp(120px,16vw,200px) clamp(40px,6vw,100px) clamp(80px,10vw,120px);
  display: flex; flex-direction: column; justify-content: center;
  position: sticky; top: 0; height: 100vh;
}
.contact-page__h1 {
  font-family: var(--f-display);
  font-size: clamp(52px,7vw,100px);
  font-weight: 400; line-height: 1.0;
  color: var(--cream); margin-bottom: 28px;
}
.contact-page__h1 em { font-style: italic; color: var(--gold); }
.contact-page__sub {
  font-family: var(--f-sans); font-size: clamp(14px,1.2vw,17px);
  font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45); margin-bottom: 56px;
  max-width: 380px;
}
.contact-page__details { display: flex; flex-direction: column; gap: 0; }
.contact-page__detail {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
}
.contact-page__detail:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.contact-page__detail-lbl {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.contact-page__detail-val {
  font-family: var(--f-sans); font-size: clamp(14px,1.2vw,17px);
  font-weight: 300; color: rgba(255,255,255,0.7);
  transition: color .3s;
}
.contact-page__detail:hover .contact-page__detail-val { color: var(--gold); }

.contact-page__right {
  background: var(--bg-warm);
  padding: clamp(120px,16vw,200px) clamp(40px,6vw,100px) clamp(80px,10vw,120px);
  display: flex; align-items: center;
}
.contact-page__form { width: 100%; max-width: 620px; }

/* Form fields */
.cpf-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 32px; margin-bottom: 0;
}
.cpf-field {
  position: relative; padding: 16px 0;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}
.cpf-field--full { grid-column: 1 / -1; }
.cpf-field input,
.cpf-field textarea {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--f-sans); font-size: 16px; font-weight: 300;
  color: var(--text); padding: 0; resize: none;
}
.cpf-field textarea { min-height: 100px; }
.cpf-field label {
  position: absolute; top: 16px; left: 0;
  font-family: var(--f-sans); font-size: 14px; font-weight: 300;
  color: var(--text-mute); pointer-events: none; z-index: 0;
  transition: top .3s var(--ease-expo), font-size .3s, color .3s;
}
.cpf-field input,
.cpf-field textarea {
  position: relative; z-index: 1;
}
.cpf-field input:focus ~ label,
.cpf-field input:not(:placeholder-shown) ~ label,
.cpf-field textarea:focus ~ label,
.cpf-field textarea:not(:placeholder-shown) ~ label {
  top: 4px; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.cpf-field input::placeholder,
.cpf-field textarea::placeholder { color: transparent; }

.cpf-select-wrap {
  position: relative; border-bottom: 1px solid #cccccc;
  padding: 20px 0; margin-bottom: 0;
}
.cpf-select-wrap select {
  width: 100%; background: transparent; border: none; outline: none;
  font-family: var(--f-sans); font-size: 14px; font-weight: 300;
  color: var(--text-mute); appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.cpf-select-wrap select:valid { color: var(--text); }
.cpf-select-arrow {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: var(--text-mute); pointer-events: none;
}
.cpf-submit-row { margin-top: 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cpf-submit {
  background: var(--ink); color: var(--cream);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 40px; border: none; border-radius: 0;
  cursor: pointer; transition: background .3s, color .3s;
}
.cpf-submit:hover { background: var(--gold); color: #fff; }
.cpf-status { font-family: var(--f-sans); font-size: 14px; color: var(--text-soft); }

/* ── ASSOCIATES & CAREERS — STACKED TYPE ROWS ── */
.asc-types { padding: var(--pad-section) var(--pad-x); }
.asc-types__inner { max-width: 1200px; margin: 0 auto; }
.asc-types__h2 {
  font-family: var(--f-display);
  font-size: clamp(32px,4.5vw,64px);
  font-weight: 400; line-height: 1.05;
  color: var(--text); margin-bottom: clamp(48px,6vw,80px);
}
.asc-types__h2 em { font-style: italic; color: var(--gold); }
.asc-type-row {
  display: grid;
  grid-template-columns: 48px 1fr 2fr;
  gap: 32px; align-items: baseline;
  padding: clamp(24px,3vw,40px) 0;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.asc-type-row:first-of-type { border-top: 1px solid var(--border); }
.asc-type-row:hover { background: var(--bg-warm); margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
.asc-type-row__num {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--gold);
}
.asc-type-row__title {
  font-family: var(--f-display); font-size: clamp(17px,1.8vw,24px);
  font-weight: 400; color: var(--text); line-height: 1.2;
}
.asc-type-row__body {
  font-family: var(--f-sans); font-size: clamp(13px,1.1vw,15px);
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ── CAREERS — ROLES ── */
.careers-roles { padding: var(--pad-section) var(--pad-x); }
.careers-roles__inner { max-width: 1100px; margin: 0 auto; }
.careers-roles__h2 {
  font-family: var(--f-display);
  font-size: clamp(32px,4.5vw,64px);
  font-weight: 400; line-height: 1.05;
  color: var(--text); margin-bottom: clamp(48px,6vw,80px);
}
.careers-roles__h2 em { font-style: italic; color: var(--gold); }
.career-role {
  padding: clamp(32px,4vw,52px) 0;
  border-bottom: 1px solid var(--border);
}
.career-role:first-of-type { border-top: 1px solid var(--border); }
.career-role__top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 24px; margin-bottom: 20px;
}
.career-role__num {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 8px;
}
.career-role__title {
  font-family: var(--f-display); font-size: clamp(20px,2.2vw,30px);
  font-weight: 400; color: var(--text); line-height: 1.1; margin-bottom: 8px;
}
.career-role__meta {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute); display: block;
}
.career-role__apply {
  flex-shrink: 0;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; white-space: nowrap;
  padding: 14px 28px; border: 1px solid var(--gold);
  transition: background .3s, color .3s;
}
.career-role__apply:hover { background: var(--gold); color: #fff; }
.career-role__desc {
  font-family: var(--f-sans); font-size: clamp(14px,1.1vw,16px);
  font-weight: 300; line-height: 1.85; color: var(--text-soft);
  max-width: 780px;
}
.careers-open-note {
  margin-top: 52px; padding: 36px 44px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--bg-warm);
}
.careers-open-note p {
  font-family: var(--f-sans); font-size: 15px;
  font-weight: 300; line-height: 1.8; color: var(--text-soft);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1100px) {
  .svc-full__inner { grid-template-columns: 60px 1fr; gap: 32px; }
  .svc-full__pts { grid-template-columns: 1fr; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-page__left { position: static; height: auto; }
  .about-stats-section__inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .svc-jump-nav { gap: 8px; }
  .asc-type-row { grid-template-columns: 36px 1fr; }
  .asc-type-row__body { grid-column: 2; }
  .career-role__top { flex-direction: column; gap: 16px; }
  .cpf-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .about-stats-section__inner { grid-template-columns: 1fr 1fr; }
  .svc-full__inner { grid-template-columns: 1fr; }
  .svc-full__meta { flex-direction: row; align-items: center; gap: 16px; }
  .svc-full__tag { writing-mode: horizontal-tb; transform: none; }
}
