/* ==========================================================================
   Maison Verte — Example 3 "Ivory Editorial with Black Accents" — design tokens
   Palette anchored to the supplied signature artwork (near-black, forest/leaf
   green, antique gold, ivory, sand, ginger pink, burgundy).
   ========================================================================== */
:root {
  --near-black: #080908;
  --forest: #173c2b;
  --leaf: #263b27;
  --gold: #b79a5b;
  --gold-soft: #d4bd8c;
  --ivory: #f6f2e9;
  --ivory-deep: #eee6d4;
  --sand: #d8c9b5;
  --ginger: #c84f6f;
  --burgundy: #7e263f;
  --white: #ffffff;
  --ink: #23211d;

  --line-gold: rgba(183, 154, 91, 0.35);
  --line-gold-on-black: rgba(183, 154, 91, 0.3);
  --error: #7e263f;
  --error-bg: #f6e6ea;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 20px 44px -26px rgba(8, 9, 8, 0.4);
  --shadow-card: 0 10px 26px -18px rgba(8, 9, 8, 0.3);

  --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: 7rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -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.18;
  margin: 0 0 var(--space-2);
  color: var(--near-black);
}

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

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

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

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(--near-black);
  color: var(--gold);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  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(--ink); }
.section-sand { background: var(--ivory-deep); color: var(--ink); }
.section-forest { background: var(--near-black); color: var(--ivory); }
.section-forest a:not(.button) { color: var(--gold-soft); }
.section-forest h2, .section-forest h3 { color: var(--ivory); }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

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

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

.section-lede {
  font-size: 1.08rem;
  color: var(--ink);
  opacity: 0.82;
}

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

/* Signature divider */
.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  margin: 0;
  padding: var(--space-3) 0 0;
}

.divider::before,
.divider::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  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(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}

.button-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--near-black);
  transform: translateY(-1px);
}

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

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

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

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

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

.section-forest .button-outline:hover {
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}

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

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

/* ==========================================================================
   Top bar + header (near-black, gold wordmark)
   ========================================================================== */
.top-bar {
  background: var(--near-black);
  color: var(--sand);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line-gold-on-black);
}

.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(--gold);
}

@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(--near-black);
  border-bottom: 1px solid var(--line-gold-on-black);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px -20px rgba(8, 9, 8, 0.6);
}

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

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

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

.brand svg { color: var(--gold); width: 22px; height: 22px; }

.brand-word-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-subword {
  display: none;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.15rem;
}

@media (min-width: 640px) {
  .brand-subword { display: block; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-gold-on-black);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
  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(--ivory);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

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

@media (max-width: 900px) {
  .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; }

  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(--near-black);
    border-left: 1px solid var(--line-gold-on-black);
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -20px 0 40px rgba(8, 9, 8, 0.4);
  }

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

/* ==========================================================================
   Hero — ivory copy panel + framed signature-artwork panel
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ivory);
  color: var(--near-black);
  overflow: hidden;
  min-height: 84vh;
  display: flex;
  align-items: center;
}

.hero .container {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: center;
}

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

.hero-inner {
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-bottom: var(--space-3);
}

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

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

.hero-signature {
  display: flex;
  justify-content: center;
}

.hero-signature-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--near-black);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-signature-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  .hero-signature { order: 2; }
  .hero-signature-frame { max-width: 380px; margin: 0 auto; }
}

/* ==========================================================================
   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);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--near-black);
  color: var(--gold);
}

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

.value-item strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--near-black);
}

/* ==========================================================================
   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;
  border: 1px solid var(--line-gold);
}

.about-media .placeholder-panel--accent {
  position: absolute;
  width: 52%;
  aspect-ratio: 1 / 1;
  bottom: -8%;
  left: -10%;
  border: 6px solid var(--ivory);
  outline: 1px solid var(--gold);
  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(--ink);
  opacity: 0.88;
}

/* ==========================================================================
   Placeholder image panels
   ========================================================================== */
.placeholder-panel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(150deg, var(--leaf) 0%, var(--near-black) 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 var(--line-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

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

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

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

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

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

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

.service-card p {
  font-size: 0.94rem;
  color: var(--ink);
  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(--near-black);
  color: var(--near-black);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.services-toggle:hover {
  background: var(--near-black);
  color: var(--gold);
}

.services-toggle svg {
  width: 15px;
  height: 15px;
  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(--gold-soft);
  margin-top: calc(var(--space-4) * -1 + var(--space-2));
  margin-bottom: var(--space-3);
}

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

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

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-gold-on-black);
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
}

.gallery-item .placeholder-panel {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(8, 9, 8, 0.9) 0%, rgba(8, 9, 8, 0) 100%);
  color: var(--ivory);
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  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(--gold-soft); }

/* Lightbox */
.lightbox {
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0;
  background: transparent;
  max-width: min(90vw, 1000px);
  width: 100%;
}

.lightbox::backdrop {
  background: rgba(8, 9, 8, 0.86);
}

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

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

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

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(183, 154, 91, 0.15);
  border: 1px solid var(--line-gold-on-black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(183, 154, 91, 0.3); }
.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: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(183, 154, 91, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.why-item p {
  color: var(--ivory);
  opacity: 0.8;
  font-size: 0.94rem;
  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 {
  width: 62px;
  height: 62px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--near-black);
}

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

.process-step p {
  font-size: 0.94rem;
  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(--line-gold);
  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: 200px;
}

.area-tag {
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--near-black);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.area-tag:hover {
  background: var(--gold);
  color: var(--near-black);
}

/* ==========================================================================
   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.85;
}

.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(--line-gold);
  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.83rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--near-black);
}

.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 var(--sand);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--ink);
  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(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(183, 154, 91, 0.18);
}

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

.validation-summary-errors {
  background: var(--error-bg);
  border: 1px solid var(--error);
  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(--ink);
  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(--near-black);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--line-gold-on-black);
}

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

.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.94rem;
}

.contact-info-list a:hover { color: var(--gold); }

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

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

/* ==========================================================================
   Simple content pages (Privacy / Thank you)
   ========================================================================== */
.page-hero {
  background: var(--near-black);
  color: var(--ivory);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
  border-bottom: 1px solid var(--line-gold-on-black);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  color: var(--ivory);
}

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

.page-body h2 {
  font-size: 1.45rem;
  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: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(183, 154, 91, 0.14);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  color: var(--gold);
}

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

/* ==========================================================================
   Coming soon splash — artwork centered in a dark framed panel
   ========================================================================== */
.coming-soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  background: var(--ivory);
  padding: var(--space-4) 1.5rem;
}

.coming-soon-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.coming-soon-artwork {
  background: var(--near-black);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  margin: 0 auto var(--space-3);
}

.coming-soon-artwork img {
  width: 100%;
  border-radius: var(--radius-md);
}

.coming-soon-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: var(--space-3);
}

.coming-soon-note {
  margin-top: var(--space-4);
  font-size: 0.78rem;
  color: var(--forest);
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--near-black);
  color: var(--sand);
  border-top: 1px solid var(--line-gold-on-black);
}

.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(--gold);
  margin-bottom: var(--space-2);
}

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

.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 var(--line-gold-on-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}

.footer-nav h2,
.footer-contact h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  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(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--line-gold-on-black);
  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;
}
