﻿/* ============================================================
   ChÃ¡ de BebÃª â€” Adriany & Vitor
   Paleta pastel: ivory quente Â· sage Â· champagne Â· branco
   ============================================================ */

/* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Backgrounds */
  --bg:        #F8F4EE;   /* ivory quente â€” fundo principal */
  --bg-sage:   #EDF5ED;   /* sage muito pÃ¡lido â€” seÃ§Ãµes alternadas */
  --bg-card:   #FFFFFF;

  /* Sage â€” paleta principal */
  --sage-deep:  #4A6A4C;  /* texto sage, botÃµes hover */
  --sage:       #5A7B5C;  /* botÃ£o primÃ¡rio, links ativos */
  --sage-mid:   #8BAC8C;  /* bordas, Ã­cones */
  --sage-light: #C0D8C1;  /* bordas suaves */
  --sage-pale:  #DFF0DF;  /* badges, fundos mÃ­nimos */
  --sage-ultra: #EDF5ED;  /* fundo de seÃ§Ã£o alternada */

  /* Champagne â€” acento quente */
  --gold:       #B8956A;  /* usado com parcimÃ´nia */
  --gold-mid:   #D0B080;  /* detalhes menores */
  --gold-light: #E8CEAA;  /* ornamento, divisores */
  --gold-pale:  #F5EAD8;  /* fundo mÃ­nimo de destaque */

  /* Texto */
  --text:       #2D3D30;  /* forest escuro â€” corpo e tÃ­tulos */
  --text-mid:   #52685A;  /* texto secundÃ¡rio */
  --text-muted: #8AA08C;  /* texto terciÃ¡rio, legendas */

  /* Bordas */
  --border:       #C8D8C8;
  --border-light: #E0EAE0;

  /* Sombras mÃ­nimas */
  --shadow-xs: 0 1px 4px rgba(50, 80, 50, 0.05);
  --shadow-sm: 0 2px 12px rgba(50, 80, 50, 0.07);
  --shadow:    0 4px 24px rgba(50, 80, 50, 0.09);
  --shadow-md: 0 8px 40px rgba(50, 80, 50, 0.11);

  /* Forma */
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-pill:100px;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

  /* EspaÃ§amento base 8px */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* Acessibilidade â€” anel de foco visÃ­vel */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.25s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-brand em { font-style: normal; color: var(--gold); }

.nav-links { display: flex; gap: 0.125rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.375rem 0.8rem;
  border-radius: var(--r-pill);
  transition: background 0.18s, color 0.18s;
  display: block;
}
.nav-links a:hover  { color: var(--text);      background: var(--sage-pale); }
.nav-links a.active {
  color: var(--text);
  background: transparent;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold-mid);
  border-radius: 100px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .navbar { padding: 0 1.25rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.125rem;
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.625rem 0.875rem; font-size: 0.95rem; }

  .hero {
    min-height: auto;
    padding: 64px 1rem 3rem;
  }
  .hero-arch {
    width: min(94vw, 560px);
    height: min(94vw, 560px);
    top: 82px;
  }
  .hero-content {
    margin-top: clamp(5.5rem, 17vw, 7rem);
  }
  .hero-date {
    margin-bottom: 1.75rem;
  }
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: grid;
  place-items: start center;
  position: relative;
  overflow: hidden;
  padding: 64px 1.5rem 5rem;
  text-align: center;
}

/*
  O arco circular - referencia direta ao backdrop redondo da decoracao (foto).
  Pontilhado suave replica os dots do painel "oh baby".
*/
.hero-arch {
  position: absolute;
  width: min(78vw, calc(100vh - 120px), 700px);
  height: min(78vw, calc(100vh - 120px), 700px);
  border-radius: 50%;
  background: linear-gradient(155deg, #E8F4E8 0%, #EEE6D8 100%);
  border: 1px solid rgba(192, 216, 193, 0.6);
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(139, 172, 140, 0.22) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(7rem, 15vh, 10rem);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  line-height: 1.02;
  margin-bottom: 0.625rem;
  text-wrap: balance;
  transform: translateX(-0.03em);
}

.hero-couple {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.hero-couple .sep { color: var(--gold-mid); font-weight: 400; font-style: italic; margin: 0 0.25rem; }

.hero-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2.75rem;
}

/* ── COUNTDOWN ─────────────────────────────────────────────── */
.countdown {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.countdown-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  min-width: 74px;
  box-shadow: var(--shadow-xs);
}
.countdown-item .num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.countdown-item .lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
  display: block;
}

