:root {
  --bg: #f6f1e8;
  --bg-alt: #ebe3d4;
  --surface: #fffdf8;
  --ink: #1c1410;
  --ink-muted: #5c4f44;
  --accent: #8b3a2a;
  --accent-dark: #6b2a1f;
  --accent-soft: #d4a574;
  --forest: #2d4a3e;
  --forest-dark: #1f332b;
  --gold: #c9a227;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(28, 20, 16, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
}

@media (min-width: 480px) {
  .wrap {
    width: min(1120px, calc(100% - 2.5rem));
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 20, 16, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: var(--header-h);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(28, 20, 16, 0.12);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1.25rem;
  background: var(--surface);
  border-bottom: 1px solid rgba(28, 20, 16, 0.08);
  box-shadow: 0 12px 24px rgba(28, 20, 16, 0.08);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.85rem 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(28, 20, 16, 0.06);
}

.nav-mobile a.btn {
  margin-top: 0.75rem;
  border-bottom: none;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--forest), var(--forest-dark));
  color: #f4e9d8;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  font-weight: 700;
}

.brand-text small {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  gap: 1.25rem;
  align-items: center;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 58, 42, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 28px rgba(139, 58, 42, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: rgba(28, 20, 16, 0.12);
}

.btn-secondary:hover {
  color: var(--ink);
  border-color: rgba(28, 20, 16, 0.22);
}

.btn-ghost {
  border-color: rgba(28, 20, 16, 0.15);
  color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--forest-dark);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  color: var(--forest-dark);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80") center / cover
      no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(31, 51, 43, 0.94) 0%,
    rgba(28, 20, 16, 0.78) 45%,
    rgba(28, 20, 16, 0.55) 100%
  );
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  color: #f8f4ec;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: rgba(248, 244, 236, 0.85);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.22);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: #f5e6b8;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: 1.1rem;
  color: rgba(248, 244, 236, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  max-width: 36rem;
}

.hero-trust li {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(248, 244, 236, 0.88);
}

.hero-trust strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-card-label {
  margin: 0 0 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--forest);
}

.hero-card-hours {
  margin: 0 0 1rem;
}

.hero-card-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(28, 20, 16, 0.1);
}

.hero-card-hours dt {
  font-weight: 600;
}

.hero-card-hours dd {
  margin: 0;
  color: var(--ink-muted);
}

.hero-card-note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Strip */
.strip {
  background: var(--forest);
  color: #e8efe9;
  padding: 0.85rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.strip-inner p {
  margin: 0;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.section-intro {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(28, 20, 16, 0.06);
  box-shadow: 0 8px 30px rgba(28, 20, 16, 0.05);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  min-height: 320px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(28, 20, 16, 0.05), rgba(28, 20, 16, 0.35)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?w=1200&q=80") center / cover
      no-repeat;
  box-shadow: var(--shadow);
}

.split-copy p {
  color: var(--ink-muted);
}

.checklist {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--ink-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.15);
}

.quotes {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

blockquote {
  margin: 0;
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 28px rgba(28, 20, 16, 0.06);
}

blockquote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--ink);
}

blockquote footer {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.location-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-style: normal;
  margin: 1.25rem 0;
}

.address-block a {
  font-weight: 600;
  text-decoration: none;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 20, 16, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: #eef5f1;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.cta-band p {
  margin: 0;
  opacity: 0.9;
}

.site-footer {
  padding: 1.5rem 0 5.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-inner a {
  text-decoration: none;
  font-weight: 600;
}

/* Sticky mobile CTA */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem;
  padding: 0.65rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(246, 241, 232, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(28, 20, 16, 0.08);
  box-shadow: 0 -8px 24px rgba(28, 20, 16, 0.08);
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
}

.sticky-maps {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid rgba(28, 20, 16, 0.12);
}

.sticky-wa {
  background: #25d366;
  color: #fff;
}

.sticky-wa:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(31, 51, 43, 0.96) 0%,
      rgba(28, 20, 16, 0.88) 55%,
      rgba(28, 20, 16, 0.82) 100%
    );
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .strip {
    font-size: 0.82rem;
    padding: 0.75rem 0;
  }

  .strip-inner p {
    line-height: 1.45;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 220px;
    order: -1;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-band-inner .btn {
    width: 100%;
  }

  blockquote p {
    font-size: 1.15rem;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 960px) {
  .header-cta {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
