:root {
  --bg: #050604;
  --bg-soft: #0d120c;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f4ea;
  --muted: rgba(247, 244, 234, 0.72);
  --muted-dark: #52614a;
  --cream: #f5efe0;
  --sage: #91a572;
  --sage-bright: #c5d99a;
  --green: #22351d;
  --black: #050604;
  --line: rgba(247, 244, 234, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 100;
  background: var(--sage-bright);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { left: 14px; }

.site-header {
  position: fixed;
  inset: 14px 18px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 6, 4, 0.72);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -.02em; }
.brand img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.site-header nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.site-header nav a:hover { color: var(--text); }
.nav-cta { justify-self: end; background: var(--cream); color: var(--black); border-radius: 999px; padding: 11px 17px; font-weight: 750; font-size: 14px; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 120px 24px 96px;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) contrast(1.04); }
.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 68% 48%, rgba(197,217,154,.16), transparent 28%),
    linear-gradient(90deg, rgba(5,6,4,.94) 0%, rgba(5,6,4,.76) 44%, rgba(5,6,4,.30) 100%),
    linear-gradient(0deg, rgba(5,6,4,.82) 0%, rgba(5,6,4,.12) 50%, rgba(5,6,4,.76) 100%);
}
.hero-content { width: min(1160px, 100%); }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--sage-bright);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: .88;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage-bright); color: var(--black); }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--text); border-color: var(--line); backdrop-filter: blur(14px); }
.btn-ghost { background: rgba(5,6,4,.42); }
.btn-dark { background: var(--black); color: var(--text); }

.voice-card {
  margin-top: 24px;
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(197,217,154,.28);
  border-radius: 999px;
  background: rgba(5,6,4,.64);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.voice-button {
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  padding: 0;
}
.play-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--black);
  box-shadow: 0 0 0 8px rgba(245,239,224,.08);
}
.voice-button strong, .voice-button small { display: block; }
.voice-button small { color: var(--muted); margin-top: 2px; }
.wave { display: flex; align-items: center; gap: 4px; padding-right: 8px; }
.wave i { width: 4px; height: 18px; border-radius: 99px; background: var(--sage-bright); opacity: .56; }
.wave i:nth-child(2), .wave i:nth-child(5) { height: 28px; }
.wave i:nth-child(3) { height: 38px; }
.voice-card.is-playing .wave i { animation: pulse .7s ease-in-out infinite alternate; }
.voice-card.is-playing .wave i:nth-child(2) { animation-delay: .08s; }
.voice-card.is-playing .wave i:nth-child(3) { animation-delay: .16s; }
.voice-card.is-playing .wave i:nth-child(4) { animation-delay: .24s; }
@keyframes pulse { from { transform: scaleY(.45); opacity: .35; } to { transform: scaleY(1.05); opacity: 1; } }

