:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf7f2;
  --paper: #fffaf5;
  --sand: #eadfce;
  --sand-strong: #dcc8b2;
  --olive: #8f9680;
  --text: #3f342c;
  --muted: #74665d;
  --line: rgba(63, 52, 44, 0.12);
  --accent: #b5967c;
  --accent-dark: #8a6c55;
  --shadow-soft: 0 10px 30px rgba(49, 37, 28, 0.05);
  --radius: 18px;
  --content: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcf9f4 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-shell {
  width: min(var(--content), calc(100% - 40px));
  margin: 18px auto 110px;
}

.topbar,
.footer,
.soft-panel,
.stat-card,
.service-card,
.review-card,
.contact-card,
.hours-card,
.detail-card,
.hero-card,
.summary-score,
.cta-band,
.summary-copy {
  background: rgba(255, 250, 245, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.topbar,
.footer {
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  border: 1px solid rgba(0,0,0,0.04);
}
.brand span,
.logo-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  font-size: 0.95rem;
}
nav a.active,
nav a:hover { color: var(--text); }
nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 19px;
  background: var(--text);
  color: white;
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}
.button:hover {
  background: #2d241e;
  transform: translateY(-1px);
}
.button-soft {
  background: #f1e5d7;
  color: var(--text);
  border-color: rgba(138, 108, 85, 0.14);
}
.button-soft:hover { background: #e8d8c8; }
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.button-ghost:hover { background: rgba(255,255,255,0.72); }

.hero,
.grid-2,
.grid-3,
.review-summary { display: grid; gap: 24px; }
.grid-2,
.hero,
.review-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section,
.page-hero { margin: 28px 0; }

.hero {
  align-items: center;
  padding: 26px 0 8px;
}
.hero > div:first-child,
.page-hero,
.section > .section-heading,
.section > .grid-3,
.section > .stack-list,
.section > .review-grid,
.section > .review-summary,
.section.soft-panel,
.section.cta-band,
.section.grid-2 {
  width: 100%;
}

.page-hero {
  padding: 26px 0 2px;
  max-width: 760px;
}
.page-hero.narrow { max-width: 700px; }

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 600;
}
h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.75rem; }

p {
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 14px;
}
.lead {
  font-size: 1.04rem;
  max-width: 60ch;
}
.lead.small { max-width: none; }
.micro-copy { font-size: 0.95rem; margin-top: 14px; }

.hero-actions,
.cta-actions,
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions,
.cta-actions { margin-top: 20px; }

.trust-row {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.trust-row li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,250,245,0.92);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 24px 90px;
  min-height: 540px;
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(63,52,44,0.04) 0%, rgba(63,52,44,0.18) 100%);
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 248, 240, 0.9);
  max-width: 295px;
}

.stat-card,
.service-card,
.review-card,
.detail-card,
.contact-card,
.hours-card,
.soft-panel,
.cta-band,
.summary-score,
.summary-copy {
  border-radius: var(--radius);
  padding: 24px;
}
.stats { margin-top: 8px; }
.stat-card,
.service-card,
.review-card,
.detail-card,
.contact-card,
.hours-card,
.summary-copy {
  height: 100%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}
.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.checklist,
.hours-list,
.stack-list { list-style: none; padding: 0; margin: 0; }
.checklist-card h3 { margin-bottom: 10px; }
.checklist li,
.hours-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child,
.hours-list li:last-child { border-bottom: none; }

.badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #efe3d5;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card strong,
.detail-card strong,
.stat-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}
.stat-card {
  background: transparent;
  border-radius: 0;
  padding: 0 0 12px;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.stat-card p { margin-bottom: 0; }
.review-card p { color: var(--text); font-size: 1rem; }
.review-card footer { color: var(--muted); font-size: 0.92rem; }
.review-card.large p { font-size: 1.04rem; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.cta-band {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #f0e4d7 0%, #e5d3bf 100%);
  border-color: rgba(95, 66, 47, 0.12);
}
.compact-band { margin-top: 26px; }
.detail-card {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.detail-card:last-child { margin-bottom: 0; }
.service-card.muted {
  background: rgba(255, 250, 245, 0.62);
}
.summary-score {
  background: linear-gradient(180deg, #f1e5d7 0%, #ead9c8 100%);
}
.score {
  display: block;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer {
  margin: 34px 0 14px;
  align-items: flex-start;
}
.footer p:last-child { margin-bottom: 0; }
.source-note { margin-top: 10px; }
.summary-copy,
.checklist-card,
.contact-card,
.hours-card { align-self: stretch; }
.mobile-sticky-cta { display: none; }

@media (max-width: 920px) {
  .grid-2,
  .hero,
  .review-summary,
  .grid-3,
  .review-grid { grid-template-columns: 1fr; }

  .topbar,
  .footer,
  .cta-band,
  .detail-card {
    border-radius: 16px;
  }

  .topbar,
  .footer,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar nav,
  .topbar .button,
  .footer > div {
    width: 100%;
  }

  nav { justify-content: flex-start; }
  .image-card { min-height: 400px; }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 18px, var(--content));
    margin-top: 10px;
    margin-bottom: 96px;
  }

  .topbar,
  .footer,
  .soft-panel,
  .service-card,
  .review-card,
  .contact-card,
  .hours-card,
  .detail-card,
  .cta-band,
  .summary-score,
  .summary-copy { padding: 18px; }

  .topbar {
    position: sticky;
    top: 8px;
    z-index: 10;
    background: rgba(255, 248, 240, 0.94);
  }

  .hero {
    padding-top: 18px;
    gap: 18px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    line-height: 0.98;
  }
  h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }
  h3 { font-size: 1.5rem; }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }
  nav a {
    padding: 8px 0;
  }

  .brand span { font-size: 1.55rem; }
  .image-card {
    min-height: 320px;
    border-radius: 18px 18px 18px 56px;
  }

  .detail-card,
  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-card strong {
    margin-top: 4px;
    white-space: normal;
  }

  .overlay-card {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
    padding: 14px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 248, 240, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(49, 37, 28, 0.12);
    backdrop-filter: blur(10px);
  }
  .mobile-sticky-cta .button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.94rem;
  }
}
