@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500;1,700&family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ─────────────────────────────────────
   TOKENS — Paleta 100% aquarela
───────────────────────────────────── */
:root {
  --paper:       #FDFAF4;
  --paper-warm:  #F5EFE3;
  --paper-deep:  #E6DDD0;

  --blue:        #5B8BAF;
  --blue-mid:    #7AAAC8;
  --blue-light:  #9DC0D8;
  --blue-faint:  #C8DCE9;
  --blue-wash:   #EAF2F7;

  --terra:       #C4754A;
  --terra-light: #DFA07A;
  --terra-faint: #F0D5C2;

  --green:       #6B9A6E;
  --green-light: #9DC49F;
  --green-faint: #D4EAD5;

  --ink:         #2C2820;
  --ink-mid:     #5C4E3C;
  --ink-faint:   #9B8E7A;
  --white:       #FFFFFF;

  --ff-script: 'Playfair Display', Georgia, serif;
  --ff-poem:   'Lora', Georgia, serif;
  --ff-body:   'Jost', sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* textura papel */
body::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─────────────────────────────────────
   NAV — flutuante sobre o hero
───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .6s var(--ease), padding .6s var(--ease);
}
.nav.solid {
  background: rgba(253,250,244,.95);
  backdrop-filter: blur(16px);
  padding: 13px 60px;
  border-bottom: 1px solid var(--paper-deep);
}
.nav-logo { width: 40px; opacity: .85; transition: opacity .3s; }
.nav-logo:hover { opacity: 1; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: var(--ff-body); font-size: 10px; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mid);
  transition: color .3s;
}
.nav-links a:hover { color: var(--blue); }
.nav-burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: .4s var(--ease); }

/* ─────────────────────────────────────
   HERO — ilustração full width no topo
   nomes em script flutuando sobre ela
───────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  background: var(--paper);
  overflow: hidden;
}

/* wrapper da ilustração — ocupa a largura toda */
.hero-venue-img {
  display: block;
  width: 100%;
  max-height: 85vh;
  object-fit: cover;
  object-position: center bottom;
}

/* overlay suave no topo para os nomes */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom,
    rgba(253,250,244,.72) 0%,
    rgba(253,250,244,.1) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* conteúdo sobre a imagem */
.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.hero-monogram {
  width: 52px; margin: 0 auto 20px;
  opacity: 0; animation: rise 1.4s var(--ease) .2s forwards;
  filter: drop-shadow(0 2px 8px rgba(253,250,244,.8));
}

.hero-names {
  font-family: var(--ff-script);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  color: var(--ink);
  line-height: 1.1;
  opacity: 0; animation: rise 1.6s var(--ease) .35s forwards;
  text-shadow: 0 2px 20px rgba(253,250,244,.9), 0 0 40px rgba(253,250,244,.6);
  letter-spacing: .01em;
}

.hero-rule-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
  opacity: 0; animation: rise 1.2s var(--ease) .8s forwards;
}

.hero-date {
  font-family: var(--ff-poem);
  font-size: clamp(14px, 2vw, 18px);
  font-style: italic; font-weight: 300;
  color: var(--ink-mid);
  margin-top: 8px;
  opacity: 0; animation: rise 1.2s var(--ease) 1s forwards;
  text-shadow: 0 1px 10px rgba(253,250,244,.8);
}
.hero-place {
  font-size: 10px; font-weight: 300; letter-spacing: .26em;
  text-transform: uppercase; color: var(--blue);
  margin-top: 8px;
  opacity: 0; animation: rise 1.2s var(--ease) 1.1s forwards;
  text-shadow: 0 1px 10px rgba(253,250,244,.9);
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: rise 1s var(--ease) 2s forwards;
}
.hero-scroll-hint span { font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--blue-light), transparent); animation: pulse-line 2s ease-in-out infinite; }

/* ─────────────────────────────────────
   COUNTDOWN
───────────────────────────────────── */
.countdown {
  background: linear-gradient(135deg, var(--blue-wash) 0%, var(--paper-warm) 100%);
  border-top: 1px solid var(--blue-faint);
  border-bottom: 1px solid var(--blue-faint);
  padding: 60px 40px; text-align: center;
}
.countdown-inner { display: inline-flex; }
.cd-item { padding: 0 40px; position: relative; }
.cd-item + .cd-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); height: 28px; width: 1px; background: var(--blue-faint);
}
.cd-num {
  display: block; font-family: var(--ff-poem);
  font-size: clamp(36px, 5vw, 56px); font-style: italic; font-weight: 300;
  color: var(--blue); line-height: 1;
}
.cd-label { display: block; font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }

/* ─────────────────────────────────────
   SHARED
───────────────────────────────────── */
.section        { padding: 100px 60px; max-width: 1040px; margin: 0 auto; }
.section--tinted { background: var(--paper-warm); max-width: 100%; padding: 100px 60px; }
.section--blue   { background: var(--blue-wash);  max-width: 100%; padding: 100px 60px; }

.label { font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 16px; }
.title { font-family: var(--ff-poem); font-size: clamp(30px,4vw,52px); font-weight: 500; font-style: italic; color: var(--ink); line-height: 1.15; }
.poem  { font-family: var(--ff-poem); font-size: clamp(16px,2vw,21px); font-style: italic; font-weight: 400; color: var(--ink-mid); line-height: 1.9; }
.body-text { font-size: 14px; font-weight: 400; color: var(--ink-mid); line-height: 2; }
.rule { width: 36px; height: 1px; background: var(--blue-light); margin: 20px 0; }
.rule--center { margin: 20px auto; }

/* ─────────────────────────────────────
   DIVISORES FLORAIS / GARÇAS
───────────────────────────────────── */
.flor-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 14px 0; }
.flor-divider svg { flex-shrink: 0; }
.floral-corner { position: absolute; pointer-events: none; opacity: .45; }
.floral-corner--tl { top: 18px; left: 22px; }
.floral-corner--tr { top: 18px; right: 22px; transform: scaleX(-1); }
.floral-corner--bl { bottom: 18px; left: 22px; transform: scaleY(-1); }
.floral-corner--br { bottom: 18px; right: 22px; transform: scale(-1,-1); }

.garca { pointer-events: none; display: inline-block; }
.garca-float   { animation: garca-drift 6s ease-in-out infinite; }
.garca-float-2 { animation: garca-drift 7.5s ease-in-out 1s infinite; }
.garca-float-3 { animation: garca-drift 5.5s ease-in-out 2.5s infinite; }
@keyframes garca-drift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-7px) rotate(.7deg); }
  66%      { transform: translateY(-3px) rotate(-.4deg); }
}
.garca-strip { display: flex; align-items: flex-end; justify-content: center; gap: 36px; padding: 36px 20px 0; flex-wrap: wrap; }

/* ─────────────────────────────────────
   INFO GRID
───────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--paper-deep); border-left: 1px solid var(--paper-deep); }
.info-cell { padding: 58px 50px; border-right: 1px solid var(--paper-deep); border-bottom: 1px solid var(--paper-deep); transition: background .4s; }
.info-cell:hover { background: var(--blue-wash); }
.info-cell-label { font-size: 8px; letter-spacing: .35em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.info-cell-title { font-family: var(--ff-poem); font-size: 24px; font-style: italic; color: var(--ink); margin-bottom: 12px; }
.info-cell-text  { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 2; }
.info-cell-text a { color: var(--blue); border-bottom: 1px solid var(--blue-faint); transition: border-color .3s; }
.info-cell-text a:hover { border-color: var(--blue); }

/* ─────────────────────────────────────
   TIMELINE
───────────────────────────────────── */
.timeline { max-width: 500px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 60px 1px 1fr; gap: 0 24px; padding: 24px 0; position: relative; }
.tl-item:not(:last-child) .tl-line { position: absolute; left: 82px; top: 50px; bottom: -24px; width: 1px; background: var(--blue-faint); }
.tl-time { font-family: var(--ff-poem); font-size: 17px; font-style: italic; color: var(--blue); text-align: right; padding-top: 2px; }
.tl-dot-col { display: flex; flex-direction: column; align-items: center; padding-top: 7px; }
.tl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.tl-event { font-family: var(--ff-poem); font-size: 18px; font-style: italic; color: var(--ink); }
.tl-desc  { font-size: 12px; font-weight: 300; color: var(--ink-faint); margin-top: 3px; }

/* ─────────────────────────────────────
   DRESS CODE
───────────────────────────────────── */
.dc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 840px; margin: 0 auto; align-items: start; }
.dc-card { text-align: center; }
.dc-img-wrap { overflow: hidden; margin-bottom: 24px; background: var(--paper-warm); }
.dc-img-wrap img { width: 100%; max-height: 400px; object-fit: contain; padding: 20px; transition: transform .8s var(--ease); }
.dc-img-wrap:hover img { transform: scale(1.03); }
.dc-name { font-family: var(--ff-poem); font-size: 22px; font-style: italic; color: var(--ink); margin-bottom: 10px; }
.dc-desc { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 2; max-width: 280px; margin: 0 auto; }
.dc-swatches { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.dc-swatch { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.07); }

