/* ==========================================================================
   GreenCove, shared stylesheet for every page.
   Design system: earthy green and brown palette, cream base, Lora
   headings, Inter body, generous whitespace, soft rounded corners.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette: forest, parchment, and terracotta. All text pairs meet WCAG AA. */
  --bg-cream:   #F3ECDE;  /* page background, warm parchment */
  --bg-card:    #FAF6EC;  /* cards and raised surfaces, soft ivory */
  --bg-wash:    #E7ECD8;  /* sage-washed alternate sections */
  --green-deep: #1B2E23;  /* headings, page headers, dark bands, footer */
  --green-mid:  #3F5C45;  /* buttons, links, deep moss */
  --green-sage: #8CA083;  /* borders, soft accents */
  --brown-warm: #5F4636;  /* info labels */
  --clay:       #A34F2B;  /* terracotta: eyebrows, header button, flags, focus */
  --umber:      #6E3F22;  /* deep terracotta, third pricing card */
  --ochre:      #D2A159;  /* stars, highlights on dark bands */
  --ink:        #29241D;  /* body text, warm near-black */
  --muted:      #5D564A;  /* secondary text */

  /* Type */
  --font-display: "Lora", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Spacing rhythm */
  --section-pad: 96px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;

  /* Shape and depth */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --border-soft: 1px solid rgba(140, 160, 131, 0.35);
  --shadow-soft: 0 2px 12px rgba(42, 38, 32, 0.06);
  --shadow-lift: 0 10px 28px rgba(42, 38, 32, 0.10);

  --header-height: 76px;
}

/* --------------------------------------------------------------------------
   2. Base reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg-cream);
  /* Faint paper grain, kept extremely subtle */
  background-image: radial-gradient(rgba(95, 70, 54, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-deep);
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.55rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--green-mid); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }

ul, ol { padding-left: 1.3em; margin: 0 0 var(--space-2); }

address { font-style: normal; }

/* Dual focus indicator: clay ring with a light halo stays visible on both
   the cream pages and the deep green bands */
:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--bg-card);
}

::selection { background: var(--green-sage); color: var(--green-deep); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-pad); }
.section-tight { padding-block: calc(var(--section-pad) * 0.65); }

