/* =========================================================
   Corrales Creamery — design system
   Sage + cream + warm ink. Editorial, soft, premium.
   ========================================================= */

:root {
  /* Palette */
  --sage: #7da88c;
  --sage-deep: #4f7a60;
  --sage-deeper: #3f6650;
  --sage-soft: #b9d2c4;
  --mint: #d6e7dd;
  --cream: #f6f2ea;
  --cream-2: #efe7d8;
  --paper: #fffdf9;
  --ink: #2a2420;
  --ink-2: #3d352c;
  --muted: #6c6253;
  --line: #e7dfce;
  --accent: #bf9149;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 1px 2px rgba(33, 38, 31, .04), 0 18px 40px -24px rgba(33, 38, 31, .28);
  --shadow-soft: 0 14px 50px -30px rgba(33, 38, 31, .45);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--sage-deep); outline-offset: 3px; border-radius: 4px; }

/* Subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--cream { background: var(--cream-2); }
.section--sage { background: var(--sage-deep); color: var(--cream); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 460;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--ink);
  text-wrap: balance;
}
.section--sage .display { color: var(--cream); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.7;
  text-wrap: pretty;
}
.section--sage .lead { color: #e8efe7; }
.eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .6; }
.eyebrow--light { color: var(--sage-soft); }

.section__head { max-width: 40ch; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__head--left .eyebrow { justify-content: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--bg); color: #fff;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: .85rem 1.5rem; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease;
  box-shadow: 0 10px 24px -14px rgba(63, 102, 80, .9);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--sage-deeper); box-shadow: 0 16px 30px -16px rgba(63, 102, 80, .95); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--small { padding: .6rem 1.15rem; font-size: .86rem; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); box-shadow: inset 0 0 0 1.5px #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 1.15rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s var(--ease);
}
.nav.scrolled { background: rgba(246, 242, 234, .82); backdrop-filter: saturate(150%) blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav.scrolled .nav__inner { padding-block: .75rem; }
.nav__brand { display: inline-flex; align-items: center; line-height: 0; }
.nav__logo { height: 46px; width: auto; display: block; transition: height .4s var(--ease); }
.nav__logo--dark { display: none; }
.nav.scrolled .nav__logo { height: 40px; }
.nav.scrolled .nav__logo--light { display: none; }
.nav.scrolled .nav__logo--dark { display: block; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.1rem); }
.nav__links > a:not(.btn) {
  color: rgba(255, 255, 255, .92); font-weight: 600; font-size: .95rem; position: relative; transition: color .3s ease;
}
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0; background: currentColor; transition: width .3s var(--ease);
}
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav.scrolled .nav__links > a:not(.btn) { color: var(--ink-2); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem var(--gutter) 6rem;
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(23, 30, 24, .78) 0%, rgba(23, 30, 24, .25) 45%, rgba(23, 30, 24, .35) 100%),
    linear-gradient(to right, rgba(23, 30, 24, .55), rgba(23, 30, 24, .05));
}
.hero__content { max-width: 760px; margin-inline: auto; width: 100%; }
.hero__title {
  font-family: var(--serif); font-weight: 450; font-optical-sizing: auto;
  font-size: clamp(2.7rem, 7.5vw, 5.6rem); line-height: 1.0; letter-spacing: -.02em;
  margin: .4rem 0 1.4rem; text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}
.rotator { display: inline-grid; overflow: hidden; vertical-align: bottom; line-height: 1.16; }
.rotator__word { grid-area: 1 / 1; justify-self: center; white-space: nowrap; color: var(--accent); font-style: italic; opacity: 0; transform: translateY(110%); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.rotator__word.is-active { opacity: 1; transform: translateY(0); }
.rotator__word.is-leaving { opacity: 0; transform: translateY(-110%); }
.hero__lede { font-size: clamp(1.08rem, 1.8vw, 1.35rem); max-width: 50ch; color: #f3f1ea; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__badge {
  position: absolute; bottom: 2rem; right: var(--gutter);
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: .6rem 1.05rem; border-radius: 100px; font-size: .82rem; font-weight: 600; letter-spacing: .01em;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-soft); box-shadow: 0 0 0 4px rgba(185, 210, 196, .25); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: .95rem 0; }
.marquee__track { display: inline-flex; gap: 2rem; white-space: nowrap; animation: marquee 28s linear infinite; font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.marquee__track span { opacity: .9; }
.marquee__track span:nth-child(even) { color: var(--sage-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Brand crest ---------- */
.brand { background: var(--sage); text-align: center; }
.brand__inner { display: flex; flex-direction: column; align-items: center; }
.brand__mark { width: clamp(220px, 32vw, 340px); height: auto; margin-bottom: 1.5rem; }
.brand__line { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: var(--ink); max-width: 26ch; line-height: 1.3; }

/* ---------- Intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.intro__points { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .65rem; }
.intro__points li { position: relative; padding-left: 1.7rem; font-weight: 500; color: var(--ink-2); }
.intro__points li::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; border-radius: 50%; background: var(--sage); }
.intro__note { margin-top: 1.2rem; font-size: .92rem; color: var(--muted); }
.intro__note a { color: var(--sage-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.intro__figure { position: relative; }
.intro__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.intro__figure figcaption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(255, 253, 249, .9); backdrop-filter: blur(6px);
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink);
  padding: .7rem 1.1rem; border-radius: 12px; text-align: center;
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -34px rgba(33, 38, 31, .4); }
.card__icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--mint); color: var(--sage-deeper); margin-bottom: 1.3rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin-bottom: .55rem; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: .98rem; }

/* ---------- Experience ---------- */
.experience__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.experience__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.steps { margin: 2rem 0 2.2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.steps__num { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--sage-deep); background: var(--mint); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.steps h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .15rem; }
.steps p { color: var(--muted); font-size: .97rem; }

