/* ==========================================================================
   Maison Verte — design tokens
   ========================================================================== */
:root {
  --forest: #173c2b;
  --forest-deep: #102a1e;
  --botanical: #2f6247;
  --sage: #849b82;
  --ivory: #f6f2e9;
  --sand: #d8c9b5;
  --charcoal: #252a27;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 50px -25px rgba(23, 60, 43, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(37, 42, 39, 0.25);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  color: inherit;
}

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

a {
  color: var(--botanical);
  text-decoration: none;
}

a:hover {
  color: var(--forest);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--botanical);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section {
  padding: var(--space-6) 0;
}

@media (max-width: 767px) {
  .section {
    padding: var(--space-5) 0;
  }
}

.section-ivory { background: var(--ivory); color: var(--charcoal); }
.section-sand { background: var(--sand); color: var(--charcoal); }
.section-forest { background: var(--forest); color: var(--ivory); }
.section-forest a:not(.button) { color: var(--sage); }

.section-header {
  max-width: 760px;
  margin: 0 auto var(--space-4);
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--botanical);
  margin-bottom: var(--space-2);
}

.section-forest .eyebrow { color: var(--sage); }

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

.section-lede {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.85;
}

.section-forest .section-lede { color: var(--ivory); opacity: 0.85; }

/* Signature divider: the leaf mark, reused between bands */
.divider {
  display: flex;
  justify-content: center;
  color: var(--sage);
  opacity: 0.9;
  margin: 0;
  padding: var(--space-3) 0 0;
}

.divider svg {
  width: 34px;
  height: 34px;
}

.divider--flip svg { transform: scaleX(-1); }
.divider--rotate svg { transform: rotate(90deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  min-height: 44px;
}

.button-primary {
  background: var(--botanical);
  color: var(--white);
  border-color: var(--botanical);
}

.button-primary:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}

.button-ivory {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--ivory);
}

.button-ivory:hover {
  background: var(--white);
  color: var(--forest);
  transform: translateY(-1px);
}

.button-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.button-outline:hover {
  background: var(--forest);
  color: var(--ivory);
}

.section-forest .button-outline {
  color: var(--ivory);
  border-color: var(--ivory);
}

.section-forest .button-outline:hover {
  background: var(--ivory);
  color: var(--forest);
}

.button-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  min-height: 38px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ==========================================================================
   Top bar + header
   ========================================================================== */
.top-bar {
  background: var(--forest-deep);
  color: var(--sage);
  font-size: 0.8rem;
}

.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.top-bar-contact {
  display: flex;
  gap: 1.25rem;
}

.top-bar-contact a {
  color: var(--ivory);
}

.top-bar-contact a:hover {
  color: var(--sand);
}

@media (max-width: 640px) {
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-contact { justify-content: center; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid rgba(23, 60, 43, 0.12);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px -16px rgba(23, 60, 43, 0.35);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forest);
}

.brand:hover { color: var(--botanical); }

.brand-word {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(23, 60, 43, 0.2);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--forest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a:not(.button) {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:not(.button):hover { color: var(--botanical); }

@media (max-width: 900px) {
  /* No-JS fallback: nav links simply stack below the brand row. */
  .nav-shell { flex-wrap: wrap; }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding-top: 0.5rem;
  }

  .nav-links a.button { width: 100%; text-align: center; }

  /* Once JS has run, upgrade to the off-canvas hamburger panel. */
  html.js-enhanced .nav-toggle { display: flex; }

  html.js-enhanced .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--ivory);
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 6rem 2rem 2rem;
    padding-top: 6rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -20px 0 40px rgba(23, 60, 43, 0.15);
  }

  html.js-enhanced .nav-links[data-open="true"] {
    transform: translateX(0);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(16, 42, 30, 0.94) 0%, rgba(23, 60, 43, 0.8) 55%, rgba(23, 60, 43, 0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--space-6) 0;
}

.hero .eyebrow { color: var(--sage); }

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  margin-bottom: var(--space-3);
}

.hero-lede {
  font-size: 1.2rem;
  max-width: 46ch;
  color: var(--ivory);
  opacity: 0.9;
  margin-bottom: var(--space-4);
}

.hero-service-area {
  margin-top: var(--space-3);
  font-size: 0.92rem;
  color: var(--sage);
  max-width: 48ch;
}

/* ==========================================================================
   Value strip
   ========================================================================== */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

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

@media (max-width: 480px) {
  .value-strip { grid-template-columns: 1fr; }
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: var(--space-3) var(--space-2);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  color: var(--botanical);
  border: 1px solid var(--sand);
}

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

.value-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

.about-media {
  position: relative;
}

.about-media .placeholder-panel--main {
  aspect-ratio: 4 / 5;
}

.about-media .placeholder-panel--accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1 / 1;
  bottom: -8%;
  left: -10%;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .about-media .placeholder-panel--accent {
    position: static;
    width: 100%;
    margin-top: var(--space-2);
    border-width: 0;
  }
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.about-copy p {
  color: var(--charcoal);
  opacity: 0.88;
}

/* ==========================================================================
   Placeholder image panels
   ========================================================================== */
.placeholder-panel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--botanical) 0%, var(--forest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 242, 233, 0.5);
}

