:root {
  --bg: #f6efe8;
  --bg-soft: #fbf7f2;
  --ink: #241f1a;
  --muted: #6d655d;
  --line: rgba(36, 31, 26, 0.12);
  --card: rgba(255,255,255,0.64);
  --gold: #a67c52;
  --wine: #7f5b5b;
  --shadow: 0 30px 80px rgba(35, 24, 14, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  background: var(--bg);
}
body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 1rem;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }

.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.18;
  background-image: radial-gradient(rgba(36,31,26,0.08) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(246, 239, 232, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: transform .28s ease, opacity .28s ease;
}

.site-header--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}

.brand {
  font-family: 'Caveat', cursive;
  font-size: 2.35rem; font-weight: 600; letter-spacing: 0.01em;
}

.nav-links {
  display: flex; gap: 20px; color: var(--muted); font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover, .site-footer a:hover, .text-link:hover { color: var(--gold); }

.nav-cta, .btn {
  border-radius: 999px; padding: 14px 22px; font-weight: 500;
  font-family: inherit;
  font-size: 0.98rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--ink), #43382f);
  color: #fff; box-shadow: 0 18px 38px rgba(36,31,26,0.18);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  color: var(--ink);
}

.btn:hover, .nav-cta:hover { transform: translateY(-2px); }
.btn-block { display: block; text-align: center; width: 100%; }

.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  overflow: hidden;
}

.hero-media, .hero-overlay {
  position: absolute; inset: 0;
}

.hero-media {
  background-image: url('./assets/portada-nueva-v5.jpg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f6efe8;
  transform: none;
  transform-origin: center;
}

.hero-overlay {
  background: transparent;
}

.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding-top: 88px; padding-bottom: 160px;
}
.hero-content--empty {
  min-height: 100svh;
  padding: 0;
}

.eyebrow, .section-kicker, .mini-kicker, .tiny, .countdown-label {
  letter-spacing: 0.16em; font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.handwritten-kicker {
  font-family: 'Caveat', cursive;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.95;
  color: var(--ink);
  margin: 0 0 6px;
}

.hero h1, h2, h3 {
  line-height: 1.02;
  margin: 0;
  font-weight: 600;
}

h2, h3, .rsvp-success .section-kicker {
  font-family: 'Caveat', cursive;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8.6rem);
  margin: 12px 0 18px;
}

.hero h1 span { font-weight: 400; opacity: 0.9; }
.hero-copy {
  max-width: 760px; margin: 0 auto; font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  color: rgba(244, 236, 228, 0.9);
  text-shadow: 0 2px 16px rgba(23,18,14,0.18);
  font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

.save-date-section.section {
  padding: 112px 0 2px;
  margin-top: 0;
}
.save-date-wrap {
  display: flex;
  justify-content: center;
}
.save-date-gif {
  display: block;
  width: min(100%, 520px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #efe7de;
}
.save-date-sticker {
  width: auto;
  max-width: min(100%, 400px);
  margin-top: 52px;
  margin-bottom: -10px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.countdown-section {
  padding-top: 12px;
  padding-bottom: 24px;
}

.countdown-card {
  z-index: 2; width: min(92%, 540px);
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px); color: #fff; border-radius: var(--radius-xl);
  padding: 18px 24px 22px; box-shadow: var(--shadow);
}

.countdown-card--section {
  position: relative;
  margin: 0 auto;
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
}

.countdown-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px;
}
.countdown-grid div { text-align: center; }
.countdown-label {
  color: rgba(28, 24, 20, 0.82);
  font-family: 'Caveat', cursive;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.countdown-grid strong {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  color: rgba(28, 24, 20, 0.92);
  line-height: 0.95;
}
.countdown-grid span { color: rgba(44, 38, 32, 0.78); font-size: 0.9rem; font-weight: 500; }

.section { padding: 110px 0; position: relative; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 4.4rem); margin: 12px 0 14px; font-weight: 600; }
.section-heading p { color: var(--muted); font-size: 1rem; font-weight: 400; }
.agenda {
  padding-top: 132px;
}
.agenda-container {
  position: relative;
}
.agenda-sticker {
  position: absolute;
  left: 51%;
  top: -190px;
  transform: translateX(-50%);
  width: min(24vw, 230px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.08));
}

