:root {
  --bg: #0b0b0c;
  --surface: #121214;
  --surface-2: #18181b;
  --line: rgba(255,255,255,.12);
  --muted: #9a9a9f;
  --text: #f5f5f3;
  --accent: #ff3d24;
  --accent-2: #ff6a28;
  --display: "Oxanium", sans-serif;
  --body: "Manrope", sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: white; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: white;
  color: #111;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,61,36,.06), transparent 67%);
  transform: translate(-50%, -50%);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 max(28px, calc((100vw - var(--max))/2));
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background .25s, height .25s;
}
.site-header.scrolled {
  position: fixed;
  height: 78px;
  background: rgba(10,10,11,.94);
  backdrop-filter: blur(16px);
  animation: headerDrop .35s ease;
}
@keyframes headerDrop { from { transform: translateY(-100%); } }

.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-logo img {
  width: 175px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--accent);
  clip-path: polygon(15% 0,100% 0,85% 100%,0 100%);
}
.brand-mark svg { width: 32px; height: 32px; fill: white; }
.brand-copy { display: grid; line-height: 1; font-family: var(--display); letter-spacing: .05em; }
.brand-copy strong { font-size: 20px; font-weight: 800; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .34em; }

.main-nav { position: relative; display: flex; justify-content: center; align-items: center; gap: 40px; }
.main-nav > .nav-link,
.nav-service-row > .nav-link {
  position: relative;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.main-nav > .nav-link::after,
.nav-service-row > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.main-nav > .nav-link:hover,
.main-nav > .nav-link.active,
.nav-service-row > .nav-link:hover,
.nav-service-row > .nav-link.active { color: var(--accent); }
.main-nav > .nav-link:hover::after,
.main-nav > .nav-link.active::after,
.nav-service-row > .nav-link:hover::after,
.nav-service-row > .nav-link.active::after { right: 0; }

.nav-item { position: relative; }
.nav-service-row { display: flex; align-items: center; gap: 5px; }
.dropdown-toggle {
  width: 22px;
  height: 22px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}
.dropdown-toggle span { display: block; font-size: 16px; line-height: 1; transition: transform .25s; }
.has-dropdown.open .dropdown-toggle span,
.has-dropdown:focus-within .dropdown-toggle span { transform: rotate(45deg); }
.services-dropdown {
  position: absolute;
  z-index: 70;
  top: calc(100% + 29px);
  left: 50%;
  width: min(760px, 84vw);
  padding: 24px;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(14,14,16,.98);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .services-dropdown,
.has-dropdown:focus-within .services-dropdown,
.has-dropdown.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-heading {
  padding: 0 4px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.dropdown-heading > span {
  color: white;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.dropdown-heading > a {
  color: var(--accent);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.dropdown-grid {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 20px;
}
.dropdown-grid a {
  min-height: 49px;
  padding: 10px 8px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, background .2s, padding .2s;
}
.dropdown-grid a:hover,
.dropdown-grid a:focus-visible {
  padding-left: 13px;
  background: rgba(255,61,36,.08);
  color: var(--accent);
}
.dropdown-grid a span { color: var(--accent); font-family: var(--display); font-size: 9px; }
.dropdown-grid a strong { font-family: var(--display); font-size: 11px; font-weight: 600; line-height: 1.25; text-transform: uppercase; }

.header-phone { display: flex; justify-content: flex-end; align-items: center; gap: 13px; }
.header-phone > span:last-child { display: grid; line-height: 1.25; }
.header-phone small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.header-phone strong { margin-top: 4px; font-family: var(--display); font-size: 14px; letter-spacing: .04em; }
.phone-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
}
.phone-icon svg, .floating-call svg { width: 19px; fill: white; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100vh;
  max-height: 980px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,.96) 0%, rgba(7,7,8,.79) 38%, rgba(7,7,8,.17) 72%),
    linear-gradient(0deg, rgba(7,7,8,.72), transparent 35%);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(.7) contrast(1.18);
  transform: scale(1.035);
  animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(820px, 70vw);
  margin-left: max(28px, calc((100vw - var(--max))/2));
  padding-top: 80px;
}
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d0d0d0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 2px; background: var(--accent); }
h1, h2, h3, h4 { margin-top: 0; font-family: var(--display); line-height: .98; text-transform: uppercase; }
.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(62px, 7.7vw, 118px);
  font-weight: 800;
  letter-spacing: -.06em;
}
h1 em, h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--accent); }
.hero-lead { max-width: 620px; margin: 0 0 35px; color: #c2c2c5; font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  border: 0;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--accent); color: white; box-shadow: 0 14px 30px rgba(255,61,36,.22); }
.button-primary:hover { background: var(--accent-2); }
.button-outline { border: 1px solid var(--line); background: transparent; }
.button-outline:hover { border-color: var(--accent); background: var(--accent); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.play { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 10px; }
.hero-meta {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--max))/2));
  bottom: 36px;
  display: flex;
  gap: 60px;
}
.hero-meta div { display: grid; }
.hero-meta strong { font-family: var(--display); font-size: 13px; color: var(--accent); }
.hero-meta span { max-width: 180px; color: #aaa; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .25em;
}
.scroll-cue i { height: 70px; width: 1px; background: linear-gradient(var(--accent) 0 30%, var(--line) 30%); }