/* ---------- Events tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; max-width: 60rem; margin-inline: auto; }
.tags li {
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: .7rem 1.4rem; font-weight: 600; color: var(--ink-2); font-size: 1rem;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.tags li:hover { transform: translateY(-3px); background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }

/* ---------- Gallery mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.3rem); }
.mosaic__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.mosaic__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic__item:hover img { transform: scale(1.05); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.about__figure { position: sticky; top: 6rem; }
.about__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); }
.about__story { display: flex; flex-direction: column; gap: 1rem; }
.about__story p { color: #eef3ec; font-size: 1.03rem; line-height: 1.72; max-width: 60ch; }
.about__signoff { margin-top: 1.5rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--mint); }

/* ---------- Booking ---------- */
.book__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.book__intro { position: sticky; top: 6.5rem; }
.book__mark { width: 90px; height: auto; margin-bottom: 1.3rem; }
.book__assurances { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.book__assurances li { display: flex; align-items: center; gap: .75rem; color: var(--ink-2); font-weight: 500; }
.book__assurances svg { width: 20px; height: 20px; color: var(--sage-deep); flex-shrink: 0; }
.book__assurances a { color: var(--sage-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.book__form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: var(--ink-2); text-transform: uppercase; }
.field label span { color: var(--accent); }
.field__hint { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  padding: .8rem .95rem; width: 100%; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa092; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: var(--paper); box-shadow: 0 0 0 4px rgba(125, 168, 140, .18);
}
.field.invalid input, .field.invalid select { border-color: #cf6b5a; box-shadow: 0 0 0 4px rgba(207, 107, 90, .14); }
.field--honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.book__formnote { grid-column: 1 / -1; font-size: .82rem; color: var(--muted); text-align: center; margin-top: -.2rem; }
#submitBtn { grid-column: 1 / -1; margin-top: .4rem; }
#submitBtn[disabled] { opacity: .65; cursor: progress; }

.form-status { grid-column: 1 / -1; border-radius: 14px; padding: 0; max-height: 0; overflow: hidden; opacity: 0; transition: all .45s var(--ease); }
.form-status.show { max-height: 240px; opacity: 1; padding: 1.1rem 1.2rem; margin-top: .3rem; }
.form-status.success { background: var(--mint); color: var(--sage-deeper); }
.form-status.error { background: #fbe6e1; color: #a23b2a; }
.form-status h4 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin-bottom: .2rem; }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 760px; margin-inline: auto; }
.accordion { display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.acc { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: box-shadow .3s ease; }
.acc:has(.acc__q[aria-expanded="true"]) { box-shadow: var(--shadow); }
.acc__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.4rem; font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.acc__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--sage-deep); border-radius: 2px; transition: transform .35s var(--ease); }
.acc__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.acc__q[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc__a > p { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.acc.is-open .acc__a { max-height: 320px; }

/* ---------- Testimonials ---------- */
.tcols { display: flex; justify-content: center; gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); max-height: 620px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent); }
.tcol { width: min(86vw, 330px); flex-shrink: 0; }
.tcol--b, .tcol--c { display: none; }
.tcol__track { display: flex; flex-direction: column; gap: clamp(1rem, 2vw, 1.6rem); animation: tscroll 32s linear infinite; }
.tcol--b .tcol__track { animation-duration: 40s; }
.tcol--c .tcol__track { animation-duration: 36s; }
.tcols:hover .tcol__track { animation-play-state: paused; }
@keyframes tscroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 1.7rem 1.6rem; box-shadow: var(--shadow); }
.tcard__stars { color: var(--accent); letter-spacing: 2px; font-size: .85rem; margin-bottom: .7rem; }
.tcard blockquote { font-size: 1rem; line-height: 1.62; color: var(--ink-2); }
.tcard figcaption { margin-top: 1.1rem; }
.tcard__name { display: block; font-weight: 700; color: var(--ink); }
.tcard__role { display: block; color: var(--muted); font-size: .88rem; }
@media (min-width: 760px) { .tcol--b { display: block; } }
@media (min-width: 1040px) { .tcol--c { display: block; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfd2c9; padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { height: 60px; width: auto; display: block; }
.footer__brand p { margin-top: .9rem; color: #9ca096; max-width: 32ch; }
.footer__col h5 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-soft); margin-bottom: 1.1rem; font-weight: 700; }
.footer__col a { display: block; color: #cfd2c9; padding: .3rem 0; transition: color .25s ease; }
.footer__col a:hover { color: #fff; }
.footer__base { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__base p { font-size: .85rem; color: #8b8f85; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .intro__grid, .experience__grid, .about__grid, .book__grid, .cards { grid-template-columns: 1fr; }
  .cards { gap: 1.1rem; }
  .experience__grid .experience__figure { order: -1; }
  .book__intro, .about__figure { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav__toggle { display: flex; }
  .nav__logo { height: 54px; }
  .nav.scrolled .nav__logo { height: 46px; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--cream); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.2rem; transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0, 0, 0, .5);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links > a:not(.btn) { color: var(--ink) !important; font-size: 1.15rem; }
  .nav__links .btn { width: 100%; }
  .book__form { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__item:first-child { grid-column: 1 / -1; }
  .hero__badge { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
