:root {
  --bg: #f3efe6;
  --bg-elev: #fffbf4;
  --ink: #1a1916;
  --ink-soft: #3d3933;
  --muted: #6e675e;
  --line: rgba(26, 25, 22, 0.12);
  --accent: #1e4a3a;
  --accent-hover: #16382c;
  --accent-fg: #f3efe6;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --shadow: 0 1px 2px rgba(26, 25, 22, 0.05), 0 18px 40px rgba(26, 25, 22, 0.08);
  --nav-h: 64px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 250ms;
  --motion-quick: 150ms;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

img { max-width: 100%; height: auto; display: block; }
button, [role="button"] { cursor: pointer; }
button { font-family: inherit; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip:focus { top: 12px; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-quick) var(--ease), background var(--motion-quick) var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--bg) 94%, white);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav { margin-left: auto; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo svg { width: 28px; height: 28px; flex: 0 0 auto; }

.logo span { font-size: 0.95rem; white-space: nowrap; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 550;
}

.nav a:hover { color: var(--ink); background: rgba(26, 25, 22, 0.05); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform var(--motion-quick) var(--ease), background var(--motion-quick) var(--ease), color var(--motion-quick) var(--ease);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover { background: rgba(26, 25, 22, 0.04); }

.btn-on-dark {
  background: var(--bg-elev);
  color: var(--ink);
}

.hero {
  padding: 48px 0 32px;
}

.hero-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 520px;
  }
}

.hero-collage {
  display: none;
  position: relative;
  height: 460px;
}

@media (min-width: 960px) {
  .hero-collage { display: block; }
}

.hero-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(26, 25, 22, 0.18);
  border: 1px solid rgba(26, 25, 22, 0.08);
  background: #1a1916;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage .c1 { width: 58%; height: 250px; left: 0; top: 28px; transform: rotate(-3.5deg); }
.hero-collage .c2 { width: 62%; height: 270px; right: 0; top: 90px; transform: rotate(4deg); }
.hero-collage .c3 { width: 48%; height: 180px; left: 12%; bottom: 8px; transform: rotate(-1.5deg); }

.header-cta {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.85rem;
}

.logo-short { display: none; }

@media (max-width: 820px) {
  .header-cta { display: inline-flex; margin-left: auto; flex-shrink: 0; }
  .nav { margin-left: 0; }
  .logo-full { display: none; }
  .logo-short { display: inline; }
}

.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.15rem, 6.4vw, 4.4rem);
  max-width: 16ch;
  font-style: italic;
  font-weight: 500;
}

.hero h1 em {
  font-style: normal;
  font-weight: 600;
}

.hero-lead {
  margin-top: 20px;
  max-width: 38ch;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: var(--text-sm);
}

.section {
  padding: 72px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
  max-width: 46ch;
}

.section-head p { color: var(--ink-soft); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.disclaimer {
  padding: 0 0 8px;
}

.disclaimer p {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--bg-elev) 70%, var(--bg));
  color: var(--muted);
  font-size: 0.92rem;
}

.showroom {
  display: grid;
  gap: 36px;
}

.show-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.show-card-layout {
  display: grid;
}

@media (min-width: 860px) {
  .show-card-layout {
    grid-template-columns: 1.35fr 0.9fr;
    min-height: 460px;
  }

  .show-card:nth-child(even) .show-card-layout {
    grid-template-columns: 0.9fr 1.35fr;
  }

  .show-card:nth-child(even) .browser { order: 2; }
}

.browser {
  background: #2a2723;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #1f1c19;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c564e;
  display: block;
}

.url {
  flex: 1;
  height: 26px;
  border-radius: 999px;
  background: #3a352f;
  color: #c9c0b4;
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  overflow: hidden;
  white-space: nowrap;
}

.browser-screen {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 240px;
}

.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transform: scale(1.02);
  transition: transform 500ms var(--ease);
}

.show-card:hover .browser-screen img { transform: scale(1.05); }

.show-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.show-cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-body h3 {
  font-size: 1.85rem;
}

.show-body p { color: var(--ink-soft); }

.show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.tone-auto .browser { background: #121212; }
.tone-auto .browser-bar { background: #0a0a0a; }
.tone-roof .browser { background: #1b365d; }
.tone-roof .browser-bar { background: #132742; }
.tone-land .browser { background: #1a2f23; }
.tone-land .browser-bar { background: #122018; }
.tone-clean .browser { background: #efe4df; }
.tone-clean .browser-bar { background: #e4d4ce; }
.tone-clean .url { background: #d9c5be; color: #5a463f; }
.tone-barber .browser { background: #111; }
.tone-barber .browser-bar { background: #000; }
.tone-wash .browser { background: #0a3d8f; }
.tone-wash .browser-bar { background: #072e6b; }

.pricing {
  background: var(--ink);
  color: var(--bg);
  border-radius: 0;
}

.pricing .wrap {
  display: grid;
  gap: 32px;
}

@media (min-width: 860px) {
  .pricing .wrap {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.price-box h2 { font-size: clamp(2rem, 4vw, 3.1rem); color: inherit; }

.price-figure {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.price-figure small {
  font-size: 0.32em;
  font-style: italic;
  letter-spacing: 0;
  margin-left: 6px;
}

.price-box > p { color: rgba(243, 239, 230, 0.78); max-width: 36ch; }

.include-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.include-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.12);
  font-size: 0.98rem;
}

.include-list svg { margin-top: 4px; }

.fineprint {
  margin-top: 16px;
  color: rgba(243, 239, 230, 0.62);
  font-size: 0.9rem;
}

.steps {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
}

.step h3 { font-size: 1.35rem; }

.step p { color: var(--ink-soft); font-size: 0.98rem; }

.faq-list { display: grid; gap: 8px; }

.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 650;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
}

.faq-item button span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
}

.faq-item .faq-body {
  display: none;
  padding: 0 18px 16px;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-body { display: block; }

.contact-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.lead-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 650;
}

input, select, textarea {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-row {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-status {
  white-space: pre-wrap;
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 10%, white);
}

.form-status.is-err { background: #f6e4dc; }

.contact-side p { color: var(--ink-soft); margin-top: 12px; }

.contact-side .btn { margin-top: 8px; margin-right: 8px; }

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.site-footer a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .nav {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--bg);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 6px;
  }

  body.nav-open .nav { display: flex; }
  body.nav-open { overflow: hidden; }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
  }

  .nav .btn { width: 100%; margin-top: 8px; }

  .hero { padding-top: 28px; }
  .section { padding: 56px 0; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Contact form anti-spam field */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.lead-form button[disabled] {
  opacity: 0.68;
  cursor: wait;
}


/* Header Get Started CTA:
   outlined at rest; green only when hovered/focused. */
.header-cta-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.header-cta-outline:hover,
.header-cta-outline:focus-visible {
  background: var(--accent);
  color: var(--accent-fg);
}
