:root {
  --paper: #fffaf6;
  --cream: #f4ece4;
  --rose: #b97b72;
  --rose-dark: #7a4b45;
  --ink: #2d2825;
  --muted: #766b63;
  --line: #e8d9d0;
  --green: #8c9a82;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

img.image-missing {
  object-fit: contain !important;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(185, 123, 114, .18), rgba(140, 154, 130, .18)),
    var(--cream) !important;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 246, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #9f2432;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: clamp(26px, 3.8vw, 38px);
  height: clamp(26px, 3.8vw, 38px);
  flex: 0 0 auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
}

.menu a:hover {
  color: var(--rose-dark);
}

.menu .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: #9f2432;
  border: 1px solid rgba(159, 36, 50, .3);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(159, 36, 50, .18);
}

.menu .nav-cta:hover {
  color: #fff;
  background: #7f1f2a;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 18, 16, .72), rgba(20, 18, 16, .42));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #c9b5a4, #8c9a82);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(940px, calc(100% - 36px));
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .34);
}

.eyebrow,
.role {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 700;
}

.hero-content p:last-child {
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 5vw, 54px);
}

.section-pad {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-title,
.section-heading,
.couple-grid,
.timeline,
.venue-grid,
.wedding-party,
.photos .intro,
.photo-grid {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2,
.countdown-band h2,
.footer h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
}

.section-heading h2,
.rsvp h2 {
  padding-bottom: 22px;
}

.rsvp h2 {
  padding-bottom: 0;
}

.section-heading h2::before,
.rsvp h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: #9f2432;
  box-shadow: -18px 18px 0 #c98991, 18px -18px 0 #c98991;
}

.section-heading h2::after,
.rsvp h2::after {
  content: none;
}

.rsvp h2::before {
  content: none;
}

.couple {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.couple-grid {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(320px, 1.28fr) minmax(190px, .72fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
}

.profile {
  text-align: center;
}

.profile > img {
  width: min(210px, 58vw);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid #fff;
  box-shadow: 0 18px 38px rgba(122, 75, 69, .16);
  background: var(--cream);
}

.profile h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.profile p:not(.role) {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.socials a.facebook {
  background: #1877f2;
}

.socials a.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 78%, #515bd4);
}

.socials a.tiktok {
  background: #111;
  box-shadow: inset 3px 0 0 #25f4ee, inset -3px 0 0 #fe2c55;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.memory-carousel {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2vw, 24px);
  isolation: isolate;
}

.memory-carousel::before,
.memory-carousel::after {
  content: none;
}

.memory-carousel::before {
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 18%, rgba(159, 36, 50, .14), transparent 28%),
    radial-gradient(circle at 78% 86%, rgba(140, 154, 130, .18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(244, 236, 228, .7));
  box-shadow: inset 0 0 0 1px rgba(159, 36, 50, .12);
}

.memory-carousel::after {
  width: min(86%, 500px);
  height: min(86%, 500px);
  left: 50%;
  top: 50%;
  border-radius: 24px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .34);
  box-shadow:
    0 0 42px rgba(159, 36, 50, .18),
    0 0 90px rgba(140, 154, 130, .16);
}

.carousel-frame {
  width: min(460px, 100%);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border: 14px solid #fff;
  outline: 1px solid rgba(159, 36, 50, .16);
  border-radius: 18px;
  background: var(--cream);
  box-shadow:
    0 24px 58px rgba(45, 40, 37, .22),
    0 0 34px rgba(159, 36, 50, .16),
    0 0 0 1px rgba(159, 36, 50, .12);
}

.carousel-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 10px;
  pointer-events: none;
}

.carousel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 38%, rgba(45, 40, 37, .08));
  pointer-events: none;
}

.carousel-track {
  height: 100%;
  display: flex;
  transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.carousel-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159, 36, 50, .28);
  border-radius: 50%;
  color: #9f2432;
  background: rgba(255, 250, 246, .94);
  box-shadow: 0 14px 28px rgba(45, 40, 37, .14);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button:hover {
  color: #fff;
  background: #9f2432;
}

.carousel-button.prev {
  left: 4px;
}

.carousel-button.next {
  right: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(159, 36, 50, .32);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: #9f2432;
}

.countdown-band {
  padding: 78px 20px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 85%, rgba(255, 255, 255, .1), transparent 30%),
    linear-gradient(135deg, rgba(159, 36, 50, .96), rgba(97, 43, 45, .95)),
    var(--rose-dark);
}

.countdown {
  width: min(760px, 100%);
  margin: 34px auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.countdown div {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .13);
}

.countdown strong {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
}

