:root {
  --ink: #0e0e0c;
  --ink-2: #1c1c19;
  --muted: #5e6058;
  --line: #e6e2d3;
  --line-2: #efece0;
  --brand: #f3c400;
  --brand-2: #ffd83b;
  --brand-dark: #a07a00;
  --gold-soft: #ffe680;
  --steel: #6f7978;
  --cream: #f6f1e1;
  --mist: #faf8ef;
  --charcoal: #0a0a08;
  --charcoal-2: #15140e;
  --shadow-sm: 0 8px 24px rgba(10, 10, 8, .08);
  --shadow: 0 24px 70px rgba(10, 10, 8, .14);
  --shadow-lg: 0 36px 110px rgba(10, 10, 8, .26);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 16px; }
em { font-style: italic; color: var(--brand-dark); font-weight: inherit; }
h1, h2, h3 { letter-spacing: -0.02em; font-weight: 900; }
h1 { font-size: clamp(46px, 6.8vw, 96px); line-height: .94; margin: 0 0 22px; }
h1 em { color: var(--brand); font-style: italic; }
h2 { font-size: clamp(32px, 4.2vw, 60px); line-height: 1.02; margin: 0 0 18px; }
h2 em { color: var(--brand-dark); font-style: italic; }
h3 { font-size: 22px; line-height: 1.18; margin: 0 0 10px; }
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand-dark);
  letter-spacing: .16em;
}
.section-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
}

/* HEADER + NAV PILL */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 18px;
  pointer-events: none;
}
.nav-frame { display: flex; justify-content: center; }
.nav-pill {
  pointer-events: auto;
  width: fit-content;
  max-width: calc(100vw - 28px);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(10, 10, 8, .14);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-radius: 999px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { width: 120px; height: auto; }
.brand span { display: none; }
.nav-links { display: flex; gap: 26px; margin: 0; }
.nav-links a, .mobile-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.005em;
}
.nav-links a { transition: color .2s ease; position: relative; }
.nav-links a:hover { color: var(--brand-dark); }

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
}
.nav-cta, .btn-primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #0e0e0c;
  box-shadow: 0 14px 30px rgba(185, 140, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.nav-cta:hover, .btn-primary:hover, .btn-secondary:hover, .btn-light:hover, .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(185, 140, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .55);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-dark {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 10, 8, .25);
}
.btn-dark:hover { background: #000; box-shadow: 0 20px 40px rgba(10, 10, 8, .35); }
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(10, 10, 8, .35);
}
.btn-outline-dark:hover { background: rgba(10, 10, 8, .06); border-color: var(--charcoal); transform: translateY(-2px); }
.btn svg { flex: none; }

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 11px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}
.mobile-menu { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 820px;
  padding: 152px 24px 80px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
}
.hero-media { position: absolute; inset: 0; }
.hero-fallback, .hero-fallback picture, .hero-fallback img { width: 100%; height: 100%; display: block; }
.hero-fallback { position: absolute; inset: 0; }
.hero-fallback img {
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(1.1) contrast(1.06);
}
.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, 177.78vh);
  height: max(56.25vw, 100vh);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
}
.hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 18% 60%, rgba(0,0,0,.72), rgba(0,0,0,0) 60%),
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,0) 55%);
  z-index: 2;
}
.hero-media:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
  z-index: 2;
}
.hero-card {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 40px 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(8, 8, 6, .58) 0%, rgba(8, 8, 6, .32) 100%);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  box-shadow: 0 50px 110px rgba(0, 0, 0, .42);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  backdrop-filter: blur(26px) saturate(160%);
}
.hero-card .eyebrow { color: var(--brand); letter-spacing: .18em; }
.hero-card h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,.36);
}
.hero-card h1 em { color: var(--brand); font-style: italic; }
.hero-card p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-checks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}
.hero-checks .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(243, 196, 0, .2);
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .85);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* PROOF STRIP */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -56px auto 0;
  position: relative;
  z-index: 4;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, #1f1d14 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(10, 10, 8, .28);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-strip div {
  padding: 38px 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  position: relative;
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip div:before {
  content: "";
  position: absolute;
  left: 26px;
  top: 22px;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.proof-strip strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--brand);
  margin-bottom: 4px;
}
.proof-strip span {
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
}

