/* ─────────────────────────────────────────────────────────────────────────────
   Lola Wellness — Main Stylesheet
   Mobile-first, fully responsive.
   Brand tokens are in :root — change colours/fonts here and they flow everywhere.
───────────────────────────────────────────────────────────────────────────── */

/* ── Brand tokens ─────────────────────────────────────────────────────────── */
:root {
  --cream:  #F6F1E7;
  --sand:   #E9DFC7;
  --sage:   #8C9C7C;
  --olive:  #475137;
  --gold:   #AD8A4D;
  --ink:    #3B362B;
  --muted:  #5b5544;
  --line:   rgba(71, 81, 55, 0.25);

  /* Typography */
  --font-head:   'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body:   'Jost', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --gutter:      6%;

  /* Transitions */
  --ease: 0.3s ease;
}

/* ── Scroll-reveal ────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

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

html { scroll-behavior: smooth; }

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography helpers ───────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--olive);
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
}
.eyebrow--light { color: var(--sand); }

.script {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--gold);
}

/* ── Focus styles — visible for keyboard users ────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Selection colour ────────────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--cream); }

/* ── Screen-reader-only utility ───────────────────────────────────────────── */
.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;
}


/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem var(--gutter);
  z-index: 100;
  background: linear-gradient(to bottom, rgba(246,241,231,0.95), rgba(246,241,231,0));
  transition: background var(--ease);
}

/* Solid background once user scrolls */
#nav.scrolled {
  background: rgba(246, 241, 231, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-mark {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--olive);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-mark span {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 0.95rem;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--olive);
  padding: 0.55rem 1.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background var(--ease), color var(--ease);
}
.nav-cta:hover {
  background: var(--olive);
  color: var(--cream);
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--olive);
  transition: transform var(--ease), opacity var(--ease);
}
/* Animate to X when open */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── Mobile drawer ────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--cream);
  z-index: 200;
  padding: 5rem 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(59, 54, 43, 0.12);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: color var(--ease);
}
.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu__cta {
  margin-top: 1.8rem;
  display: inline-block;
  border: 1px solid var(--olive);
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--olive);
  transition: background var(--ease), color var(--ease);
}
.mobile-menu__cta:hover {
  background: var(--olive);
  color: var(--cream);
}

