:root {
  --storm: #071b25;
  --storm-2: #0c2a36;
  --gulf: #0d7482;
  --gulf-light: #79d5d8;
  --concrete: #f2f1ea;
  --paper: #fbfaf5;
  --signal: #f4b942;
  --signal-dark: #d99410;
  --ink: #132930;
  --muted: #586b6f;
  --line: rgba(7, 27, 37, .16);
  --display: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--concrete);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 10px;
  padding: 10px 15px;
  color: var(--storm);
  background: var(--signal);
}
.skip-link:focus { top: 10px; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  min-height: 78px;
  padding: 10px 12px 10px 16px;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(7, 27, 37, .96);
  box-shadow: 0 18px 60px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 50px; height: 50px; }
.brand > span { display: grid; line-height: 1; }
.brand strong {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.brand small {
  margin-top: 7px;
  color: var(--gulf-light);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a {
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-nav > a:hover { color: var(--gulf-light); }
.nav-actions { display: flex; gap: 8px; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button, .action-pair > * { min-width: 0; }
.button:hover { transform: translateY(-2px); }
.button span, .button strong { display: block; }
.button span {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.button strong { font-family: var(--mono); font-size: .86rem; }
.button-primary {
  display: grid;
  min-width: 220px;
  color: var(--storm);
  background: var(--signal);
  box-shadow: 0 14px 34px rgba(244, 185, 66, .2);
}
.button-primary:hover { background: #ffd06b; }
.button-outline {
  display: grid;
  min-width: 175px;
  border-color: var(--storm);
  color: var(--storm);
  background: transparent;
}
.button-outline:hover { color: var(--paper); background: var(--storm); }
.button-light { border-color: rgba(255,255,255,.7); color: var(--paper); }
.button-light:hover { color: var(--storm); background: var(--paper); }
.button-small {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  padding: 8px 13px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.nav-actions .button-outline { border-color: rgba(255,255,255,.65); color: var(--paper); }
.nav-actions .button-outline:hover { color: var(--storm); background: var(--paper); }

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: var(--paper);
  background: var(--storm);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("/assets/hero-foam.jpg") 64% center / cover no-repeat;
  animation: hero-in 1.1s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,15,21,.96) 0%, rgba(3,15,21,.88) 40%, rgba(3,15,21,.2) 76%),
    linear-gradient(0deg, rgba(3,15,21,.78), transparent 55%);
}
.waterline {
  position: absolute;
  z-index: 1;
  top: -5%;
  left: 58%;
  width: 24%;
  height: 115%;
  border-inline: 1px solid rgba(121,213,216,.28);
  background: linear-gradient(90deg, transparent, rgba(121,213,216,.16), rgba(255,255,255,.08), transparent);
  transform: skewX(-13deg);
  animation: waterline-in 1.25s .1s ease-out both;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(850px, calc(100vw - 48px));
  padding: 190px 0 100px max(24px, calc((100vw - 1180px) / 2));
}
.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: var(--gulf);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { color: var(--gulf-light); }
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--display);
  line-height: .94;
  text-transform: uppercase;
}
h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(4.7rem, 9.5vw, 9rem);
  letter-spacing: -.055em;
}
h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.82);
}
.hero-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}
.action-pair { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.microcopy {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.52);
  font-family: var(--mono);
  font-size: .67rem;
}
.hero-ticket {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 38px;
  width: 220px;
  padding: 18px;
  color: var(--storm);
  border-top: 6px solid var(--signal);
  background: rgba(242,241,234,.94);
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}
.hero-ticket span {
  display: block;
  margin-bottom: 10px;
  color: var(--gulf);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 800;
}
.hero-ticket p {
  margin: 0;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.section { padding: clamp(80px, 10vw, 140px) max(24px, calc((100vw - 1180px) / 2)); }
.section-label {
  margin-bottom: 38px;
  padding-bottom: 12px;
  color: var(--gulf);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.intro { background: var(--concrete); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6vw, 6.2rem);
  letter-spacing: -.045em;
}
.lead { margin: 0 0 30px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.condition-strip { display: flex; flex-wrap: wrap; gap: 7px; }
.condition-strip span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .61rem;
  font-weight: 700;
  text-transform: uppercase;
}

.services { background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading > p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--concrete);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(7,27,37,.1); }
.service-card.featured { border-top: 6px solid var(--signal); }
.service-card img { width: 100%; height: 270px; object-fit: cover; }
.service-body { padding: 27px; }
.service-code {
  color: var(--gulf);
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 800;
}
.service-body h3 { margin: 10px 0 15px; font-size: 2.3rem; letter-spacing: -.025em; }
.service-body p { min-height: 72px; margin: 0; color: var(--muted); font-size: .91rem; }
.service-body ul {
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: .8rem;
}
.service-body li { margin-top: 7px; }
.service-body li::before { margin-right: 8px; color: var(--signal-dark); content: "•"; }

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px max(24px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background: var(--gulf);
}
.mid-cta span { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; }
.mid-cta h2 { max-width: 670px; margin-top: 7px; font-size: clamp(2.4rem, 4vw, 4.2rem); }
.mid-cta .action-pair { flex: none; margin-top: 0; }
.mid-cta .button-outline { border-color: rgba(255,255,255,.75); color: var(--paper); }
.mid-cta .button-outline:hover { color: var(--storm); background: var(--paper); }

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--paper);
  background: var(--storm);
}
.process-photo { position: relative; min-height: 760px; overflow: hidden; }
.process-photo img { width: 100%; height: 100%; object-fit: cover; }
.process-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,27,37,.72), transparent 45%);
  content: "";
}
.process-photo p {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  margin: 0;
  padding: 13px 15px;
  border-left: 4px solid var(--signal);
  background: rgba(7,27,37,.82);
  font-family: var(--mono);
  font-size: .62rem;
}
.process-copy { padding-inline: clamp(45px, 7vw, 110px); }
.section-kicker.light { color: var(--gulf-light); }
.process-copy ol { margin: 50px 0 0; padding: 0; list-style: none; }
.process-copy li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.process-copy li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-copy li > span { color: var(--signal); font-family: var(--mono); }
.process-copy h3 { margin: 0 0 7px; font-size: 1.5rem; }
.process-copy li p { margin: 0; color: rgba(255,255,255,.62); font-size: .85rem; }