/* ── BOTÕES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 3px 14px rgba(90, 123, 92, 0.28);
}
.btn-primary:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(90, 123, 92, 0.38);
}
.btn-secondary {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage-mid);
}
.btn-secondary:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-sage);
  border-color: var(--sage-light);
  color: var(--text);
}
.btn-sm { padding: 0.625rem 1.375rem; font-size: 0.875rem; }

.btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTAINER & SEÇÕES ─────────────────────────────────────── */.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

.section  { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }

/* â”€â”€ CABEÃ‡ALHO DE SEÃ‡ÃƒO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.section-head p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Ornamento de divisÃ£o â€” trÃªs pontos com linhas laterais */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 0.75rem auto 2.5rem;
}
.ornament::before,
.ornament::after {
  content: '';
  width: 56px;
  height: 1px;
}
.ornament::before { background: linear-gradient(to right,  transparent, var(--gold-light)); }
.ornament::after  { background: linear-gradient(to left,   transparent, var(--gold-light)); }
.ornament-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* â”€â”€ FUNDOS ALTERNADOS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-ivory { background: var(--bg); }
.bg-sage  { background: var(--bg-sage); }
.bg-champagne { background: var(--gold-pale); }
.bg-dark  { background: var(--text); }

/* â”€â”€ EVENT STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Faixa compacta de info logo abaixo do hero */
.event-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.event-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.event-strip-item {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.event-strip-item:last-child { border-right: none; }
.es-icon {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  display: block;
  line-height: 1;
}
.es-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.es-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.es-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .event-strip-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .event-strip-item {
    border-right: none;
    border-top: 1px solid var(--border-light);
    padding: 1.35rem 1rem;
  }
  .event-strip-item:first-child { border-top: none; }
}