.family-roles { max-width: 560px; margin: 56px auto 0; }
.family-row { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--paper-deep); }
.family-row:last-child { border-bottom: none; }
.family-swatch { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,.07); }
.family-role  { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); width: 90px; flex-shrink: 0; }
.family-color { font-family: var(--ff-poem); font-size: 16px; font-style: italic; color: var(--ink); }

.no-colors-box {
  max-width: 620px; margin: 60px auto 0; padding: 38px 44px;
  border: 1px solid var(--blue-faint); background: var(--blue-wash);
  text-align: center; position: relative;
}
.no-colors-box::before { content: ''; position: absolute; inset: 6px; border: 1px solid rgba(91,139,175,.2); pointer-events: none; }
.no-colors-title { font-family: var(--ff-poem); font-size: 20px; font-style: italic; color: var(--ink); margin-bottom: 14px; }
.no-colors-desc  { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 2; margin-bottom: 22px; }
.no-swatches { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.no-swatch-item { text-align: center; }
.no-swatch { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(0,0,0,.08); margin: 0 auto 8px; position: relative; }
.no-swatch::after { content: ''; position: absolute; inset: -5px; border: 1px solid rgba(196,117,74,.45); border-radius: 50%; }
.no-swatch-label { font-size: 9px; letter-spacing: .08em; color: var(--ink-faint); line-height: 1.5; }

/* ─────────────────────────────────────
   RSVP
───────────────────────────────────── */
.rsvp-wrap { max-width: 500px; margin: 0 auto; }
.field { margin-bottom: 32px; }
.field label { display: block; font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--paper-deep); padding: 9px 0;
  font-family: var(--ff-body); font-size: 14px; font-weight: 300;
  color: var(--ink); outline: none; border-radius: 0;
  transition: border-color .4s; -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); font-size: 13px; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--blue); }
.field textarea { resize: vertical; min-height: 68px; }
.radio-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.radio-opt input { display: none; }
.radio-opt label { display: block; padding: 13px; border: 1px solid var(--paper-deep); text-align: center; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mid); cursor: pointer; transition: all .3s; }
.radio-opt input:checked + label { border-color: var(--blue); background: var(--blue-wash); color: var(--ink); }
.radio-opt label:hover { border-color: var(--blue-faint); }
.btn { display: block; width: 100%; padding: 15px; background: transparent; border: 1px solid var(--blue); font-family: var(--ff-body); font-size: 10px; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); cursor: pointer; transition: all .4s; }
.btn:hover { background: var(--blue); color: var(--white); }
.rsvp-success { display: none; text-align: center; padding: 60px 0; }
.rsvp-success.on { display: block; }
.success-icon { font-size: 26px; color: var(--blue); margin-bottom: 22px; display: block; }

