:root {
  --ink: #111;
  --muted: #8a8a8a;
  --line: #e8e4dc;
  --accent: #e07a2f;
  --nav: 78px;
  --paper: #f6f3ee;
  --cta: #25d366;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #0d0d0d;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.side-logo strong, .stage-copy h1, .section h2 {
  font-family: "Barlow Condensed", "Source Sans 3", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.skip-link { position: absolute; left: -999px; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.18) 100%);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--nav);
  padding: 12px 8px 12px 28px;
}
.is-page .site-header {
  position: sticky;
  background: #111;
}

.nav-toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  z-index: 90;
  width: 44px; height: 44px; border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: #fff;
  margin: 0;
  grid-area: 1 / 1;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
.header-call { display: none; }
.nav-acc { display: none; }
.nav-sheet-cta { display: none; }
.nav-row { display: contents; }
body.nav-open { overflow: hidden; }
.nav-scrim {
  display: none; position: fixed; inset: 0; z-index: 70;
  background: rgba(0,0,0,.55);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
  color: #fff;
}
.side-logo { text-decoration: none; color: #fff; display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.side-logo strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px; font-style: italic; letter-spacing: .06em; line-height: 1;
}
.side-logo small {
  color: var(--accent);
  font-weight: 800; letter-spacing: .16em; font-size: 12px;
}
.side-logo em { display: none; }
.side-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.side-link {
  display: flex; align-items: center;
  text-decoration: none; color: #fff; padding: 10px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  border-bottom: 2px solid transparent;
}
.side-link.is-active { border-bottom-color: var(--accent); }
.side-n { display: none; }
.side-sub {
  display: none;
  position: absolute; top: calc(100% - 2px); left: 0;
  min-width: 260px;
  padding: 10px 0;
  background: #111;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.nav-item.has-sub:hover .side-sub,
.nav-item.has-sub:focus-within .side-sub { display: grid; }
.side-sub a {
  color: #ddd; text-decoration: none; font-size: 13px; padding: 8px 16px;
}
.side-sub a:hover { color: var(--accent); }
.side-phone { margin: 0; flex-shrink: 0; min-height: 40px; padding: 0 16px; font-size: 13px; }

.stage {
  position: relative; min-height: 100vh; overflow: hidden;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
  background: #111 center/cover no-repeat;
}
.slide.is-on { opacity: 1; }
.stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 46%, rgba(0,0,0,.12) 100%);
  pointer-events: none;
}
.stage-copy {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 160px 48px;
  color: #fff;
  max-width: 920px;
}
.stage-panel {
  align-self: flex-start;
  width: fit-content;
  max-width: min(100%, 36rem);
  margin-bottom: 20px;
  padding: 18px 22px 16px;
  background: rgba(28, 28, 28, .58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stage-copy h1 { font-size: clamp(42px, 6vw, 76px); margin: 0 0 10px; }
.stage-kicker {
  margin: 0 0 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  color: #fff;
}
.stage-lead {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  line-height: 1.45;
  color: #f2f2f2;
  letter-spacing: 0;
  text-transform: none;
}
.stage-copy .actions, .stage-copy .btn { align-self: flex-start; width: auto; }
.slide-hint {
  position: absolute; right: 18px; top: 50%; transform: rotate(90deg);
  color: #fff; letter-spacing: .2em; font-size: 11px; text-transform: uppercase; z-index: 2;
}

.is-page { background: var(--paper); }
.is-page main { min-height: 100vh; background: var(--paper); padding-top: 8px; }
.section { padding: 72px 0; background: var(--paper); color: var(--ink); }
.section h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 8px; }
.prose h2 { font-size: 1.25rem; margin: 1.5em 0 .6em; letter-spacing: 0; }
.prose ul { margin: 0 0 8px; padding-left: 1.2em; }
.prose li { margin: 0 0 6px; }
.muted { color: #666; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.service-card {
  display: flex; flex-direction: column; gap: 8px; min-height: 170px;
  padding: 22px; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line);
}
.service-card:hover { border-color: var(--accent); }
.num { color: var(--accent); font-weight: 800; letter-spacing: .12em; font-size: 12px; }
.service-card h3 { margin: 0; font-size: 22px; }
.service-card p { margin: 0; color: #666; flex: 1; text-transform: none; font-family: "Source Sans 3", sans-serif; font-weight: 400; letter-spacing: 0; }
.service-card span { color: var(--accent); font-weight: 700; font-size: 13px; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px;
}
.step {
  background: #fff; border: 1px solid var(--line); padding: 22px;
}
.step h3 { margin: 8px 0 8px; font-size: 20px; }
.home-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px;
}
.home-gallery img { width: 100%; height: 280px; object-fit: cover; }
.cta-band { text-align: left; }
.cta-band .muted { margin: 0 0 18px; }
.section h2.cta-title {
  text-transform: none;
  letter-spacing: -.02em;
  font-family: "Source Sans 3", sans-serif;
}
.about-split {
  background: var(--paper);
  padding: 48px 0 0;
}
.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 8px 40px;
  align-items: center;
}
.about-copy { padding: 12px 0 32px; max-width: 52ch; }
.about-copy h2 { margin: 6px 0 14px; }
.about-copy h3 {
  margin: 18px 0 8px;
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Source Sans 3", sans-serif;
}
.about-copy p { margin: 0 0 12px; color: #555; }
.about-copy .btn { margin-top: 8px; }
.about-visual {
  margin: 0;
  background: #0a0a0a;
  min-height: 380px;
  display: grid;
  place-items: end center;
  padding: 12px 8px 0;
}
.about-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
}
.grid-2 .page-cta { grid-column: 1; }
.grid-2 .media-slot { grid-column: 2; grid-row: 1 / span 2; }

.actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.btn, .fab-phone, .fab-wa, .side-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 18px; text-decoration: none; font-weight: 800;
  font-size: 14px; letter-spacing: .01em; white-space: nowrap;
  border: 0; cursor: pointer; color: #fff; border-radius: 999px;
}
.btn-primary, .fab-phone, .fab-wa, .side-phone { background: var(--cta); color: #fff; }
.btn-ghost, .btn-dark { background: #111; color: #fff; }
a.btn, a.btn:hover, .prose a.btn, a.btn-primary { color: #fff; }

.card, .media-slot { background: #fff; border: 1px solid var(--line); }
.card { padding: 22px; }
.card h3 { text-transform: none; }
.card a { color: var(--accent); font-weight: 700; text-decoration: none; }
.media-slot { overflow: hidden; min-height: 240px; position: relative; }
.media-slot img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; image-rendering: auto; }
.media-ph { position: absolute; inset: 0; display: grid; place-items: center; color: #777; }
.prose { max-width: 60ch; }
.prose h2 { text-transform: uppercase; }
.prose a { color: var(--accent); }
a.btn, a.btn:hover { color: #fff !important; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); padding: 14px 16px; margin-bottom: 8px; }
.faq summary { cursor: pointer; font-weight: 700; text-transform: none; font-family: "Source Sans 3", sans-serif; }
.faq p { margin: 10px 0 0; color: #555; }
.form { display: grid; gap: 10px; }
.form input, .form textarea {
  width: 100%; border: 1px solid var(--line); padding: 12px; font: inherit; background: #fff;
}
.form textarea { min-height: 130px; }

.site-footer { background: #111; color: #cfcfcf; padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 24px; }
.site-footer h2 { color: #fff; font-size: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.brand-foot { color: #fff; text-decoration: none; display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.mark { width: 36px; height: 36px; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 800; }
.legal { border-top: 1px solid #2a2a2a; margin-top: 24px; padding-top: 14px; display: flex; justify-content: space-between; font-size: 13px; color: #888; }

.fabs {
  position: fixed; left: 16px; bottom: 22px; z-index: 50;
  display: flex; gap: 10px;
}
.fabs a {
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.fab-phone, .fab-wa { height: 46px; }
@media (min-width: 981px) {
  .fabs { display: none; }
}

@media (max-width: 980px) {
  .wrap { width: min(1120px, calc(100% - 28px)); }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: block;
    background: #111;
  }
  .header-bar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    background: #111;
    padding: max(8px, env(safe-area-inset-top)) 10px 8px;
    gap: 8px;
    min-height: 56px;
  }
  .nav-toggle { display: grid; place-items: center; z-index: 95; }
  .header-bar { overflow: visible; }
  .side-logo, .header-call { z-index: 95; position: relative; }
  .nav-toggle:active { background: rgba(255,255,255,.08); }
  .side-logo {
    min-width: 0;
    justify-self: center;
    justify-content: center;
  }
  .side-logo strong { font-size: 22px; }
  .side-logo small { font-size: 10px; letter-spacing: .12em; }
  .header-call {
    display: grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
  }
  .header-call:active { background: rgba(255,255,255,.08); }
  .site-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: none;
    height: calc(100dvh - 56px);
    z-index: 80;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0 0;
    background: #111;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity .2s ease, visibility .2s ease;
    overflow: hidden;
    grid-column: 1 / -1;
  }
  .site-nav.is-closed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .side-menu {
    display: grid;
    gap: 0;
    flex: 1;
    align-content: start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 8px 12px;
  }
  .nav-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-item:not(.has-sub) .side-link {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .side-link {
    flex: 1;
    justify-content: flex-start;
    border-bottom: 0;
    border-left: 0;
    padding: 16px 14px;
    font-size: 18px;
    letter-spacing: .08em;
  }
  .side-link.is-active {
    border-left: 0;
    border-bottom-color: transparent;
    color: var(--accent);
  }
  .nav-acc {
    display: grid;
    place-items: center;
    width: 52px;
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    position: relative;
    cursor: pointer;
  }
  .nav-acc::after {
    content: "+";
    color: #aaa;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
  }
  .nav-item.has-sub.is-expanded .nav-acc::after { content: "–"; }
  .side-sub {
    display: none;
    position: static;
    min-width: 0;
    padding: 4px 8px 14px 14px;
    background: #0a0a0a;
    box-shadow: none;
  }
  .nav-item.has-sub.is-expanded .side-sub { display: grid; }
  .side-sub a {
    padding: 12px 10px;
    font-size: 15px;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .side-phone { display: none; }
  .nav-sheet-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 16px max(16px, env(safe-area-inset-bottom));
    background: #111;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-sheet-cta .btn {
    min-height: 48px;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 700;
  }
  body.nav-open .fabs { display: none; }

  .stage {
    min-height: calc(100dvh - 56px);
  }
  .slide { background-position: 72% 42%; }
  .stage::after {
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.78) 100%);
  }
  .stage-copy {
    min-height: calc(100dvh - 56px);
    padding: 0 18px max(92px, calc(env(safe-area-inset-bottom) + 76px)) 18px;
    max-width: none;
  }
  .stage-copy h1 { font-size: clamp(30px, 9vw, 42px); }
  .stage-kicker { font-size: 15px; letter-spacing: .08em; }
  .stage-lead { font-size: 15px; max-width: none; }
  .stage-panel { width: 100%; max-width: none; padding: 14px 16px 12px; margin-bottom: 14px; }
  .stage-copy .actions { width: 100%; }
  .stage-copy .btn { flex: 1 1 auto; padding: 0 14px; font-size: 13px; }

  .is-home .fabs { display: none; }
  .is-page .page-cta { display: none; }
  .is-page .site-footer { padding-bottom: 96px; }
  .fabs {
    display: flex;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
  .fabs a { flex: 1; min-height: 48px; }

  .section { padding: 40px 0; }
  .service-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .steps, .home-gallery, .about-split-inner { grid-template-columns: 1fr; }
  .home-gallery img { height: 220px; }
  .about-visual { min-height: 240px; order: -1; }
  .about-copy { max-width: none; padding: 8px 0 24px; }
  .service-card { min-height: 0; padding: 14px; }
  .service-card h3 { font-size: 16px; }
  .grid-2, .footer-grid, .gallery-grid { grid-template-columns: 1fr; }
  .grid-2 .page-cta, .grid-2 .media-slot { grid-column: auto; grid-row: auto; }
  .prose { max-width: none; }
  .prose h1 { font-size: clamp(26px, 8vw, 34px); }
  .media-slot, .media-slot img { min-height: 200px; }
  .legal { flex-direction: column; gap: 6px; }
  .slide-hint { display: none; }
  .nav-scrim { top: 56px; z-index: 70; }
  .nav-scrim.is-on { display: block; }
}
