/* ============================================================
   Estaca Caracas — Conferencia Mayo 2026
   Editorial, warm, reverent. Inspired by the liquidink-style
   scroll-driven experience, adapted for a sacred context.
   ============================================================ */

:root {
  --cream: #fdf8f2;
  --cream-2: #f6efe2;
  --cream-3: #efe5d2;
  --ink: #2a1a0a;
  --ink-soft: #3a2510;
  --ink-mute: #6a4a28;
  --muted: #9a7450;
  --muted-soft: #b8956a;
  --gold: #c9853a;
  --gold-deep: #a56a24;
  --rule: rgba(201, 133, 58, 0.22);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --section-pad: clamp(80px, 12vh, 160px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(201, 133, 58, 0.28); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Eyebrow / shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow--light { color: rgba(253, 248, 240, 0.85); }
.eyebrow--muted { color: var(--muted); font-weight: 500; }

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 96px);
}
.section-header .eyebrow { margin-bottom: 22px; }

.section-title,
.invitation__headline,
.contact__headline,
.preside__name {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(42px, 8vw, 120px);
}
.section-title em,
.invitation__headline em,
.contact__headline em,
.preside__name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(253, 248, 242, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.nav__brand span {
  font-style: italic;
  color: var(--gold);
}
.nav.is-scrolled .nav__brand { color: var(--ink); }

.nav__meta {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}
.nav__date {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(253, 248, 240, 0.8);
  transition: color 0.4s var(--ease);
}
.nav.is-scrolled .nav__date { color: var(--muted); }
@media (max-width: 640px) { .nav__date { display: none; } }

.nav__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.nav.is-scrolled .nav__toggle { color: var(--ink); }
.nav__toggle-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav__toggle-lines {
  position: relative;
  width: 28px;
  height: 16px;
}
.nav__toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.45s var(--ease), top 0.35s var(--ease);
}
.nav__toggle-lines span:nth-child(1) { top: 4px; }
.nav__toggle-lines span:nth-child(2) { top: 11px; }

/* ---------- Overlay menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}
.menu__bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform 0.9s var(--ease);
}
.menu__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(201, 133, 58, 0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 90%, rgba(201, 133, 58, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.8s 0.3s var(--ease);
}
.menu__inner {
  position: relative;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) var(--pad) 48px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vh, 72px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.menu__meta .menu__subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  color: rgba(253, 248, 240, 0.8);
  margin-top: 10px;
}
.menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.8vh, 12px);
  flex: 1;
}
.menu__list li {
  overflow: hidden;
}
.menu__list a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--cream);
  font-size: clamp(48px, 10vw, 132px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease), color 0.3s var(--ease);
  position: relative;
}
.menu__list a::before {
  content: attr(data-num);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--gold);
  width: 36px;
  flex-shrink: 0;
  opacity: 0.9;
  transform: translateY(-8px);
}
.menu__list a:hover {
  color: var(--gold);
  font-style: italic;
}
.menu__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(253, 248, 240, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.5s var(--ease), transform 0.6s 0.5s var(--ease);
}
.menu__footer .eyebrow {
  color: var(--muted-soft);
  margin-bottom: 10px;
}
.menu__footer .menu__email,
.menu__footer .menu__place {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream);
  line-height: 1.5;
}
.menu__footer .menu__email { color: var(--gold); }
@media (max-width: 640px) {
  .menu__footer { grid-template-columns: 1fr; }
}

/* Open state */
body.menu-open { overflow: hidden; }
.menu.is-open { pointer-events: auto; visibility: visible; }
.menu.is-open .menu__bg { transform: translateY(0); }
.menu.is-open .menu__bg::after { opacity: 1; }
.menu.is-open .menu__inner { opacity: 1; transition-delay: 0.45s; }
.menu.is-open .menu__list a { transform: translateY(0); }
.menu.is-open .menu__list li:nth-child(1) a { transition-delay: 0.50s; }
.menu.is-open .menu__list li:nth-child(2) a { transition-delay: 0.58s; }
.menu.is-open .menu__list li:nth-child(3) a { transition-delay: 0.66s; }
.menu.is-open .menu__list li:nth-child(4) a { transition-delay: 0.74s; }
.menu.is-open .menu__footer { opacity: 1; transform: translateY(0); }

/* Toggle to X */
body.menu-open .nav__toggle { color: var(--cream); }
body.menu-open .nav__toggle-lines span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
body.menu-open .nav__toggle-lines span:nth-child(2) {
  top: 8px;
  transform: rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: 30% center;
  transform: scale(1.08);
  will-change: transform;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.0) 60%, rgba(42,26,10,0.78) 100%),
    radial-gradient(1200px 700px at 70% 60%, rgba(42,26,10,0.65) 0%, transparent 70%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 var(--pad);
  text-align: center;
}
.hero__content .eyebrow { margin-bottom: 22px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--cream);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__title .mask-reveal { display: block; }
.hero__title .mask-reveal--italic .mask-reveal__inner {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__ornament {
  color: var(--gold);
  margin: 8px auto 28px;
  display: flex;
  justify-content: center;
}
.hero__scripture {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(253, 248, 240, 0.92);
  margin-bottom: 18px;
  max-width: 600px;
  margin-inline: auto;
}
.hero__scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(253, 248, 240, 0.7);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(253,248,240,0.8), rgba(253,248,240,0));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- Mask reveal ---------- */
.mask-reveal {
  display: block;
  overflow: hidden;
  padding: 0.08em 0;
}
.mask-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.hero.is-ready .mask-reveal:nth-child(1) .mask-reveal__inner { transition-delay: 0.15s; }
.hero.is-ready .mask-reveal:nth-child(2) .mask-reveal__inner { transition-delay: 0.28s; }
.hero.is-ready .mask-reveal:nth-child(3) .mask-reveal__inner { transition-delay: 0.42s; }
.hero.is-ready .mask-reveal__inner { transform: translateY(0); }