.social-rail {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 0;
  padding: 20px 12px;
  transform: translateY(-50%);
  display: grid;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.social-rail span { writing-mode: vertical-rl; color: var(--muted); font-family: var(--display); font-size: 8px; letter-spacing: .2em; }
.social-rail a { font-family: var(--display); font-size: 9px; transition: color .2s; }
.social-rail a:hover { color: var(--accent); }

.section { position: relative; max-width: var(--max); margin: 0 auto; padding: 150px 28px; }
.section-index {
  position: absolute;
  right: 28px;
  top: 105px;
  color: rgba(255,255,255,.03);
  font-family: var(--display);
  font-size: 130px;
  font-weight: 800;
  line-height: 1;
}
.intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: end; }
.intro h2, .choose h2, .team h2, .services h2, .reviews h2, .faq h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5.2vw, 74px);
  font-weight: 700;
  letter-spacing: -.045em;
}
.intro-copy { padding-bottom: 2px; }
.intro-copy p { color: var(--muted); }
.intro-copy p:first-child { color: #d7d7d8; font-size: 17px; }
.arrow-link {
  margin-top: 28px;
  display: inline-flex;
  gap: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.pillars {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  position: relative;
  min-height: 360px;
  padding: 54px 42px;
  border: 1px solid var(--line);
  border-right: 0;
  transition: background .3s, transform .3s;
}
.pillar:last-child { border-right: 1px solid var(--line); }
.pillar:hover { z-index: 2; background: var(--accent); transform: translateY(-8px); }
.pillar-number { position: absolute; right: 28px; top: 24px; color: var(--muted); font-family: var(--display); font-size: 11px; }
.pillar-icon { width: 60px; height: 60px; margin-bottom: 46px; color: var(--accent); transition: color .3s; }
.pillar-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.pillar:hover .pillar-icon { color: white; }
.pillar h2, .pillar h3 { margin-bottom: 18px; font-size: 23px; }
.pillar p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; transition: color .3s; }
.pillar:hover p, .pillar:hover .pillar-number { color: rgba(255,255,255,.82); }

.choose { max-width: none; padding-left: max(28px, calc((100vw - var(--max))/2)); padding-right: max(28px, calc((100vw - var(--max))/2)); display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; background: var(--surface); }
.choose-media { position: relative; height: 650px; }
.choose-media::before { content: ""; position: absolute; z-index: 2; inset: 30px -20px -20px 30px; border: 1px solid rgba(255,61,36,.35); }
.choose-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); }
.experience-badge {
  position: absolute;
  z-index: 3;
  right: -42px;
  bottom: 50px;
  width: 174px;
  height: 174px;
  padding: 30px;
  display: grid;
  place-content: center;
  background: var(--accent);
  text-align: center;
}
.experience-badge strong { font-family: var(--display); font-size: 50px; line-height: 1; }
.experience-badge span { font-family: var(--display); font-size: 9px; letter-spacing: .15em; line-height: 1.5; }
.choose-content > p:not(.eyebrow) { max-width: 570px; color: var(--muted); }
.feature-list { margin: 35px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
}
.feature-list span { color: var(--accent); font-size: 10px; }

