/* ==========================================================================
   Maison Verte — Example 2 "Editorial Luxury" — design tokens
   ========================================================================== */
:root {
  --paper: #f3efe6;
  --paper-deep: #eae2cf;
  --cream: #fbf9f4;
  --ink: #16181b;
  --ink-soft: #3a3d38;
  --accent: #1f3d2e;
  --accent-soft: #7c9484;
  --stone: #c7bfae;
  --line: rgba(22, 24, 27, 0.15);
  --line-on-ink: rgba(243, 239, 230, 0.2);
  --error: #8a2f2f;
  --error-bg: #f3e6e2;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: 5rem;
  --space-6: 8rem;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--paper);
  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.05;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
  color: var(--ink);
}

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

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

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

.page-body a:not(.button),
.contact-form a:not(.button),
.form-consent a:not(.button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  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 3rem;
  }
}

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

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

.section-ivory { background: var(--paper); color: var(--ink-soft); }
.section-sand { background: var(--paper-deep); color: var(--ink-soft); }
.section-forest { background: var(--ink); color: var(--paper); }
.section-forest a:not(.button) { color: var(--accent-soft); }
.section-forest h2, .section-forest h3 { color: var(--paper); }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
}

.section-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  opacity: 0.85;
  max-width: 58ch;
}

.section-forest .section-lede { color: var(--paper); opacity: 0.78; }

/* Signature divider: thin rule, no icon */
.divider {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: var(--space-3) 0 0;
}

.divider::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--stone);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  min-height: 44px;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.button-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

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

.button-ivory:hover {
  background: var(--cream);
  color: var(--ink);
  opacity: 0.9;
}

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

.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

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

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

.button-small {
  padding: 0.7rem 1.3rem;
  font-size: 0.72rem;
  min-height: 38px;
}

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

/* ==========================================================================
   Top bar + header
   ========================================================================== */
.top-bar {
  background: var(--ink);
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.6rem 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.5rem;
}

.top-bar-contact a {
  color: var(--paper);
  text-decoration: none;
}

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

@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(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  border-bottom-color: var(--ink);
}

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

@media (min-width: 768px) {
  .nav-shell { padding: 1.1rem 3rem; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
}

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

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

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

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

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

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

.nav-links a:not(.button) {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

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

@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(340px, 88vw);
    height: 100vh;
    background: var(--paper);
    border-left: 1px solid var(--line);
    justify-content: flex-start;
    gap: 1.6rem;
    padding: 6rem 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

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

/* ==========================================================================
   Hero — asymmetric editorial split
   ========================================================================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 90vh;
  background: var(--paper);
  color: var(--ink);
}

.hero-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

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

.hero-scrim {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(243, 239, 230, 0) 12%);
  pointer-events: none;
}

.hero .container {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  display: flex;
  align-items: center;
  padding: var(--space-5) 2rem var(--space-5) 1.5rem;
}

@media (min-width: 768px) {
  .hero .container { padding: var(--space-5) 3rem var(--space-5) 3rem; }
}

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

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

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

.hero-service-area {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  opacity: 0.8;
  max-width: 46ch;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .hero-media, .hero-scrim {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-media { aspect-ratio: 4 / 3; }
  .hero-scrim {
    background: linear-gradient(0deg, var(--paper) 0%, rgba(243, 239, 230, 0) 18%);
  }
  .hero .container {
    grid-column: 1;
    grid-row: 2;
    padding: var(--space-4) 1.5rem;
  }
}

/* ==========================================================================
   Value strip — hairline-divided index row
   ========================================================================== */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@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;
  gap: 0.75rem;
  padding: var(--space-3) var(--space-3);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.value-item strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.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(--ink);
}

.about-media .placeholder-panel--accent {
  position: absolute;
  width: 48%;
  aspect-ratio: 1 / 1;
  bottom: -10%;
  right: -12%;
  left: auto;
  border: 6px solid var(--paper);
  outline: 1px solid var(--ink);
}

@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(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-copy p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}

/* ==========================================================================
   Placeholder image panels
   ========================================================================== */
.placeholder-panel {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(150deg, var(--accent) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 239, 230, 0.5);
}

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

/* ==========================================================================
   Services — editorial index list
   ========================================================================== */
.services-grid,
.services-grid-more {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

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

.service-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 640px) {
  .service-card { grid-template-columns: 96px 1fr; gap: var(--space-2); }
}

.service-card-media {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.85;
  margin: 0;
  max-width: 62ch;
}

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

.services-toggle {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 0;
  padding: 0.85rem 1.7rem;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.services-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

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

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

/* ==========================================================================
   Projects gallery — uniform editorial grid
   ========================================================================== */
.gallery-note {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: calc(var(--space-4) * -1 + var(--space-3));
  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: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.gallery-item .placeholder-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-on-ink);
}

.gallery-item .placeholder-panel img {
  filter: grayscale(0.55);
  transition: filter 0.25s ease;
}

.gallery-item:hover .placeholder-panel img,
.gallery-item:focus-visible .placeholder-panel img {
  filter: grayscale(0);
}

.gallery-caption {
  position: static;
  background: none;
  padding: 0;
  color: var(--paper);
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transform: none;
}

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

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

.lightbox::backdrop {
  background: rgba(22, 24, 27, 0.9);
}

.lightbox-inner {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

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

.lightbox-caption {
  color: var(--paper);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(243, 239, 230, 0.1);
  border: 1px solid var(--line-on-ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(243, 239, 230, 0.2); }
.lightbox-close svg { width: 16px; height: 16px; }

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

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

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-on-ink);
}

.why-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.why-item h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--paper);
}

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

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  border-top: 1px solid var(--line);
}

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

