/* =================================================================
   Karina faz 40 — Identidade editorial v2
   Fontes: Fraunces (serif variável) + Inter (sans humanista)
   Paleta: rose deep + champagne gold + cream + ink quase preto
   ================================================================= */

/* -----------------------------  TOKENS  --------------------------- */
:root {
  /* Cores — alto contraste, identidade rose+dourado com peso */
  --bg:           #FAF5EE;
  --bg-soft:      #F0E2CE;
  --bg-rose:      #E8C5B8;
  --bg-deep:      #1A0F0A;
  --bg-ink-soft:  #2B1A12;

  --rose:         #9C5A5C;
  --rose-deep:    #7E4244;
  --rose-soft:    #C28A8A;
  --rose-mute:    #B5807F;

  --gold:         #B8964C;
  --gold-deep:    #7A5D24;
  --gold-soft:    #D4B27C;
  --gold-bright:  #C9A961;

  --ink:          #14080A;
  --ink-soft:     #3D2B20;
  --ink-mute:     #6E574A;

  --hairline:     #C9B395;
  --hairline-soft:#E0CFB2;
  --cream-on-dark:#F5E9DA;
  --cream-warm:   #FBEFDA;

  /* Tipografia */
  --serif:        'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Tamanhos fluidos — gigantes editoriais */
  --fs-eyebrow:   clamp(12px, 1.8vw, 14px);
  --fs-body:      clamp(17px, 2.2vw, 20px);
  --fs-body-lg:   clamp(20px, 2.8vw, 24px);
  --fs-h3:        clamp(28px, 4.5vw, 40px);
  --fs-h2:        clamp(52px, 9vw, 96px);
  --fs-display:   clamp(96px, 26vw, 260px);
  --fs-num:       clamp(140px, 40vw, 380px);
}

/* -----------------------------  RESET  ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
em, i { font-style: italic; }

::selection { background: var(--gold); color: var(--ink); }

/* -----------------------------  HELPERS  -------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 720px; }
.container--medium { max-width: 940px; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
.eyebrow--centered { text-align: center; display: block; }
.eyebrow--light    { color: var(--gold-soft); }
.eyebrow--rose     { color: var(--rose-deep); }

.section-title {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  font-variation-settings: "SOFT" 50;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
}
.section-title__small {
  display: block;
  font-size: 0.38em;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 14px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100;
}
.section-title--centered { text-align: center; }
.section-title--light    { color: var(--cream-on-dark); }
.section-title--light em { color: var(--gold-soft); }

.hairline {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
  opacity: 1;
}
.hairline--centered { margin-inline: auto; }
.hairline--light    { background: var(--gold-soft); }

.ornament-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 36px 0;
}
.ornament-divider--left { justify-content: flex-start; }
.ornament-divider img {
  width: min(280px, 65%);
  opacity: 0.9;
}
.ornament-divider--small img { width: min(200px, 55%); }

/* =================================================================
                                 HERO
================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mobile: mostra a parte direita da imagem (onde está a Karina); texto fica sobreposto */
  object-position: 78% center;
  filter: brightness(0.88) contrast(1.05) saturate(1.04);
}

.hero__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__fade--bottom {
  background:
    linear-gradient(180deg,
      rgba(20, 10, 6, 0.55) 0%,
      rgba(20, 10, 6, 0.3) 22%,
      rgba(20, 10, 6, 0.45) 50%,
      rgba(20, 10, 6, 0.92) 88%,
      rgba(20, 8, 6, 1) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.4) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 28px 24px 36px;
  color: var(--cream-on-dark);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold-soft);
}

.display {
  font-family: var(--serif);
  line-height: 0.84;
  margin: 0 0 26px;
  color: var(--cream-on-dark);
}
.display__line { display: block; }
.display__line--top {
  font-size: clamp(80px, 22vw, 200px);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  letter-spacing: -0.035em;
  color: var(--cream-on-dark);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}
