/* =========================================================
   Karol & Bruno — 20.02.2027
   Identidade: monograma K&B · verde-musgo, dourado e creme
   ========================================================= */

:root {
  --green: #363E2C;
  --green-deep: #2A3022;
  --green-soft: #5B6644;
  --gold: #A67E3C;
  --gold-soft: #C9A86A;
  --cream: #F6F1E4;
  --paper: #FBF8F0;
  --ink: #2E3426;
  --muted: #5F6452;
  --line: rgba(166, 126, 60, .45);
  --line-soft: rgba(54, 62, 44, .12);

  --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(80px, 12vw, 160px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 64px;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(166, 126, 60, .15);
  touch-action: manipulation;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 500; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 16px; background: var(--green); color: var(--cream);
  text-decoration: none; transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip:focus { transform: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Monograma (máscara recolorível) ---------- */
.mono {
  display: inline-block;
  aspect-ratio: 858 / 1000;
  background: currentColor;
  -webkit-mask: url("../assets/monograma.png") center / contain no-repeat;
          mask: url("../assets/monograma.png") center / contain no-repeat;
}
.mono--sm { height: 30px; color: var(--green); }
.mono--hero { height: clamp(150px, 26vw, 250px); color: var(--green); }
.mono--footer { height: 120px; color: var(--gold-soft); }

/* ---------- Tipografia ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin: 0 0 18px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: var(--gold-soft); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--green);
  margin: 0 0 24px;
  text-wrap: balance;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.h2 em { color: var(--gold); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--gold-soft); }

.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  color: var(--green);
  margin: 0 0 12px;
}
.h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--green);
  margin: 0 0 6px;
}

.rule { display: block; width: 140px; height: 1px; background: var(--gold); margin: 26px auto; }
.rule--light { background: var(--gold-soft); }
.diamond {
  display: block; width: 10px; height: 10px; margin: 0 auto;
  background: var(--gold); transform: rotate(45deg);
}

.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  padding: 3px 9px 2px; margin-right: 6px;
  border: 1px solid var(--line); border-radius: 99px; color: var(--gold);
  vertical-align: 2px;
}

.note {
  font-size: 15px; color: var(--muted);
  padding-left: 16px; border-left: 1px solid var(--gold);
  margin: 28px 0 0;
}
.note--light { color: rgba(246, 241, 228, .75); border-color: var(--gold-soft); max-width: 640px; margin: 48px auto 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 28px;
  font: 500 12px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--green); background: transparent; color: var(--green);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { background: var(--green); color: var(--cream); }
.btn--ghostLight { border-color: var(--gold-soft); color: var(--cream); }
.btn--ghostLight:hover { background: var(--gold-soft); color: var(--green-deep); }
.btn--text { border: 0; padding: 0; min-height: 44px; color: var(--muted); letter-spacing: .18em; }
.btn--text:hover { background: none; color: var(--green); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 228, .86);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
          backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
  padding-top: env(safe-area-inset-top);
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); }
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-height: 44px; }
.nav__names {
  font: 500 12px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--green);
  opacity: 0; transform: translateY(4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.nav.is-scrolled .nav__names { opacity: 1; transform: none; }
.nav__links { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
  position: relative;
  font: 400 12.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--muted); padding: 14px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="true"] { color: var(--green); }
.nav__links a:hover::after, .nav__links a[aria-current="true"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 11px; right: 11px; height: 1px; background: var(--green);
  transition: transform .3s var(--ease);
}
.nav__toggle span:first-child { transform: translateY(-4px); }
.nav__toggle span:last-child { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.menu {
  border-top: 1px solid var(--line-soft);
  background: var(--cream);
  padding: 12px var(--gutter) 28px;
  display: grid;
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto; overscroll-behavior: contain;
}
.menu[hidden] { display: none; }
.menu a {
  font-family: var(--serif); font-size: 26px; color: var(--green); text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__names { opacity: 1; transform: none; }
}

/* ---------- HERO (o rótulo) ---------- */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid; place-items: center;
  padding: clamp(16px, 3vw, 36px) var(--gutter) clamp(28px, 4vw, 48px);
  position: relative;
}
.hero::before, .hero::after { /* faixas verdes do rótulo */
  content: ""; position: absolute; left: 0; right: 0; height: clamp(10px, 1.6vw, 20px); background: var(--green);
}
.hero::before { display: none; }
.hero::after { bottom: 0; }
.hero__label {
  width: 100%; max-width: 980px;
  border: 1px solid var(--line);
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 60px) clamp(36px, 5vw, 56px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.hero__label::before { /* moldura interna fina */
  content: ""; position: absolute; inset: 8px; border: 1px solid rgba(166, 126, 60, .18); pointer-events: none;
}
.hero .mono--hero { margin-bottom: 36px; }
.hero__names {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(22px, 3.6vw, 40px); letter-spacing: .34em; text-transform: uppercase;
  color: var(--green); margin: 0; padding-left: .34em; line-height: 1.3;
}
.hero__names .amp { font-family: var(--serif); font-style: italic; color: var(--gold); letter-spacing: 0; padding: 0 .3em 0 .1em; text-transform: none; }
.hero__date {
  font-weight: 400; font-size: clamp(15px, 1.6vw, 18px); letter-spacing: .3em; color: var(--gold);
  font-variant-numeric: tabular-nums; margin: 0 0 30px;
}
.hero__lead {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.3vw, 26px); line-height: 1.4;
  color: var(--green); max-width: 34ch; margin: 0 0 36px; text-wrap: balance;
}
.hero .btn { margin-bottom: 40px; }

/* ---------- Seções ---------- */
.section { padding: var(--section) 0; scroll-margin-top: var(--nav-h); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 7vw, 80px); }
.section__head--left { text-align: left; margin: 0; }
.section__lead { font-size: 18px; color: var(--muted); margin: 0 auto; max-width: 60ch; }
.section__head--left .section__lead { margin: 0; }

/* Carta */
.carta { background: var(--paper); }
.carta__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.carta__photo { margin: 0; position: relative; }
.carta__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.carta__photo::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold); z-index: -1; }
.carta__photo { isolation: isolate; }
.carta__photo figcaption { font-size: 12px; letter-spacing: .14em; color: var(--muted); margin-top: 26px; text-transform: lowercase; }
.carta__text p { font-size: 18px; }
.signature { font-family: var(--serif); font-style: italic; font-size: 22px !important; color: var(--muted); margin-top: 36px; line-height: 1.3; }
.signature span { font-size: 34px; color: var(--green); }