.date-band {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  background: rgba(255,255,255,0.58); border: 1px solid var(--line); box-shadow: var(--shadow);
  border-radius: var(--radius-xl); padding: 26px 30px; margin-bottom: 28px;
}
.date-band div { display: flex; align-items: center; gap: 18px; }
.date-band strong { font-size: 3.4rem; font-family: 'Caveat', cursive; font-weight: 600; }

.cards.two {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px;
}

.detail-card, .info-card, .rsvp-shell, .faq-item {
  background: var(--card); border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow); border-radius: var(--radius-xl); overflow: hidden;
  backdrop-filter: blur(10px);
}

.detail-card { min-height: 620px; display: grid; position: relative; }
.card-image { min-height: 340px; background-size: cover; background-position: center; }
.card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.card-body h3 { font-size: 2.2rem; }
.time { font-size: 1.1rem; font-weight: 500; color: var(--wine); }
.card-body p { color: var(--muted); margin: 0; line-height: 1.7; font-size: 0.98rem; }
.text-link { margin-top: auto; font-weight: 500; color: var(--ink); font-size: 0.98rem; }
.detail-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-xl);
}
.detail-card .text-link {
  position: relative;
  z-index: 3;
}

.full-photo {
  padding-top: 24px;
  padding-bottom: 24px;
  background: transparent;
}
.full-photo-stage {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}
.full-photo-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.grid-2,
.grid-3 {
  display: grid; gap: 22px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.info-card { padding: 28px; }
.info-card--regalo {
  position: relative;
  overflow: visible;
  padding-top: 132px;
  padding-bottom: 136px;
}
.info-card--regalo > * {
  position: relative;
  z-index: 2;
}
.gift-botanical {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 300px);
  height: auto;
  pointer-events: none;
  opacity: 0.92;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.08));
}
.gift-botanical--top {
  top: -82px;
  left: 22%;
  transform: translateX(-50%);
}
.gift-botanical--bottom {
  bottom: -86px;
  left: 64%;
  transform: translateX(-50%);
}
.info-card h3 { font-size: 2.1rem; margin: 8px 0 10px; }
.info-card p { color: var(--muted); line-height: 1.75; font-size: 0.98rem; }
.info-title { color: var(--ink) !important; font-weight: 600; }
.gift-iban {
  display: block;
  color: var(--ink) !important;
  font-weight: 600;
  line-height: 1.7;
  margin: 14px 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.gift-iban:empty,
.info-card [data-edit-key="regalo-text"]:empty {
  display: none;
}
.gift-reminder {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}
.gift-reminder[hidden] {
  display: none !important;
}
.gift-reminder__wink {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.rsvp-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  overflow: visible;
}
.rsvp-shell.rsvp-shell--success {
  max-width: 760px;
}
.rsvp-shell.rsvp-shell--success .rsvp-copy,
.rsvp-shell.rsvp-shell--success .mock-form,
.rsvp-shell.rsvp-shell--success .gift-reminder {
  display: none !important;
}
.rsvp-shell.rsvp-shell--success .rsvp-panel {
  max-width: 100%;
}
.rsvp-copy {
  position: relative;
  max-width: 920px;
  margin: 0 auto 18px;
}
.rsvp-sticker-right {
  position: absolute;
  top: -198px;
  right: -18px;
  width: min(28vw, 230px);
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.10));
}
.rsvp-dogs {
  position: absolute;
  top: -168px;
  right: -6px;
  width: min(26vw, 188px);
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.10));
}
.dynamic-timeline-container {
  position: relative;
}
.rsvp-dogs--timeline {
  top: -168px;
  right: -6px;
}
.rsvp-title-text {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 12px 84px;
  color: var(--gold);
  font-family: 'Caveat', cursive;
  font-size: clamp(3.4rem, 5.4vw, 5rem);
  line-height: 0.95;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}
.rsvp-copy p, .rsvp-copy li { color: var(--muted); line-height: 1.8; font-size: 0.98rem; }
.rsvp-panel {
  width: min(100%, 920px);
  margin: 0 auto;
}

.between-sections-sticker {
  padding: 56px 0 0;
}
.between-sections-sticker__wrap {
  display: flex;
  justify-content: center;
}
.between-sections-sticker__image {
  width: min(100%, 700px);
  margin-top: 22px;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(36, 31, 26, 0.12));
}

