: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; }

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: var(--max-w);
  margin: 0 auto;
  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);
}

.brand-icon { color: var(--accent); 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;
}
nav a:hover { color: var(--accent); }

/* ── 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-outline-light {
  border-color: rgba(23,53,37,0.3);
  color: rgba(255,255,255,0.9);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.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; }

/* ── Collections ─────────────────────────────── */
.collections { margin-top: 4rem; }

.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 ────────────────────────────────── */
.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 svg { color: var(--accent); flex-shrink: 0; }

/* ── Visit ───────────────────────────────────── */
.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; }

/* Map area */
.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: 1px solid rgba(23,53,37,0.1);
  padding: 2rem 1.5rem 2.5rem;
}
.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; }

/* ── Responsive ──────────────────────────────── */
/* 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-banner .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-banner .offer-cta:hover { background: #dc4c00; }
.offer-banner .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-banner .offer-close:hover { color: #fff; }
.offer-banner.hidden { display: none; }

@media (max-width: 860px) {
  .services-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .visit-map { order: -1; }
  .visit-map img { height: 220px; }
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
  }
  nav a { margin-left: 0; margin-right: 0.9rem; }
  .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; }
}