.proof { background: #dce7e5; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.proof-grid article { min-height: 260px; padding: 26px; border-right: 1px solid var(--line); }
.proof-grid article:last-child { border-right: 0; }
.proof-grid strong { color: var(--gulf); font-family: var(--mono); font-size: .72rem; }
.proof-grid h3 { margin: 45px 0 14px; font-size: 2rem; }
.proof-grid p { margin: 0; color: var(--muted); font-size: .87rem; }

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
  background: var(--paper);
}
.faq-intro { max-width: 440px; color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gulf); font-size: 1.4rem; transition: transform 180ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -5px 40px 24px 0; color: var(--muted); font-size: .9rem; }

.final-cta {
  padding: clamp(85px, 11vw, 155px) 24px;
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(rgba(7,27,37,.9), rgba(7,27,37,.9)),
    url("/assets/service-foam.jpg") center / cover;
}
.final-cta h2 { max-width: 900px; margin-inline: auto; }
.final-cta > p:not(.section-kicker) { color: rgba(255,255,255,.66); }
.centered { justify-content: center; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 60px max(24px, calc((100vw - 1180px) / 2)) 34px;
  color: var(--paper);
  background: #031016;
}
.footer-brand { align-self: start; }
footer > p { justify-self: end; max-width: 440px; margin: 0; color: rgba(255,255,255,.55); text-align: right; }
.footer-actions { display: flex; gap: 18px; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; }
.footer-actions a { color: var(--gulf-light); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}
.mobile-bar { display: none; }

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes waterline-in {
  from { opacity: 0; transform: translateX(140%) skewX(-13deg); }
  to { opacity: 1; transform: translateX(0) skewX(-13deg); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 1050px) {
  .site-header { min-height: 70px; }
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 9px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: var(--paper);
    border: 1px solid rgba(255,255,255,.35);
    background: transparent;
  }
  .menu-toggle i { display: block; width: 100%; height: 1px; background: currentColor; }
  .site-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 28px;
    flex-direction: column;
    color: var(--paper);
    background: var(--storm);
    box-shadow: 0 25px 50px rgba(0,0,0,.22);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { font-size: 1rem; }
  .nav-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-top: 175px; }
  .hero-ticket { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .process { grid-template-columns: 1fr; }
  .process-photo { min-height: 560px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid article { border-bottom: 1px solid var(--line); }
  .proof-grid article:nth-child(2) { border-right: 0; }
}
@media (max-width: 760px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header { top: 10px; padding: 9px 10px; }
  .brand { min-width: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 1.2rem; }
  .brand small { display: none; }
  .site-nav { top: 80px; }
  .nav-actions { grid-template-columns: 1fr; }
  .hero { min-height: 790px; }
  .hero-media { background-position: 70% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,15,21,.96), rgba(3,15,21,.7)); }
  .waterline { left: 70%; width: 35%; }
  .hero-copy { width: 100%; padding: 150px 22px 90px; }
  h1 { font-size: clamp(4.1rem, 20vw, 6rem); line-height: .84; }
  .action-pair { align-items: stretch; flex-direction: column; }
  .action-pair .button { width: 100%; }
  .intro-grid, .section-heading, .faq { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-body p { min-height: 0; }
  .mid-cta { align-items: stretch; flex-direction: column; }
  .mid-cta .action-pair { width: 100%; }
  .process-photo { min-height: 450px; }
  .process-copy { padding-inline: 22px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 220px; border-right: 0; }
  footer { grid-template-columns: 1fr; padding-bottom: 105px; }
  footer > p { justify-self: start; text-align: left; }
  .footer-actions { flex-wrap: wrap; }
  .footer-bottom { gap: 12px; align-items: flex-start; flex-direction: column; }
  .mobile-bar {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
    background: rgba(7,27,37,.94);
    box-shadow: 0 18px 40px rgba(0,0,0,.3);
    backdrop-filter: blur(10px);
  }
  .mobile-bar a {
    min-width: 0;
    display: grid;
    min-height: 56px;
    place-items: center;
    padding: 8px;
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-bar a:first-child { color: var(--storm); background: var(--signal); }
  .mobile-bar a:last-child { color: var(--paper); border: 1px solid rgba(255,255,255,.5); }
}