/* â”€â”€ CARDS DE NAVEGAÃ‡ÃƒO (index) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.nav-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  text-align: left;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.nav-card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.nav-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--sage-ultra);
  border: 1px solid var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 0.375rem;
  transition: background 0.22s, border-color 0.22s;
}
.nav-card:hover .nav-card-icon {
  background: var(--sage-pale);
  border-color: var(--sage-light);
}
.nav-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}
.nav-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.nav-card-arrow {
  margin-top: auto;
  padding-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* â”€â”€ PAGE HERO (pÃ¡ginas internas) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  padding: 100px 1.5rem 52px;
  background: linear-gradient(to bottom, var(--bg-sage) 0%, var(--bg) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
  margin-bottom: 0.625rem;
}
.page-hero p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

.gifts-page .page-hero {
  padding-bottom: 32px;
}

.gifts-page .page-hero + .section {
  padding-top: 2.4rem;
}

.messages-page .page-hero {
  padding-bottom: 34px;
}

.messages-page .page-hero + .section {
  padding-top: 2.25rem;
}

/* â”€â”€ CARDS GENÃ‰RICOS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

/* â”€â”€ INFO CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 1.75rem 1.375rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.info-card .ic-icon  { font-size: 1.875rem; margin-bottom: 0.75rem; display: block; }
.info-card .ic-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.info-card .ic-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.info-card .ic-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* â”€â”€ LISTA DE PRESENTES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gift-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.gift-card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.gift-card .gift-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--sage-ultra);
  margin-bottom: 0.55rem;
  flex-shrink: 0;
}
.gift-card .gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.gift-card .gift-image img.gift-img-role {
  object-position: center 22%;
}
.gift-card .gift-icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  border-radius: var(--r-sm);
  background: var(--sage-ultra);
  border: 1px solid var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.35rem;
  flex-shrink: 0;
}
.gift-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  text-wrap: balance;
}
.gift-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.62;
  flex: 1;
}

.gift-card .btn-sm {
  font-size: 0.95rem;
  padding: 0.72rem 1.45rem;
}

@media (max-width: 480px) {
  .gift-card .gift-image {
    aspect-ratio: 16 / 11;
  }

  .gift-card h3 {
    font-size: 1.12rem;
  }
}

/* â”€â”€ MODAL QR CODE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(30, 45, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { transform: scale(0.92) translateY(8px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-sage);
  border: 1px solid var(--border-light);
  color: var(--text-mid);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.modal-close:hover { background: var(--sage-pale); }
.modal h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.qr-frame {
  width: 200px; height: 200px;
  margin: 0 auto 1.375rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-sage);
}
.qr-frame img { width: 100%; height: 100%; object-fit: contain; }
.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 1rem;
  text-align: center;
}
.qr-placeholder .qr-icon { font-size: 2rem; opacity: 0.5; }
.qr-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--bg-sage);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  padding: 0.625rem 0.875rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
.qr-hint code {
  font-size: 0.72rem;
  background: var(--sage-pale);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  color: var(--sage-deep);
  font-family: monospace;
}

/* â”€â”€ LOCAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

.address-row {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold-mid);
  border-radius: var(--r-sm);
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.address-row .ar-icon { font-size: 1.375rem; flex-shrink: 0; }
.address-row strong { display: block; font-size: 0.9375rem; color: var(--text); font-weight: 700; }
.address-row span   { font-size: 0.85rem; color: var(--text-muted); }

/* â”€â”€ FORMULÃRIO WRAPPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.notice {
  display: flex;
  gap: 0.75rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

.gifts-intro {
  font-size: 1.08rem;
  line-height: 1.65;
  padding: 1.1rem 1.8rem;
}

.gifts-intro .notice-icon {
  font-size: 1.35rem;
  margin-top: 0.05rem;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.form-card iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  display: block;
}
.form-card-fallback {
  padding: 1.75rem;
  text-align: center;
  background: var(--bg-sage);
  border-top: 1px solid var(--border-light);
}
.form-card-fallback p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; }

/* â”€â”€ CONSELHOS / MENSAGENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.advice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.advice-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 2rem 1.75rem 1.625rem;
  position: relative;
  box-shadow: var(--shadow-xs);
}
/* Aspas abertas em CSS puro */
.advice-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--sage-pale);
  position: absolute;
  top: 0.25rem; left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.advice-card p {
  font-size: 0.9125rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.125rem;
  padding-top: 0.5rem;
}
.advice-card .author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* â”€â”€ CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  background: var(--bg-sage);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.cta-banner p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--text);           /* deep forest */
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.375rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(248, 244, 238, 0.5);
  margin-bottom: 1.5rem;
}
.footer-pill {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border: 1px solid rgba(208, 176, 128, 0.35);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.125rem;
  margin-bottom: 2.25rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(248, 244, 238, 0.5);
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-pill);
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover {
  color: rgba(248, 244, 238, 0.9);
  background: rgba(248, 244, 238, 0.06);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(248, 244, 238, 0.28);
  border-top: 1px solid rgba(248, 244, 238, 0.07);
  padding-top: 1.5rem;
}

