@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ─── CSS VARIABLES ───
   Brand: navy / gold / cream / logo-blue, per Nina's approved
   logo-mockup-d.html. --green-* and --accent* names are kept so the
   rest of this file (and the rest of the site) doesn't need touching;
   only the values below changed. */
:root {
  --green-deep:   #1A2B4A;   /* navy */
  --green-mid:    #3A6EA8;   /* mid blue, hover/dot accents */
  --green-light:  #7AAEE0;   /* logo blue */
  --green-pale:   #E7ECF4;   /* pale navy-tinted panels */
  --accent:       #D4A040;   /* gold, buttons/decorative */
  --accent-text:  #8A6118;   /* gold darkened for text on light bg, AA contrast */
  --accent-light: #FBF3E3;   /* pale gold panels */
  --bg:           #F4F0E8;   /* cream */
  --bg-card:      #FFFFFF;
  --border:       #E6DFD2;
  --text:         #1F2D44;
  --text-muted:   #5C6B82;
  --text-faint:   #6B7686;
  --white:        #FFFFFF;
  --dark-footer:  #11203A;   /* navy-deep */
  --text-on-dark: #A9B6CC;   /* muted body copy on navy panels */

  --font-display: 'Caveat', cursive;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  10px;
  --radius-md:  12px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(26,43,74,.08);
  --shadow-md:  0 4px 20px rgba(26,43,74,.10);
  --shadow-lg:  0 8px 40px rgba(26,43,74,.12);

  --container:  1200px;
  --nav-h:      68px;
  --phone-bar-h: 34px;
}

/* ─── BASE ─── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.1; color: var(--green-deep); }
h1 { font-size: clamp(36px, 7vw, 64px); font-weight: 600; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 600; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; }
p { line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: .75rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  background: var(--accent);
  color: var(--dark-footer);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #BD8A2F;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,160,64,.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: all .15s ease;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--green-pale); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.btn-white:hover { background: var(--bg); }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ─── FORM ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }
.form-field {
  width: 100%;
  height: 48px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color .15s ease;
  appearance: none;
}
.form-field:focus { outline: none; border-color: var(--green-deep); }
textarea.form-field { height: 100px; padding: 14px 16px; resize: vertical; }
select.form-field { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6B82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--green-deep);
  z-index: 1000;
  transition: box-shadow .2s ease;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.phone-bar {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: var(--phone-bar-h);
  background: var(--accent);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-footer);
  letter-spacing: .02em;
}
.phone-bar a:hover { text-decoration: underline; }
.phone-bar svg { flex-shrink: 0; }
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; flex-shrink: 0; }
.nav-logo-text {
  display: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  color: var(--bg);
  white-space: nowrap;
}
@media (min-width: 360px) { .nav-logo-text { display: inline; } }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,240,232,.75);
  transition: color .15s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--bg); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; align-items: center; justify-content: center; text-align: center; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--bg);
  border-radius: 1px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--bg);
  transition: color .15s ease;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-primary { font-size: 16px; margin-top: 1rem; }

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--green-deep);
  border-top: 2px solid rgba(212,160,64,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 900;
  padding: 0 24px;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta .btn-primary { padding: 10px 22px; font-size: 13px; }
.sticky-cta-note { font-size: 11px; color: rgba(244,240,232,.55); }

/* ─── PAGE WRAPPER ─── */
.page-content { padding-top: calc(var(--nav-h) + var(--phone-bar-h)); }
.page-content-bottom { padding-bottom: 60px; }
@media (min-width: 768px) { .page-content-bottom { padding-bottom: 0; } }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--phone-bar-h));
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding: 60px 0 40px;
  position: relative;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; padding: 0; min-height: calc(100vh - var(--nav-h) - var(--phone-bar-h)); }
}
.hero-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-stars { display: flex; align-items: center; gap: 6px; }
.hero-stars .stars { color: var(--accent-text); font-size: 16px; letter-spacing: 1px; }
.hero-stars .rating { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── SPLIT HERO (full-bleed photo + navy panel) ───
   Matches Nina's approved logo-mockup-d.html. Used as the top
   section of index, services, about, book, and contact. */
.split-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--nav-h) - var(--phone-bar-h));
  padding: 0;
}
@media (min-width: 900px) {
  .split-hero { grid-template-columns: 1fr 1fr; }
}
.split-hero-photo { position: relative; overflow: hidden; }
.split-hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(17,32,58,.5) 0%, transparent 35%);
}
.split-hero-caption {
  position: absolute; bottom: 28px; left: 36px; z-index: 2;
  color: var(--white); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; opacity: .85;
}
.split-spark { position: absolute; pointer-events: none; z-index: 1; color: var(--white); }
.split-hero-panel .split-spark { color: var(--accent); }
.split-hero-panel .split-spark.blue { color: var(--green-light); }