.display__faz {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.42em;
  margin: 8px 0 4px;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.display__faz-line {
  flex: 0 0 32px;
  height: 1.5px;
  background: var(--gold-soft);
}
.display__faz-word { text-shadow: 0 1px 12px rgba(0,0,0,0.35); }

.display__line--num {
  font-size: clamp(160px, 42vw, 380px);
  font-weight: 700;
  font-style: italic;
  font-variation-settings: "SOFT" 30;
  color: var(--gold-soft);
  letter-spacing: -0.06em;
  line-height: 0.78;
  margin-top: -4px;
  text-shadow: 0 6px 36px rgba(0,0,0,0.4);
}

.hero__info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__date,
.hero__local {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--cream-on-dark);
  font-weight: 500;
  font-variation-settings: "SOFT" 80;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.hero__date strong { font-weight: 600; font-style: normal; }
.hero__date span { color: var(--gold-soft); margin: 0 10px; opacity: 0.9; }
.hero__local-label { font-style: italic; opacity: 0.75; font-weight: 400; }
.hero__local-name { font-weight: 600; font-style: italic; margin-left: 6px; }

.hero__cta-group {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.btn.btn--hero {
  background: var(--gold-bright);
  color: var(--ink);
  border-color: var(--gold-bright);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 22px 28px;
  width: 100%;
  max-width: 420px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 12px 32px -6px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.25s ease, box-shadow 0.4s ease;
}
.btn.btn--hero:hover {
  background: var(--cream-warm);
  border-color: var(--cream-warm);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px -6px rgba(0,0,0,0.5), 0 6px 16px rgba(0,0,0,0.3);
}
.btn.btn--hero svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,233,218,0.85);
  padding: 8px 4px 6px;
  border-bottom: 1.5px solid rgba(212,178,124,0.6);
  align-self: center;
  transition: color 0.3s ease;
}
.hero__scroll:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}
.hero__scroll svg { animation: arrow-down 2.2s ease-in-out infinite; }

@keyframes arrow-down {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* =================================================================
                  SAVE THE DATE — Spread rose com fullbody
================================================================= */
.spread-savethedate {
  position: relative;
  background: var(--rose-soft);
  color: var(--ink);
  overflow: hidden;
}
.spread-savethedate__grid {
  display: grid;
  grid-template-columns: 1fr;
}
.spread-savethedate__copy {
  padding: 88px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spread-savethedate__copy .eyebrow {
  color: var(--rose-deep);
  margin-bottom: 4px;
}
.spread-savethedate__title {
  font-family: var(--serif);
  font-size: clamp(48px, 11vw, 120px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 40;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.spread-savethedate__title strong {
  color: var(--rose-deep);
  font-weight: 700;
  font-style: italic;
}
.spread-savethedate__text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 26px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 18px;
  font-weight: 400;
}
.spread-savethedate__date {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 24px;
}
.spread-savethedate__media {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0;
}
.spread-savethedate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =================================================================
                              CONVITE
================================================================= */
.convite {
  padding: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.convite__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.convite__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}
.convite__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.convite__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(26,15,10,0.55) 100%);
  pointer-events: none;
}
.convite__caption {
  position: absolute;
  left: 28px;
  bottom: 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(245, 233, 218, 0.92);
  text-transform: uppercase;
  z-index: 2;
}

.convite__body {
  padding: 88px 24px 100px;
  max-width: 720px;
  margin-inline: auto;
}
.convite__body .eyebrow { display: block; margin-bottom: 14px; }

.convite__title {
  font-family: var(--serif);
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.028em;
  color: var(--ink);
  font-variation-settings: "SOFT" 40;
  margin-bottom: 18px;
}
.convite__title em { color: var(--rose-deep); font-style: italic; }
.convite__deck {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 28px);
  color: var(--rose-deep);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  font-variation-settings: "SOFT" 80;
}

.convite__rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 40px;
}

.convite__texto {
  font-family: var(--serif);
  font-size: clamp(20px, 2.7vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "SOFT" 80;
}
.convite__texto p + p { margin-top: 22px; }
.convite__texto em { color: var(--rose-deep); font-weight: 600; }

.convite__assinatura {
  margin-top: 40px !important;
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.convite__assinatura span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 5vw, 42px);
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
  font-weight: 600;
  font-variation-settings: "SOFT" 50;
}

.convite__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-bright);
  padding: 20px 32px;
  border: 1px solid var(--gold-bright);
  transition: background 0.4s ease, color 0.4s ease, transform 0.25s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 20px -4px rgba(184, 150, 76, 0.4);
}
.convite__cta:hover {
  background: var(--ink);
  color: var(--cream-on-dark);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(0,0,0,0.25);
}