.section-cream { background: var(--bg-cream); }
.section-card  { background: var(--bg-wash); }
.section-deep {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(140, 160, 131, 0.16), transparent 62%),
    var(--green-deep);
  color: rgba(251, 248, 241, 0.92);
}
.section-deep h2, .section-deep h3 { color: #FBF8F1; }

/* The "cove", a gentle rounded curve that caps a deep green band */
.cove-top { border-radius: 48px 48px 0 0; }
.cove-bottom { border-radius: 0 0 48px 48px; }

.grid { display: grid; gap: var(--space-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: var(--space-4); }
}

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

.eyebrow {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.lead { font-size: 1.12rem; color: var(--muted); }

.section-intro { margin-bottom: var(--space-5); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary { background: var(--green-mid); color: #FBF8F1; }
.btn-primary:hover { background: var(--green-deep); color: #FBF8F1; transform: translateY(-1px); box-shadow: var(--shadow-lift); }

.btn-outline { background: transparent; color: var(--green-deep); border-color: var(--green-mid); }
.btn-outline:hover { background: var(--green-mid); color: #FBF8F1; }

/* Light variants for use on deep green bands */
.btn-light { background: #FBF8F1; color: var(--green-deep); }
.btn-light:hover { background: var(--bg-cream); color: var(--green-deep); transform: translateY(-1px); box-shadow: var(--shadow-lift); }

.btn-light-outline { background: transparent; color: #FBF8F1; border-color: rgba(251, 248, 241, 0.6); }
.btn-light-outline:hover { background: rgba(251, 248, 241, 0.12); color: #FBF8F1; border-color: #FBF8F1; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.btn-row-center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--green-deep);
  color: #FBF8F1;
  padding: 10px 18px;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; color: #FBF8F1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(232, 214, 189, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(226, 205, 175, 0.97);
  border-bottom-color: rgba(140, 160, 131, 0.35);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
}
.brand:hover { color: var(--green-mid); }
.brand .logo-badge { width: 44px; height: 44px; flex-shrink: 0; }
.brand .leaf { width: 22px; height: 22px; color: var(--green-mid); flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: var(--space-4); }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #7E3B1F;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap; /* keeps two-word labels on one line */
}
.nav-list a:hover { color: #5F2D16; }
.nav-list a.is-active {
  color: #7E3B1F;
  font-weight: 600;
  border-bottom-color: var(--clay);
}

.nav-actions { display: flex; align-items: center; gap: var(--space-2); }

.nav-actions .btn { padding: 10px 20px; font-size: 0.88rem; white-space: nowrap; }
.site-header .btn-primary { background: var(--clay); }
.site-header .btn-primary:hover { background: #7E3B1F; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--green-mid);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    background: var(--bg-card);
    border-bottom: var(--border-soft);
    box-shadow: var(--shadow-lift);
    padding: var(--space-3) 24px var(--space-4);
  }
  .site-nav.is-open { display: flex; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block;
    padding: 12px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(140, 160, 131, 0.2);
  }
  .nav-list a.is-active { border-bottom-color: var(--clay); }

  .nav-actions { flex-direction: column; align-items: stretch; margin-top: var(--space-2); }
  .nav-actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. Page header band (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  padding: 72px 0 60px;
  background:
    radial-gradient(700px 340px at 88% -30%, rgba(140, 160, 131, 0.28), transparent 65%),
    var(--green-deep);
}
.page-header h1 { color: #FBF8F1; }
.page-header .lead { color: rgba(251, 248, 241, 0.82); }

.page-header h1 { margin-bottom: 10px; }
.page-header .lead { max-width: 56ch; }

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(251, 248, 241, 0.65);
  margin-bottom: var(--space-2);
}
.breadcrumb a { color: rgba(251, 248, 241, 0.65); }
.breadcrumb a:hover { color: #FBF8F1; }

/* --------------------------------------------------------------------------
   7. Cards and common components
   -------------------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
}

.card h3 { margin-bottom: 8px; }
.card .card-note { font-size: 0.9rem; color: var(--muted); }

.card-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Image placeholders: neutral blocks with a caption naming the real photo
   that belongs there. Swap for <img> tags once photography is ready. */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3);
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(95, 70, 54, 0.4);
  background:
    linear-gradient(150deg, rgba(140, 160, 131, 0.25), rgba(210, 161, 89, 0.12)),
    var(--bg-card);
  color: var(--brown-warm);
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 200px;
}
.ph span { max-width: 30ch; }
.ph-tall { min-height: 320px; }
.ph-wide { min-height: 260px; }
.ph-hero { min-height: clamp(280px, 42vw, 460px); }
.ph-thumb { min-height: 150px; border-radius: var(--radius-sm); padding: var(--space-2); }

/* Real photos */
.photo {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.photo-hero { height: clamp(280px, 42vw, 460px); box-shadow: 18px 18px 0 rgba(163, 79, 43, 0.16); }
.photo-tall { height: clamp(260px, 34vw, 380px); box-shadow: 14px 14px 0 rgba(140, 160, 131, 0.28); }
.photo-wide { height: clamp(220px, 30vw, 320px); }
.photo-thumb { height: 200px; border-radius: var(--radius-sm); }
.card .photo { margin-bottom: var(--space-2); }

/* Rating badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: var(--border-soft);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.rating-badge .stars { color: var(--ochre); letter-spacing: 2px; font-size: 0.95rem; }
.rating-badge strong { color: var(--green-deep); }

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--clay);
  padding: var(--space-2) var(--space-4);
  margin: var(--space-4) 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.45;
  color: var(--green-deep);
  font-style: italic;
}

/* Testimonials */
.testimonial { display: flex; flex-direction: column; gap: var(--space-2); height: 100%; }
.testimonial blockquote { margin: 0; flex-grow: 1; position: relative; padding-top: 22px; }
.testimonial blockquote::after {
  content: "\201C";
  position: absolute;
  top: -12px;
  left: -4px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--green-sage);
}
.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--green-deep);
}
.testimonial cite { font-style: normal; font-size: 0.85rem; color: var(--muted); }
.testimonial .stars { color: var(--ochre); letter-spacing: 2px; }

/* Amenity / checklist chips */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: var(--border-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink); /* chips keep dark text even on the deep green bands */
}
.section-deep .chip-list li {
  background: rgba(251, 248, 241, 0.07);
  border-color: rgba(251, 248, 241, 0.28);
  color: #FBF8F1;
}
.section-deep .chip-list .dot { background: var(--ochre); }

.chip-list .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Checklists with leaf markers */
.leaf-list { list-style: none; padding: 0; margin: 0 0 var(--space-2); }
.leaf-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.leaf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: var(--green-sage);
  border-radius: 0 60% 0 60%; /* small leaf shape */
  transform: rotate(45deg);
}

/* Pricing cards */
.price-card { display: flex; flex-direction: column; height: 100%; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 6px 0 2px;
}
.price-card .price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: var(--space-2); }
.price-card .leaf-list { flex-grow: 1; }
.price-card .btn { margin-top: var(--space-3); }

.price-card.is-featured { background: var(--green-deep); border-color: var(--green-deep); color: rgba(251, 248, 241, 0.92); }

/* The plans read as a triad: forest, ivory, umber */
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) { background: var(--umber); border-color: var(--umber); color: rgba(251, 248, 241, 0.92); }
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) h3,
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .price { color: #FBF8F1; }
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .price-note { color: rgba(251, 248, 241, 0.78); }
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .leaf-list li::before { background: var(--ochre); }
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .btn-outline,
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .btn-primary { background: transparent; color: #FBF8F1; border-color: rgba(251, 248, 241, 0.65); }
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .btn-outline:hover,
section[aria-labelledby="plans-heading"] .grid > .price-card:nth-child(3) .btn-primary:hover { background: #FBF8F1; color: var(--umber); transform: translateY(-1px); }
.price-card.is-featured h3,
.price-card.is-featured .price { color: #FBF8F1; }
.price-card.is-featured .price-note { color: rgba(251, 248, 241, 0.78); }
.price-card.is-featured .leaf-list li::before { background: var(--ochre); }
.price-card.is-featured .btn-primary { background: #FBF8F1; color: var(--green-deep); }
.price-card.is-featured .btn-primary:hover { background: var(--bg-cream); color: var(--green-deep); }

.plan-flag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FBF8F1;
  background: var(--clay);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: var(--space-2);
}

/* Contact method cards */
.method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
  text-decoration: none;
}
.method-card:hover { color: var(--ink); }
.method-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.method-card .method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(163, 79, 43, 0.13);
  color: var(--clay);
  margin-bottom: var(--space-2);
}
.method-card .method-icon svg { width: 26px; height: 26px; }
.method-card .card-note { overflow-wrap: anywhere; }

/* Steps */
.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #FBF8F1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

/* Materials grid (Sustainability) */
.material-card { text-align: center; padding: var(--space-3); }
.material-card .swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto var(--space-2);
  border: var(--border-soft);
}

/* Accordion (FAQ) */
.accordion { border: var(--border-soft); border-radius: var(--radius-md); background: var(--bg-card); overflow: hidden; }
.accordion-item + .accordion-item { border-top: 1px solid rgba(140, 160, 131, 0.25); }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
}
.accordion-trigger:hover { background: rgba(140, 160, 131, 0.12); }
.accordion-trigger[aria-expanded="true"] { background: rgba(140, 160, 131, 0.14); }
.accordion-trigger .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--green-mid);
  transition: transform 0.25s ease;
}
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }

.accordion-panel { padding: 0 22px 20px; color: var(--muted); }
.accordion-panel[hidden] { display: none; }

/* Contact method cards */
.method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
  text-decoration: none;
}
.method-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(69, 98, 74, 0.12);
  color: var(--green-mid);
  margin-bottom: var(--space-2);
}
.method-icon svg { width: 26px; height: 26px; }

/* Contact form */
.form-field { margin-bottom: var(--space-3); }
.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-card);
  border: 1.5px solid rgba(140, 160, 131, 0.5);
  border-radius: var(--radius-sm);
}
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 1px;
  border-color: var(--green-mid);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* Map embed */
.map-frame {
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* Contact info blocks */
.info-line { display: flex; gap: 12px; margin-bottom: var(--space-2); }
.info-line .info-label {
  min-width: 92px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-warm);
  padding-top: 3px;
}

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(140, 160, 131, 0.25); }
.hours-table th { font-weight: 600; color: var(--green-deep); padding-right: 20px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--space-2); }
.cta-band p { max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-4); }

/* Footer, single slim band */
.site-footer {
  background: var(--green-deep);
  color: rgba(251, 248, 241, 0.85);
  border-top: 4px solid var(--clay);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: var(--space-4) var(--space-3);
}

.site-footer .brand { color: #FBF8F1; }
.site-footer .brand:hover { color: var(--green-sage); }
.site-footer .brand .leaf { color: var(--green-sage); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a { color: rgba(251, 248, 241, 0.85); text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: #FBF8F1; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(251, 248, 241, 0.15);
  padding-block: var(--space-3);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  color: rgba(251, 248, 241, 0.7);
}
.footer-bottom a { color: rgba(251, 248, 241, 0.9); }


/* --------------------------------------------------------------------------
   8. Home hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: var(--space-6) var(--section-pad);
  background: radial-gradient(720px 420px at 82% 8%, rgba(163, 79, 43, 0.08), transparent 62%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: var(--space-4); } }

.hero h1 { margin-bottom: var(--space-3); }
.hero .lead { font-size: 1.15rem; margin-bottom: var(--space-4); }
.hero .rating-badge { margin-top: var(--space-4); }

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

@media (hover: hover) {
  .gallery-grid .photo { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .gallery-grid .photo:hover { transform: scale(1.02); box-shadow: var(--shadow-lift); }
}

/* 404 */
.page-404 { padding-block: calc(var(--section-pad) * 1.2); text-align: center; }
.page-404 .big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--green-sage);
  line-height: 1;
  margin-bottom: var(--space-2);
}

/* Legal pages */
.legal-body { max-width: 72ch; }
.legal-body h2 { font-size: 1.35rem; margin-top: var(--space-5); }
.legal-note {
  background: rgba(210, 161, 89, 0.12);
  border: 1px solid rgba(210, 161, 89, 0.4);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: 0.9rem;
  color: var(--brown-warm);
}

/* --------------------------------------------------------------------------
   9. Motion: scroll reveals, guarded by prefers-reduced-motion
   -------------------------------------------------------------------------- */
/* Content is visible by default. JavaScript adds .reveal-pending only to
   elements still below the fold, then removes it as they scroll into view,
   so nothing can ever be stuck hidden. */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal-pending { opacity: 0; transform: translateY(18px); }
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   10. Small-screen rhythm
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .container { padding-inline: 20px; }
  .page-header { padding: 44px 0 40px; }
  .btn-row .btn { width: 100%; }
  .info-line { flex-direction: column; gap: 2px; }
}