.mobile-menu__close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 54, 43, 0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Responsive nav ───────────────────────────────────────────────────────── */
@media (max-width: 780px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-arch {
  position: relative;
  width: min(560px, 86vw);
  aspect-ratio: 560 / 640;
}
.hero-arch svg { width: 100%; height: 100%; }

/* Hamsa hand accents either side of the arch */
.hero-hamsa {
  position: absolute;
  top: 18%;
  width: 50px;
  height: auto;
  z-index: 2;
}
.hero-hamsa--left  { left: 2%; }
.hero-hamsa--right { right: 2%; }
@media (max-width: 600px) {
  .hero-hamsa { display: none; }
}

.hero-text {
  margin-top: -2.4rem;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero h1 .script {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-top: 0.3rem;
}

.hero-sub {
  max-width: 420px;
  margin: 1.4rem auto 0;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.hero-sub--long { margin-top: 0.5rem; }

.hero-om {
  margin: 1.2rem 0 2rem;
  color: var(--gold);
  font-size: 1.2rem;
}

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

/* ── Hero chip tags ────────────────────────────────────────────────────────── */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem 0.55rem 0.9rem;
  border: 1px solid rgba(173,138,77,0.3);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(246,241,231,0.7);
  transition: border-color var(--ease), background var(--ease);
}
.hero-chip:hover {
  border-color: var(--gold);
  background: rgba(233,223,199,0.5);
}

.chip-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-chip { font-size: 0.65rem; padding: 0.5rem 1rem 0.5rem 0.8rem; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS (shared)
═══════════════════════════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--olive);
  color: var(--cream);
  padding: 0.9rem 2.1rem;
  border-radius: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover  { background: var(--gold); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  border: 1px solid var(--line);
  padding: 0.9rem 2.1rem;
  border-radius: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  transition: border-color var(--ease);
}
.btn-ghost:hover { border-color: var(--olive); }


/* ═══════════════════════════════════════════════════════════════════════════
   PULL QUOTE / STATEMENT STRIP
═══════════════════════════════════════════════════════════════════════════ */
.statement {
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.statement-inner {
  max-width: 760px;
  margin: 0 auto;
}
.statement blockquote p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--olive);
  line-height: 1.5;
}
.statement .by {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.statement-mandala {
  width: clamp(80px, 12vw, 110px);
  height: clamp(80px, 12vw, 110px);
  margin: 0 auto 2.5rem;
  animation: mandalaRotate 40s linear infinite;
}
.statement-mandala svg { width: 100%; height: 100%; }

@keyframes mandalaRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .statement-mandala { animation: none; }
}

.statement-body {
  margin-top: 2.4rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.85;
  color: var(--muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.statement-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  margin-top: 4rem;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
}

.statement-pillar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-icon {
  width: 48px;
  height: 48px;
}
.sp-icon svg { width: 100%; height: 100%; }

.sp-heading {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--olive);
  font-weight: 500;
}

.sp-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 680px) {
  .statement-pillars { grid-template-columns: 1fr; gap: 2.4rem; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES / PILLARS
═══════════════════════════════════════════════════════════════════════════ */
.pillars { padding: 2rem var(--gutter) var(--section-pad); }

.pillars-head {
  text-align: center;
  margin-bottom: 2rem;
}
.pillars-head .eyebrow { display: block; margin-bottom: 0.6rem; }
.pillars-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.pillars-tagline {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  color: var(--gold);
}

/* om + leaf divider beneath the pillars heading */
.om-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.om-divider .leaf { width: 50px; height: auto; opacity: 0.7; }
.om-divider .om {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}

/* ── Service cards (large split panels per service) ─── */
.services { padding: 0; }

.services-head {
  text-align: center;
  padding: var(--section-pad) var(--gutter) 3rem;
}
.services-head .eyebrow { display: block; margin-bottom: 0.6rem; }
.services-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.services-tagline {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ── Services overview icon strip ─────────────────── */
.services-overview {
  position: relative;
  padding: 3rem var(--gutter) 5rem;
  text-align: center;
  background: var(--sand);
  overflow: hidden;
}

.sov-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.sov-deco svg { width: 100%; height: 80px; }

.sov-icons {
  display: flex;
  justify-content: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  flex-wrap: wrap;
  margin-top: 2.5rem;
  align-items: flex-start;
}

.sov-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 240px;
}

.sov-icon-wrap {
  width: clamp(90px, 14vw, 120px);
  height: clamp(100px, 16vw, 132px);
}
.sov-icon-wrap svg { width: 100%; height: 100%; }

.sov-art-wrap {
  width: clamp(160px, 22vw, 220px);
  height: clamp(160px, 22vw, 220px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(173,138,77,0.25);
  box-shadow: 0 8px 40px rgba(71,81,55,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.sov-art-wrap:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 50px rgba(71,81,55,0.16);
}
.sov-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sov-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.6;
}
.sov-label strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
}

.sov-intro {
  max-width: 640px;
  margin: 0 auto 0.5rem;
  font-size: clamp(0.92rem, 1.7vw, 1.05rem);
  line-height: 1.85;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.sov-desc {
  max-width: 220px;
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
  margin-top: 0.3rem;
}

.sov-tagline {
  margin-top: 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.sov-leaves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.sov-leaf { width: 80px; height: 100px; opacity: 0.65; }
.sov-leaf--left { transform-origin: bottom left; }
.sov-leaf--right { transform-origin: bottom right; }

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  border-top: 1px solid var(--line);
}
.service-card--reverse { direction: rtl; }
.service-card--reverse > * { direction: ltr; }

.service-image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  min-height: 500px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-image svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.service-content {
  position: relative;
  padding: 4rem 4rem 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.service-deco {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 120px;
  pointer-events: none;
}
.service-card--reverse .service-deco {
  right: auto;
  left: 2rem;
}

.svc-hamsa {
  position: absolute;
  top: 2.4rem;
  right: 2.8rem;
  width: 46px;
  opacity: 0.9;
}

.svc-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.1rem;
  font-weight: 500;
}

.svc-heading {
  font-size: clamp(3.4rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.svc-tagline {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-style: italic;
}

.svc-om {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 2.4rem;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(71, 81, 55, 0.14);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 300;
}
.svc-list li:first-child { border-top: none; }

.svc-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .service-image { min-height: 320px; }
  .service-content { padding: 2.8rem var(--gutter); }
  .service-card--reverse .service-image { order: -1; }
  .svc-hamsa { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SACRED SPACE / ABOUT
═══════════════════════════════════════════════════════════════════════════ */
.sacred {
  background: var(--olive);
  color: var(--cream);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
}

.sacred-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sacred h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.8rem;
}
.sacred h2 .script { color: var(--sand); display: block; font-size: 1.5rem; margin-top: 0.3rem; }
.sacred-lead {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--sand);
  font-size: 1.15rem;
  max-width: 420px;
}

.sacred-list { margin-top: 2rem; }
.sacred-list div {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(246, 241, 231, 0.18);
  font-size: 0.92rem;
  color: rgba(246, 241, 231, 0.92);
}
.sacred-list div:first-child { border-top: none; }

.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot svg { width: 14px; height: 14px; }

.sacred-close {
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1.8;
}
.sacred-om {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.sacred-art {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 400px;
}
.sacred-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.sacred-art svg {
  width: 100%;
  max-width: 340px;
}

@media (max-width: 780px) {
  .sacred-inner { grid-template-columns: 1fr; }
  .sacred-art   { order: -1; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ENQUIRY FORM
═══════════════════════════════════════════════════════════════════════════ */
.enquiry { padding: var(--section-pad) var(--gutter); }

.enquiry-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.enquiry-head .eyebrow  { display: block; margin-bottom: 0.6rem; }
.enquiry-head h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.8rem; }
.enquiry-head p  { font-size: 0.95rem; color: var(--muted); max-width: 440px; margin: 0 auto 3rem; }

/* Form layout */
form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }

label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}
.optional { text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.68rem; }
.req      { color: var(--gold); }

input, select, textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--olive);
}
/* Visible focus for keyboard users */
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  border-bottom: 2px solid var(--olive);
}

textarea { resize: vertical; min-height: 80px; }

/* Inline validation errors */
.field-error {
  font-size: 0.72rem;
  color: #b04040;
  min-height: 1em;
  display: block;
}

/* Consent row */
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 1.6rem 0 0.4rem;
}
.consent input[type="checkbox"] {
  width: auto;
  accent-color: var(--olive);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.consent label {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.78rem;
  cursor: pointer;
}

.submit-row { display: flex; justify-content: center; margin-top: 2rem; }

/* Form feedback banners */
.form-feedback {
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: left;
}
.form-feedback--success {
  background: rgba(140, 156, 124, 0.18);
  border: 1px solid var(--sage);
  color: var(--olive);
}
.form-feedback--error {
  background: rgba(176, 64, 64, 0.08);
  border: 1px solid rgba(176, 64, 64, 0.4);
  color: #7a2e2e;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--sand);
  padding: 3.5rem var(--gutter) 2.2rem;
  text-align: center;
}

.footer-mark {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--olive);
}
.footer-mark span {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: -2px;
}

.footer-om {
  margin: 1.2rem 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.6rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links a {
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-fine {
  font-size: 0.7rem;
  color: #8a8470;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