/* ─────────────────────────────────────
   MARKETPLACE
───────────────────────────────────── */
.gifts-header { text-align: center; padding: 110px 40px 56px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blue-wash) 0%, var(--paper) 100%); }
.gifts-intro { font-family: var(--ff-poem); font-size: clamp(16px,2vw,20px); font-style: italic; font-weight: 300; color: var(--ink-mid); line-height: 1.85; max-width: 540px; margin: 0 auto 40px; }
.gifts-counter { text-align: center; padding: 40px 20px 18px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); }
.gifts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2px; background: var(--paper-deep); }
.gift-card { background: var(--paper); padding: 28px 24px 24px; display: flex; flex-direction: column; transition: background .35s; position: relative; }
.gift-card:hover { background: var(--blue-wash); }
.gift-status { position: absolute; top: 13px; right: 13px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; padding: 4px 9px; }
.gift-status--free     { color: var(--blue);      border: 1px solid var(--blue-faint);  background: rgba(91,139,175,.06); }
.gift-status--reserved { color: var(--ink-faint);  border: 1px solid var(--paper-deep); background: var(--paper-deep); }
.gift-img-wrap { width: 100%; aspect-ratio: 1/1; background: var(--paper-warm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; overflow: hidden; }
.gift-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .6s var(--ease); }
.gift-card:hover .gift-img-wrap img { transform: scale(1.04); }
.gift-placeholder { opacity: .22; }
.gift-name { font-family: var(--ff-poem); font-size: 15px; font-style: italic; color: var(--ink); line-height: 1.4; margin-bottom: 8px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gift-price { font-family: var(--ff-poem); font-size: 19px; font-style: italic; color: var(--blue); margin-bottom: 16px; }
.gift-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 7px; }
.gift-btn { padding: 10px 8px; font-family: var(--ff-body); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: all .3s; text-align: center; display: block; border: none; }
.gift-btn--amazon { background: transparent; border: 1px solid var(--paper-deep); color: var(--ink-mid); text-decoration: none; }
.gift-btn--amazon:hover { border-color: var(--blue); color: var(--blue); }
.gift-btn--pix { background: var(--blue); color: var(--white); }
.gift-btn--pix:hover { background: var(--blue-mid); }
.gift-card.is-reserved .gift-btn--amazon,
.gift-card.is-reserved .gift-btn--pix { opacity: .3; pointer-events: none; }
.gift-reserve-input-wrap { display: none; flex-direction: column; gap: 8px; margin-top: 8px; }
.gift-reserve-input-wrap.open { display: flex; }
.gift-cancel-wrap { display: none; flex-direction: column; gap: 8px; margin-top: 8px; }
.gift-cancel-wrap.open { display: flex; }
.gift-reserve-input-wrap input, .gift-cancel-wrap input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--paper-deep); padding: 8px 0; font-family: var(--ff-body); font-size: 13px; font-weight: 300; color: var(--ink); outline: none; transition: border-color .3s; }
.gift-reserve-input-wrap input:focus, .gift-cancel-wrap input:focus { border-bottom-color: var(--blue); }
.gift-reserve-input-wrap input::placeholder, .gift-cancel-wrap input::placeholder { color: var(--ink-faint); font-size: 12px; }
.gift-reserve-confirm { width: 100%; padding: 10px; background: transparent; border: 1px solid var(--blue); font-family: var(--ff-body); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); cursor: pointer; transition: all .3s; }
.gift-reserve-confirm:hover { background: var(--blue); color: var(--white); }
.gift-cancel-confirm { width: 100%; padding: 10px; background: transparent; border: 1px solid #b84040; font-family: var(--ff-body); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: #b84040; cursor: pointer; transition: all .3s; }
.gift-cancel-confirm:hover { background: #b84040; color: white; }
.gift-reserve-toggle { width: 100%; padding: 10px; background: transparent; border: 1px solid var(--paper-deep); font-family: var(--ff-body); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); cursor: pointer; transition: all .3s; margin-top: 4px; }
.gift-reserve-toggle:hover { border-color: var(--blue); color: var(--blue); }
.gift-reserved-by { font-size: 11px; color: var(--ink-faint); text-align: center; margin-top: 6px; font-style: italic; display: none; }
.gift-card.is-reserved .gift-reserved-by { display: block; }
.gift-msg { font-size: 11px; text-align: center; margin-top: 6px; min-height: 16px; font-style: italic; }
.gift-msg--ok  { color: var(--blue); }
.gift-msg--err { color: #b84040; }

/* ─────────────────────────────────────
   LINK / BTN
───────────────────────────────────── */
.gift-link { display: inline-block; padding: 14px 48px; border: 1px solid var(--blue); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--blue); transition: all .4s; }
.gift-link:hover { background: var(--blue); color: var(--white); }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer { border-top: 1px solid var(--blue-faint); text-align: center; padding: 64px 40px; background: linear-gradient(135deg, var(--blue-wash) 0%, var(--paper-warm) 100%); }
.footer-logo  { width: 36px; margin: 0 auto 20px; opacity: .5; }
.footer-names { font-family: var(--ff-poem); font-size: 18px; font-style: italic; color: var(--ink-mid); margin-bottom: 8px; }
.footer-date  { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); }

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-line { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .26s; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 860px) {
  .nav { padding: 18px 24px; }
  .nav.solid { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--paper); align-items: center; justify-content: center; gap: 34px; z-index: 99; }
  .nav-links.open a { font-size: 12px; }
  .nav-burger { display: flex; z-index: 101; }
  .hero-content { padding-top: 60px; }
  .hero-names { font-size: 44px; }
  .section { padding: 72px 24px; }
  .section--tinted, .section--blue { padding: 72px 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-cell { padding: 40px 24px; }
  .dc-grid { grid-template-columns: 1fr; gap: 44px; }
  .radio-pair { grid-template-columns: 1fr; }
  .cd-item { padding: 0 18px; }
  .gifts-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .gift-btns { grid-template-columns: 1fr; }
  .no-colors-box { padding: 28px 20px; }
  .garca-strip { gap: 18px; }
}
@media (max-width: 480px) {
  .hero-names { font-size: 36px; }
  .hero-venue-img { max-height: 70vh; }
  .gifts-grid { grid-template-columns: 1fr; }
}