/* =================================================================
                              DETALHES
================================================================= */
.detalhes {
  padding: 110px 0 110px;
  background: var(--bg);
  position: relative;
}
.detalhes::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 150, 76, 0.12), transparent 50%);
  pointer-events: none;
}
.detalhes__inner { position: relative; }

.detalhes__title {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 40;
  line-height: 0.96;
  letter-spacing: -0.028em;
  text-align: center;
  color: var(--ink);
  margin-top: 20px;
  margin-bottom: 56px;
}
.detalhes__title em { color: var(--gold-deep); }

.detalhes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 24px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.detalhes__card {
  text-align: center;
  padding: 44px 16px;
  border-bottom: 1px solid var(--hairline);
}
.detalhes__card:last-child { border-bottom: none; }

.detalhes__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.detalhes__valor {
  font-family: var(--serif);
  font-size: clamp(72px, 16vw, 130px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 30;
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.035em;
}
.detalhes__valor--text {
  font-size: clamp(44px, 9vw, 76px);
  line-height: 1.02;
}
.detalhes__sep {
  color: var(--rose-deep);
  margin: 0 0.04em;
  font-style: italic;
  font-weight: 600;
}
.detalhes__sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.detalhes__sub--link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  padding: 10px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 16px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.detalhes__sub--link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream-on-dark);
}

/* Endereço completo do Espaço Pipoca */
.detalhes__endereco {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =================================================================
            LIFESTYLE SPREAD — Candid laughing fullscreen
================================================================= */
.spread-lifestyle {
  position: relative;
  min-height: 80vh;
  background: var(--bg-ink-soft);
  overflow: hidden;
  isolation: isolate;
}
.spread-lifestyle__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.spread-lifestyle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.85) contrast(1.05);
}
.spread-lifestyle__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 8, 6, 0.55) 0%, transparent 40%, rgba(20, 8, 6, 0.8) 100%);
}
.spread-lifestyle__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
  text-align: center;
  color: var(--cream-on-dark);
  max-width: 760px;
  margin-inline: auto;
}
.spread-lifestyle__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 5.2vw, 56px);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "SOFT" 80;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--cream-on-dark);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.spread-lifestyle__quote em {
  color: var(--gold-soft);
  font-weight: 600;
}
.spread-lifestyle__attribution {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* =================================================================
                            DRESS CODE
================================================================= */
.dresscode {
  padding: 110px 0;
  background: var(--bg-rose);
  text-align: center;
  position: relative;
}
.dresscode__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 24px;
}
.dresscode .eyebrow {
  color: var(--rose-deep);
  margin-bottom: 8px;
  display: block;
}
.dresscode__title {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 40;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 0.96;
}
.dresscode__principal {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "SOFT" 50;
  margin-bottom: 28px;
}
.dresscode__hairline {
  width: 60px;
  height: 2px;
  background: var(--ink);
  opacity: 0.2;
  margin: 0 auto 28px;
}
.dresscode__aviso {
  font-family: var(--serif);
  font-size: clamp(19px, 2.6vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 540px;
  margin-inline: auto;
  font-weight: 500;
}
.dresscode__aviso strong {
  font-weight: 700;
  color: var(--rose-deep);
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85em;
}
.dresscode__sparkle {
  display: block;
  margin-top: 22px;
  font-size: 0.9em;
  color: var(--gold-deep);
  font-weight: 600;
}

/* =================================================================
                              RSVP
================================================================= */
.rsvp {
  padding: 110px 0;
  background: var(--bg-deep);
  color: var(--cream-on-dark);
  position: relative;
  overflow: hidden;
}
.rsvp::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(156, 90, 92, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(184, 150, 76, 0.1), transparent 50%);
  pointer-events: none;
}
.rsvp__inner { position: relative; padding-inline: 24px; }
.rsvp .eyebrow {
  color: var(--gold-soft);
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.rsvp__title {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 40;
  letter-spacing: -0.028em;
  text-align: center;
  color: var(--cream-on-dark);
  margin-bottom: 36px;
  line-height: 0.96;
}
.rsvp__title em { color: var(--rose-soft); }
.rsvp__intro {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 22px);
  color: rgba(245, 233, 218, 0.88);
  margin-bottom: 48px;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
  font-weight: 500;
}
.rsvp__intro strong {
  color: var(--gold-soft);
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.92em;
}

.rsvp__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 520px;
  margin-inline: auto;
}