/* INTRO */
.intro-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 116px 24px 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 64px;
  align-items: center;
}
.check-list { padding: 0; margin: 24px 0 30px; list-style: none; }
.check-list li {
  margin: 10px 0;
  padding-left: 34px;
  position: relative;
  font-size: 15.5px;
  color: var(--muted);
}
.check-list li:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px var(--brand-dark);
  position: absolute;
  left: 0;
  top: 4px;
}
.photo-stack {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-stack img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.photo-stack img:nth-child(2) { aspect-ratio: 4 / 5; }
.photo-stack img:nth-child(3) { aspect-ratio: 4 / 5; }

/* ACTION BAND */
.action-band {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: grid;
  align-items: end;
  background: #0a0a08;
}
.action-band picture, .action-band picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(1.05) contrast(1.04);
}
.action-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.2) 100%),
    linear-gradient(90deg, rgba(0,0,0,.3), rgba(0,0,0,0) 60%);
  z-index: 1;
}
.action-band-overlay {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 24px 56px;
  color: #fff;
}
.action-band-overlay .eyebrow { color: var(--brand); }
.action-band-overlay h2 { color: #fff; max-width: 880px; margin-bottom: 36px; }
.action-band-overlay h2 em { color: var(--brand); }
.action-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.action-stats div {
  padding-left: 18px;
  border-left: 2px solid var(--brand);
}
.action-stats strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.action-stats span {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

/* SERVICE BAND */
.service-band {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  padding: 110px 24px 120px;
}
.service-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(243, 196, 0, .14), rgba(243, 196, 0, 0) 50%),
    radial-gradient(50% 70% at 100% 100%, rgba(243, 196, 0, .08), rgba(243, 196, 0, 0) 55%);
  pointer-events: none;
}
.service-band > * { position: relative; }
.section-head {
  max-width: 1180px;
  margin: 0 auto 50px;
}
.section-head h2 { max-width: 860px; color: inherit; }
.service-band .section-head .eyebrow { color: var(--brand); }
.service-band .section-head h2 { color: #fff; }
.service-band .section-head .section-lede { color: rgba(255,255,255,.7); }
.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.service-page-grid {
  padding: 0 24px 92px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, .36);
}
.service-grid:not(.service-page-grid) .service-card:nth-child(even) {
  transform: translateY(22px);
}
.service-grid:not(.service-page-grid) .service-card:nth-child(even):hover {
  transform: translateY(16px);
}
.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #15140e;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
  filter: saturate(1.06) contrast(1.04);
}
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--brand);
  color: #0e0e0c;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.service-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.service-card-body .eyebrow {
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.text-link {
  font-weight: 850;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s ease, gap .2s ease;
}
.text-link:hover { color: var(--brand-dark); gap: 10px; }

/* PROCESS */
.process {
  padding: 116px 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
}
.process-intro h2 { max-width: 480px; }
.process-intro p { color: var(--muted); max-width: 44ch; }
.process-intro .btn { margin-top: 8px; }
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.process-steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.process-steps li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(243, 196, 0, .55);
}
.step-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--brand);
  font-feature-settings: "tnum";
  letter-spacing: -.02em;
  -webkit-text-stroke: 1px var(--brand-dark);
}
.step-body h3 { margin-bottom: 6px; }
.step-body p { color: var(--muted); font-size: 15px; margin: 0; }

/* GALLERY MOSAIC */
.gallery-mosaic {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin: 0;
  padding: 116px max(24px, calc((100vw - 1180px) / 2));
  background: var(--mist);
}
.gallery-mosaic aside p { color: var(--muted); }
.mosaic-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 30px;
  display: grid;
  gap: 14px;
}
.mosaic-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.mosaic-points li span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #0e0e0c;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.02em;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.mosaic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(1.05);
}
.mosaic-grid img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 5 / 4;
}
.mosaic-grid img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: 3 / 5;
}
.mosaic-grid img:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 5 / 4;
}
.mosaic-grid img:nth-child(4) {
  display: none;
}

