:root {
  --accent: #767732;
  --accent-dark: #5f6028;
  --accent-tint: #e8ead4;
  --dark: #2a1828;
  --dark-2: #351e37;
  --cream: #d9dba7;
  --cream-soft: #f0f2dc;
  --slate: #526472;
  --bg: #faf8f0;
  --bg-alt: #f4f2e8;
  --white: #ffffff;
  --text: #2a1f25;
  --text-light: #fff;
  --text-muted: #6b6258;
  --border: #e0dcc8;
  --nav-h: 64px;
  --banner-h: 42px;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] {
  scroll-margin-top: calc(var(--banner-h) + var(--nav-h) + 16px);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.85rem, 5.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

p { max-width: 62ch; }

.centered { text-align: center; margin-left: auto; margin-right: auto; }

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

.eyebrow-light { color: var(--cream); }

.eyebrow.centered { display: block; text-align: center; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  min-height: 44px;
  white-space: nowrap;
}

.btn-filled {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-filled:hover, .btn-filled:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--text);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* === Navigation === */
.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark-2);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-leaf {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 180ms ease;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-cta-mobile {
    display: flex;
    margin-top: 14px;
    width: 100%;
  }
  .nav-toggle { display: flex; }
}

/* === Hero === */
.hero {
  background: var(--dark-2);
  color: var(--text-light);
  overflow: hidden;
}

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-scrim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(53,30,55,0.15) 0%,
    rgba(53,30,55,0.6) 50%,
    var(--dark-2) 92%
  );
  pointer-events: none;
}
.hero-text {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 56px;
  margin-top: -120px;
}
.hero-text .container { padding: 0; max-width: 640px; }
.hero-text h1 { color: #fff; }
.hero-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  margin-top: 12px;
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-text { margin-top: -80px; padding-bottom: 40px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-actions .btn-outline-light { flex: 1 1 100%; }
}

/* === Trust / About === */
.trust {
  background: var(--cream-soft);
  padding: 88px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--text-muted); }

.trust-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.trust-checklist li svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 800px) {
  .trust { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* === Brands strip === */
.brands-strip {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.brand-names span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.brand-names span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  color: var(--accent);
  opacity: 0.5;
}

/* === Services === */
.services {
  background: var(--white);
  padding: 88px 0;
}
.services h2 { margin-bottom: 40px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, background 200ms ease;
}
.service-card:hover {
  border-color: var(--accent);
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--dark-2);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: none;
}

.service-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--accent);
  border-color: var(--accent);
  padding: 40px 36px;
  position: relative;
}
.service-featured h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 14px;
}
.service-featured p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 40ch;
}
.service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(255,255,255,0.92);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  align-self: flex-start;
}

@media (max-width: 800px) {
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: auto; grid-row: auto; padding: 28px 24px; }
  .service-featured h3 { font-size: 1.3rem; }
  .service-featured p { font-size: 0.95rem; }
}

/* === Gallery === */
.gallery {
  background: var(--bg-alt);
  padding: 88px 0;
}
.gallery h2 { margin-bottom: 36px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.photo-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  .gallery { padding: 60px 0; }
  .photo-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* === Visit === */
.visit {
  background: var(--white);
  padding: 88px 0;
  text-align: center;
}
.visit h2 { margin-bottom: 6px; }
.visit-sub { color: var(--text-muted); margin: 0 auto 32px; }

.hours-table {
  max-width: 360px;
  margin: 0 auto 36px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--border);
}
.hours-table dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  text-align: left;
}
.hours-table dt {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}
.hours-table dd {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: right;
}

@media (max-width: 600px) {
  .visit { padding: 60px 0; }
  .visit .btn { width: 100%; max-width: 320px; }
}

/* === Final CTA === */
.final-cta {
  background: var(--dark-2);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}
.cta-leaf {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 20px;
  opacity: 0.85;
}
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p {
  color: rgba(255,255,255,0.82);
  margin: 0 auto 28px;
  max-width: 44ch;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: #fff;
  min-height: 44px;
  transition: border-color 200ms ease;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-form .btn { flex-shrink: 0; }

.form-notice {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--cream);
  min-height: 1.2em;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
}

/* === Footer === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5