.countdown span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.count-summary {
  width: min(820px, 100%);
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.count-summary span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.countdown-band p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
}

.story {
  background: #fff;
}

.schedule {
  background: var(--paper);
}

.schedule-list {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(159, 36, 50, .1);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(45, 40, 37, .08);
}

.schedule-item time {
  margin: 0;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: #fff;
  background: #9f2432;
  border-radius: 22px 8px 22px 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 16px 28px rgba(159, 36, 50, .22);
}

.schedule-item span {
  color: #9f2432;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.schedule-item h3 {
  margin: 4px 0 8px;
  font-size: 34px;
}

.schedule-item p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 58px;
}

.timeline-item {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.timeline-item.reverse {
  grid-template-columns: 1.1fr .9fr;
}

.timeline-item.reverse img {
  order: 2;
}

.timeline-item img,
.venue-grid img,
.photo-grid img {
  width: 100%;
  object-fit: cover;
  background: var(--cream);
}

.timeline-item img {
  aspect-ratio: 4 / 3;
  border: 12px solid #fff;
  border-radius: 34px 8px 42px 12px;
  box-shadow:
    0 22px 50px rgba(45, 40, 37, .16),
    0 0 0 1px rgba(159, 36, 50, .08);
}

.timeline-item:nth-child(even) img {
  border-radius: 8px 38px 14px 46px;
}

.timeline-item img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 62px rgba(45, 40, 37, .2),
    0 0 34px rgba(159, 36, 50, .12);
}

.timeline-item h3,
.venue-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 52px);
}

time {
  display: block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.timeline-item p,
.venue-grid p,
.photos .intro {
  color: var(--muted);
}

.heart {
  color: var(--rose-dark) !important;
  font-weight: 700;
}

.venue {
  background: var(--cream);
}

.promo-banner {
  padding: 42px 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 85%, rgba(255, 255, 255, .1), transparent 30%),
    linear-gradient(135deg, rgba(159, 36, 50, .96), rgba(97, 43, 45, .95)),
    var(--rose-dark);
}

.promo-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: #fff;
}

.promo-inner img {
  width: min(190px, 62vw);
  max-height: 58px;
  object-fit: contain;
}

.promo-logo {
  width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
}

.promo-inner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.promo-inner p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.promo-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 22px;
  color: #7a2730;
  background: #fffaf6;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(45, 40, 37, .18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-inner a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 64px;
}

.venue-card {
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(159, 36, 50, .1);
  box-shadow: 0 24px 52px rgba(45, 40, 37, .12);
}

.venue-grid h3,
.venue-grid p,
.venue-tag {
  padding-inline: 28px;
}

.venue-grid h3 {
  margin-top: 0;
  padding-top: 0;
  font-size: clamp(32px, 4vw, 48px);
}

.venue-grid p {
  margin-bottom: 0;
}

.venue-tag {
  margin: 28px 0 8px;
  color: #9f2432;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.venue-grid img {
  margin-top: 24px;
  aspect-ratio: 16 / 10;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 22px auto 18px;
  padding: 0 18px;
  color: #fff;
  background: #9f2432;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.venue-map {
  display: block;
  width: calc(100% - 28px);
  height: 250px;
  margin: 0 14px 14px;
  border: 0;
  border-radius: 14px;
  filter: saturate(.86) contrast(.96);
}

.transport-box {
  margin: 0 14px 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  text-align: left;
  background: #fffaf6;
  border-top: 1px solid rgba(159, 36, 50, .12);
}

.transport-box span {
  color: #9f2432;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.transport-box svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: #9f2432;
  fill: currentColor;
  background: rgba(159, 36, 50, .09);
  border-radius: 12px;
}

.transport-box p {
  padding: 0;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.special-people {
  background: #fff;
}

.faq {
  background: var(--cream);
}

.faq-list {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(159, 36, 50, .1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(45, 40, 37, .08);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: #9f2432;
  border-radius: 50%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.quick-contact {
  padding: 32px 16px;
  background: #fff;
}

.quick-contact-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(159, 36, 50, .1);
  box-shadow: 0 18px 42px rgba(45, 40, 37, .08);
}

.quick-contact span {
  color: #9f2432;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quick-actions span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.quick-contact p {
  margin: 6px 0 0;
  color: var(--muted);
}

.quick-actions {
  display: grid;
  gap: 12px;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  background: #25d366;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(37, 211, 102, .2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.quick-actions a:hover {
  background: #1ebe5d;
}

.quick-actions svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex: 0 0 auto;
}

.wedding-party {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.wedding-party article {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(159, 36, 50, .08);
  border-radius: 18px;
  box-shadow:
    0 18px 42px rgba(45, 40, 37, .08),
    inset 0 0 0 1px rgba(255, 255, 255, .8);
  transition: transform .28s ease, box-shadow .28s ease;
}

.wedding-party article:nth-child(even) {
  border-radius: 18px;
}

.wedding-party article:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 54px rgba(45, 40, 37, .14),
    0 0 34px rgba(159, 36, 50, .12);
}

.wedding-party img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e6d8ce;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(45, 40, 37, .1);
}