.team { border-top: 1px solid var(--line); }
.team-head {
  margin-bottom: 55px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 80px;
  align-items: end;
}
.team-head > p {
  margin: 0 0 8px;
  max-width: 520px;
  color: var(--muted);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.team-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.18);
  transition: transform .55s ease, filter .3s ease;
}
.team-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0);
}
.team-card-body {
  padding: 28px;
  border-top: 3px solid var(--accent);
}
.team-card-body span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.team-card-body h3 {
  margin: 12px 0 4px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}
.team-card-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.services-head { display: grid; grid-template-columns: 1fr .55fr; gap: 80px; align-items: end; }
.services-head > p { color: var(--muted); }
.service-tabs { margin: 55px 0 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.service-tabs button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.service-tabs button.active, .service-tabs button:hover { border-color: var(--accent); background: var(--accent); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 390px; gap: 18px; }
.service-card { position: relative; overflow: hidden; transition: opacity .25s, transform .25s; }
.service-card.large { grid-column: span 2; }
.service-card.hidden { display: none; }
.service-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5); transition: transform .6s, filter .4s; }
.service-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,7,8,.92), transparent 70%); }
.service-no { position: absolute; top: 24px; right: 27px; color: white; font-family: var(--display); font-size: 11px; }
.service-body { position: absolute; left: 30px; right: 30px; bottom: 26px; }
.service-body p { margin: 0 0 5px; color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .18em; }
.service-body h3 { margin: 0; font-size: clamp(22px, 3vw, 38px); }
.service-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.service-title {
  display: block;
  max-width: calc(100% - 60px);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}
.card-arrow { position: absolute; right: 0; bottom: 3px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); transition: background .25s; }
.service-card:hover .card-arrow { background: var(--accent); border-color: var(--accent); }
.section-cta { margin-top: 35px; text-align: center; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stat { min-height: 220px; padding: 45px 28px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong, .stat > span { font-family: var(--display); font-size: 58px; line-height: 1; }
.stat > span { color: var(--accent); font-size: 27px; }
.stat p { margin: 13px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.reviews { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; overflow: hidden; }
.review-controls { margin-top: 40px; display: flex; gap: 10px; }
.review-controls button { width: 50px; height: 50px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 18px; }
.review-controls button:hover { background: var(--accent); border-color: var(--accent); }
.review-stage { position: relative; min-width: 0; padding: 55px 60px; background: var(--surface); border-left: 3px solid var(--accent); }
.quote-mark { position: absolute; top: 13px; right: 45px; color: rgba(255,61,36,.15); font-family: Georgia, serif; font-size: 140px; line-height: 1; }
.review-track { position: relative; min-height: 350px; }
.review { position: absolute; inset: 0; opacity: 0; transform: translateX(35px); pointer-events: none; transition: opacity .45s, transform .45s; }
.review.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.stars { color: var(--accent); letter-spacing: .25em; }
blockquote { margin: 34px 0; font-family: var(--display); font-size: clamp(22px, 2.7vw, 37px); line-height: 1.35; text-transform: uppercase; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); font-family: var(--display); font-weight: 700; }
.reviewer div { display: grid; }
.reviewer strong { font-family: var(--display); font-size: 12px; letter-spacing: .08em; }
.reviewer small { color: var(--muted); font-size: 9px; letter-spacing: .1em; }
.review-source { display: inline-block; margin-top: 18px; color: var(--accent); font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.review-source:hover { color: var(--text); }
.review-progress { position: absolute; left: 60px; right: 60px; bottom: 33px; height: 2px; background: var(--line); }
.review-progress i { display: block; width: 33.33%; height: 100%; background: var(--accent); transition: transform .4s; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.faq-media { position: relative; height: 680px; overflow: hidden; }
.faq-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,12,.7), transparent 50%); }
.faq-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.faq-media > span { position: absolute; z-index: 2; bottom: 27px; left: 30px; color: var(--accent); font-family: var(--display); font-size: 10px; letter-spacing: .16em; }
.accordion { margin-top: 42px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 23px 0; display: grid; grid-template-columns: 35px 1fr 25px; align-items: center; gap: 12px; border: 0; background: none; text-align: left; font-family: var(--display); font-size: 15px; text-transform: uppercase; cursor: pointer; }
.faq-item button span { color: var(--accent); font-size: 9px; }
.faq-item button i { font-size: 20px; font-style: normal; text-align: right; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s; }
.faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 35px 25px 47px; }