/* O dia */
.dia { background: var(--green); color: var(--cream); position: relative; }
.countdown {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 720px; margin: 0 auto clamp(56px, 8vw, 96px);
  border-top: 1px solid rgba(201, 168, 106, .35); border-bottom: 1px solid rgba(201, 168, 106, .35);
}
.countdown__item { text-align: center; padding: 26px 8px 22px; }
.countdown__item + .countdown__item { border-left: 1px solid rgba(201, 168, 106, .2); }
.countdown__num {
  display: block; font-family: var(--serif); font-size: clamp(40px, 7vw, 72px); line-height: 1;
  color: var(--cream); font-variant-numeric: tabular-nums lining-nums;
}
.countdown__lbl { display: block; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); margin-top: 12px; }

.venues { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 36px); }
.venue { background: var(--cream); color: var(--ink); }
.venue__img { overflow: hidden; aspect-ratio: 3 / 2; }
.venue__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.venue:hover .venue__img img { transform: scale(1.04); }
.venue__body { padding: 30px clamp(22px, 3vw, 36px) 34px; }
.venue__meta { font-size: 15px; color: var(--muted); margin: 0; }

/* Dress code */
.tabs {
  position: relative; display: flex; justify-content: center; gap: 0;
  width: max-content; max-width: 100%; margin: 0 auto clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line-soft);
}
.tabs__btn {
  appearance: none; border: 0; background: none; cursor: pointer;
  font: 400 clamp(22px, 3vw, 30px)/1 var(--serif); color: var(--muted);
  padding: 14px clamp(20px, 4vw, 40px) 18px; min-height: 48px;
  transition: color .25s var(--ease);
}
.tabs__btn[aria-selected="true"] { color: var(--green); }
.tabs__btn:hover { color: var(--green); }
.tabs__ink {
  position: absolute; bottom: -1px; left: 0; height: 2px; width: 100px; background: var(--gold);
  transform-origin: left; transition: transform .4s var(--ease);
}

.panel:focus-visible { outline-offset: 12px; }
.panel__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.panel.is-entering .panel__grid { animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } }

.mood { position: relative; padding: 0 12% 18% 0; }
.mood__a { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.mood__b {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; object-fit: cover;
  border: 8px solid var(--cream); box-shadow: 0 1px 2px rgba(42, 48, 34, .08), 0 16px 40px -12px rgba(42, 48, 34, .25);
}
.mood__cap { position: absolute; left: 0; bottom: 0; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }

.swatches { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.swatches li { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.swatch {
  display: block; aspect-ratio: 1; border-radius: 50%; background: var(--c);
  border: 1px solid var(--b, rgba(0, 0, 0, .06)); margin-bottom: 10px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .12);
  max-width: 96px;
}
.swatches b { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--green); line-height: 1.2; }
.swatches small { font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; overflow-wrap: anywhere; }

.doDont { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; border-top: 1px solid var(--line-soft); padding-top: 28px; }
.doDont__t { font: 500 12px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; margin: 0 0 14px; display: flex; gap: 8px; align-items: center; }
.doDont__t--yes { color: var(--green-soft); }
.doDont__t--no { color: #8C5A3C; }
.doDont ul { list-style: none; padding: 0; margin: 0; }
.doDont li { font-size: 15.5px; padding: 7px 0; border-bottom: 1px dashed var(--line-soft); line-height: 1.45; }

/* Beleza */
.beleza { background: var(--paper); }
.cards3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 28px); }
.card {
  background: var(--cream); border: 1px solid var(--line-soft); padding: 40px clamp(24px, 3vw, 36px) 32px;
  display: flex; flex-direction: column; position: relative;
}
.card::before { content: ""; position: absolute; top: 0; left: 36px; width: 40px; height: 2px; background: var(--gold); }
.card__num { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.card p { font-size: 16px; }
.card__foot { margin-top: auto; margin-bottom: 0; padding-top: 18px; border-top: 1px solid var(--line-soft); font-size: 14px !important; color: var(--muted); }

/* Cronograma */
.crono__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.crono .section__head { position: sticky; top: calc(var(--nav-h) + 40px); }
.crono__photo { margin: 40px 0 0; }
.crono__photo img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding: 0 0 44px 48px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: 3px; top: 9px; width: 9px; height: 9px;
  background: var(--cream); border: 1px solid var(--gold); transform: rotate(45deg);
}
.timeline__item--key::before { background: var(--gold); width: 13px; height: 13px; left: 1px; top: 7px; }
.timeline__time { display: block; font-size: 12px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.timeline__item p { margin: 0; color: var(--muted); font-size: 16px; }

/* Missões */
.missoes { background: var(--green-deep); color: var(--cream); }
.missions { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(201, 168, 106, .25); }
.mission { padding: 40px clamp(20px, 3vw, 40px) 44px; border-bottom: 1px solid rgba(201, 168, 106, .25); }
.mission:not(:nth-child(3n + 1)) { border-left: 1px solid rgba(201, 168, 106, .25); }
.mission__n { display: block; font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--gold-soft); margin-bottom: 20px; }
.mission .h4 { color: var(--cream); }
.mission p { color: rgba(246, 241, 228, .72); font-size: 16px; margin: 0; }

/* Calendário */
.months { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; counter-reset: m; position: relative; }
.months::before { content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 1px; background: var(--line); }
.month { position: relative; padding: 40px clamp(12px, 2vw, 28px) 0 0; }
.month::before { content: ""; position: absolute; top: 2px; left: 0; width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); }
.month__m { display: block; font-size: 12px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.month p { font-size: 15.5px; color: var(--muted); margin: 0; }

/* Checklist */
.check { background: var(--paper); }
.check__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.progress { position: relative; width: 140px; height: 140px; margin: 36px 0 12px; }
.progress svg { width: 100%; height: 100%; }
.progress circle { fill: none; stroke-width: 2; }
.progress__bg { stroke: var(--line-soft); }
.progress__g { transform: rotate(-90deg); transform-origin: 60px 60px; }
.progress__fg { stroke: var(--gold); stroke-linecap: round; stroke-dasharray: 326.73; stroke-dashoffset: 326.73; transition: stroke-dashoffset .6s var(--ease); }
.progress__txt { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 34px; color: var(--green); font-variant-numeric: tabular-nums; }
.progress__txt b { font-weight: 400; }

.checklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-soft); }
.checklist li { border-bottom: 1px solid var(--line-soft); }
.checklist label { display: flex; align-items: center; gap: 18px; padding: 16px 4px; cursor: pointer; min-height: 56px; font-size: 17px; }
.checklist input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.box {
  flex: none; width: 24px; height: 24px; border: 1px solid var(--gold); position: relative;
  transition: background-color .25s var(--ease);
}
.box::after {
  content: ""; position: absolute; left: 7px; top: 3px; width: 7px; height: 12px;
  border: solid var(--cream); border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0);
  transition: transform .25s var(--ease);
}
.checklist input:checked + .box { background: var(--green); border-color: var(--green); }
.checklist input:checked + .box::after { transform: rotate(45deg) scale(1); }
.checklist input:checked ~ span:last-child { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--gold); }
.checklist input:focus-visible + .box { outline: 2px solid var(--gold); outline-offset: 3px; }
.checklist label:hover .box { background: rgba(166, 126, 60, .1); }