.field { display: flex; flex-direction: column; gap: 12px; }
.field label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.field__opt {
  font-family: var(--sans);
  font-style: italic;
  color: rgba(245, 233, 218, 0.55);
  letter-spacing: 0;
  font-size: 12px;
  text-transform: none;
  margin-left: 8px;
  font-weight: 400;
}
.field__hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 233, 218, 0.55);
  line-height: 1.5;
  margin-top: -4px;
  margin-bottom: 4px;
  letter-spacing: 0;
}

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 18px 20px;
  border: 1.5px solid rgba(212, 178, 124, 0.28);
  background: rgba(245, 233, 218, 0.05);
  color: var(--cream-on-dark);
  width: 100%;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: -0.005em;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 233, 218, 0.38);
  opacity: 1;
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.field input:hover,
.field textarea:hover {
  border-color: rgba(212, 178, 124, 0.5);
  background: rgba(245, 233, 218, 0.07);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold-soft);
  background: rgba(245, 233, 218, 0.09);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}

/* Lista dinâmica de acompanhantes */
.acomp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acomp-list:empty { display: none; }
.acomp-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  animation: fade-in 0.3s ease-out;
}
.acomp-row .acomp-input { flex: 1; min-width: 0; }
.btn-remove {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(212, 178, 124, 0.28);
  border-radius: 6px;
  color: rgba(245, 233, 218, 0.55);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-remove:hover {
  border-color: rgba(220, 100, 100, 0.7);
  color: #F0B4B4;
  background: rgba(176, 65, 62, 0.12);
}
.btn-remove svg { display: block; }

.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1.5px dashed rgba(212, 178, 124, 0.45);
  color: var(--gold-soft);
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 4px;
}
.btn-add:hover {
  border-color: var(--gold-soft);
  border-style: solid;
  background: rgba(212, 178, 124, 0.08);
  color: var(--cream-warm);
  transform: translateY(-1px);
}
.btn-add svg { display: block; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px 32px;
  border: 1.5px solid var(--gold-bright);
  background: var(--gold-bright);
  color: var(--ink);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
  align-self: center;
  margin-top: 18px;
  min-width: 260px;
}
.btn:hover { background: var(--cream-warm); border-color: var(--cream-warm); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.6; cursor: progress; }
.btn__spinner { display: none; animation: spin 0.9s linear infinite; }
.btn.is-loading .btn__label { opacity: 0.5; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  min-height: 24px;
  margin-top: 8px;
  color: rgba(245, 233, 218, 0.7);
  font-weight: 500;
}
.form-msg.is-error  { color: #F0A0A0; }

.rsvp__success {
  text-align: center;
  padding: 28px 0;
  animation: fade-in 0.6s ease-out;
}
.rsvp__success-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 72px);
  color: var(--gold-soft);
  font-weight: 600;
  line-height: 1;
  font-variation-settings: "SOFT" 40;
}
.rsvp__success-title em { font-style: italic; }
.rsvp__success-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 22px);
  color: var(--cream-on-dark);
  margin-top: 22px;
  line-height: 1.55;
  font-weight: 500;
}
.rsvp__success-text strong {
  font-style: normal;
  color: var(--gold-soft);
  font-family: var(--sans);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.86em;
}

/* =================================================================
                  PRESENTES + DETAIL HANDS SPREAD
================================================================= */
.presentes {
  padding: 0;
  background: var(--bg);
}
.presentes__grid {
  display: grid;
  grid-template-columns: 1fr;
}
.presentes__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--bg-rose);
}
.presentes__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.presentes__body {
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  margin-inline: auto;
}
.presentes__body .eyebrow { display: block; margin-bottom: 14px; color: var(--gold-deep); }

.presentes__title {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "SOFT" 40;
  letter-spacing: -0.028em;
  color: var(--ink);
  line-height: 0.96;
  margin-bottom: 14px;
}
.presentes__title__small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--ink-soft);
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.presentes__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 22px);
  color: var(--ink-soft);
  max-width: 500px;
  margin: 28px 0 40px;
  line-height: 1.55;
  font-weight: 500;
}

.presentes__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.presentes__col__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--gold);
}
.presentes__col ul {
  list-style: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 24px);
  color: var(--ink);
  line-height: 1.95;
  font-weight: 500;
}
.presentes__col ul strong {
  font-style: normal;
  color: var(--rose-deep);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 8px;
  font-size: 0.92em;
}