/* Line reveals on other sections */
.line-reveal {
  display: block;
  overflow: hidden;
  padding: 0.08em 0;
}
.line-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.is-inview .line-reveal > span { transform: translateY(0); }
.is-inview .line-reveal:nth-child(2) > span { transition-delay: 0.1s; }
.is-inview .line-reveal:nth-child(3) > span { transition-delay: 0.2s; }

/* Generic reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INVITATION
   ============================================================ */
.invitation {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}
.invitation .eyebrow { margin-bottom: 24px; }
.invitation__headline {
  margin-bottom: 72px;
  max-width: 14ch;
}
.invitation__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.invitation__body p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}
.invitation__body p + p { margin-top: 24px; }

.invitation__figure {
  position: relative;
}
.figure-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-3);
  box-shadow: 0 30px 80px -30px rgba(42, 26, 10, 0.35);
}
.figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.6s var(--ease);
}
.figure-frame:hover img { transform: scale(1.0); }
.figure-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 1;
  transform-origin: top;
  transition: transform 1.2s var(--ease);
}
.is-inview .figure-frame::before { transform: scaleY(0); transform-origin: bottom; }
.caption {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 820px) {
  .invitation__grid { grid-template-columns: 1fr; }
  .invitation__figure { margin-top: 20px; max-width: 480px; }
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
  padding: var(--section-pad) 0;
  background: var(--cream-2);
  position: relative;
}
.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 64px;
}
.day__head {
  margin-bottom: 36px;
}
.day__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.day__name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  color: var(--ink);
}
.day__date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.day__rule {
  height: 1px;
  background: var(--rule);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease) 0.2s;
}
.is-inview .day__rule { transform: scaleX(1); }

.day__sessions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.day__sessions li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.day__sessions li:last-child { border-bottom: 0; padding-bottom: 0; }
.day__sessions .time {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 6px;
}
.day__sessions h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
}
.day__sessions p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.schedule__callout {
  text-align: center;
  padding: clamp(40px, 6vh, 64px) 32px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: rgba(201, 133, 58, 0.05);
  max-width: 780px;
  margin: 0 auto;
}
.callout__phrase {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.3;
}
.callout__phrase em { color: var(--gold); font-weight: 400; }
.callout__sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

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

/* ============================================================
   PRESIDE
   ============================================================ */
.preside {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.preside__media {
  position: absolute;
  inset: -10% 0;
  z-index: -1;
  opacity: 0.28;
}
.preside__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.preside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,26,10,0.85), rgba(42,26,10,0.75) 50%, rgba(42,26,10,0.95)),
    radial-gradient(800px 500px at 20% 30%, rgba(201,133,58,0.15), transparent 65%);
  z-index: -1;
}
.preside__inner {
  text-align: center;
  position: relative;
}
.preside__inner .eyebrow { margin-bottom: 22px; }
.preside__name {
  color: var(--cream);
  margin-bottom: 16px;
}
.preside__name em { color: var(--gold); }
.preside__role {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 56px;
  font-weight: 500;
}
.preside__portrait {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.portrait-frame {
  position: relative;
  width: 220px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,133,58,0.35);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.6s var(--ease);
}
.portrait-frame:hover img { transform: scale(1.04); }
.preside__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(253, 248, 240, 0.9);
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(253,248,240,0.15);
  border-bottom: 1px solid rgba(253,248,240,0.15);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.location__text .eyebrow { margin-bottom: 12px; }
.location__address {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 32px;
}
.location__details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.location__details p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-soft);
}
.location__details a { color: var(--gold); }
.location__details a:hover { color: var(--gold-deep); }

.location__map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream-3);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -40px rgba(42, 26, 10, 0.3);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1);
}

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

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }

.btn--solid {
  background: var(--gold);
  color: var(--cream);
}
.btn--solid:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--ink-soft);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.contact__media {
  position: absolute;
  inset: -10% 0;
  z-index: -1;
  opacity: 0.22;
}
.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,26,10,0.85), rgba(42,26,10,0.95));
  z-index: -1;
}
.contact__inner {
  max-width: 760px;
  text-align: center;
}
.contact__inner .eyebrow { margin-bottom: 22px; }
.contact__headline {
  color: var(--cream);
  margin-bottom: 24px;
}
.contact__lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(253, 248, 240, 0.82);
  font-style: italic;
  margin-bottom: 48px;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-soft);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(253, 248, 240, 0.06);
  border: 1px solid rgba(253, 248, 240, 0.18);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(253, 248, 240, 0.1);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact__form button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}
.contact__sent {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  min-height: 1.6em;
}
@media (max-width: 640px) {
  .contact__form { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream-3);
  color: var(--muted);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer__brand em { color: var(--gold); }
.footer__meta {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mute);
}
.footer__meta a { color: var(--gold); }
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.footer__links a {
  font-size: 14px;
  color: var(--ink-mute);
  transition: color 0.25s var(--ease);
}
.footer__links a:hover { color: var(--gold); }

.footer__disclaimer {
  padding-top: 28px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.footer__disclaimer p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.footer__disclaimer strong { color: var(--ink-mute); }
.footer__copy {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted-soft);
}

@media (max-width: 780px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .mask-reveal__inner,
  .line-reveal > span,
  .reveal {
    transform: none !important;
    opacity: 1 !important;
  }
}