.process-step {
  text-align: left;
  padding-top: var(--space-3);
}

.process-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 500;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 38ch;
}

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

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

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

.area-cloud {
  border-top: 1px solid var(--ink);
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.area-tag {
  color: var(--ink);
  padding: 0.15rem 0;
}

.area-tag:not(:last-child)::after {
  content: "\00a0/\00a0";
  color: var(--stone);
}

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

.cta-band h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 500;
  max-width: 18ch;
  margin-left: 0;
  margin-right: 0;
}

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

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

/* ==========================================================================
   Contact — underline-style editorial form
   ========================================================================== */
.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: transparent;
  border: 0;
  padding: 0;
}

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

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

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

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  min-height: 44px;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
  padding: 0.7rem 0;
}

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

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

.validation-summary-errors {
  background: var(--error-bg);
  border: 1px solid var(--error);
  border-radius: 0;
  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-soft);
}

.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(--ink);
  color: var(--paper);
  border-radius: 0;
  padding: var(--space-4);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
}

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

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

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

.contact-info-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent-soft);
  flex: none;
}

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

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

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

.page-hero .container { text-align: left; }

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

.page-body h2 {
  font-size: 1.4rem;
  font-weight: 500;
  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: 56px;
  height: 56px;
  border-radius: 0;
  border: 1px solid var(--line-on-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--space-2);
  color: var(--paper);
}

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

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

.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-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

.coming-soon-note {
  margin-top: var(--space-4);
  font-size: 0.75rem;
  color: var(--stone);
  opacity: 0.85;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.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 (min-width: 768px) {
  .footer-grid { padding-left: 3rem; padding-right: 3rem; }
}

@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(--stone);
  opacity: 0.85;
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-brand {
  color: var(--paper);
  margin-bottom: var(--space-2);
  text-decoration: none;
}

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

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

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid var(--line-on-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
}

.social-links a:hover {
  border-color: var(--paper);
  color: var(--paper);
}

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

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

.footer-nav a,
.footer-contact a {
  color: var(--stone);
  font-size: 0.92rem;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid var(--line-on-ink);
  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.78rem;
  letter-spacing: 0.03em;
  color: var(--stone);
  opacity: 0.75;
}

@media (min-width: 768px) {
  .footer-bottom { padding-left: 3rem; padding-right: 3rem; }
}
