/* ============================================================
   Chosen Holistic Services — Main Stylesheet
   Inspired by: the Chosen van wrap — navy, sage green, gold crown accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --cream:        #faf7f2;
  --cream-mid:    #f0ebe0;
  --cream-dark:   #e5dcd0;
  --sage:         #6f9271;
  --sage-light:   #a8c5ae;
  --sage-pale:    #e8f0e9;
  --sage-dark:    #4f7355;
  --gold:         #b8973f;  /* fills only: crown, "Soon" badge. Fails AA as text on cream. */
  --gold-deep:    #7d6029;  /* gold used as TEXT on light grounds — 4.9:1 on --cream-mid */
  --gold-light:   #e0c07a;  /* gold text on navy only (footer, CTA strip) */
  --navy-dark:    #23264a;
  --navy-mid:     #4E537F;
  --navy-light:   #7A80AE;
  --text-body:    #4a3828;
  --text-muted:   #7a6a5a;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(61,43,31,0.08);
  --shadow-md:    0 6px 24px rgba(61,43,31,0.12);
  --radius:       4px;
  --radius-lg:    10px;
  --max-width:    1140px;
  --font-script:  'Dancing Script', cursive;
  --font-sans:    'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
}

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

a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sage-dark); }

ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--navy-dark);
  line-height: 1.25;
}

h1 {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
}

h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--gold); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);  /* not --sage: it fails AA (3.3:1) on the light grounds these sit on */
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.text-center { text-align: center; }

.divider {
  width: 60px;
  height: 2px;
  background: var(--sage);
  margin: 1.25rem auto 2rem;
}

