:root {
  --bg: #f4f8f0;
  --ink: #173525;
  --ink-soft: #2f4e3e;
  --accent: #c96f2d;
  --accent-dark: #a7571f;
  --surface: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(23,53,37,0.08);
  --shadow-md: 0 8px 24px rgba(23,53,37,0.12);
  --shadow-lg: 0 16px 48px rgba(23,53,37,0.15);
  --max-w: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Offer Banner ──────────────────────────────── */
.offer-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #1a5c2e;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.offer-banner .offer-text { color: #fff; }
.offer-logo {
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  gap: 5px;
  flex-shrink: 0;
}
.offer-cta {
  background: #e85d04;
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s;
  white-space: nowrap;
}
.offer-cta:hover { background: #dc4c00; }
.offer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}
.offer-close:hover { color: #fff; }
.offer-banner.hidden { display: none; }

/* ── Header ────────────────────────────────────── */
.nav-shell {
  position: sticky;
  top: 44px;
  z-index: 100;
  width: 100%;
}

.site-header {
  width: 100%;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244,248,240,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23,53,37,0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  max-width: 60%;
}

.brand-icon { color: var(--accent); flex-shrink: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

nav a {
  text-decoration: none;
  color: var(--ink-soft);
  margin-left: 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 150ms;
  white-space: nowrap;
}
nav a:first-child { margin-left: 0; }
nav a:hover { color: var(--accent); }

.nav-call-btn {
  margin-left: 0.8rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Social icons in header */
.social-icon { width: 18px; height: 18px; }
.social-inline { display: inline-flex; align-items: center; }

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(580px, 80vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(23,53,37,0.72) 0%,
    rgba(23,53,37,0.45) 55%,
    rgba(23,53,37,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #a8d5a2;
  margin: 0 0 0.8rem;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}

.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn-solid {
  background: var(--accent);
  color: #fff;
}
.btn-solid:hover { background: var(--accent-dark); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-large { padding: 0.9rem 1.5rem; font-size: 0.95rem; }

/* ── Sections shared ──────────────────────────── */
main { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem 4rem; }

section { margin-top: 4rem; }

.section-header { margin-bottom: 2rem; }
.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.section-header p { color: var(--ink-soft); max-width: 52ch; margin: 0; }

/* ── Card Grid ─────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-img {
  height: 180px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 1.1rem 1.2rem 1.3rem; }
.card-body h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.card-body p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

.card-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(201,111,45,0.1);
  color: var(--accent-dark);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Services section ────────────────────────── */
.services-section {
  margin-top: 4rem;
  background: linear-gradient(130deg, #f0f7eb 0%, #fdf8ef 100%);
  border: 1px solid #d8e8d0;
  border-radius: var(--radius);
  padding: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.services-text h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.8rem;
}
.services-text p { color: var(--ink-soft); max-width: 42ch; margin: 0 0 1.2rem; }

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.93rem;
  font-weight: 500;
}
.services-list .check-icon { color: var(--accent); flex-shrink: 0; width: 18px; height: 18px; }

/* ── About Section ─────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.8rem;
}
.about-text p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 48ch;
}

/* ── Visit section ─────────────────────────────── */
.visit-section { margin-top: 4rem; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--ink);
  color: #ecf7ee;
  border-radius: var(--radius);
  padding: 2.5rem;
}

.visit-info h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.visit-sub {
  color: rgba(236,247,238,0.65);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(236,247,238,0.12);
  font-size: 0.88rem;
}
.hours-day { color: rgba(236,247,238,0.7); }
.hours-time { font-weight: 600; }

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #a8d5a2;
  transition: color 150ms;
}
.contact-link:hover { color: #fff; }

.visit-map {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.visit-map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}

/* ── Footer ──────────────────────────────────── */
footer {
  border-top: 2px solid rgba(23,53,37,0.2);
  padding: 2rem 1.5rem 2.5rem;
  background: #fff;
  margin-top: 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.footer-copy { color: #6a8a72; font-size: 0.8rem; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #6a8a72;
}
.footer-link {
  color: #6a8a72;
  text-decoration: none;
  transition: color 150ms;
}
.footer-link:hover { color: var(--accent); }
.footer-sep { color: #b0c8b8; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 860px) {
  .services-grid,
  .visit-grid,
  .about-section {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .visit-map { order: -1; }
  .visit-map iframe { height: 220px; }
  .about-image { order: -1; }
}

@media (max-width: 600px) {
  .offer-banner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .offer-banner .offer-cta { font-size: 12px; padding: 4px 12px; }
  .offer-logo { font-size: 0.9rem; }

  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
  }
  .site-header::-webkit-scrollbar { display: none; }

  .brand {
    font-size: 1rem;
    max-width: none;
    flex-shrink: 0;
  }

  .header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.15rem;
  }

  nav a {
    margin-left: 0.4rem;
    font-size: 0.75rem;
  }
  nav a:first-child { margin-left: 0; }

  .nav-call-btn {
    margin-left: 0.25rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  nav a.nav-link { display: none; }

  .hero-content { padding: 3rem 1rem; }
  main { padding: 0 1rem 3rem; }
  section { margin-top: 3rem; }
  .services-section { padding: 1.5rem; }
  .visit-grid { padding: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; text-align: center; }

  .visit-map iframe { height: 200px; }

  footer {
    padding: 1.5rem 1rem 2rem;
  }
}
