:root {
  --accent: #e74c3c;
  --accent-dark: #c0392b;
  --ink: #18120f;
  --ink-soft: #2a2018;
  --paper: #faf6f0;
  --paper-shade: #f0e8de;
  --paper-deeper: #e6dccd;
  --muted: #6b5d4f;
  --line: #d4c8b5;
  --white: #ffffff;
  --header-h: 68px;
  --banner-h: 42px;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Saira', sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.eyebrow.accent { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 200ms ease;
  min-height: 44px;
  letter-spacing: 0.01em;
  border-radius: 0;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.wm-rm { color: var(--accent); }
.wm-print { color: var(--ink); }
.wordmark-light .wm-print { color: var(--paper); }

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

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: color 180ms ease;
}
.nav-links a:not(.btn):hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text .eyebrow {
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #c9bda9;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas .btn-outline {
  color: var(--paper);
  border-color: var(--paper);
}
.hero-ctas .btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
}

.reg-mark {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.reg-mark::before, .reg-mark::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.reg-mark::before {
  width: 2px;
  height: 36px;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.reg-mark::after {
  width: 36px;
  height: 2px;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}
.reg-mark-tr { top: -14px; right: -14px; }
.reg-mark-bl { bottom: -14px; left: -14px; }

/* Stats */
.stats {
  background: var(--paper-shade);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
  display: block;
  max-width: 220px;
  margin: 0 auto;
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--paper);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.service-row:last-child { margin-bottom: 0; }

.service-row.reverse .service-text { order: 2; }

.service-num {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.service-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.service-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
}

.service-tags {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.service-tags li {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 0;
}

.service-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Proof */
.proof {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  text-align: center;
}

.proof-mark {
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.proof-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.proof-attr {
  font-size: 15px;
  color: #c9bda9;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--paper-shade);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

/* CTA Band */
.cta-band {
  background: var(--accent);
  color: var(--white);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band .btn-filled {
  background: var(--ink);
  border-color: var(--ink);
}
.cta-band .btn-filled:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.cta-band .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}

/* Quote form */
.quote-section {
  padding: 100px 0;
  background: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.quote-info p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.quote-contact p {
  margin-bottom: 12px;
  color: var(--ink);
}
.quote-contact a:hover { color: var(--accent); }
.quote-contact strong { font-weight: 700; }

.quote-form {
  background: var(--paper-shade);
  padding: 40px;
  border: 1px solid var(--line);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-notice {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  min-height: 20px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .wordmark { margin-bottom: 16px; }

.footer-tagline {
  color: #c9bda9;
  font-size: 15px;
  max-width: 240px;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  font-size: 15px;
  color: #c9bda9;
  line-height: 1.6;
  display: block;
  margin-bottom: 8px;
  transition: color 180ms ease;
}

.footer-col a:hover { color: var(--paper); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4a3a2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #2e2419;
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 14px;
  color: #8a7a68;
}

/* Reveal */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(24px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 300ms ease;
    z-index: -1;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--paper-deeper);
  }
  .nav-links a:last-child { border-bottom: none; margin-top: 8px; }

  .stat-row { grid-template-columns: 1fr; gap: 48px; }

  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }
  .service-row.reverse .service-text { order: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .quote-form { padding: 28px 20px; }

  .hero { padding: 56px 0 72px; }
  .stats, .services, .proof, .about, .quote-section { padding: 64px 0; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
}