.contact { max-width: none; padding-left: max(28px, calc((100vw - var(--max))/2)); padding-right: max(28px, calc((100vw - var(--max))/2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; background: linear-gradient(115deg, #171719 0 42%, #111113 42%); }
.contact-info > p:not(.eyebrow) { max-width: 430px; color: var(--muted); }
.contact-detail { margin-top: 28px; display: grid; }
.contact-detail span { color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .15em; }
.contact-detail a, .contact-detail p { margin: 3px 0 0; font-family: var(--display); font-size: 18px; line-height: 1.45; }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 22px; }
.field { display: grid; gap: 7px; }
.field.full, .booking-form .full { grid-column: span 2; }
.field label { color: #c8c8ca; font-family: var(--display); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: white;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field option { background: var(--surface); }
.field textarea { resize: vertical; }
.form-status { min-height: 25px; margin: -8px 0 0; color: #75d88b; }
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.privacy-check input { accent-color: var(--accent); margin-top: 3px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-alert {
  margin-bottom: 28px;
  padding: 15px 18px;
  border-left: 3px solid;
  background: rgba(255,255,255,.05);
  font-size: 13px;
}
.form-alert.success { border-color: #62cf7a; color: #baf2c7; }
.form-alert.error { border-color: var(--accent); color: #ffc0b8; }

.footer { background: #070708; border-top: 1px solid var(--line); }
.newsletter {
  max-width: var(--max);
  margin: 0 auto;
  padding: 55px 28px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}
.newsletter span { color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .16em; }
.newsletter h2, .newsletter h3 { margin: 8px 0 0; font-size: 24px; }
.newsletter form { display: flex; border-bottom: 1px solid #aaa; }
.newsletter input { flex: 1; padding: 15px 0; border: 0; outline: 0; background: transparent; color: white; }
.newsletter button { width: 55px; border: 0; background: transparent; color: var(--accent); font-size: 22px; cursor: pointer; }
.newsletter-status { margin: 0 0 5px; font-size: 12px; }
.newsletter-status.success { color: #8ee5a2; }
.newsletter-status.error { color: #ff9e91; }
.footer-main { max-width: var(--max); margin: 0 auto; padding: 85px 28px; display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 70px; }
.footer-brand p { max-width: 280px; color: var(--muted); }
.footer-logo img { width: 245px; height: auto; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h4 { margin-bottom: 16px; font-size: 13px; }
.footer-column a, .footer-column p { margin: 0; color: var(--muted); font-size: 12px; }
.footer-column a:hover { color: var(--accent); }
.footer-direction { display: inline-block; margin-top: 15px; color: var(--accent); font-family: var(--display); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom { padding: 22px max(28px, calc((100vw - var(--max))/2)); display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #707075; font-size: 10px; letter-spacing: .06em; }

.page-hero {
  position: relative;
  min-height: 670px;
  padding: 170px max(28px, calc((100vw - var(--max))/2)) 90px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero.compact { min-height: 580px; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,9,.95), rgba(8,8,9,.45) 60%, rgba(8,8,9,.2)), linear-gradient(0deg, rgba(8,8,9,.85), transparent 55%);
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.55) contrast(1.15);
}
.page-hero-content { position: relative; z-index: 2; max-width: 900px; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(60px, 8vw, 112px); font-weight: 800; letter-spacing: -.06em; }
.page-hero-content > p:not(.eyebrow) { max-width: 680px; color: #d0d0d3; font-size: 17px; }
.breadcrumbs { margin-bottom: 30px; display: flex; gap: 10px; color: #aaa; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--accent); }
.service-page-hero { min-height: 760px; }

.story-band {
  padding: 0 max(28px, calc((100vw - var(--max))/2)) 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.story-image { height: 610px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.75); }
.story-copy h2, .values h2, .service-process h2, .related-services h2, .area-copy h2 {
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -.045em;
}
.story-copy p { color: var(--muted); }
.story-copy .button { margin-top: 22px; }

.value-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); }
.value-card { min-height: 285px; padding: 34px; border: 1px solid var(--line); border-right: 0; }
.value-card:last-child { border-right: 1px solid var(--line); }
.value-card > span { color: var(--accent); font-family: var(--display); font-size: 10px; }
.value-card h3 { margin-top: 55px; font-size: 21px; }
.value-card p { color: var(--muted); font-size: 13px; }

.compact-section { padding-top: 100px; padding-bottom: 100px; }
.service-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; border-top: 1px solid var(--line); }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.area-list span { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 14px; text-transform: uppercase; }

.services-list { max-width: var(--max); }
.service-directory { margin-top: 60px; display: grid; gap: 12px; }
.directory-card {
  position: relative;
  min-height: 220px;
  padding: 24px 80px 24px 90px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s;
}
.directory-card:hover { border-color: var(--accent); transform: translateX(7px); }
.directory-card img { width: 100%; height: 170px; object-fit: cover; filter: grayscale(.7); transition: filter .25s; }
.directory-card:hover img { filter: grayscale(0); }
.directory-number { position: absolute; left: 25px; top: 25px; color: var(--accent); font-family: var(--display); font-size: 10px; }
.directory-copy { display: grid; }
.directory-copy small { color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.directory-copy strong { margin-top: 8px; font-family: var(--display); font-size: 28px; line-height: 1.1; text-transform: uppercase; }
.directory-copy p { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.directory-card > i { position: absolute; right: 30px; font-style: normal; font-size: 24px; }

.process-grid { margin-top: 45px; display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { min-height: 230px; padding: 30px; border: 1px solid var(--line); border-right: 0; }
.process-grid article:last-child { border-right: 1px solid var(--line); }
.process-grid span { color: var(--accent); font-family: var(--display); font-size: 10px; }
.process-grid h3, .process-grid h4 { margin: 50px 0 10px; font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.cta-banner {
  padding: 75px max(28px, calc((100vw - var(--max))/2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: var(--accent);
}
.cta-banner .eyebrow span { background: white; }
.cta-banner h2 { margin-bottom: 0; font-size: clamp(32px, 4vw, 58px); }
.cta-banner > div:last-child { display: grid; justify-items: end; gap: 12px; font-family: var(--display); }
.cta-banner .button-primary { background: #0b0b0c; box-shadow: none; }

.service-detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 80px; align-items: start; }
.service-main h2 { font-size: clamp(42px, 5vw, 70px); letter-spacing: -.045em; }
.service-main > p { color: var(--muted); }
.service-main .lead-copy { color: #ddd; font-size: 18px; }
.content-split { margin: 55px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.content-split h3, .service-main > h3 { font-size: 20px; }
.check-list { padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { padding: 14px 0 14px 27px; position: relative; border-bottom: 1px solid var(--line); color: #ccc; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }
.service-sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.sidebar-card { padding: 35px; background: var(--surface); border-top: 3px solid var(--accent); }
.sidebar-card > span { color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .14em; }
.sidebar-card h2 { margin-top: 16px; font-size: 28px; }
.sidebar-card p { color: var(--muted); font-size: 13px; }
.sidebar-card .button { width: 100%; margin-top: 15px; }
.sidebar-phone { margin-top: 22px; display: block; color: var(--accent); font-family: var(--display); font-size: 22px; font-weight: 700; text-align: center; }
.sidebar-card.simple { border-top-color: var(--line); }
.sidebar-card.simple h3 { font-size: 16px; }
.sidebar-card.simple a { color: var(--accent); font-family: var(--display); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.full-width { grid-column: 1 / -1; }

.related-grid { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); }
.related-card { position: relative; min-height: 210px; padding: 35px; border: 1px solid var(--line); border-right: 0; transition: background .25s; }
.related-card:last-child { border-right: 1px solid var(--line); }
.related-card:hover { background: var(--accent); }
.related-card span { color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.related-card:hover span { color: white; }
.related-card h3 { margin-top: 65px; max-width: 240px; font-size: 21px; }
.related-card i { position: absolute; right: 25px; top: 25px; font-style: normal; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card { position: relative; min-height: 170px; padding: 30px; display: grid; align-content: center; background: var(--surface); border: 1px solid var(--line); transition: border-color .25s; }
.contact-card:hover { border-color: var(--accent); }
.contact-card > span { color: var(--accent); font-family: var(--display); font-size: 9px; letter-spacing: .14em; }
.contact-card strong { margin-top: 12px; max-width: 300px; font-family: var(--display); font-size: 18px; line-height: 1.45; text-transform: uppercase; }
.contact-card i { position: absolute; right: 25px; top: 25px; font-style: normal; }
.map-section { height: 520px; border-top: 1px solid var(--line); }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.9) contrast(.85); }

.floating-call {
  position: fixed;
  z-index: 30;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 35px rgba(255,61,36,.35);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,61,36,.3), 0 12px 35px rgba(255,61,36,.3); } 50% { box-shadow: 0 0 0 13px rgba(255,61,36,0), 0 12px 35px rgba(255,61,36,.3); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 25px; }
  .main-nav {
    position: fixed;
    inset: 0;
    padding: 125px 35px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    overflow-y: auto;
    background: #0b0b0c;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .3s;
  }
  .main-nav > .nav-link,
  .nav-service-row > .nav-link { font-size: 32px; }
  body.menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-item { width: 100%; }
  .nav-service-row { width: 100%; justify-content: space-between; }
  .dropdown-toggle { width: 46px; height: 46px; }
  .dropdown-toggle span { font-size: 28px; }
  .services-dropdown {
    display: none;
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    border: 0;
    border-left: 2px solid var(--accent);
    box-shadow: none;
    background: transparent;
  }
  .has-dropdown:hover .services-dropdown,
  .has-dropdown:focus-within .services-dropdown {
    transform: none;
  }
  .has-dropdown.open .services-dropdown {
    display: block;
    margin-top: 14px;
    padding: 8px 0 10px 20px;
    pointer-events: auto;
    transform: none;
  }
  .dropdown-heading { display: none; }
  .dropdown-grid { padding: 0; grid-template-columns: 1fr; gap: 0; }
  .dropdown-grid a {
    min-height: 40px;
    padding: 8px 5px;
    grid-template-columns: 24px 1fr;
    border-color: rgba(255,255,255,.06);
  }
  .dropdown-grid a strong { font-size: 13px; }
  .header-phone { display: none; }
  .menu-toggle { position: relative; z-index: 2; width: 45px; height: 45px; display: grid; place-content: center; gap: 7px; }
  .menu-toggle span { width: 25px; height: 2px; display: block; background: white; transition: .25s; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .social-rail { display: none; }
  .hero-content { width: 80vw; }
  .hero-meta { display: none; }
  .intro, .choose, .team-head, .services-head, .reviews, .faq, .contact { grid-template-columns: 1fr; }
  .choose { gap: 70px; }
  .choose-media { height: 580px; }
  .team-head { gap: 25px; }
  .services-head { gap: 30px; }
  .reviews { gap: 50px; }
  .faq-media { height: 430px; }
  .contact { background: var(--surface); gap: 60px; }
  .story-band, .service-areas, .service-detail { grid-template-columns: 1fr; }
  .story-band { gap: 55px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: 1px solid var(--line); }
  .value-card:nth-child(-n+2) { border-bottom: 0; }
  .directory-card { grid-template-columns: 220px 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2) { border-right: 1px solid var(--line); }
  .process-grid article:nth-child(-n+2) { border-bottom: 0; }
  .service-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  body { font-size: 14px; }
  .site-header, .site-header.scrolled { height: 74px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-mark svg { width: 27px; }
  .brand-copy strong { font-size: 16px; }
  .brand-logo img { width: 145px; height: 60px; }
  .hero { min-height: 760px; height: 100svh; }
  .hero::after { background: linear-gradient(90deg, rgba(7,7,8,.94), rgba(7,7,8,.35)), linear-gradient(0deg, rgba(7,7,8,.85), transparent 50%); }
  .hero-image { object-position: 67% center; }
  .hero-content { width: auto; margin: 0; padding: 75px 24px 0; }
  .hero h1 { font-size: clamp(48px, 16vw, 74px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .scroll-cue { display: none; }
  .section { padding: 100px 24px; }
  .page-hero, .page-hero.compact, .service-page-hero { min-height: 650px; padding: 130px 24px 70px; }
  .page-hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .page-hero-content > p:not(.eyebrow) { font-size: 14px; }
  .breadcrumbs { margin-bottom: 22px; flex-wrap: wrap; }
  .section-index { top: 70px; font-size: 85px; }
  .intro { gap: 38px; }
  .intro h2, .choose h2, .team h2, .services h2, .reviews h2, .faq h2, .contact h2 { font-size: clamp(39px, 12vw, 56px); }
  .pillars { padding: 0 24px; grid-template-columns: 1fr; }
  .pillar { min-height: 300px; border-right: 1px solid var(--line); border-bottom: 0; }
  .pillar:last-child { border-bottom: 1px solid var(--line); }
  .choose { padding-left: 24px; padding-right: 24px; }
  .choose-media { height: 420px; }
  .choose-media::before { inset: 16px -8px -8px 16px; }
  .experience-badge { right: -8px; width: 135px; height: 135px; padding: 22px; }
  .experience-badge strong { font-size: 38px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-body { padding: 24px; }
  .story-band { padding: 0 24px 95px; }
  .story-image { height: 390px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card, .value-card:nth-child(2) { min-height: 240px; border-right: 1px solid var(--line); border-bottom: 0; }
  .value-card:last-child { border-bottom: 1px solid var(--line); }
  .service-areas { grid-template-columns: 1fr; gap: 35px; }
  .area-list { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .service-card.large { grid-column: auto; }
  .directory-card { min-height: 0; padding: 18px; grid-template-columns: 1fr; gap: 20px; }
  .directory-card img { height: 210px; }
  .directory-number { z-index: 2; top: 30px; left: 30px; padding: 5px 8px; background: var(--accent); color: white; }
  .directory-card > i { top: auto; bottom: 25px; }
  .directory-copy { padding-right: 35px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article:nth-child(2) { min-height: 190px; border-right: 1px solid var(--line); border-bottom: 0; }
  .process-grid article:last-child { border-bottom: 1px solid var(--line); }
  .process-grid h3, .process-grid h4 { margin-top: 30px; }
  .cta-banner { padding: 55px 24px; flex-direction: column; align-items: flex-start; }
  .cta-banner > div:last-child { justify-items: start; }
  .service-detail { grid-template-columns: 1fr; gap: 55px; }
  .content-split { grid-template-columns: 1fr; gap: 25px; }
  .service-sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 175px; border-right: 1px solid var(--line); border-bottom: 0; }
  .related-card:last-child { border-bottom: 1px solid var(--line); }
  .contact-card strong { padding-right: 25px; font-size: 15px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat { min-height: 175px; }
  .stat strong { font-size: 45px; }
  .review-stage { padding: 42px 28px; }
  .review-track { min-height: 390px; }
  .review-progress { left: 28px; right: 28px; }
  .faq-media { height: 330px; }
  .faq-item button { font-size: 13px; }
  .contact { padding-left: 24px; padding-right: 24px; }
  .booking-form { grid-template-columns: 1fr; }
  .field.full, .booking-form .full { grid-column: auto; }
  .newsletter { padding: 45px 24px; grid-template-columns: 1fr; gap: 25px; }
  .footer-main { padding: 65px 24px; grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .footer-brand { grid-column: span 2; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { padding: 22px 24px; flex-direction: column; gap: 5px; }
  .floating-call { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