.wedding-party span {
  display: block;
  margin: 18px 0 4px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wedding-party h3 {
  margin: 0 8px;
  font-size: 28px;
}

.photos {
  background: #fff;
}

.photos .intro {
  max-width: 820px;
  margin-bottom: 38px;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-grid img {
  aspect-ratio: 1;
}

.rsvp {
  color: #fff;
  background:
    linear-gradient(rgba(45, 40, 37, .74), rgba(45, 40, 37, .74)),
    url("../images/countdown-bg.png") center / cover;
}

.rsvp-inner {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.rsvp .eyebrow {
  color: rgba(255, 255, 255, .78);
}

.rsvp h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
}

.rsvp p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px auto 32px;
  color: rgba(255, 255, 255, .86);
}

.rsvp-form {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 250, 246, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form button {
  min-height: 50px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.rsvp-form input,
.rsvp-form select {
  width: 100%;
  padding: 0 14px;
  color: rgba(45, 40, 37, .7);
  background: rgba(255, 255, 255, .92);
}

.rsvp-form button {
  padding: 0 20px;
  color: #fff;
  background: #9f2432;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rsvp-form :disabled {
  opacity: 1;
  cursor: default;
}

.footer {
  padding: 64px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 85%, rgba(255, 255, 255, .1), transparent 30%),
    linear-gradient(135deg, rgba(159, 36, 50, .96), rgba(97, 43, 45, .95)),
    var(--rose-dark);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer .eyebrow {
  color: rgba(255, 255, 255, .7);
}

.footer p:not(.eyebrow) {
  margin: 10px 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer img {
  width: 150px;
  min-height: 90px;
  margin: 0 auto;
  object-fit: contain;
}

.footer h3 {
  margin: 0 0 8px;
  font-size: 34px;
}

.footer address {
  display: grid;
  gap: 8px;
  justify-self: end;
  font-style: normal;
  text-align: right;
}

.footer address strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: #fff;
    border: 0;
    box-shadow: none;
    opacity: 0;
    transition: max-height .34s ease, opacity .24s ease, padding .34s ease;
  }

  .menu.open {
    max-height: 520px;
    padding: 12px 16px;
    opacity: 1;
  }

  .menu a {
    padding: 14px 12px;
  }

  .menu .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .couple-grid,
  .timeline-item,
  .timeline-item.reverse,
  .venue-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline-item.reverse img {
    order: 0;
  }

  .wedding-party,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memory-carousel {
    order: 3;
  }

  .rsvp-form {
    grid-template-columns: 1fr;
  }

  .venue-card,
  .transport-box,
  .schedule-item,
  .quick-contact-inner {
    text-align: center;
  }

  .transport-box {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .quick-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
  }

  .quick-actions a {
    width: 100%;
    justify-content: center;
  }

  .schedule-item time {
    margin: 0 auto;
  }

  .schedule-item,
  .quick-contact-inner {
    grid-template-columns: 1fr;
  }

  .schedule-item::before {
    content: none;
  }

  .quick-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer address {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 66px;
    width: 100%;
    padding: 0 16px;
  }

  .menu {
    top: 66px;
  }

  .hero {
    min-height: calc(100vh - 66px);
  }

  .brand {
    min-width: 0;
    font-size: clamp(22px, 8vw, 30px);
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .wedding-party,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .carousel-button.prev {
    left: -2px;
  }

  .carousel-button.next {
    right: -2px;
  }

  .rsvp-form button {
    white-space: normal;
  }
}

.reveal-section,
.reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(10px);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.2, .8, .2, 1),
    filter .85s ease;
}

.reveal-section.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-item:nth-child(2n) {
  transition-delay: .08s;
}

.reveal-item:nth-child(3n) {
  transition-delay: .16s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .carousel-track,
  .reveal-section,
  .reveal-item {
    transition: none;
  }

  .reveal-section,
  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Edad de los novios (añadido por la plataforma) */
.profile p.age {
  margin: 0 auto 18px;
  color: var(--rose);
  font-weight: 600;
  font-size: 14px;
}
