:root {
  --charcoal: #1c1916;
  --charcoal-2: #2a2520;
  --ochre: #c8842a;
  --ochre-bright: #d9973f;
  --cream: #f6f1e8;
  --tint: #ece5d8;
  --line: #d8cfbd;
  --muted: #6b6253;
  --nav-h: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Rokkitt", Georgia, serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 42px;
  z-index: 50;
  background: var(--charcoal);
  border-bottom: 2px solid var(--ochre);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.brand-mark {
  width: 26px;
  height: 26px;
  flex: none;
}
.brand-mark ellipse, .brand-mark path {
  fill: none;
  stroke: var(--ochre);
  stroke-width: 1.6;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--ochre-bright); }
.nav-links .cta-btn {
  background: var(--ochre);
  color: var(--charcoal);
  padding: 10px 18px;
  font-weight: 700;
  border: 2px solid var(--ochre);
}
.nav-links .cta-btn:hover {
  background: var(--ochre-bright);
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.cta-btn.filled {
  background: var(--ochre);
  color: var(--charcoal);
  border-color: var(--ochre);
}
.cta-btn.filled:hover {
  background: var(--ochre-bright);
  border-color: var(--ochre-bright);
}
.cta-btn.outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.cta-btn.outline:hover {
  color: var(--ochre-bright);
  border-color: var(--ochre-bright);
}
.cta-btn.outline.light {
  color: var(--cream);
  border-color: var(--cream);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  padding: 96px 24px 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bean-field {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre-bright);
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow.light { color: var(--ochre-bright); }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: var(--cream);
}
.hero-tagline {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 14px;
  max-width: 560px;
}
.hero-sub {
  font-size: 1rem;
  color: #cfc6b6;
  margin: 0 0 32px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-ctas.center { justify-content: center; }

/* ===== TRUST LINE ===== */
.trust-line {
  background: var(--charcoal-2);
  color: var(--cream);
  border-top: 1px solid #3a3329;
  border-bottom: 1px solid #3a3329;
  padding: 22px 24px;
}
.trust-line p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d6cdbb;
  font-weight: 500;
}
.trust-line span { color: var(--ochre); margin: 0 6px; }

/* ===== SECTION SHARED ===== */
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin: 0;
  color: var(--charcoal);
}
.section-title.light { color: var(--cream); }

section { scroll-margin-top: calc(42px + var(--nav-h) + 16px); }

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: var(--cream);
}
.rows {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.row:last-child { border-bottom: 1px solid var(--line); }
.row.flip .row-art { order: -1; }
.row-text { max-width: 460px; }
.row-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ochre);
  margin-bottom: 10px;
}
.row-text h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.2px;
}
.row-text p {
  font-size: 1.05rem;
  color: #3a342b;
  margin: 0;
  line-height: 1.55;
}
.row-art svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

/* ===== PROOF ===== */
.proof {
  padding: 100px 24px;
  background: var(--tint);
}
.proof-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border: 2px solid var(--charcoal);
}
.score {
  font-size: clamp(4rem, 12vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -1px;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 14px;
}
.stars svg {
  width: 32px;
  height: 32px;
  fill: var(--ochre);
}
.score-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about { padding: 100px 24px; }
.about.tint { background: var(--cream); }
.about-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text .eyebrow { margin-bottom: 12px; }
.about-text .section-title { text-align: left; margin-bottom: 22px; }
.about-text p {
  font-size: 1.05rem;
  color: #3a342b;
  margin: 0 0 16px;
  line-height: 1.6;
  max-width: 520px;
}
.about-art svg {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* ===== FINAL CTA ===== */
.cta-band {
  background: var(--charcoal);
  color: var(--cream);
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(200,132,42,0.05) 22px 23px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-sub {
  font-size: 1.1rem;
  color: #cfc6b6;
  margin: 16px 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 2px solid var(--ochre);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.foot-brand .brand-mark { width: 26px; height: 26px; }
.foot-tag { color: #b8af9d; font-size: 0.95rem; margin: 0; line-height: 1.5; }
.foot-col h4 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 700;
}
.foot-col a {
  color: var(--cream);
  font-size: 0.98rem;
  padding: 4px 0;
  transition: color 180ms ease;
}
.foot-col a:hover { color: var(--ochre-bright); }
.foot-addr {
  color: #b8af9d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid #3a3329;
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #8a8170;
}

/* ===== REVEAL ===== */
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(18px);
}
[data-reveal] {
  transition: opacity 600ms ease, transform 600ms ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  :root { --nav-h: 58px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--charcoal-2);
    border-bottom: 2px solid var(--ochre);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid #3a3329;
    font-size: 1rem;
  }
  .nav-links .cta-btn {
    margin: 12px 24px 4px;
    text-align: center;
    border-bottom: none;
  }

  .hero { padding: 64px 22px 80px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta-btn { width: 100%; }

  .trust-line p { font-size: 0.78rem; letter-spacing: 0.08em; }

  .section-head { margin-bottom: 36px; }

  .services { padding: 70px 22px; }
  .row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
    text-align: left;
  }
  .row.flip .row-art { order: 0; }
  .row-art svg { max-width: 200px; }

  .proof { padding: 70px 22px; }
  .proof-block { padding: 36px 20px; }

  .about { padding: 70px 22px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-text .section-title { text-align: left; }
  .about-art svg { max-width: 220px; }

  .cta-band { padding: 80px 22px; }
  .cta-sub { font-size: 1rem; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
}