.divider-left {
  margin-left: 0;
  margin-right: auto;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-warm {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-warm:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* ── TEMP: Opening announcement bar — remove this whole block + markup after opening day ── */
.announcement-bar {
  background: var(--navy-dark);
  color: var(--gold-light);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
}
.announcement-bar strong { color: var(--white); }

/* ── Header & Navigation ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
}

.site-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--sage);
  border-bottom-color: var(--sage);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

/* Call button lives in the nav list but only appears in the mobile menu */
.nav-call { display: none; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: all 0.3s;
}

/* ── Page Hero Banner (interior pages) ──────────────────────
   Matches the light .hero-van ground so all four page tops read the same. */
.page-hero {
  background: linear-gradient(160deg, #ffffff 0%, #fdf7f5 60%, #f7efe9 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.page-hero h1 { color: var(--navy-dark); margin-bottom: 0.75rem; }
.page-hero p  { color: var(--text-body); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── Home Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom right,
      rgba(111,146,113,0.82) 0%,
      rgba(168,197,174,0.60) 50%,
      rgba(35,38,74,0.75) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--sage);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 1.5rem;
  margin-left: max(1.5rem, calc((100vw - var(--max-width)) / 2 + 1.5rem));
}


.hero-content h1 {
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.hero-content h1 em { color: var(--gold-deep); }

.hero-tagline {
  display: block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: var(--text-body);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Home Hero — van-wrap treatment ─────────────────────────
   Light "clean look" ground (client reference: willowcottagequiltco.com).
   Navy survives as an accent — icon circles, buttons, CTA strip, footer —
   rather than as a slab behind the headline. */
.hero-van {
  background: linear-gradient(160deg, #ffffff 0%, #fdf7f5 60%, #f7efe9 100%);
  background-color: var(--white);
}

.hero-swoosh {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  width: 100%;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.30;   /* sage strokes read much harder on white than on navy */
}

/* Van photo (background-removed cutout of the real wrapped van), shown as a real
   photograph rather than the ghost it had to be on navy. The van is mostly white,
   so on a light ground it can't be faded — at low opacity it dissolves into a
   floating navy skirt. Full opacity + a soft shadow instead. Its own white
   "Chosen" script now reads as vehicle signage rather than a second page logo,
   so it no longer fights .hero-wordmark-lockup. Wheels tuck behind .hero-wave. */
.hero-van-photo-wrap {
  position: absolute;
  /* Anchored to a 1400px band, not the viewport edge. A % or fixed offset here
     would keep chasing the right edge while .hero-content stays centred, so the
     van drifts away from the copy on wide screens. Below ~1488px this resolves
     to the 44px that was tuned on a laptop. */
  right: max(44px, calc((100vw - 1400px) / 2));
  bottom: 26px;                     /* sinks the wheels into the wave crest */
  width: clamp(420px, 46vw, 700px);
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero-van-photo {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) drop-shadow(0 14px 18px rgba(35,38,74,0.16));
  /* Only the outer 10% of the nose softens. The van faces left, into the copy,
     so this fade runs to the left — do not flip it without flipping the photo. */
  -webkit-mask-image: linear-gradient(to left, #000 90%, transparent 100%);
  mask-image: linear-gradient(to left, #000 90%, transparent 100%);
}

/* Tablet / small laptop: van still sits beside the copy, but at 46vw it would
   land on top of it. Shrink the van and cap the text column so they clear. */
@media (min-width: 768px) and (max-width: 1150px) {
  .hero-van-photo-wrap {
    width: clamp(300px, 38vw, 430px);
    right: 1.5rem;
    bottom: 20px;
  }
  .hero-content { max-width: 58%; }
}

/* Phones: no room for a two-column hero, and the van is a wide landscape shot. */
@media (max-width: 767px) {
  .hero-van-photo-wrap { display: none; }
}

/* Circle icon submenu — replaces the hero CTA buttons, echoes the van's icon row */
.icon-submenu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 1.8rem;
  margin-top: 0.5rem;
}

.icon-submenu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 110px;
  position: relative;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(35,38,74,0.10);
}

.icon-submenu-item:not(.disabled):hover .icon-circle {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-circle.bg-navy { background: var(--navy-mid); }
.icon-circle.bg-sage { background: var(--sage); }

.icon-circle svg { width: 31px; height: 31px; }

.icon-label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-dark);
  line-height: 1.3;
}

.icon-submenu-item.disabled {
  cursor: default;
  opacity: 0.5;
}

.icon-submenu-item.disabled .icon-circle {
  filter: grayscale(40%);
}

.coming-soon {
  position: absolute;
  top: -4px;
  right: 4px;
  background: var(--gold);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Welcome Section ────────────────────────────────────── */
.welcome-section {
  background: var(--white);
  padding: 5rem 0;
}

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

.welcome-image {
  background: var(--cream-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.welcome-image .placeholder-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream-dark) 50%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-image .placeholder-art span {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
  font-style: italic;
}

.welcome-text h2 { margin-bottom: 0.5rem; }
.welcome-text p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Offerings Cards ────────────────────────────────────── */
.offerings-section {
  background: var(--cream-mid);
}

.offerings-section h2,
.offerings-section > .container > p {
  text-align: center;
}

.offerings-section > .container > p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.5rem auto 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid var(--sage);
}

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

.card.card-warm { border-top-color: var(--navy-mid); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-pale);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card.card-warm .card-icon { background: #eceef5; }

.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }

.card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

.card a { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.card a:hover { color: var(--sage-dark); }

/* ── Why Us Section ─────────────────────────────────────── */
.why-section { background: var(--white); }
.why-section h2 { text-align: center; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
}

.pillar-line {
  width: 40px;
  height: 3px;
  background: var(--sage);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.pillar h4 { margin-bottom: 0.5rem; }
.pillar p  { font-size: 0.9rem; color: var(--text-muted); }

/* ── CTA Strip ──────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-strip h2  { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p   { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 2rem; }

.owner-note { background: var(--cream-mid); padding: 4.5rem 0; }

.owner-note-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.owner-note-box p { color: var(--text-body); font-size: 1.05rem; }
.owner-note-box p em { color: var(--navy-dark); font-style: italic; }

.owner-note-signature {
  display: block;
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--navy-dark);
  margin-top: 1rem;
}

/* ── About Page ─────────────────────────────────────────── */
.about-story { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-image {
  background: var(--cream-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 { margin-bottom: 0.5rem; }
.about-text p  { color: var(--text-muted); font-size: 1.02rem; }

.about-values { background: var(--cream-mid); }
.about-values h2 { text-align: center; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.value-card h4 {
  color: var(--sage);
  font-family: var(--font-sans);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.value-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ── Services Page ──────────────────────────────────────── */
.services-intro { background: var(--white); padding: 4rem 0 2rem; }
.services-intro .container { text-align: center; }
.services-intro p { max-width: 580px; margin: 0 auto; color: var(--text-muted); }

.products-section { background: var(--cream-mid); }
.products-section h2 { margin-bottom: 0.25rem; }
.products-section > .container > p { color: var(--text-muted); margin-bottom: 3rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--sage);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.product-card p  { font-size: 0.9rem; color: var(--text-muted); }

.shuttle-section { background: var(--white); }

/* Vehicle showcase panel — the transparent van cutout on a soft sage panel */
.shuttle-vehicle {
  margin: 0 0 3.5rem;
  padding: 2rem 2rem 1.25rem;
  background: linear-gradient(160deg, var(--sage-pale) 0%, var(--cream) 100%);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.shuttle-vehicle img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 14px 18px rgba(35,38,74,0.16));
}
.shuttle-vehicle figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
}

.shuttle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.shuttle-info h2 { margin-bottom: 0.5rem; }
.shuttle-info p  { color: var(--text-muted); margin-bottom: 1.5rem; }

.route-list { margin: 1.5rem 0 2rem; }

.route-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.route-item:first-child { border-top: 1px solid var(--cream-dark); }

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.route-item strong { display: block; color: var(--navy-dark); font-size: 0.95rem; margin-bottom: 0.2rem; }
.route-item span   { font-size: 0.875rem; color: var(--text-muted); }

.shuttle-highlight {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--sage-light);
}

.shuttle-highlight h3 { color: var(--sage); margin-bottom: 1rem; }
.shuttle-highlight p  { font-size: 0.95rem; color: var(--text-muted); }
.shuttle-highlight ul { margin: 1rem 0; }
.shuttle-highlight li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.shuttle-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* ── Glass & Handy-Man ──────────────────────────────────── */
.handyman-section { background: var(--white); }

.handyman-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.handyman-info h2 { margin-bottom: 0.5rem; }
.handyman-info p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Service cards pulled out of the two-column layout to span the full width.
   Tighter min than the base .product-grid so all four fit on one row on
   desktop (they're short cards), still wrapping on tablet/mobile. */
.handyman-services {
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.handyman-cta { margin: 2rem 0 3.5rem; }

.handyman-highlight {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--navy-mid);
}

.handyman-highlight h3 { color: var(--navy-dark); margin-bottom: 0; }
.handyman-highlight p  { font-size: 0.95rem; color: var(--text-muted); }

.handyman-highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.handyman-highlight-header img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
}

.handyman-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-mid);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.gallery-item span {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info p  { color: var(--text-muted); margin-bottom: 2rem; }

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-pale);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg { width: 20px; height: 20px; }

.info-text strong { display: block; color: var(--navy-dark); font-size: 0.9rem; margin-bottom: 0.15rem; }
.info-text span   { font-size: 0.9rem; color: var(--text-muted); }

.service-area-note {
  background: var(--cream-mid);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-left: 3px solid var(--sage);
  margin-top: 2rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 { margin-bottom: 1.5rem; font-size: 1.35rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo-name  { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-tagline { color: var(--sage-light); }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--sage-light); }

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--sage-light); }

/* ── Animated SVG ───────────────────────────────────────── */
@keyframes wave-flow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  35%       { transform: translateY(-18px) rotate(3deg); }
  70%       { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes petal-sway {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%       { transform: rotate(4deg) scale(1.03); }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 3;              /* paints over .hero-van-photo-wrap, hiding the wheels */
}

.hero-wave svg {
  display: block;
  width: 200%;
  animation: wave-flow 16s linear infinite;
}

.hero-botanical {
  position: absolute;
  top: 5%;
  right: 3%;
  width: min(260px, 28vw);
  pointer-events: none;
  animation: float-gentle 10s ease-in-out infinite;
  transform-origin: center bottom;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .welcome-grid,
  .about-grid,
  .shuttle-layout,
  .handyman-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-content { margin-left: 1.5rem; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }

  .site-nav ul { display: none; flex-direction: column; gap: 0; }
  .site-nav ul.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    border-top: 3px solid var(--sage);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
  }
  .site-nav ul.open li { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .site-nav ul.open li:last-child { border-bottom: none; }
  .site-nav ul.open a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: rgba(255,255,255,0.88);
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .site-nav ul.open a:hover,
  .site-nav ul.open a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-left-color: var(--sage);
  }
  .nav-toggle { display: flex; }
  .nav-toggle:hover span { background: var(--sage); }

  /* Call button — only visible inside the open mobile menu */
  .site-nav ul.open .nav-call { display: block; border-bottom: none; }
  .site-nav ul.open .nav-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.65rem 1.25rem 0.35rem;
    padding: 0.85rem 1rem;
    background: var(--sage);
    color: var(--white);
    border-radius: var(--radius);
    border-left: none;
  }
  .site-nav ul.open .nav-call a:hover {
    background: var(--sage-dark);
    color: var(--white);
    border-left-color: transparent;
  }
  .nav-call svg { width: 18px; height: 18px; flex-shrink: 0; }

  .hero { min-height: 70vh; }
  .hero-content { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .icon-submenu-grid { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
