:root {
  --green-900: #2c4518;
  --green-800: #3d5c22;
  --green-700: #4d7329;
  --green-600: #5c8a32;
  --green-500: #6b9b3c;
  --green-200: #d4e4b4;
  --green-100: #eaf2d6;
  --green-50: #f4f8ea;
  --cream: #f8f4ea;
  --paper: #fffdf8;
  --ink: #2a2c24;
  --ink-soft: #5a5e52;
  --burgundy: #8a1f1f;
  --gold: #b0892e;
  --line: #d9d3c2;
  --shadow: 0 10px 30px rgba(44, 69, 24, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--green-700);
}

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-bar {
  background: var(--green-700);
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.header-bar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}

.header-bar a {
  color: #fff;
  text-decoration: none;
}

.header-bar a:hover {
  text-decoration: underline;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand img {
  width: 104px;
  height: auto;
  display: block;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.15;
}

.brand em {
  display: block;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 0.15rem;
}

.main-nav > a,
.nav-drop > .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
}

.main-nav > a:hover,
.nav-drop > .nav-parent:hover,
.main-nav > a.active,
.nav-drop.active > .nav-parent {
  color: var(--green-800);
  background: var(--green-50);
}

.nav-drop {
  position: relative;
}

.nav-drop .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.45rem;
  border-radius: 10px;
}

.nav-drop:hover .submenu,
.nav-drop:focus-within .submenu,
.nav-drop.open .submenu {
  display: grid;
}

.submenu a {
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  color: var(--ink);
  border-radius: 7px;
  font-size: 0.92rem;
}

.submenu a:hover {
  background: var(--green-50);
  color: var(--green-800);
}

.btn-nav {
  background: var(--green-700) !important;
  color: #fff !important;
  margin-left: 0.35rem;
}

.btn-nav:hover {
  background: var(--green-900) !important;
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(44, 69, 24, 0.72), rgba(77, 115, 41, 0.38)),
    url("../images/banner-botanical.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
  padding: 3.2rem 0 0;
  min-height: 520px;
}

.hero-copy {
  padding-bottom: 3rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 0.7rem;
}

.hero .lead,
.page-hero .lead {
  font-size: 1.15rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-photo {
  justify-self: end;
  width: min(100%, 390px);
}

.hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 18%;
  border: 8px solid rgba(248, 244, 234, 0.92);
  box-shadow: var(--shadow);
}

.quote-band {
  background: var(--green-700);
  color: #fff;
  text-align: center;
  padding: 1.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-800);
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 46rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem 1.25rem 1.4rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
  color: var(--green-800);
}

.card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn {
  background: var(--green-700);
  color: #fff;
}

.btn:hover {
  background: var(--green-900);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 1px solid var(--green-700);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.page-hero {
  background: var(--green-700);
  color: #fff;
  padding: 2.6rem 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: start;
}

.prose h2 {
  font-family: var(--serif);
  color: var(--green-800);
  font-size: 1.7rem;
  margin: 1.8rem 0 0.6rem;
}

.prose h3 {
  font-family: var(--serif);
  color: var(--green-700);
  font-size: 1.3rem;
  margin: 1.3rem 0 0.4rem;
}

.prose p,
.prose li {
  color: var(--ink);
}

.prose ul {
  padding-left: 1.15rem;
}

.frame {
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  background: #fff;
}

.frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.treat-gallery {
  display: grid;
  gap: 1rem;
}

.treat-gallery.cols-3 {
  grid-template-columns: 1fr;
}

.treat-gallery figure {
  margin: 0;
}

.treat-gallery figcaption {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-800);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.treat-band {
  margin-top: 2.4rem;
}

.treat-pair {
  margin-top: 2.2rem;
  align-items: center;
}

.treat-pair .frame img {
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 720px) {
  .treat-gallery.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hours-box,
.price-box,
.note-box {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 1.2rem 1.3rem;
  border-radius: 14px;
}

.hours-box h3,
.price-box h3 {
  margin-top: 0;
  font-family: var(--serif);
  color: var(--green-800);
}

.hours-box table {
  width: 100%;
  border-collapse: collapse;
}

.hours-box td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--green-200);
}

.offer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.offer img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.offer-copy {
  padding: 1.5rem 1.6rem;
}

.offer-copy h2 {
  font-family: var(--serif);
  margin: 0 0 0.5rem;
  color: var(--green-800);
}

.old-price {
  text-decoration: line-through;
  color: var(--ink-soft);
}

.price {
  color: var(--burgundy);
  font-weight: 800;
  font-size: 1.25rem;
}

.qi {
  font-family: "Noto Serif SC", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--green-700);
  opacity: 0.28;
  float: right;
  margin: 0 0 0 0.5rem;
}

.site-footer {
  background: var(--green-900);
  color: #e8efd8;
  padding: 2.6rem 0 1.4rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: #f4f8ea;
}

.site-footer h3 {
  font-family: var(--serif);
  margin: 0 0 0.7rem;
}

.legal-row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.8rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #c9d6b0;
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1rem;
}

.booking-shell {
  padding: 2.4rem 0 3.5rem;
}

.booking-shell main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.map-embed {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 14px;
}

.map-caption {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .split,
  .offer,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1.2rem 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-drop .submenu {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 0.6rem;
  }

  .hero-photo img {
    height: 340px;
  }

  .site-header {
    position: relative;
  }
}
