/* ============================================================
   Blue River Weddings — main.css v4
   Palette · Typography · Animations · Layout primitives
   ============================================================ */

/* -------- Palette (v4) -------- */
:root {
  --white:        #ffffff;
  --cream:        #faf7f2;
  --cream-warm:   #f4ece1;
  --warm-sand:    #c8956d;        /* warm sand accent (replaces blush) */
  --warm-sand-deep: #b78057;
  --warm-sand-soft: #e8c9af;
  --warm-charcoal:#2c2620;        /* primary text */
  --river:        #1e3a5f;        /* deep accent (optional) */
  --line:         rgba(44, 38, 32, 0.18);
  --line-soft:    rgba(44, 38, 32, 0.08);
  --divider:      #d4d4d4;        /* 1px horizontal divider */

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1440px;
  --container-narrow: 980px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 1px 2px rgba(44, 38, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 38, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 38, 32, 0.12);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--warm-charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  color: var(--warm-charcoal);
}
p { margin: 0 0 1em; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--warm-sand); outline-offset: 3px; }

/* -------- Skip link -------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--warm-charcoal); color: var(--white);
  padding: 12px 20px; z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { left: 0; }

/* -------- Containers -------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* -------- Typography helpers -------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-charcoal);
  opacity: 0.65;
  margin: 0 0 18px;
  font-weight: 500;
}
.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.display-xl {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin: 0 0 18px;
}
.h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 12px;
}
.lead {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--warm-charcoal);
  opacity: 0.85;
  max-width: 55ch;
}

/* -------- Buttons (sharp, no border-radius) -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 220ms var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--warm-charcoal);
  color: var(--white);
  border-color: var(--warm-charcoal);
}
.btn-primary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--warm-charcoal);
  border-color: var(--warm-charcoal);
}
.btn-secondary:hover {
  background: var(--warm-charcoal);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--warm-charcoal);
  border-color: transparent;
  padding: 8px 0;
  border-bottom: 1px solid var(--warm-charcoal);
  border-radius: 0;
  letter-spacing: 0.18em;
}
.btn-ghost:hover { opacity: 0.65; }
.btn-sand {
  background: var(--warm-sand);
  color: var(--white);
  border-color: var(--warm-sand);
}
.btn-sand:hover {
  background: var(--warm-sand-deep);
  border-color: var(--warm-sand-deep);
  transform: translateY(-1px);
}
.btn-arrow::after {
  content: '→';
  font-family: var(--font-body);
  margin-left: 4px;
  transition: transform 220ms var(--ease-out);
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* -------- Pulse / hover helpers -------- */
.pulse-on-view { animation: gentle-pulse 3.2s ease-in-out infinite; }
@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

/* -------- Section primitives (FLAT — no gradients) -------- */
.section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--white);
  position: relative;
}
.section-tight { padding: clamp(48px, 7vw, 96px) 0; }
.section-cream      { background: var(--cream); }
.section-cream-warm { background: var(--cream-warm); }
.section-charcoal   { background: var(--warm-charcoal); color: var(--white); }
.section-charcoal h1,
.section-charcoal h2,
.section-charcoal h3,
.section-charcoal h4 { color: var(--white); }
.section-charcoal .lead,
.section-charcoal p  { color: rgba(255,255,255,0.85); }

/* Stack inline 1.2fr+1fr hero grids on mobile so titles don't word-wrap */
@media (max-width: 700px) {
  .grid[style*="grid-template-columns:1.2fr"],
  .grid[style*="grid-template-columns: 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* thin 1px divider between sections instead of gradients */
.section + .section,
.section-cream + .section,
.section-cream-warm + .section,
.section + .section-cream,
.section + .section-cream-warm {
  border-top: 1px solid var(--divider);
}

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

.center { text-align: center; }

/* -------- Section marker (00 / 01 numerals) -------- */
.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  font-family: var(--font-body);
}
.section-marker .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--warm-sand);
  letter-spacing: 0.12em;
}
.section-marker .label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-charcoal);
  opacity: 0.65;
}

/* -------- Side text (rotated vertical strip on left edge) -------- */
.side-text {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-charcoal);
  opacity: 0.7;
  font-weight: 500;
  z-index: 50;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 900px) { .side-text { display: none; } }

/* -------- Announcement bar -------- */
.announce {
  background: var(--warm-charcoal);
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.announce a {
  color: var(--warm-sand);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}
@media (max-width: 600px) {
  .announce { font-size: 0.7rem; letter-spacing: 0.14em; }
}

/* -------- Navigation -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm-charcoal);
}
.nav-logo .pip {
  width: 6px; height: 6px;
  background: var(--warm-sand);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-charcoal);
  position: relative;
  padding: 4px 0;
  transition: opacity 200ms;
}
.nav-links a:hover { opacity: 0.65; }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--warm-sand);
}
.nav-cta a {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--warm-charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 200ms;
}
.nav-cta a:hover { background: #000; }

.nav-burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  content: '';
  display: block;
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--warm-charcoal);
  transition: all 220ms var(--ease-out);
}
.nav-burger::before { top: 10px; }
.nav-burger span    { top: 15px; }
.nav-burger::after  { top: 20px; }
.nav-burger[aria-expanded="true"]::before { top: 15px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span    { opacity: 0; }
.nav-burger[aria-expanded="true"]::after  { top: 15px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: block; }
  .nav-links.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--white);
    z-index: 99;
  }
  .nav-links.is-open a {
    font-size: 1rem;
    letter-spacing: 0.24em;
  }
}

/* -------- Cards (generic) -------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* -------- Feature card (couples teaser) -------- */
.feature-card {
  display: block;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: transform 240ms var(--ease-out);
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card .blur-up {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}
.feature-card .blur-up img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.feature-card:hover .blur-up img { transform: scale(1.04); }
.feature-card-body {
  padding: 18px 4px 4px;
}
.feature-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  margin: 0 0 6px;
}
.feature-card-body p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0;
}