/* â”€â”€ RESPONSIVIDADE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (min-width: 768px) {
  .gifts-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-cards  { grid-template-columns: repeat(4, 1fr); }
  .info-grid  { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .section    { padding: 3.5rem 0; }
  .countdown  { gap: 0.5rem; }
  .countdown-item { min-width: 66px; padding: 0.875rem 0.7rem; }
  .countdown-item .num { font-size: 1.75rem; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .map-wrap iframe { height: 300px; }
  .modal { padding: 1.75rem 1.5rem 1.5rem; }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 64px 1rem 3rem;
  }
  .hero-arch {
    width: min(94vw, 560px);
    height: min(94vw, 560px);
    top: 82px;
    transform: translateX(-50%);
  }
  .hero-content {
    margin-top: clamp(5.5rem, 17vw, 7rem);
  }
  .hero-date {
    margin-bottom: 1.75rem;
  }
}

/* ── FLORAIS DECORATIVOS ─────────────────────────────────── */
.hero-floral {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-fl-tl1 {
  top: 10px;
  left: -70px;
  width: min(280px, 23vw);
}
.hero-fl-tl2 {
  top: 80px;
  left: 80px;
  width: min(240px, 20vw);
  transform: rotate(6deg);
}
.hero-fl-br {
  bottom: -20px;
  right: -60px;
  width: min(330px, 27vw);
  transform: scaleX(-1);
}

@media (max-width: 767px) {
  .hero-fl-tl1 { width: min(180px, 46vw); left: -40px; }
  .hero-fl-tl2 { width: min(150px, 38vw); left: 60px; top: 60px; }
  .hero-fl-br  { width: min(190px, 50vw); right: -30px; }
}

/* ── CORAÇÕES DE FUNDO ───────────────────────────────────── */
.bg-heart {
  position: absolute;
  color: var(--gold-light);
  font-size: 1.1rem;
  opacity: 0.55;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* ── HERO — CORAÇÃO & SEPARADOR & LAÇO ───────────────────── */
.hero-heart-icon {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.hero-vine {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0 0.75rem;
}
.vine-icon { color: var(--sage-mid); font-size: 0.875rem; }
.vine-icon--flip { transform: scaleX(-1); display: inline-block; }
.vine-heart { color: var(--gold); font-size: 0.65rem; }

.hero-bow {
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  pointer-events: none;
  display: block;
}

/* ── HOME RECRIADA A PARTIR DA REFERÊNCIA ─────────────────── */
.home-page {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --bg: #FBF6EE;
  --text: #294B34;
  --text-mid: #58735F;
  --text-muted: #6E8A72;
  --sage: #597C5D;
  --sage-deep: #3F6748;
  --sage-mid: #91AA8D;
  --sage-light: #BED0B7;
  --sage-pale: #E6EEE0;
  --gold: #C29A4D;
  --gold-mid: #B99145;
  --gold-light: #D8BE81;
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 190, 129, 0.08), transparent 18rem),
    radial-gradient(circle at 84% 70%, rgba(145, 170, 141, 0.08), transparent 20rem),
    #FBF6EE;
}

.home-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, rgba(76, 63, 44, 0.14) 0.7px, transparent 0.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0.8px, transparent 1px);
  background-size: 25px 25px, 38px 38px;
  background-position: 0 0, 12px 10px;
}

.home-page .hero {
  min-height: 100vh;
  padding: 64px 1.5rem 2.2rem;
  place-items: start center;
  background:
    radial-gradient(circle at 10% 33%, rgba(194, 154, 77, 0.045), transparent 15rem),
    radial-gradient(circle at 88% 65%, rgba(89, 124, 93, 0.055), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)),
    var(--bg);
}

.home-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, rgba(110, 94, 66, 0.16) 0.7px, transparent 0.9px),
    linear-gradient(90deg, rgba(255,255,255,0.16), transparent 38%, rgba(255,255,255,0.12));
  background-size: 30px 30px, 100% 100%;
}

.home-page .hero-arch {
  width: min(62vw, calc(100vh - 86px), 920px);
  height: min(62vw, calc(100vh - 86px), 920px);
  min-width: 700px;
  min-height: 700px;
  top: 78px;
  background:
    linear-gradient(145deg, rgba(235, 242, 228, 0.84), rgba(244, 241, 229, 0.86)),
    #EEF5E9;
  border: 2px solid rgba(190, 208, 183, 0.48);
  box-shadow:
    inset 0 0 0 8px rgba(146, 172, 137, 0.05),
    0 18px 55px rgba(78, 97, 69, 0.08);
}

