/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #C65D2E;
  --accent-dark: #A84A20;
  --accent-light: #E8B89A;
  --accent-tint: #F5E4D8;
  --dark: #1A1614;
  --dark-2: #2A2420;
  --dark-3: #3A322C;
  --light: #FAF7F3;
  --tint: #F3EDE7;
  --card-bg: #FFFFFF;
  --border: #E0D6CC;
  --text: #2A2420;
  --text-muted: #6B5D52;
  --text-on-dark: #EDE6DF;
  --text-on-dark-muted: #A89B90;
  --nav-h: 72px;
  --banner-h: 42px;
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 8px rgba(26,22,20,0.06), 0 8px 24px rgba(26,22,20,0.06);
  --shadow-lg: 0 4px 16px rgba(26,22,20,0.08), 0 16px 48px rgba(26,22,20,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--dark); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

p { max-width: 70ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--accent-light); }

.section-pad { padding: 96px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-title.left { text-align: left; }
.section-sub { color: var(--text-muted); font-size: 1.0625rem; margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 44px;
  text-align: center;
  line-height: 1.3;
}
.btn svg { flex-shrink: 0; }
.btn-filled { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-filled:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(198,93,46,0.3); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; min-height: 52px; }

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(250,247,243,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; color: var(--dark); flex-shrink: 0; }
.brand-mark { color: var(--accent); display: flex; align-items: center; }
.brand-text { letter-spacing: -0.02em; }
.amp { color: var(--accent); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a { font-size: 0.95rem; font-weight: 500; color: var(--text); transition: color 0.15s; white-space: nowrap; }
.nav-links > a:hover { color: var(--accent); }
.nav-cta { color: #fff !important; }

.hamburger { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--text-on-dark);
  min-height: calc(100vh - var(--banner-h) - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { display: block; width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-on-dark-muted);
  margin-bottom: 32px;
  max-width: 58ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-outline { color: var(--text-on-dark); border-color: rgba(237,230,223,0.3); }
.hero .btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); }

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--tint);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-chip {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 12px;
}
.trust-item h3 { font-size: 0.95rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.45; }

/* ===== Services ===== */
.services { background: var(--light); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--text-muted); }

/* ===== Reviews ===== */
.reviews { background: var(--tint); }
.review-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}
.rating-display { flex-shrink: 0; text-align: center; }
.rating-number { display: block; font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.rating-stars { display: flex; gap: 2px; color: var(--accent); margin: 10px 0 8px; justify-content: center; }
.rating-count { font-size: 0.875rem; color: var(--text-muted); }
.review-divider { width: 1px; align-self: stretch; background: var(--border); }
.review-note { display: flex; gap: 14px; align-items: flex-start; color: var(--text-muted); }
.review-note svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.review-note p { font-size: 0.95rem; line-height: 1.55; }

/* ===== About ===== */
.about { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.0625rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-visual { position: relative; min-height: 320px; }
.about-card-stack { position: relative; display: flex; flex-direction: column; gap: 16px; }
.about-fact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.about-fact-card.offset { margin-left: 32px; }
.about-fact-card:hover { transform: translateX(-4px); }
.fact-label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 6px; }
.fact-value { display: block; font-size: 1.05rem; font-weight: 600; color: var(--dark); line-height: 1.5; }

/* ===== CTA Band ===== */
.cta-band {
  position: relative;
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 96px 0;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.03em; }
.cta-sub { color: var(--text-on-dark-muted); font-size: 1.0625rem; margin: 0 auto 32px; max-width: 56ch; }
.cta-actions { margin-bottom: 56px; }

/* Contact form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.form-row { display: flex; flex-direction: column; }
.form-row-wide { grid-column: 1 / -1; }
.form-row label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-on-dark-muted); margin-bottom: 6px; }
.form-row input, .form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(237,230,223,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  transition: border-color 0.15s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-on-dark-muted); opacity: 0.7; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent-light); }
.form-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-band .btn-outline { color: var(--text-on-dark); border-color: rgba(237,230,223,0.3); }
.cta-band .btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); }
.form-note { font-size: 0.875rem; color: var(--accent-light); min-height: 1.2em; }

/* ===== Footer ===== */
.site-footer { background: var(--dark-2); color: var(--text-on-dark-muted); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { color: var(--text-on-dark); margin-bottom: 14px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-on-dark-muted); max-width: 35ch; }
.footer-col h4 { color: var(--text-on-dark); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-col ul li a { transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom { border-top: 1px solid rgba(237,230,223,0.1); padding: 24px 0; }
.footer-bottom p { font-size: 0.825rem; color: var(--text-on-dark-muted); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .card-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 64px 0; }
  .trust-bar { padding: 40px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }

  .nav-links {
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0; right: 0;
    background: var(--light);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links > a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; justify-content: center; }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero { padding: 56px 0; min-height: auto; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .review-block { flex-direction: column; gap: 24px; padding: 32px 24px; text-align: center; }
  .review-divider { width: 100%; height: 1px; }
  .review-note { text-align: left; }

  .contact-form { grid-template-columns: 1fr; }
  .about-fact-card.offset { margin-left: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 64px 0; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}