.placeholder-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

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

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.services-grid-more {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

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

@media (max-width: 600px) {
  .services-grid-more { grid-template-columns: 1fr; }
}

.services-grid-more[hidden] { display: none; }

.service-card {
  background: var(--white);
  border: 1px solid rgba(23, 60, 43, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.service-card-media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.service-card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--botanical);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2.75rem;
  border: 3px solid var(--white);
  position: relative;
  z-index: 1;
}

.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin: 0;
}

.services-toggle-row {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

.services-toggle {
  background: transparent;
  border: 1.5px solid var(--botanical);
  color: var(--botanical);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.services-toggle:hover {
  background: var(--botanical);
  color: var(--white);
}

.services-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.services-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   Projects gallery
   ========================================================================== */
.gallery-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: calc(var(--space-4) * -1 + var(--space-2));
  margin-bottom: var(--space-3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: var(--space-2);
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
}

.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 3; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 2; }
}

.gallery-item .placeholder-panel {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(16, 42, 30, 0.85) 0%, rgba(16, 42, 30, 0) 100%);
  color: var(--ivory);
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.section-forest .gallery-note { color: var(--sand); }

/* Lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(90vw, 1000px);
  width: 100%;
}

.lightbox::backdrop {
  background: rgba(16, 26, 20, 0.82);
}

.lightbox-inner {
  position: relative;
  background: var(--forest-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-inner img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--forest-deep);
}

.lightbox-caption {
  color: var(--ivory);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246, 242, 233, 0.12);
  border: none;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(246, 242, 233, 0.25); }
.lightbox-close svg { width: 18px; height: 18px; }

/* ==========================================================================
   Why Maison Verte
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  display: flex;
  gap: var(--space-2);
}

.why-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246, 242, 233, 0.12);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg { width: 24px; height: 24px; }

.why-item h3 {
  font-size: 1.2rem;
  color: var(--ivory);
}

.why-item p {
  color: var(--ivory);
  opacity: 0.82;
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative;
}

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; }
}

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

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--botanical);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

/* ==========================================================================
   Service area
   ========================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: center;
}

@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

.area-cloud {
  position: relative;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}

.area-cloud .watermark-leaf {
  position: absolute;
  right: -10%;
  bottom: -15%;
  width: 55%;
  color: var(--sand);
  opacity: 0.5;
}

.area-tag {
  position: relative;
  z-index: 1;
  background: var(--ivory);
  border: 1px solid var(--sand);
  color: var(--forest);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   Consultation CTA band
   ========================================================================== */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  max-width: 50ch;
  margin: 0 auto var(--space-3);
  font-size: 1.05rem;
  opacity: 0.9;
}

.cta-band .button-row {
  justify-content: center;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field {
  margin-bottom: var(--space-2);
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--forest);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(23, 60, 43, 0.18);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--charcoal);
  min-height: 44px;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--botanical);
  background: var(--white);
}

.field-validation-error,
.validation-summary-errors ul {
  color: #a13636;
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: block;
}

.validation-summary-errors {
  background: #fbe9e9;
  border: 1px solid #e3b3b3;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: var(--space-2);
}

.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.9;
}

.form-consent input {
  margin-top: 0.2rem;
  min-height: auto;
  width: auto;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info-card {
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: var(--ivory);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: var(--space-3) 0;
}

.contact-info-list a,
.contact-info-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory);
  font-size: 0.95rem;
}

.contact-info-list svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex: none;
}

.contact-info-card .button-row {
  margin-top: var(--space-3);
}

/* ==========================================================================
   Simple content pages (Privacy / Thank you)
   ========================================================================== */
.page-hero {
  background: var(--forest);
  color: var(--ivory);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.page-body {
  padding: var(--space-5) 0;
  max-width: 760px;
  margin: 0 auto;
}

.page-body h2 {
  font-size: 1.5rem;
  margin-top: var(--space-4);
}

.page-body ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
}

.page-body li {
  margin-bottom: 0.4rem;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(246, 242, 233, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  color: var(--ivory);
}

.thank-you-icon svg { width: 32px; height: 32px; }

/* ==========================================================================
   Coming soon splash
   ========================================================================== */
.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.coming-soon-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: var(--space-4) 1.5rem;
}

.coming-soon-inner img {
  margin: 0 auto var(--space-3);
}

.coming-soon-inner h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  margin-bottom: 0.5rem;
}

.coming-soon-tagline {
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: var(--space-3);
}

.coming-soon-note {
  margin-top: var(--space-4);
  font-size: 0.82rem;
  color: var(--sand);
  opacity: 0.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: var(--sand);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-5) 1.5rem var(--space-4);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-col p {
  color: var(--sand);
  opacity: 0.85;
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-brand {
  color: var(--ivory);
  margin-bottom: var(--space-2);
}

.footer-brand:hover { color: var(--sand); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-2);
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(216, 201, 181, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}

.social-links a:hover {
  background: var(--botanical);
  border-color: var(--botanical);
  color: var(--white);
}

.footer-nav h2,
.footer-contact h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: var(--space-2);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--sand);
  font-size: 0.92rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--ivory);
}

.footer-bottom {
  border-top: 1px solid rgba(216, 201, 181, 0.18);
  padding: var(--space-2) 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--sand);
  opacity: 0.75;
}