.hero-proof {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-proof span {
  text-align: center;
  padding: 13px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(5,6,4,.58);
  color: rgba(247,244,234,.82);
  backdrop-filter: blur(14px);
  font-weight: 700;
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-strip div { padding: 32px clamp(18px, 4vw, 54px); background: #0a0d08; }
.trust-strip strong { display: block; font-size: 18px; margin-bottom: 8px; }
.trust-strip span { color: var(--muted); line-height: 1.5; }

.booking-band {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(54px, 7vw, 88px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(197,217,154,.26);
  background: linear-gradient(135deg, rgba(197,217,154,.22), rgba(255,255,255,.07));
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
}
.booking-band h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.booking-band p { max-width: 760px; margin: 14px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.booking-band small { display: block; margin-top: 10px; color: rgba(247,244,234,.62); line-height: 1.45; }
.booking-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.section { padding: clamp(78px, 9vw, 132px) 24px; width: min(1160px, 100%); margin: 0 auto; }
.intro-section { text-align: center; }
.intro-section .section-kicker { justify-content: center; }
.intro-section h2, .section-heading h2, .work-copy h2, .process-section h2, .quote-copy h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.intro-section p, .section-heading p, .work-copy p, .process-section p, .quote-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.intro-section p { max-width: 760px; margin: 22px auto 0; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.service-card {
  min-height: 310px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  color: var(--text);
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.service-card.featured { background: linear-gradient(180deg, rgba(197,217,154,.22), rgba(255,255,255,.06)); }
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(197,217,154,.72);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  outline: none;
}
.service-card.is-selected {
  border-color: var(--sage-bright);
  background: linear-gradient(180deg, rgba(197,217,154,.30), rgba(255,255,255,.08));
}
.service-card .service-action {
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(197,217,154,.14);
  color: var(--sage-bright);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-card h3 { margin: auto 0 12px; font-size: 28px; line-height: 1; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.5; }

.work-section {
  padding: clamp(78px, 9vw, 132px) 24px;
  background: var(--cream);
  color: var(--black);
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.work-section .section-kicker { color: var(--green); }
.work-copy p { color: #4c5946; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 260px 260px; gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: 0 26px 60px rgba(0,0,0,.18); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-large { grid-row: span 2; }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 10px 13px;
  width: max-content;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  background: rgba(5,6,4,.72);
  color: var(--text);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.process-section { padding: clamp(78px, 9vw, 132px) 24px; width: min(1160px, 100%); margin: 0 auto; text-align: center; }
.process-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; }
.process-grid div { padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.process-grid b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--sage-bright); color: var(--black); }
.process-grid h3 { font-size: 24px; margin: 22px 0 8px; }

.quote-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(197,217,154,.18), rgba(255,255,255,.07));
  border: 1px solid rgba(197,217,154,.22);
  box-shadow: var(--shadow);
}
.quote-copy ul { padding-left: 18px; color: var(--muted); line-height: 1.8; }
.quote-form { display: grid; gap: 14px; }
.quote-form label, .quote-form fieldset { display: grid; gap: 8px; color: rgba(247,244,234,.86); font-weight: 750; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
  color: var(--text);
  border-radius: 15px;
  padding: 14px 15px;
  outline: none;
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--sage-bright); box-shadow: 0 0 0 4px rgba(197,217,154,.14); }
.quote-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--sage-bright) 50%), linear-gradient(135deg, var(--sage-bright) 50%, transparent 50%); background-position: calc(100% - 19px) 22px, calc(100% - 13px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field-help { display: block; margin-top: -2px; color: var(--muted); font-weight: 600; line-height: 1.45; }
.quote-form fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 16px; grid-template-columns: repeat(2, 1fr); }
.quote-form legend { padding: 0 8px; color: var(--sage-bright); }
.quote-form fieldset label { display: flex; flex-direction: row; align-items: center; gap: 8px; font-weight: 650; }
.quote-form fieldset input { width: auto; }
.file-label { border: 1px dashed rgba(247,244,234,.28); border-radius: 18px; padding: 15px; }
.file-label small { display: block; color: var(--muted); font-weight: 600; line-height: 1.45; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.form-note.is-success { color: #d7f5c7; }
.form-note.is-error { color: #ffd0c8; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.mobile-lead-bar { display: none; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  width: min(1160px, 100%);
  margin: 0 auto;
}
.site-footer img { width: 54px; height: 54px; border-radius: 50%; margin-bottom: 12px; }
.site-footer p { max-width: 520px; line-height: 1.55; }
.site-footer div:last-child { display: grid; gap: 8px; }
.site-footer strong { color: var(--text); }
.site-footer a:hover { color: var(--sage-bright); }

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; inset: 10px 10px auto; }
  .site-header nav { display: none; }
  .nav-cta { font-size: 13px; padding: 10px 13px; }
  .brand span { display: none; }
  .hero { place-items: end start; padding-top: 104px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,6,4,.95), rgba(5,6,4,.38)), linear-gradient(90deg, rgba(5,6,4,.88), rgba(5,6,4,.38)); }
  .hero-proof, .trust-strip, .booking-band, .service-grid, .process-grid, .quote-section, .work-section, .site-footer { grid-template-columns: 1fr; }
  .hero-proof { position: static; transform: none; margin-top: 28px; width: 100%; }
  .trust-strip div { padding: 24px; }
  .service-card { min-height: 230px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .gallery-large { grid-row: auto; }
  .quote-section { width: calc(100% - 24px); padding: 24px; }
  .booking-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .hero-actions .btn { width: 100%; }
  .voice-card { border-radius: 24px; align-items: flex-start; }
  .wave { display: none; }
  .quote-form fieldset { grid-template-columns: 1fr; }
  body { padding-bottom: 86px; }
  .mobile-lead-bar { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px; border: 1px solid rgba(247,244,234,.18); border-radius: 24px; background: rgba(5,6,4,.86); backdrop-filter: blur(22px) saturate(150%); box-shadow: 0 18px 48px rgba(0,0,0,.46); }
  .mobile-lead-bar .btn { min-height: 48px; padding: 12px 10px; font-size: 14px; }
  .intro-section h2, .section-heading h2, .work-copy h2, .process-section h2, .quote-copy h2 { font-size: 42px; }
}