.home-page .hero-arch::before {
  opacity: 0.32;
  background-image: radial-gradient(circle, rgba(80, 104, 73, 0.21) 1px, transparent 1.2px);
  background-size: 18px 18px;
}

.home-page .hero-content {
  max-width: min(760px, 52vw);
  margin-top: clamp(5.85rem, 11.8vh, 7.45rem);
}

.home-page .hero-eyebrow {
  color: var(--gold-mid);
  font-size: clamp(0.8rem, 0.95vw, 0.98rem);
  letter-spacing: 0.24em;
  margin-bottom: 1rem;
}

.home-page .hero-heart-icon {
  color: var(--gold-light);
  font-size: 1.12rem;
  margin-bottom: 1.05rem;
}

.home-page .hero-title {
  color: var(--text);
  font-size: clamp(4.8rem, 7.35vw, 8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0;
  margin-bottom: 1.05rem;
  transform: none;
  white-space: nowrap;
}

.home-page .hero-vine {
  width: min(250px, 44vw);
  height: 22px;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 0.7rem;
  color: var(--sage-mid);
}

.home-page .vine-line {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 170, 141, 0.8));
}

.home-page .vine-line:last-child {
  background: linear-gradient(90deg, rgba(145, 170, 141, 0.8), transparent);
}

.home-page .vine-leaf {
  position: relative;
  width: 48px;
  height: 18px;
}

.home-page .vine-leaf::before,
.home-page .vine-leaf::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 7px;
  border-radius: 14px 0 14px 0;
  background: rgba(145, 170, 141, 0.7);
  transform: rotate(28deg);
}

.home-page .vine-leaf::before { left: 6px; top: 3px; }
.home-page .vine-leaf::after { left: 23px; top: 8px; }
.home-page .vine-right { transform: scaleX(-1); }

.home-page .vine-heart {
  color: var(--gold-light);
  font-size: 0.95rem;
  line-height: 1;
}