.section-feature-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .section-feature-card { grid-template-columns: 1fr; gap: 24px; } }

/* -------- Venue card (no photo) -------- */
.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
  height: 100%;
}
.venue-card:hover {
  transform: translateY(-2px);
  border-color: var(--warm-sand);
}
.venue-card-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  margin: 0 0 4px;
  line-height: 1.2;
}
.venue-card-loc {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 12px;
}
.venue-card-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0 0 16px;
  flex: 1;
}
.venue-card-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-sand);
  font-weight: 500;
  margin-top: auto;
}
.venue-card-link::after { content: ' →'; }

.venues-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 900px) { .venues-teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .venues-teaser-grid { grid-template-columns: 1fr; } }

/* -------- CTA block -------- */
.cta-block {
  background: var(--cream);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 24px;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.cta-block p {
  max-width: 48ch;
  margin: 0 auto 36px;
  font-size: 1.0625rem;
  opacity: 0.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* -------- Footer -------- */
.footer {
  background: var(--warm-charcoal);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer .container { padding: 0 24px; }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 48px;
}
.footer-logo .pip {
  width: 6px; height: 6px;
  background: var(--warm-sand);
  border-radius: 50%;
  display: inline-block;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-sand);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-col p {
  margin: 0 0 8px;
  font-size: 0.92rem;
  opacity: 0.85;
}
.footer-col a { color: var(--white); }
.footer-col a:hover { color: var(--warm-sand); opacity: 1; }
.footer-areas {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: 16px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* -------- Pull quote -------- */
.pull-quote {
  padding: clamp(72px, 10vw, 120px) 24px;
  text-align: center;
  background: var(--white);
}
.pull-quote::before, .pull-quote::after {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: var(--line);
  margin: 0 auto;
}
.pull-quote::before { margin-bottom: 36px; }
.pull-quote::after  { margin-top: 36px; }
.pull-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--warm-charcoal);
}
.pull-quote-attrib {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 18px;
}

/* -------- Marquee (banned-phrase free) -------- */
.marquee {
  background: var(--warm-charcoal);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
}
.marquee-item::after {
  content: '·';
  margin-left: 48px;
  color: var(--warm-sand);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* -------- Process step -------- */
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}
.process-step:first-child { border-top: 1px solid var(--line-soft); }
.process-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--warm-sand);
  flex-shrink: 0;
  width: 64px;
}
.process-step-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.process-step p {
  margin: 0;
  font-size: 1.02rem;
  opacity: 0.85;
  max-width: 60ch;
}

/* -------- Animations -------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }

/* Ken Burns slow zoom */
.ken-burns {
  overflow: hidden;
}
.ken-burns img {
  animation: kenburns 14s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes kenburns {
  from { transform: scale(1)    translateY(0); }
  to   { transform: scale(1.08) translateY(-2%); }
}

/* Parallax target */
[data-parallax] {
  will-change: transform;
  transition: transform 60ms linear;
}

/* -------- Custom cursor (desktop only) -------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--warm-sand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 120ms var(--ease-out);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
}

/* -------- Scroll progress (top bar) -------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--warm-sand);
  z-index: 9999;
  transition: width 80ms linear;
}

/* -------- Cookie consent banner -------- */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--warm-charcoal);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 200;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 220px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button {
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}
.cookie-actions .cookie-accept {
  background: var(--warm-sand);
  border-color: var(--warm-sand);
  color: var(--white);
}
.cookie-banner.is-hidden { display: none; }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1; }
}

/* -------- Blur-up lazy image -------- */
.blur-up {
  position: relative;
  overflow: hidden;
  background: var(--cream-warm);
}
.blur-up img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(14px);
  transform: scale(1.06);
  transition: filter 700ms var(--ease-out), transform 1.4s var(--ease-out), opacity 700ms var(--ease-out);
  opacity: 0.7;
}
.blur-up.is-loaded img {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

/* -------- Form basics -------- */
.field {
  display: block;
  margin-bottom: 24px;
}
.field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-charcoal);
  margin-bottom: 8px;
}
.field-input, .field-select, .field-textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--warm-charcoal);
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
  color: var(--warm-charcoal);
  transition: border-color 240ms var(--ease-out), padding 240ms var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}
.field-textarea { min-height: 120px; resize: vertical; padding: 12px 0; }
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-bottom-color: var(--warm-sand);
  border-bottom-width: 2px;
  padding-bottom: 13px;
}
.field-input::placeholder, .field-textarea::placeholder { color: rgba(44, 38, 32, 0.4); }
.field-help { font-size: 0.8rem; opacity: 0.65; margin-top: 6px; }
.field-error { font-size: 0.8rem; color: #b53737; margin-top: 6px; display: none; }
.field.is-error .field-input,
.field.is-error .field-select,
.field.is-error .field-textarea { border-bottom-color: #b53737; }
.field.is-error .field-error { display: block; }

/* -------- Utility -------- */
.text-center { text-align: center; }
.muted { opacity: 0.7; }
.italic { font-style: italic; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

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

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}