/* TEAM */
.team-preview {
  background: var(--cream);
  padding: 110px 24px;
}
.team-preview .section-head { text-align: left; }
.team-row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-row article {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 16px 16px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-row article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #15140e;
}
.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.team-row article:hover .team-photo img { transform: scale(1.04); }
.team-row h3 { margin: 0 0 4px; font-size: 18px; }
.team-row p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
}
.center-link {
  width: fit-content;
  margin: 36px auto 0;
}

/* CONTACT PANEL */
.contact-panel {
  background: var(--mist);
  padding: 0;
  position: relative;
}
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy { padding-right: 8px; padding-top: 8px; }
.contact-copy h2 { max-width: 14ch; }
.contact-copy p { color: var(--muted); max-width: 44ch; }
.contact-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 26px;
  display: grid;
  gap: 16px;
}
.contact-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}
.contact-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #0e0e0c;
  box-shadow: 0 6px 16px rgba(185,140,0,.25);
}
.contact-points strong { display: block; font-size: 17px; font-weight: 800; }
.contact-points strong a { text-decoration: none; }
.contact-points span { display: block; font-size: 13.5px; color: var(--muted); }
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.contact-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.contact-socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.contact-form {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
  position: relative;
  overflow: hidden;
}
.contact-form:before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle at top right, rgba(243,196,0,.18), rgba(243,196,0,0) 70%);
  pointer-events: none;
}
.contact-form-head { grid-column: 1 / -1; position: relative; }
.form-eyebrow {
  margin: 0 0 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: .14em;
}
.form-promise { margin: 0 0 6px; font-size: 13.5px; color: rgba(255,255,255,.65); }
.contact-form label {
  display: grid;
  gap: 8px;
  position: relative;
  color: #fff;
}
.contact-form span {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,.85);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  background: rgba(255,255,255,.04);
  color: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(243, 196, 0, .25);
  background: rgba(255,255,255,.08);
}
.contact-form select { color: #fff; }
.contact-form select option { background: var(--charcoal-2); color: #fff; }
.contact-form .btn-primary { margin-top: 4px; }
.wide { grid-column: 1 / -1; }

/* SUBPAGE LAYOUTS */
.page-hero {
  padding: 168px 24px 84px;
  max-width: 1180px;
  margin: 0 auto;
}
.page-hero.split {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 540px);
  gap: 48px;
  align-items: end;
}
.page-hero.split > img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.page-hero h1 { max-width: 920px; }

.owner-band {
  background: var(--mist);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}
.owner-band img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.team-grid {
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: grid;
  gap: 20px;
}
.trainer-card {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.trainer-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}
.price-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.price-card strong {
  display: block;
  font-size: 36px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.02em;
}
.class-grid, .feature-list, .article-grid, .gallery-grid, .faq-list {
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: grid;
  gap: 18px;
}
.class-grid { grid-template-columns: repeat(4, 1fr); }
.class-grid article, .feature-list article, .article-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.class-grid span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.feature-list { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.location-panel {
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 44px;
  align-items: center;
}
.map-card {
  min-height: 300px;
  border-radius: var(--radius);
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(243, 196, 0, .35), rgba(243, 196, 0, 0) 70%),
    linear-gradient(135deg, #111 0%, #1f1d12 62%, #2a2615 100%);
  color: #fff;
  padding: 36px;
  display: grid;
  align-content: end;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.05);
}
.map-card span { font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.map-card strong { font-size: 44px; line-height: 1; font-weight: 900; letter-spacing: -.02em; }

.faq-list { max-width: 920px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  background: #fff;
  transition: border-color .2s ease;
}
.faq-list details[open] { border-color: var(--brand); }
.faq-list summary { font-weight: 800; cursor: pointer; }
.faq-list p { margin-top: 12px; color: var(--muted); }
.article-grid { grid-template-columns: repeat(3, 1fr); }
.article-grid a { text-decoration: none; }
.article-body, .not-found {
  max-width: 880px;
  margin: 0 auto;
  padding: 168px 24px 92px;
}
.article-body p { font-size: 18px; }
.article-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  color: #efeadd;
  padding: 70px 24px 90px;
}
.footer-cta {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(185, 140, 0, .35);
  isolation: isolate;
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand) 60%, #d9a300 100%);
  z-index: -2;
}
.footer-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 20%, rgba(255,255,255,.5), rgba(255,255,255,0) 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(10,10,8,.18), rgba(10,10,8,0) 60%);
  z-index: -1;
  pointer-events: none;
}
.footer-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
  padding: 56px 56px;
  color: #0e0e0c;
}
.footer-cta-inner .eyebrow { color: rgba(10,10,8,.7); }
.footer-cta-inner h2 { color: #0e0e0c; margin-bottom: 12px; max-width: 18ch; }
.footer-cta-inner p { color: rgba(10,10,8,.75); max-width: 50ch; margin-bottom: 0; }
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-grid h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand);
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  margin: 9px 0;
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer-grid a:hover { color: var(--brand); }
.footer-grid p { color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer-logo {
  width: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}
.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
}
.footer-credit a { color: rgba(255,255,255,.82); }
.socials { display: flex; gap: 14px; flex-wrap: wrap; }
.nap strong { color: #fff; }
.nap a { color: var(--brand); }

.mobile-sticky-cta { display: none; }

/* RESPONSIVE */
@media (max-width: 1023px) {
  .nav-pill {
    width: calc(100vw - 24px);
    justify-content: space-between;
    padding-left: 16px;
  }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .brand-logo { width: 110px; }
  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 12px;
    right: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    z-index: 45;
    box-shadow: var(--shadow);
  }
  body.menu-open .mobile-menu {
    display: grid;
    gap: 12px;
  }
  .hero {
    min-height: 720px;
    padding: 120px 16px 56px;
  }
  .hero-fallback img { object-position: 60% 40%; }
  .hero-card {
    margin: 0;
    padding: 28px 24px 26px;
    max-width: none;
  }
  .hero-card h1 { font-size: 44px; }
  .hero-card p { font-size: 16px; }
  .hero-scroll { display: none; }
  .hero-video { display: none; }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
    margin: 0;
    border-radius: 0;
  }
  .proof-strip div { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .proof-strip div:nth-child(2n) { border-right: 0; }
  .intro-section,
  .process,
  .page-hero.split,
  .owner-band,
  .trainer-card,
  .gallery-mosaic,
  .location-panel {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }
  .intro-section, .process, .gallery-mosaic, .team-preview, .service-band {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .action-band-overlay { padding: 72px 20px 40px; }
  .action-stats { gap: 28px; }
  .action-stats strong { font-size: 28px; }
  .contact-panel {
    background: #fff;
    padding: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 80px 20px;
    gap: 32px;
  }
  .contact-form { padding: 24px; }
  .service-grid,
  .service-page-grid,
  .team-row,
  .price-grid,
  .class-grid,
  .feature-list,
  .article-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid:not(.service-page-grid) .service-card:nth-child(even),
  .service-grid:not(.service-page-grid) .service-card:nth-child(even):hover {
    transform: none;
  }
  .process-steps li { grid-template-columns: 56px 1fr; padding: 22px; }
  .step-num { font-size: 32px; }
  .footer-cta-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 24px;
  }
  .site-footer { padding: 50px 20px 132px; }
  .footer-cta { margin-bottom: 48px; }
  .mosaic-grid img:nth-child(2) {
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 30px rgba(0,0,0,.18);
  }
  .mobile-sticky-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
  }
  .mobile-sticky-cta a:first-child { background: var(--brand); }
  .mobile-sticky-cta a:last-child {
    background: #0a0a0a;
    color: #fff;
  }
}

@media (max-width: 620px) {
  h1 { font-size: 38px; }
  .hero-card h1 { font-size: 36px; }
  .btn { width: 100%; }
  .photo-stack,
  .mosaic-grid,
  .proof-strip,
  .service-grid,
  .service-page-grid,
  .team-row,
  .price-grid,
  .class-grid,
  .feature-list,
  .article-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .photo-stack img:nth-child(2), .photo-stack img:nth-child(3) { aspect-ratio: 4 / 3; }
  .mosaic-grid img:nth-child(2) { grid-column: auto; aspect-ratio: 4 / 3; }
  .service-band, .team-preview {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-bottom { display: block; }
  .footer-bottom .footer-credit { display: block; margin-top: 8px; }
  .page-hero { padding-top: 128px; }
  .article-body { padding-top: 128px; }
  .map-card strong { font-size: 34px; }
}