.home-page .hero-couple {
  color: var(--text);
  font-size: clamp(2.35rem, 3.65vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
  margin: 0.25rem 0 0.65rem;
  letter-spacing: 0;
}

.home-page .hero-couple .sep {
  color: var(--gold-mid);
  font-style: italic;
  font-weight: 500;
  margin: 0 0.25rem;
}

.home-page .hero-date {
  color: #6B886C;
  font-size: clamp(0.98rem, 1.18vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.7rem;
}

.home-page .hero-date span {
  color: var(--gold-mid);
  margin: 0 0.6rem;
}

.home-page .countdown {
  gap: 1.05rem;
  margin-bottom: 1.95rem;
}

.home-page .countdown-item {
  width: 88px;
  min-width: 88px;
  height: 88px;
  padding: 1rem 0.55rem 0.72rem;
  border-radius: 13px;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(222, 222, 205, 0.74);
  box-shadow: 0 13px 24px rgba(70, 78, 60, 0.12);
}

.home-page .countdown-item .num {
  color: var(--text);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 0.88;
}

.home-page .countdown-item .lbl {
  color: var(--gold-mid);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 0.52rem;
}

.home-page .btn-group {
  gap: 1.1rem;
}

.home-page .btn {
  min-width: 214px;
  min-height: 50px;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  gap: 0.7rem;
  padding: 0.72rem 1.45rem;
  letter-spacing: 0;
}

.home-page .btn-primary {
  background: linear-gradient(180deg, #65936B, #48724F);
  box-shadow: 0 12px 26px rgba(64, 103, 72, 0.28);
}

.home-page .btn-ghost {
  color: #55725B;
  border-color: rgba(119, 151, 121, 0.58);
  background: rgba(250, 248, 239, 0.35);
}

.home-page .btn-svg {
  width: 21px;
  height: 21px;
  display: inline-flex;
}

.home-page .btn-svg svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .hero-bow {
  width: 260px;
  bottom: -3.9rem;
  opacity: 0.88;
}

.home-page .hero-bottom-heart {
  position: absolute;
  left: 50%;
  bottom: -2.1rem;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.9;
}

.home-page .hero-floral {
  opacity: 0.8;
  filter: saturate(0.86) contrast(0.96);
}

.home-page .hero-fl-tl1 {
  top: 44px;
  left: -150px;
  width: min(410px, 30vw);
  transform: rotate(-24deg) scaleX(-1);
}

.home-page .hero-fl-tl2 {
  top: 54px;
  left: 112px;
  width: min(315px, 22vw);
  transform: rotate(66deg) scaleX(-1);
  opacity: 0.62;
}

.home-page .hero-fl-rm {
  top: 40%;
  right: -38px;
  width: min(300px, 20vw);
  transform: rotate(-18deg);
  opacity: 0.62;
}

.home-page .hero-fl-br {
  right: -118px;
  bottom: -70px;
  width: min(550px, 37vw);
  transform: rotate(-8deg);
}

.home-page .bg-heart {
  color: var(--gold-light);
  font-size: 2rem;
  opacity: 0.74;
}

.home-page .bg-heart-1 { left: 88%; top: 25%; transform: rotate(-18deg); }
.home-page .bg-heart-2 { left: 11.5%; top: 74%; font-size: 1.8rem; transform: rotate(16deg); }
.home-page .bg-heart-3 { left: 49.5%; top: 95%; font-size: 1.55rem; }
.home-page .bg-heart-4 { left: 97%; top: 50%; font-size: 1rem; opacity: 0.4; }

.home-page .bg-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.45;
  z-index: 0;
}

.home-page .bg-dot-1 { left: 22%; top: 86%; }
.home-page .bg-dot-2 { right: 9%; top: 34%; }
.home-page .bg-dot-3 { left: 9%; top: 69%; width: 4px; height: 4px; }

@media (max-width: 1100px) {
  .home-page .hero-arch {
    min-width: 0;
    min-height: 0;
    width: min(88vw, 760px);
    height: min(88vw, 760px);
  }

  .home-page .hero-title {
    font-size: clamp(4.2rem, 12vw, 7.2rem);
    white-space: normal;
  }

  .home-page .hero-content {
    max-width: 88vw;
  }
}

@media (max-width: 767px) {
  .home-page .hero {
    padding: 64px 1rem 3.6rem;
    min-height: 940px;
  }

  .home-page .hero-arch {
    top: 82px;
    width: min(112vw, 580px);
    height: min(112vw, 580px);
  }

  .home-page .hero-content {
    margin-top: 5.25rem;
    max-width: 100%;
  }

  .home-page .hero-eyebrow {
    font-size: 0.78rem;
  }

  .home-page .hero-title {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .home-page .hero-couple {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .home-page .hero-date {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.55rem;
  }

  .home-page .countdown {
    gap: 0.55rem;
    margin-bottom: 1.55rem;
  }

  .home-page .countdown-item {
    width: 64px;
    min-width: 64px;
    height: 72px;
    border-radius: 11px;
    padding: 0.85rem 0.35rem 0.55rem;
  }

  .home-page .countdown-item .num {
    font-size: 1.8rem;
  }

  .home-page .countdown-item .lbl {
    font-size: 0.54rem;
    letter-spacing: 0.13em;
    margin-top: 0.48rem;
  }

  .home-page .btn-group {
    gap: 0.75rem;
  }

  .home-page .btn {
    min-width: min(100%, 300px);
    width: min(100%, 270px);
    min-height: 50px;
    font-size: 1.02rem;
  }

  .home-page .hero-bow {
    width: 220px;
    bottom: -3rem;
  }

  .home-page .hero-bottom-heart {
    bottom: -1.7rem;
    font-size: 1.2rem;
  }

  .home-page .hero-fl-tl1 {
    width: 245px;
    left: -110px;
    top: 60px;
  }

  .home-page .hero-fl-tl2 {
    width: 175px;
    left: 38px;
    top: 76px;
  }

  .home-page .hero-fl-rm {
    width: 145px;
    right: -70px;
    top: 41%;
  }

  .home-page .hero-fl-br {
    width: 260px;
    right: -105px;
    bottom: -42px;
  }
}