.split-hero-panel {
  background: var(--green-deep);
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 32px;
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .split-hero-panel { padding: 64px 56px; } }
.split-hero-panel > *:not(.split-spark) { position: relative; z-index: 2; }
.split-hero-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.split-hero-logo-row img { width: 60px; height: auto; flex-shrink: 0; }
.split-hero-wordmark-main {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}
.split-hero-wordmark-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-top: 2px;
}
.split-hero-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.split-hero-sub {
  font-size: 14.5px; line-height: 1.8; color: var(--text-on-dark);
  max-width: 420px; margin-bottom: 28px;
}
.split-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 6px 13px;
  font-size: 12px; font-weight: 500; color: var(--text-on-dark);
}
.trust-pill .stars { color: var(--accent); font-size: 11px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--white);
  padding: 13px 24px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all .15s ease;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--green-deep); padding: 28px 0; }
.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .trust-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-text-title { font-size: 12px; font-weight: 600; color: var(--bg); line-height: 1.2; }
.trust-text-sub { font-size: 11px; color: rgba(244,240,232,.5); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card-icon { font-size: 28px; margin-bottom: .75rem; }
.service-card h3 { font-size: 18px; margin-bottom: .4rem; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-card-link { font-size: 12px; font-weight: 600; color: var(--accent-text); letter-spacing: .04em; }
.service-card-link:hover { text-decoration: underline; }

/* ─── REVIEWS ─── */
.reviews-section { background: var(--green-deep); }
.reviews-section h2 { color: var(--bg); }
.reviews-eyebrow { color: var(--accent) !important; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 2rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: background .2s ease;
}
.review-card:hover { background: rgba(255,255,255,.12); }
.review-stars { color: var(--accent); font-size: 14px; margin-bottom: .75rem; letter-spacing: 2px; }
.review-text { font-size: 13px; color: rgba(244,240,232,.8); line-height: 1.7; font-style: italic; margin-bottom: .75rem; }
.review-author { font-size: 12px; font-weight: 600; color: rgba(244,240,232,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ─── ABOUT TEASER ─── */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-teaser-grid { grid-template-columns: auto 1fr; gap: 4rem; } }
.about-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--border);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  margin: 0 auto;
}
@media (min-width: 768px) { .about-photo { width: 200px; height: 200px; margin: 0; } }
.about-teaser-copy h2 { margin-bottom: .75rem; }
.about-teaser-copy p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ─── GUARANTEE ─── */
.guarantee-strip { background: var(--accent-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.guarantee-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.guarantee-icon { font-size: 32px; flex-shrink: 0; }
.guarantee-title { font-size: 15px; font-weight: 600; color: var(--text); }
.guarantee-sub { font-size: 13px; color: var(--text-muted); }

/* ─── SECOND CTA ─── */
.cta-section { background: var(--bg-card); text-align: center; }
.cta-section h2 { margin-bottom: .75rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── PAGE HEADER ─── */
.page-header { background: var(--green-pale); padding: 60px 0 50px; }
.page-header h1 { margin-bottom: .5rem; }
.page-header p { color: var(--text-muted); max-width: 520px; }
.page-header .hero-stars { margin-top: .75rem; }

/* ─── FLOOR CALLOUT ─── */
.floor-callout { background: var(--green-deep); border-radius: var(--radius-lg); overflow: hidden; }
.floor-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .floor-callout-grid { grid-template-columns: 1fr 1fr; } }
.floor-callout-copy { padding: 40px 36px; }
.floor-callout-copy .eyebrow { color: var(--accent); }
.floor-callout-copy h2 { color: var(--bg); margin-bottom: 1rem; font-size: clamp(24px, 3vw, 34px); }
.floor-callout-copy p { color: rgba(244,240,232,.75); font-size: 14px; margin-bottom: 1.25rem; line-height: 1.7; }
.floor-callout-quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 1.25rem 0;
  font-style: italic;
  font-size: 13px;
  color: rgba(244,240,232,.65);
  line-height: 1.6;
}
.floor-callout-quote span { display: block; margin-top: .4rem; font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(244,240,232,.4); }
.floor-callout-image { aspect-ratio: 4/3; overflow: hidden; }
.floor-callout-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── BRINGS GRID ─── */
.brings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .brings-grid { grid-template-columns: repeat(4, 1fr); } }
.brings-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.brings-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; }
.brings-text { font-size: 12px; color: var(--text); line-height: 1.5; font-weight: 500; }