/* Padrinhos */
.people { list-style: none; margin: 0 auto; padding: 0; max-width: 980px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.person { text-align: center; }
.person__ph {
  aspect-ratio: 3 / 4; background: var(--paper); border: 1px solid var(--line-soft);
  display: grid; place-items: center; margin-bottom: 14px; position: relative;
}
.person__ph::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(166, 126, 60, .22); }
.person__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.person__ph .mono { height: 64px; color: rgba(166, 126, 60, .4); }
.person--m .person__ph { background: #EEF0E6; }
.person__name { font-family: var(--serif); font-size: 21px; color: var(--green); line-height: 1.2; margin: 0; }
.person__role { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 4px 0 0; }

/* FAQ */
.faq__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq__photo { margin: 36px 0 0; }
.faq__photo img { width: 100%; max-width: 380px; aspect-ratio: 1; object-fit: cover; }
.faq__list { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 24px); color: var(--green); line-height: 1.3;
  padding: 22px 48px 22px 0; min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 1px; background: var(--gold);
  transition: transform .3s var(--ease);
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq summary:hover { color: var(--green-deep); }
.faq details p { color: var(--muted); padding: 0 48px 22px 0; margin: 0; font-size: 16.5px; }

/* Footer */
.footer {
  background: var(--green); color: var(--cream);
  padding: clamp(72px, 10vw, 120px) var(--gutter) calc(clamp(48px, 7vw, 80px) + env(safe-area-inset-bottom));
}
.footer__label {
  max-width: 560px; margin: 0 auto; text-align: center; border: 1px solid rgba(201, 168, 106, .5);
  padding: 56px 24px 48px; display: flex; flex-direction: column; align-items: center;
}
.footer__names { font-size: 15px; letter-spacing: .34em; text-transform: uppercase; margin: 28px 0 0; padding-left: .34em; }
.footer__date { letter-spacing: .3em; color: var(--gold-soft); margin: 0 0 8px; font-variant-numeric: tabular-nums; }
.footer__line { font-family: var(--serif); font-style: italic; font-size: 22px; color: rgba(246, 241, 228, .75); margin: 0 0 32px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .panel.is-entering .panel__grid { animation: none; }
  .venue__img img, .tabs__ink, .progress__fg { transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .carta__grid, .panel__grid, .crono__grid, .check__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .crono .section__head { position: static; }
  .carta__photo { max-width: 460px; }
  .cards3 { grid-template-columns: minmax(0, 1fr); }
  .missions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mission:not(:nth-child(3n + 1)) { border-left: 0; }
  .mission:nth-child(2n) { border-left: 1px solid rgba(201, 168, 106, .25); }
  .months { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .people { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .months::before { display: none; }
  .mood { max-width: 520px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .venues { grid-template-columns: minmax(0, 1fr); }
  .countdown__item { padding: 20px 2px 16px; }
  .countdown__lbl { font-size: 9.5px; letter-spacing: .2em; }
  .swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .swatch { max-width: 72px; }
  .doDont { grid-template-columns: minmax(0, 1fr); }
  .missions { grid-template-columns: minmax(0, 1fr); }
  .mission:nth-child(2n) { border-left: 0; }
  .months { grid-template-columns: minmax(0, 1fr); }
  .people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__names { letter-spacing: .22em; padding-left: .22em; }
  .carta__photo::after { inset: 10px -10px -10px 10px; }
}