.faq-section {
  padding-top: 168px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
.faq-content {
  min-width: 0;
  position: relative;
}
.faq-sticker {
  position: absolute;
  top: -340px;
  right: 18px;
  width: min(18vw, 170px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.08));
}
.faq-heading {
  margin-bottom: 24px;
  max-width: 920px;
  text-align: left;
  position: relative;
}
.faq-title-text {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--gold);
  font-family: 'Caveat', cursive;
  font-size: clamp(3.8rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
}
.faq-side-sticker {
  position: absolute;
  top: 0;
  right: 56px;
  width: min(23vw, 196px);
  height: auto;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.10));
}
.faq-list { display: grid; gap: 14px; max-width: 920px; margin: 0 auto; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 28px; font-weight: 500;
  font-size: 0.98rem;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--gold); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin: 0; padding: 0 28px 24px; color: var(--muted); line-height: 1.8; font-size: 0.96rem; }
.faq-links-list {
  padding: 0 28px 24px;
  display: grid;
  gap: 12px;
}
.faq-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  line-height: 1.5;
}
.faq-link-btn {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-link-btn:hover {
  color: var(--gold);
  border-color: rgba(166, 124, 82, 0.35);
}
.faq-links-note {
  padding: 0 !important;
  margin-top: 2px !important;
}

.mock-form {
  display: grid;
  gap: 14px;
}
.rsvp-faq-list {
  max-width: 920px;
  margin: 0 auto;
}
.rsvp-teapuntas-sticker {
  display: block;
  width: min(100%, 120px);
  margin: -18px 0 0 auto;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(36, 31, 26, 0.10));
}
.rsvp-faq-item {
  overflow: hidden;
}
.rsvp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 500;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rsvp-faq-item summary::-webkit-details-marker {
  display: none;
}
.rsvp-faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--gold);
}
.rsvp-faq-item[open] summary::after {
  content: '–';
}
.rsvp-faq-body {
  padding: 0 28px 24px;
}
.rsvp-faq-body--submit {
  display: grid;
  gap: 12px;
}
.rsvp-faq-item input,
.rsvp-faq-item textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: #fffefc;
  font: inherit;
  color: var(--ink);
  font-size: 0.98rem;
}
.rsvp-faq-item textarea {
  min-height: 120px;
  resize: vertical;
}
.rsvp-faq-item input:focus,
.rsvp-faq-item textarea:focus {
  outline: 2px solid rgba(166, 124, 82, 0.18);
  outline-offset: 1px;
  border-color: rgba(166, 124, 82, 0.35);
}
.rsvp-options {
  display: grid;
  gap: 10px;
}
.rsvp-options--stacked {
  grid-template-columns: 1fr;
}
.rsvp-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.rsvp-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rsvp-option span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fffefc;
  color: var(--ink);
  font-size: 0.97rem;
  width: 100%;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.rsvp-option input:checked + span {
  background: linear-gradient(135deg, var(--ink), #43382f);
  color: #fff;
  border-color: rgba(36, 31, 26, 0.2);
}
.rsvp-option input:focus-visible + span {
  outline: 2px solid rgba(166, 124, 82, 0.45);
  outline-offset: 2px;
}
.rsvp-faq-item--submit {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.rsvp-success {
  max-width: 920px;
  margin: 14px auto 0;
  padding: 44px 28px;
  text-align: center;
}
.rsvp-success[hidden] {
  display: none !important;
}
.rsvp-success h3 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  margin: 10px 0 14px;
}
.rsvp-success p {
  margin: 0 auto;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.75;
}
.rsvp-submit {
  margin-top: 0;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.rsvp-shell.rsvp-shell--success .form-note {
  color: var(--ink);
  font-weight: 600;
}

.dynamic-timeline {
  padding-top: 34px;
  padding-bottom: 190px;
  overflow: visible;
}
.plan-dia-photo-frame {
  margin: 0 auto;
  width: min(100%, 620px);
  padding: 14px;
  background: rgba(255, 249, 243, 0.9);
  border: 1px solid rgba(129, 93, 64, 0.14);
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(74, 51, 33, 0.14);
}
.plan-dia-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.rsvp-section {
  margin-top: 150px;
  padding-bottom: 40px;
}
.rsvp-photo-wrap {
  margin-top: 64px;
  padding-top: 0;
  border-top: 0;
}
.rsvp-photo {
  display: block;
  width: min(100%, 84%);
  max-width: 640px;
  margin: 0 auto;
  height: auto;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.site-footer { padding: 20px 0 max(12px, env(safe-area-inset-bottom)); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  color: var(--muted); border-top: 1px solid var(--line); padding-top: 24px;
}
.footer-signoff {
  margin-top: 22px;
  text-align: center;
  color: rgba(109, 101, 93, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .cards.two, .grid-2, .grid-3, .rsvp-shell, .faq-layout { grid-template-columns: 1fr; }
  .cards.two {
    gap: 36px;
  }
  .detail-card { min-height: initial; }
  .rsvp-dogs {
    right: 0;
    width: min(166px, 45vw);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding: 0;
    display: grid;
    place-items: center;
    background: #f6efe8;
  }
  .hero-media {
    background-position: center center;
    transform: none;
  }
  .hero-content {
    padding-top: 88px;
    padding-bottom: 120px;
  }
  .hero-content--empty {
    min-height: 100svh;
    width: 100%;
    padding: 0;
  }
  .save-date-section.section {
    padding: 92px 0 0;
    margin-top: 0;
  }
  .save-date-gif {
    width: min(100%, 340px);
    border-radius: 22px;
  }
  .save-date-sticker {
    width: auto;
    max-width: min(100%, 280px);
    margin-top: 36px;
    margin-bottom: -8px;
    height: auto;
    border-radius: 0;
  }
  .countdown-section {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .countdown-card {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 16px 18px 18px;
  }
  .countdown-grid {
    gap: 6px;
  }
  .countdown-grid strong {
    font-size: clamp(1.55rem, 7vw, 2.3rem);
  }
  .hero h1 { font-size: 4.4rem; }
  .section { padding: 82px 0; }
  .agenda {
    padding-top: 146px;
  }
  .date-band strong { font-size: 3rem; }
  .card-body h3 { font-size: 2.4rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-signoff { margin-top: 14px; font-size: 0.92rem; }
  .info-card--regalo {
    padding-top: 106px;
    padding-bottom: 108px;
  }
  .gift-botanical {
    width: min(100%, 176px);
  }
  .gift-botanical--top {
    top: -58px;
  }
  .gift-botanical--bottom {
    bottom: -72px;
    opacity: 0.84;
  }
  .faq-heading {
    text-align: left;
  }
  .faq-title-text {
    max-width: 320px;
    margin: 0;
    font-size: clamp(2.8rem, 12vw, 3.8rem);
    text-align: left;
  }
  .faq-side-sticker {
    top: 8px;
    right: 10px;
    width: min(36vw, 132px);
  }
  .faq-link-row {
    align-items: flex-start;
  }
  .between-sections-sticker {
    padding: 34px 0 0;
  }
  .between-sections-sticker__image {
    width: min(100%, 60vw);
    margin-top: 14px;
  }
  .faq-section {
    padding-top: 136px;
  }
  .faq-sticker {
    top: -228px;
    right: 4px;
    width: min(32vw, 132px);
  }
  .dynamic-timeline {
    padding-bottom: 128px;
  }
  .plan-dia-photo-frame {
    width: min(100%, 520px);
    padding: 10px;
    border-radius: 26px;
  }
  .plan-dia-photo {
    border-radius: 18px;
  }
  .rsvp-panel {
    width: 100%;
  }
  .rsvp-teapuntas-sticker {
    width: min(100%, 96px);
    margin: -12px 0 0 auto;
  }
  .rsvp-faq-item summary {
    padding: 22px 20px;
  }
  .rsvp-faq-body {
    padding: 0 20px 20px;
  }
  .rsvp-option span {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  .rsvp-section {
    margin-top: 120px;
  }
  .rsvp-dogs {
    top: -102px;
    right: 0;
    width: min(36vw, 128px);
  }
  .rsvp-sticker-right {
    top: -118px;
    right: 0;
    width: min(36vw, 150px);
  }
  .rsvp-dogs--timeline {
    top: -102px;
    right: 0;
  }
  .rsvp-title-text {
    max-width: 320px;
    font-size: clamp(2.5rem, 10vw, 3.4rem);
    margin: 0 auto 4px 10px;
  }
  .rsvp-photo-wrap {
    margin-top: 44px;
    padding-top: 0;
  }
  .rsvp-photo {
    width: min(100%, 88%);
    max-width: 560px;
    border-radius: 24px;
  }
  .full-photo {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .full-photo-stage {
    width: 100%;
    overflow: visible;
  }
  .full-photo-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}