/* ─── ABOUT PAGE ─── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) { .about-hero-grid { grid-template-columns: 380px 1fr; } }
.about-hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about-copy h2 { margin-bottom: 1rem; }
.about-copy p { color: var(--text-muted); margin-bottom: 1rem; font-size: 15px; line-height: 1.8; }
.about-copy .btn-primary { margin-top: .75rem; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.diff-icon { font-size: 28px; margin-bottom: .75rem; }
.diff-card h3 { font-size: 18px; margin-bottom: .5rem; }
.diff-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── BOOK PAGE ─── */
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .book-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.book-trust { display: flex; flex-direction: column; gap: 1.5rem; }
.book-trust-review { background: var(--green-pale); border-radius: var(--radius-md); padding: 20px; }
.book-trust-review .review-stars { color: var(--accent-text); margin-bottom: .5rem; }
.book-trust-review .review-text { font-size: 13px; color: var(--text); font-style: italic; line-height: 1.65; margin-bottom: .5rem; }
.book-trust-review .review-author { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.book-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.book-form h2 { font-size: 26px; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-response-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: .5rem; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 2px; }
.contact-card-value { font-size: 14px; font-weight: 500; color: var(--text); }
.contact-card-value a { color: var(--green-deep); font-weight: 600; }
.contact-card-value a:hover { text-decoration: underline; }
.tap-call {
  margin-left: auto;
  background: var(--accent);
  color: var(--dark-footer);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background .15s;
}
.tap-call:hover { background: #BD8A2F; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 1rem; }
.area-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text);
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.area-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; }
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ─── THANK YOU PAGE ─── */
.thankyou-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.thankyou-icon { font-size: 56px; margin-bottom: 1.5rem; }
.thankyou-section h1 { margin-bottom: .75rem; }
.thankyou-section p { color: var(--text-muted); max-width: 440px; margin: 0 auto 2rem; }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-top: .25rem; }
.section-header p { color: var(--text-muted); margin-top: .5rem; max-width: 540px; }
.section-header.center { text-align: center; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark-footer); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo-img { height: 42px; width: auto; margin-bottom: .75rem; }
.footer-tagline { font-size: 13px; color: rgba(244,240,232,.4); line-height: 1.6; margin-bottom: .75rem; }
.footer-stars { display: flex; align-items: center; gap: 6px; }
.footer-stars .stars { color: var(--accent); font-size: 13px; }
.footer-stars .rating { font-size: 12px; color: rgba(244,240,232,.4); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,240,232,.35); margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { font-size: 13px; color: rgba(244,240,232,.6); transition: color .15s; }
.footer-col a:hover { color: var(--bg); }
.footer-col p { font-size: 13px; color: rgba(244,240,232,.6); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: 11px; color: rgba(244,240,232,.25); }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.gap-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.section-alt { background: var(--bg-card); }
.section-green { background: var(--green-pale); }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: flex; flex-direction: column; }
.blog-card h3 { font-size: 19px; margin: .5rem 0 .5rem; }
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .08em; }
.blog-card-meta span + span::before { content: '·'; margin: 0 6px; }
.blog-card-link { font-size: 12px; font-weight: 600; color: var(--accent-text); letter-spacing: .04em; margin-top: auto; }
.blog-card-link:hover { text-decoration: underline; }

.post-breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: .75rem; }
.post-breadcrumb a { color: var(--green-mid); font-weight: 500; }
.post-breadcrumb a:hover { text-decoration: underline; }
.post-meta-row { display: flex; gap: 14px; font-size: 12px; color: var(--text-faint); margin-top: .75rem; }

.post-body { max-width: 700px; }
.post-body h2 { font-size: clamp(22px, 3vw, 30px); margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 18px; margin: 1.5rem 0 .75rem; }
.post-body p { color: var(--text); margin-bottom: 1.1rem; font-size: 15px; line-height: 1.8; }
.post-body ul { margin: 0 0 1.25rem; padding-left: 0; }
.post-body li { font-size: 14px; color: var(--text); line-height: 1.7; padding-left: 22px; position: relative; margin-bottom: .4rem; }
.post-body li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.post-body strong { color: var(--green-deep); }

.post-faq { display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0 2.5rem; }
.post-faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 22px; }
.post-faq-item h3 { font-size: 15px; margin: 0 0 .5rem; }
.post-faq-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.post-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 2rem;
}
.post-cta p { color: var(--text); font-size: 14px; font-weight: 500; margin: 0; max-width: 420px; }

/* ─── GALLERY ─── */
.gallery-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