/* =================================================================
                              FOOTER
================================================================= */
.footer {
  padding: 96px 0 56px;
  background: var(--bg-deep);
  color: var(--cream-on-dark);
  text-align: center;
  position: relative;
}
.footer .ornament-divider img {
  filter: brightness(1.4) saturate(0.7);
  opacity: 0.85;
}
.footer__assinatura {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 52px);
  font-style: italic;
  font-variation-settings: "SOFT" 60;
  color: var(--cream-on-dark);
  margin-top: 8px;
  font-weight: 500;
}
.footer__nome {
  font-family: var(--serif);
  font-size: clamp(64px, 14vw, 120px);
  font-style: italic;
  font-variation-settings: "SOFT" 30;
  color: var(--gold-soft);
  font-weight: 700;
  line-height: 1;
  margin-top: 12px;
  letter-spacing: -0.025em;
}
.footer__credit {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(245, 233, 218, 0.4);
  text-transform: uppercase;
  margin-top: 56px;
}

/* =================================================================
                         REVEAL ANIMATIONS
================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero__media img {
    animation: hero-zoom 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .hero__content > * {
    animation: hero-in 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .hero__content > *:nth-child(1) { animation-delay: 0.15s; }
  .hero__content > *:nth-child(2) { animation-delay: 0.35s; }
  .hero__content > *:nth-child(3) { animation-delay: 0.55s; }
  .hero__content > *:nth-child(4) { animation-delay: 0.75s; }
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-zoom {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================================================================
                            RESPONSIVE
================================================================= */

/* TABLET 720px+ */
@media (min-width: 720px) {
  /* Spread Save the Date */
  .spread-savethedate__grid {
    grid-template-columns: 5fr 4fr;
    min-height: 100vh;
    align-items: stretch;
  }
  .spread-savethedate__copy {
    padding: 96px 64px;
    justify-content: center;
  }
  .spread-savethedate__media {
    aspect-ratio: auto;
    height: 100%;
  }

  /* Convite */
  .convite__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: stretch;
  }
  .convite__media { aspect-ratio: auto; height: 100%; }
  .convite__body {
    padding: 100px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    margin: 0;
  }

  /* Detalhes */
  .detalhes__grid {
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    margin-top: 56px;
  }
  .detalhes__card {
    border-bottom: none;
    border-right: 1px solid var(--hairline);
    padding: 36px 24px;
  }
  .detalhes__card:last-child { border-right: none; }

  /* Lifestyle spread */
  .spread-lifestyle { min-height: 90vh; }
  .spread-lifestyle__content { padding: 160px 32px; }

  /* Presentes */
  .presentes__grid {
    grid-template-columns: 4fr 5fr;
    min-height: 100vh;
    align-items: stretch;
  }
  .presentes__media { aspect-ratio: auto; height: 100%; }
  .presentes__body {
    padding: 100px 64px;
    max-width: none;
    margin: 0;
  }
  .presentes__lists { grid-template-columns: 1fr 1fr; gap: 56px; }

  /* Hero — imagem 16:9 fullwidth com espaço escuro embutido à esquerda */
  .hero__media img {
    object-position: center center;
    filter: brightness(0.96) contrast(1.04) saturate(1.04);
  }
  .hero__fade--bottom {
    background:
      linear-gradient(180deg,
        transparent 0%,
        transparent 60%,
        rgba(20, 10, 6, 0.4) 85%,
        rgba(20, 10, 6, 0.8) 100%);
  }
  .hero__content {
    padding: 64px 56px 72px;
    justify-content: center;
    max-width: none;
    width: 50%;
    margin: 0;
  }
  .hero__cta-group {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    width: auto;
  }
  .btn.btn--hero { min-width: 320px; max-width: 380px; }
  .hero__scroll { align-self: center; }
}

/* DESKTOP 1000px+ */
@media (min-width: 1000px) {
  .hero__content {
    padding: 80px 64px 100px 88px;
    width: 50%;
    max-width: 720px;
  }
  .detalhes, .dresscode, .rsvp { padding: 140px 0; }
}

/* DESKTOP WIDE 1400px+ */
@media (min-width: 1400px) {
  .hero__content {
    padding-left: 120px;
    width: 50%;
    max-width: 780px;
  }
}
