:root {
  --navy: #172f60;
  --soft-blue: #b0d5f0;
  --soft-green: #cbdea7;
  --blush: #f4c0af;
  --white: #ffffff;
  --ivory: #fffaf7;
  --ink-muted: #52617a;
  --border: rgba(23, 47, 96, 0.16);
  --shadow: 0 18px 45px rgba(23, 47, 96, 0.12);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
  --font-body: var(--font-serif);
  --font-display: var(--font-serif);
  --font-numeral: "Lora", Georgia, "Times New Roman", Times, serif;
  --font-script: "Luxurious Script", "Brush Script MT", cursive;
  --font-label: "Montserrat", Arial, Helvetica, sans-serif;
  --font-sans: var(--font-label);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-polished: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-soft: 520ms;
  --duration-reveal: 1100ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.68;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-frame {
  display: none;
}

.nav {
  width: min(1160px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 74px;
  text-decoration: none;
  transition: opacity var(--duration-soft) var(--ease-soft), transform var(--duration-soft) var(--ease-soft);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.brand:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  content: "";
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-line::after {
  position: absolute;
  top: 6px;
}

.nav-menu {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 0.25rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
  visibility: hidden;
  list-style: none;
  transition:
    max-height 620ms var(--ease-soft),
    opacity 360ms var(--ease-polished),
    transform 520ms var(--ease-soft),
    visibility 0ms linear 620ms;
}

.nav-menu.is-open {
  max-height: calc(100svh - 72px);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  transition:
    max-height 620ms var(--ease-soft),
    opacity 420ms var(--ease-polished),
    transform 520ms var(--ease-soft),
    visibility 0ms;
}

.nav-menu a {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 700;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.42rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform var(--duration-soft) var(--ease-soft);
}

.nav-menu a,
.button,
.text-link {
  -webkit-tap-highlight-color: rgba(244, 192, 175, 0.28);
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a[aria-current="page"] {
  background: transparent;
  color: var(--navy);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-rsvp {
  border: 1px solid var(--navy);
}

.hero {
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 5rem 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, var(--soft-blue), var(--white) 42%, var(--blush));
  border-bottom: 1px solid var(--border);
}

.hero-content,
.page-hero {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.6rem;
  line-height: 0.95;
  font-weight: normal;
}

.home-hero h1 {
  font-family: var(--font-script);
  font-size: 6.4rem;
  line-height: 0.72;
  letter-spacing: 0;
}

.hero-names {
  display: grid;
  justify-items: center;
  gap: 0.36rem;
  max-width: 100%;
}

.hero-names span {
  display: block;
}

.hero-name-line {
  padding-left: 0.09em;
  letter-spacing: 0.09em;
}

.hero-names .hero-and {
  margin: 0.35rem 0 0.5rem;
  font-size: 3.1rem;
  line-height: 0.9;
}

.hero-date,
.hero-location {
  margin: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-hero .hero-date {
  margin-top: 1rem;
}

.home-hero .hero-location {
  margin-top: 0.85rem;
  font-family: var(--font-script);
  font-size: 1.92rem;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.page-hero {
  width: min(760px, calc(100% - 2rem));
  padding: 3rem 1rem 2rem;
}

.page-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-hero p:last-child {
  max-width: 620px;
  margin: 0.75rem auto 0;
  font-size: 1.12rem;
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--ink-muted);
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 700;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.085em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--duration-soft) var(--ease-soft),
    border-color var(--duration-soft) var(--ease-soft),
    color var(--duration-soft) var(--ease-soft),
    box-shadow var(--duration-soft) var(--ease-soft),
    transform var(--duration-soft) var(--ease-soft);
  text-align: center;
  overflow-wrap: anywhere;
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 47, 96, 0.18);
}

.button:focus-visible,
.text-link:focus-visible,
.map-link:focus-visible,
.nav-menu a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--blush);
  outline-offset: 4px;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 1fr));
  gap: 1rem;
  width: min(720px, 100%);
  margin: 2.25rem auto 0;
  text-shadow: none;
}

.countdown-item {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 116px;
  padding: 1rem 0.8rem;
  border: 1px solid rgba(23, 47, 96, 0.48);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 44px rgba(23, 47, 96, 0.08);
  backdrop-filter: blur(2px);
}

.countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: var(--navy);
}

.countdown-label {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 47, 96, 0.78);
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 72px);
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 250, 247, 0.7)),
    url("assets/images/blue-floral-hero.png") center / cover no-repeat,
    var(--ivory);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero::before {
  inset: clamp(1rem, 4vw, 2.5rem);
  border: 1px solid rgba(23, 47, 96, 0.18);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.28);
  z-index: -1;
}

.home-hero::after {
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.72), transparent 34%);
}

.home-hero .hero-content {
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.84);
}

.hero-names,
.home-hero .hero-date,
.home-hero .hero-location,
.home-hero .countdown {
  opacity: 0;
  animation: invitation-fade 1.15s var(--ease-soft) forwards;
}

.hero-names {
  animation-delay: 120ms;
}

.home-hero .hero-date {
  animation-delay: 360ms;
}

.home-hero .hero-location {
  animation-delay: 460ms;
}

.home-hero .countdown {
  animation-delay: 660ms;
}

.home-hero .hero-content::before,
.home-hero .hero-content::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(260px, 46vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--blush), var(--soft-blue), transparent);
}

.home-hero .hero-content::before {
  top: 0;
}

.home-hero .hero-content::after {
  bottom: 0;
}

.hero-floral {
  display: none;
}

.hero-floral::before,
.hero-floral::after {
  content: "";
  position: absolute;
  border: 1px solid var(--navy);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.hero-floral::before {
  inset: 18px;
  transform: rotate(28deg);
}

.hero-floral::after {
  inset: 44px 12px 12px 44px;
  border-color: var(--blush);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-12deg);
}

.hero-floral-left {
  left: clamp(1rem, 8vw, 6rem);
  bottom: clamp(2rem, 10vw, 7rem);
  animation: floral-float 10s ease-in-out infinite;
}

.hero-floral-right {
  top: clamp(5rem, 12vw, 9rem);
  right: clamp(1rem, 8vw, 6rem);
  transform: scaleX(-1) rotate(10deg);
  animation: floral-float-alt 12s ease-in-out infinite;
}

.home-welcome {
  position: relative;
  background:
    linear-gradient(rgba(255, 250, 247, 0.94), rgba(255, 250, 247, 0.94)),
    linear-gradient(135deg, var(--soft-green), var(--white) 52%, var(--blush));
}

.home-welcome::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 47, 96, 0.22), transparent);
}

.welcome-panel {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-block: 1rem;
}

.welcome-panel::before {
  content: "";
  position: absolute;
  top: -1.1rem;
  left: 0;
  width: 84px;
  height: 1px;
  background: var(--blush);
}

.welcome-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.1rem;
  width: 120px;
  height: 1px;
  background: var(--soft-blue);
}

.welcome-panel p:last-child {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.18rem;
}

.home-details-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(176, 213, 240, 0.34), rgba(255, 250, 247, 0.72) 48%, rgba(244, 192, 175, 0.26));
}

.home-details-layout {
  position: relative;
  display: grid;
  gap: 3rem;
}

.home-details-title {
  position: relative;
  max-width: 560px;
}

.home-details-title h2 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.95;
}

.home-details-title::after {
  content: "";
  display: block;
  width: 132px;
  height: 1px;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, var(--blush), var(--soft-blue));
}

.home-details-list {
  display: grid;
  gap: 1.55rem;
}

.home-detail-item {
  position: relative;
  display: grid;
  gap: 1.35rem;
  padding: 1.6rem;
  border: 1px solid rgba(111, 137, 76, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
    var(--soft-green);
  box-shadow: 0 18px 42px rgba(23, 47, 96, 0.08);
}

.home-detail-item::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(111, 137, 76, 0.26);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.home-detail-meta,
.home-detail-main,
.home-detail-action {
  position: relative;
  z-index: 1;
}

.home-detail-meta,
.home-detail-main {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-detail-meta {
  gap: 0.9rem;
  color: var(--ink-muted);
}

.home-detail-meta .eyebrow {
  margin-bottom: 0;
  color: var(--navy);
}

.detail-icon {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
}

.detail-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0.86;
  filter: invert(38%) sepia(14%) saturate(821%) hue-rotate(38deg) brightness(91%) contrast(88%);
}

.detail-icon-suitcase img {
  width: auto;
  height: 78px;
  max-height: 78px;
  max-width: 78px;
  opacity: 0.9;
  filter: none;
}

.home-detail-main {
  align-content: center;
}

.home-detail-item h3 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1;
}

.home-detail-item p:not(.eyebrow),
.home-detail-address {
  margin: 0;
  color: var(--ink-muted);
}

.home-detail-action {
  display: grid;
  justify-items: center;
  align-content: center;
}

.detail-action-link {
  gap: 0.85rem;
}

.detail-action-link span {
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--duration-soft) var(--ease-soft);
}

.detail-action-link:hover span,
.detail-action-link:focus-visible span {
  transform: translateX(3px);
}

.home-preview-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--soft-blue), var(--white) 48%, var(--soft-green));
}

.home-feature-grid {
  display: grid;
  gap: 1rem;
}

.home-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(23, 47, 96, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.88)),
    var(--soft-blue);
  box-shadow: 0 16px 38px rgba(23, 47, 96, 0.06);
  transition:
    background var(--duration-soft) var(--ease-soft),
    border-color var(--duration-soft) var(--ease-soft),
    box-shadow var(--duration-soft) var(--ease-soft),
    transform var(--duration-soft) var(--ease-soft);
}

.home-feature-card::before {
  content: "";
  position: absolute;
  inset: 0.48rem;
  border: 1px solid rgba(23, 47, 96, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.home-feature-card .card-body {
  position: relative;
  z-index: 2;
}

.home-venue-story {
  position: relative;
  background: var(--ivory);
}

.home-venue-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(960px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.home-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.home-image-stack {
  position: relative;
  min-height: 390px;
}

.home-photo-main,
.home-photo-small {
  position: absolute;
  border: 1px solid rgba(23, 47, 96, 0.18);
  border-radius: 2px;
  box-shadow: 0 22px 55px rgba(23, 47, 96, 0.1);
}

.home-photo-main {
  inset: 0 12% 12% 0;
}

.home-photo-small {
  right: 0;
  bottom: 0;
  width: 42%;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(203, 222, 167, 0.74), rgba(176, 213, 240, 0.68)),
    var(--ivory);
}

.home-copy p:not(.eyebrow) {
  color: var(--ink-muted);
}

.home-copy .button {
  margin-top: 1rem;
}

.home-gallery-teaser {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--blush), var(--white) 52%, var(--soft-blue));
}

.home-gallery-strip {
  display: grid;
  gap: 0.7rem;
  align-items: end;
}

.home-gallery-strip .placeholder-image {
  min-height: 260px;
  border: 1px solid rgba(23, 47, 96, 0.14);
  border-radius: 2px;
  box-shadow: 0 16px 42px rgba(23, 47, 96, 0.08);
}

.home-rsvp-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 47, 96, 0.88), rgba(23, 47, 96, 0.92)),
    linear-gradient(135deg, var(--soft-blue), var(--blush));
  color: var(--white);
  text-align: center;
}

.home-rsvp-cta::before,
.home-rsvp-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.home-rsvp-cta::before {
  top: -80px;
  left: -70px;
}

.home-rsvp-cta::after {
  right: -90px;
  bottom: -100px;
}

.home-rsvp-cta .eyebrow,
.home-rsvp-cta h2,
.home-rsvp-cta p {
  color: var(--white);
}

.home-rsvp-cta p {
  margin-bottom: 1.4rem;
}

.home-rsvp-cta .button {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes invitation-fade {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slow-drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

@keyframes floral-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(3deg);
  }
}

@keyframes floral-float-alt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scaleX(-1) rotate(10deg);
  }

  50% {
    transform: translate3d(0, 14px, 0) scaleX(-1) rotate(6deg);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity var(--duration-reveal) var(--ease-soft),
    transform var(--duration-reveal) var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.schedule-event.reveal-on-scroll:nth-of-type(odd) {
  transform: translate3d(-10px, 18px, 0);
}

.schedule-event.reveal-on-scroll:nth-of-type(even) {
  transform: translate3d(10px, 18px, 0);
}

.schedule-event.reveal-on-scroll.is-visible {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-names,
  .home-hero .hero-date,
  .home-hero .hero-location,
  .home-hero .countdown {
    opacity: 1 !important;
    transform: none !important;
  }
}

.section {
  padding: 4.5rem 1rem;
}

.intro-section {
  background: var(--ivory);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.section-heading {
  position: relative;
  margin-bottom: 2.75rem;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, var(--blush), var(--soft-blue));
}

h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: normal;
}

h2 {
  margin: 0 0 1rem;
  font-size: 3.05rem;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.card-grid,
.venue-grid,
.party-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.card,
.venue-card,
.person-card,
.info-panel,
.rsvp-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card,
.venue-card,
.info-panel,
.registry-card,
.event-card {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.card-body {
  padding: 1.35rem;
}

.placeholder-image,
.portrait-placeholder {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(176, 213, 240, 0.72), rgba(244, 192, 175, 0.72)),
    var(--ivory);
  border-bottom: 1px solid var(--border);
}

.placeholder-image::after,
.portrait-placeholder::after {
  content: "Photo coming soon";
  min-height: inherit;
  display: grid;
  place-items: center;
  color: rgba(23, 47, 96, 0.72);
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-image.tall {
  min-height: 280px;
}

.gallery-tile {
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.gallery-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.95)),
    linear-gradient(135deg, var(--blush), var(--white) 48%, var(--soft-blue));
}

.editorial-gallery {
  display: grid;
  gap: 1rem;
}

.editorial-gallery .gallery-tile {
  min-height: 280px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-note {
  width: min(720px, 100%);
  margin: 2rem auto 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  text-align: center;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 1px;
  transform: scaleX(0.32);
  transform-origin: left;
  background: currentColor;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.map-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 260ms ease, transform 260ms ease;
}

.map-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08rem;
  height: 1px;
  transform: scaleX(0.36);
  transform-origin: left;
  background: currentColor;
  opacity: 0.58;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--navy);
  transform: translateY(-1px);
}

.map-link:hover::after,
.map-link:focus-visible::after {
  transform: scaleX(1);
}

.map-link:active {
  transform: translateY(0) scale(0.99);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.5rem;
  border-left: 4px solid var(--blush);
  background: var(--ivory);
}

.timeline-date,
.detail {
  margin: 0 0 0.5rem;
  font-family: var(--font-label);
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail {
  color: var(--ink-muted);
}

.schedule-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 250, 247, 0.86)),
    url("assets/images/schedule-floral-background.png") center top / min(1680px, 100%) auto repeat-y fixed,
    var(--ivory);
}

.schedule-inner {
  max-width: 1120px;
}

.schedule-note {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  text-align: center;
}

.schedule-note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(244, 192, 175, 0.5);
  pointer-events: none;
}

.schedule-note p {
  position: relative;
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
}

.schedule-timeline {
  display: grid;
  gap: 4.5rem;
}

.schedule-day {
  display: grid;
  gap: 2.35rem;
}

.schedule-day h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0.45rem 2.4rem;
  color: var(--navy);
  font-family: var(--font-label);
  font-size: 1.12rem;
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.schedule-day h2::before,
.schedule-day h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: rgba(23, 47, 96, 0.18);
}

.schedule-day h2::before {
  right: 100%;
}

.schedule-day h2::after {
  left: 100%;
}

.schedule-event {
  position: relative;
  display: grid;
  gap: 0;
  padding-top: 1.15rem;
}

.event-time {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  justify-self: center;
  margin-bottom: -1.15rem;
  padding: 0.6rem 1.15rem;
  border: 1px solid rgba(23, 47, 96, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-family: var(--font-label);
  font-size: 0.94rem;
  font-weight: bold;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(23, 47, 96, 0.08);
}

.event-time span + span::before {
  content: "-";
  margin-right: 0.5rem;
  color: var(--ink-muted);
}

.event-card {
  padding: 2.3rem 1.8rem 1.8rem;
  border: 1px solid rgba(23, 47, 96, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
  box-shadow: 0 18px 44px rgba(23, 47, 96, 0.07);
}

.event-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-script);
  font-size: 2.95rem;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.01em;
}

.event-card p {
  margin: 0.9rem 0 0;
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 1.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(23, 47, 96, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background var(--duration-soft) var(--ease-soft),
    border-color var(--duration-soft) var(--ease-soft),
    box-shadow var(--duration-soft) var(--ease-soft),
    transform var(--duration-soft) var(--ease-soft);
}

.calendar-link::before {
  content: "+";
  margin-right: 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.calendar-link:hover,
.calendar-link:focus-visible {
  border-color: rgba(23, 47, 96, 0.32);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 47, 96, 0.1);
  transform: translateY(-1px);
}

.event-card .eyebrow {
  margin: 0 0 0.85rem;
  color: var(--navy);
}

.event-location,
.event-address {
  font-family: var(--font-sans);
  font-weight: bold;
}

.event-location {
  color: var(--navy);
  letter-spacing: 0.03em;
}

.event-address {
  color: var(--ink-muted);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-address::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 1.35rem 0 1.1rem;
  background: linear-gradient(90deg, rgba(23, 47, 96, 0.18), rgba(203, 222, 167, 0.8), rgba(23, 47, 96, 0.18));
}

.attire-note {
  padding-top: 0;
  border-top: 0;
  color: var(--ink-muted);
  font-style: italic;
}

.venues-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--blush), var(--white) 45%, var(--soft-blue));
}

.venue-showcase {
  display: grid;
  gap: 2rem;
}

.venue-feature {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.venue-feature::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 82px;
  height: 82px;
  border-top: 1px solid var(--soft-blue);
  border-right: 1px solid var(--blush);
  pointer-events: none;
}

.venue-feature:nth-child(even)::before {
  right: auto;
  left: 1rem;
  border-right: 0;
  border-left: 1px solid var(--soft-green);
}

.venue-image {
  min-height: 280px;
  border-bottom: 1px solid var(--border);
}

.venue-photo {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.venue-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.venue-copy {
  padding: clamp(1.5rem, 5vw, 3rem);
}

.venue-copy .eyebrow,
.event-card .eyebrow,
.registry-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.venue-copy .eyebrow::after,
.event-card .eyebrow::after,
.registry-card .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.venue-copy h2 {
  margin-bottom: 0.8rem;
}

.venue-copy p {
  margin: 0.95rem 0 0;
}

.venue-copy .button {
  margin-top: 1.35rem;
}

.venue-address {
  color: var(--ink-muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.venue-map-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(176, 213, 240, 0.2), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(244, 192, 175, 0.16), transparent 28%),
    linear-gradient(rgba(255, 250, 247, 0.96), rgba(255, 250, 247, 0.98));
}

.venue-map-layout {
  display: grid;
  gap: 1.9rem;
}

.venue-map-copy {
  display: grid;
  justify-items: start;
  max-width: 860px;
}

.venue-map-copy h2 {
  font-size: clamp(3.1rem, 7vw, 4.9rem);
}

.venue-map-copy p:not(.eyebrow) {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.venue-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.venue-map-link {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.35rem;
  padding: 0.72rem 1.45rem;
  border: 1px solid rgba(23, 47, 96, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(23, 47, 96, 0.045);
  transition:
    background-color var(--duration-soft) var(--ease-soft),
    border-color var(--duration-soft) var(--ease-soft),
    box-shadow var(--duration-soft) var(--ease-soft),
    transform var(--duration-soft) var(--ease-soft);
}

.venue-map-link-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  background-color: rgba(23, 47, 96, 0.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.venue-map-link-icon-church,
.venue-map-link-icon-battle {
  background-color: transparent;
  filter: invert(40%) sepia(9%) saturate(900%) hue-rotate(178deg) brightness(90%) contrast(86%);
}

.venue-map-link-icon-church {
  background-image: url("assets/icons/church-icon.png");
}

.venue-map-link-icon-battle {
  background-image: url("assets/icons/battle-house-icon.png");
}

.venue-map-link-icon-noja {
  background-color: transparent;
  background-image: url("assets/icons/noja-icon.png");
  filter: invert(40%) sepia(9%) saturate(900%) hue-rotate(178deg) brightness(90%) contrast(86%);
}

.venue-map-link:hover,
.venue-map-link:focus-visible,
.venue-map-link.is-active {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(23, 47, 96, 0.3);
  box-shadow: 0 16px 38px rgba(23, 47, 96, 0.09);
}

.venue-map-link:hover,
.venue-map-link:focus-visible {
  transform: translateY(-2px);
}

.venue-map-link.is-active {
  box-shadow:
    0 16px 38px rgba(23, 47, 96, 0.08),
    inset 0 0 0 1px rgba(23, 47, 96, 0.08);
  transform: none;
}

.venue-map-frame {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(23, 47, 96, 0.16);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 22px 52px rgba(23, 47, 96, 0.12);
}

.venue-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 250, 247, 0.14), rgba(255, 250, 247, 0.14)),
    radial-gradient(circle at 76% 20%, rgba(176, 213, 240, 0.16), transparent 36%);
  mix-blend-mode: screen;
}

.venue-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.72) contrast(0.9) brightness(1.08);
}

.lodging-section {
  background:
    linear-gradient(rgba(255, 250, 247, 0.9), rgba(255, 250, 247, 0.96)),
    linear-gradient(135deg, var(--soft-blue), var(--white) 48%, var(--blush));
}

.lodging-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.lodging-illustration {
  position: relative;
  margin: 0;
  padding: clamp(1rem, 4vw, 2rem);
  background: transparent;
}

.lodging-illustration img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(23, 47, 96, 0.14));
}

.lodging-copy {
  max-width: 620px;
}

.lodging-copy p:not(.eyebrow):not(.venue-address) {
  color: var(--ink-muted);
}

.lodging-amenities-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--soft-green), var(--white) 48%, var(--soft-blue));
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0.75rem auto 0;
  color: var(--ink-muted);
}

.lodging-detail-grid {
  display: grid;
  gap: 1rem;
}

.lodging-detail {
  position: relative;
  overflow: hidden;
  padding: calc(1.5rem + 2px);
  border-radius: 6px;
  --border-progress: 0;
  --border-angle: 360deg;
  background:
    linear-gradient(var(--lodging-card-fill, var(--white)), var(--lodging-card-fill, var(--white))) padding-box,
    conic-gradient(
      from var(--border-angle),
      rgba(23, 47, 96, 0.1),
      rgba(176, 213, 240, 0.94) 16%,
      rgba(244, 192, 175, 0.96) 34%,
      rgba(203, 222, 167, 0.9) 52%,
      rgba(255, 250, 247, 0.72) 68%,
      rgba(23, 47, 96, 0.18) 82%,
      rgba(176, 213, 240, 0.94)
    ) border-box;
  border: 2px solid transparent;
  box-shadow: 0 16px 38px rgba(23, 47, 96, 0.05);
}

.lodging-detail::before {
  content: "";
  position: absolute;
  inset: 0.72rem;
  border: 1px solid rgba(23, 47, 96, 0.08);
  border-radius: 4px;
  pointer-events: none;
}

.lodging-detail h3 {
  font-size: 1.75rem;
}

.lodging-detail p:not(.eyebrow) {
  color: var(--ink-muted);
}

.lodging-facts-section {
  background: var(--ivory);
}

.lodging-facts-layout {
  display: grid;
  gap: 2.5rem;
}

.lodging-facts-heading {
  position: relative;
}

.lodging-facts-heading::after {
  content: "";
  display: block;
  width: 132px;
  height: 1px;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, var(--blush), var(--soft-blue));
}

.lodging-facts-list {
  display: grid;
  gap: 0;
}

.lodging-fact {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.lodging-fact:last-child {
  border-bottom: 1px solid var(--border);
}

.lodging-fact h3 {
  font-size: 1.65rem;
}

.lodging-fact p {
  color: var(--ink-muted);
}

.wedding-party-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--soft-blue), var(--white) 46%, var(--blush));
}

.party-group + .party-group {
  margin-top: 4rem;
}

.party-group-heading {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.party-group-heading h2 {
  margin-bottom: 0;
}

.party-group {
  position: relative;
}

.party-group::before {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: var(--blush);
}

.groomsmen::before {
  background: var(--soft-blue);
}

.person-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.person-card::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border-top: 1px solid var(--blush);
  border-right: 1px solid var(--soft-blue);
}

.groomsmen .person-card::after {
  border-top-color: var(--soft-blue);
  border-right-color: var(--soft-green);
}

.portrait-placeholder {
  min-height: 240px;
  border-bottom: 1px solid var(--border);
}

.person-copy {
  padding: 1.2rem;
}

.person-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.person-role {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-bio {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.registry-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--soft-green), var(--white) 46%, var(--soft-blue));
}

.registry-grid {
  display: grid;
  gap: 1.25rem;
}

.registry-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.registry-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  border-top: 1px solid var(--blush);
  border-right: 1px solid var(--soft-blue);
}

.registry-card h2 {
  font-size: 2.2rem;
}

.registry-card p:not(.eyebrow) {
  color: var(--ink-muted);
}

.registry-card .button {
  margin-top: 1rem;
}

.travel-section {
  padding-top: 1.75rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(176, 213, 240, 0.55), var(--white) 46%, rgba(203, 222, 167, 0.5));
}

.airport-grid {
  display: grid;
  gap: clamp(0.95rem, 2vw, 1.25rem);
}

.travel-section-heading {
  margin-bottom: 1.1rem;
}

.airport-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.25rem);
  padding: clamp(1.2rem, 3vw, 1.85rem);
  border: 1px solid rgba(176, 213, 240, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(23, 47, 96, 0.07);
  transition:
    border-color var(--duration-soft) var(--ease-soft),
    box-shadow var(--duration-soft) var(--ease-soft),
    transform var(--duration-soft) var(--ease-soft);
}

.airport-card::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(176, 213, 240, 0.38);
  border-radius: 6px;
  pointer-events: none;
}

.airport-card-green {
  border-color: rgba(203, 222, 167, 0.95);
}

.airport-card-green::before {
  border-color: rgba(203, 222, 167, 0.5);
}

.airport-card-rose {
  border-color: rgba(244, 192, 175, 0.95);
}

.airport-card-rose::before {
  border-color: rgba(244, 192, 175, 0.5);
}

.airport-card-top,
.airport-details,
.airport-actions {
  position: relative;
  z-index: 1;
}

.airport-card-top {
  position: relative;
  z-index: 1;
}

.airport-card h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 0.98;
}

.airport-details {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.airport-details div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(23, 47, 96, 0.12);
}

.airport-details dt {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.airport-details dd {
  margin: 0.25rem 0 0;
  color: var(--navy);
  font-size: 1.12rem;
}

.airport-actions {
  display: grid;
  gap: 0.65rem;
  align-self: end;
}

.airport-actions .button {
  width: 100%;
  padding-inline: 1rem;
}

.travel-note {
  width: min(860px, 100%);
  margin: 1.15rem auto 0;
  padding: 0.9rem 1.1rem;
  border-left: 2px solid var(--soft-blue);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-muted);
  text-align: center;
}

.travel-weather-section {
  background:
    linear-gradient(rgba(255, 250, 247, 0.9), rgba(255, 250, 247, 0.96)),
    linear-gradient(135deg, rgba(176, 213, 240, 0.45), var(--white) 42%, rgba(244, 192, 175, 0.38));
}

.weather-panel {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3.2vw, 2.35rem);
  border: 1px solid rgba(176, 213, 240, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 247, 0.9)),
    var(--white);
  box-shadow: 0 18px 44px rgba(23, 47, 96, 0.08);
}

.weather-panel::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(203, 222, 167, 0.5);
  border-radius: 6px;
  pointer-events: none;
}

.weather-panel::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 4vw, 2.4rem);
  top: clamp(1rem, 4vw, 2.4rem);
  width: clamp(4rem, 12vw, 7rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(203, 222, 167, 0), rgba(203, 222, 167, 0.95));
}

.weather-panel > * {
  position: relative;
  z-index: 1;
}

.weather-panel-header {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 3vw, 1.6rem);
}

.weather-panel-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.weather-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 0.95;
}

.weather-panel-location {
  margin: 0.25rem 0 0;
  font-family: var(--font-accent);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  color: var(--navy);
  white-space: nowrap;
}

.weather-current {
  display: grid;
  gap: 1rem;
  align-items: end;
  padding-bottom: clamp(1rem, 2.6vw, 1.5rem);
  border-bottom: 1px solid rgba(23, 47, 96, 0.14);
}

.weather-panel-temp {
  margin: 0;
  font-family: var(--font-numeral);
  font-size: clamp(3.9rem, 10vw, 6.7rem);
  line-height: 0.95;
  color: var(--navy);
}

.weather-condition {
  margin: 0.3rem 0 0;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.weather-metrics {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.weather-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(176, 213, 240, 0.5);
  background: rgba(176, 213, 240, 0.16);
}

.weather-metrics dt,
.weather-day-date,
.weather-day-rain {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.weather-metrics dd {
  margin: 0;
  font-family: var(--font-numeral);
  font-weight: 700;
  color: var(--navy);
}

.weather-forecast {
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(1rem, 2.6vw, 1.5rem);
}

.weather-day {
  padding: 0.85rem;
  border: 1px solid rgba(203, 222, 167, 0.55);
  background: rgba(255, 255, 255, 0.68);
}

.weather-day p {
  margin: 0;
}

.weather-day-condition {
  margin-top: 0.65rem;
  color: var(--navy);
}

.weather-day-temp {
  margin-top: 0.3rem;
  font-family: var(--font-numeral);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--navy);
}

.weather-day-rain {
  margin-top: 0.6rem;
}

.weather-source,
.weather-loading {
  margin: 0.8rem 0 0;
  color: var(--ink-muted);
}

.weather-source {
  font-size: 0.9rem;
}

.weather-panel-error {
  border-color: rgba(244, 192, 175, 0.9);
}

.home-detail-item,
.home-feature-card,
.event-card,
.venue-feature,
.lodging-detail,
.airport-card,
.travel-note,
.weather-panel {
  --scroll-border-progress: 0;
  --scroll-border-angle: 360deg;
  --scroll-card-fill: var(--white);
  background:
    linear-gradient(var(--scroll-card-fill), var(--scroll-card-fill)) padding-box,
    conic-gradient(
      from var(--scroll-border-angle),
      rgba(23, 47, 96, 0.1),
      rgba(176, 213, 240, 0.94) 16%,
      rgba(244, 192, 175, 0.96) 34%,
      rgba(203, 222, 167, 0.9) 52%,
      rgba(255, 250, 247, 0.72) 68%,
      rgba(23, 47, 96, 0.18) 82%,
      rgba(176, 213, 240, 0.94)
    ) border-box;
  border: 2px solid transparent;
}

.home-detail-item {
  --scroll-card-fill: var(--soft-green);
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)) padding-box,
    linear-gradient(var(--soft-green), var(--soft-green)) padding-box,
    conic-gradient(
      from var(--scroll-border-angle),
      rgba(23, 47, 96, 0.1),
      rgba(176, 213, 240, 0.94) 16%,
      rgba(244, 192, 175, 0.96) 34%,
      rgba(203, 222, 167, 0.9) 52%,
      rgba(255, 250, 247, 0.72) 68%,
      rgba(23, 47, 96, 0.18) 82%,
      rgba(176, 213, 240, 0.94)
    ) border-box;
}

.home-feature-card,
.airport-card,
.weather-panel {
  --scroll-card-fill: var(--white);
}

.airport-card {
  --airport-card-base: var(--soft-blue);
  --airport-card-overlay-start: rgba(255, 255, 255, 0.82);
  --airport-card-overlay-end: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(var(--airport-card-overlay-start), var(--airport-card-overlay-end)) padding-box,
    linear-gradient(var(--airport-card-base), var(--airport-card-base)) padding-box,
    conic-gradient(
      from var(--scroll-border-angle),
      rgba(23, 47, 96, 0.1),
      rgba(176, 213, 240, 0.94) 16%,
      rgba(244, 192, 175, 0.96) 34%,
      rgba(203, 222, 167, 0.9) 52%,
      rgba(255, 250, 247, 0.72) 68%,
      rgba(23, 47, 96, 0.18) 82%,
      rgba(176, 213, 240, 0.94)
    ) border-box;
}

.airport-card-green {
  --airport-card-base: var(--soft-green);
  --airport-card-overlay-start: rgba(255, 255, 255, 0.86);
  --airport-card-overlay-end: rgba(255, 255, 255, 0.9);
}

.airport-card-rose {
  --airport-card-base: var(--blush);
  --airport-card-overlay-start: rgba(255, 255, 255, 0.84);
  --airport-card-overlay-end: rgba(255, 255, 255, 0.9);
}

.home-feature-card {
  --scroll-card-fill: var(--soft-blue);
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.88)) padding-box,
    linear-gradient(var(--soft-blue), var(--soft-blue)) padding-box,
    conic-gradient(
      from var(--scroll-border-angle),
      rgba(23, 47, 96, 0.1),
      rgba(176, 213, 240, 0.94) 16%,
      rgba(244, 192, 175, 0.96) 34%,
      rgba(203, 222, 167, 0.9) 52%,
      rgba(255, 250, 247, 0.72) 68%,
      rgba(23, 47, 96, 0.18) 82%,
      rgba(176, 213, 240, 0.94)
    ) border-box;
}

.travel-note {
  --scroll-card-fill: var(--white);
  border-left-width: 2px;
}

.home-detail-item::before,
.home-feature-card::before,
.airport-card::before,
.weather-panel::before,
.lodging-detail::before {
  background: transparent;
}

.home-detail-item::before,
.home-feature-card::before {
  background: rgba(255, 255, 255, 0.78);
}

.airport-card::before {
  background: rgba(255, 255, 255, 0.78);
}

.info-panel,
.rsvp-form {
  padding: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 4rem;
  max-width: 1080px;
}

.faq-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, var(--soft-blue), var(--white) 45%, var(--soft-green));
}

.faq-item {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 0 0 4rem;
  border-bottom: 1px solid rgba(23, 47, 96, 0.12);
}

.faq-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-question,
.faq-answer {
  text-align: center;
}

.faq-label {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-question h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-script);
  font-size: 3.65rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.faq-answer p {
  max-width: 520px;
  margin: 0 auto 1.15rem;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.35;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.rsvp-form {
  display: grid;
  gap: 0.8rem;
}

.rsvp-form label {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem;
  color: var(--navy);
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.rsvp-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, var(--soft-blue), var(--white) 48%, var(--blush));
}

.rsvp-placeholder {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(176, 213, 240, 0.22), rgba(244, 192, 175, 0.18));
  text-align: center;
}

.rsvp-placeholder::before,
.rsvp-placeholder::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  pointer-events: none;
}

.rsvp-placeholder::before {
  top: 1rem;
  left: 1rem;
  border-top: 1px solid var(--soft-blue);
  border-left: 1px solid var(--blush);
}

.rsvp-placeholder::after {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid var(--soft-green);
  border-bottom: 1px solid var(--soft-blue);
}

.rsvp-placeholder h2 {
  margin-bottom: 0.85rem;
}

.rsvp-placeholder p {
  color: var(--ink-muted);
}

.rsvp-future-note {
  margin-top: 1.75rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--border);
  background: transparent;
  text-align: left;
}

.rsvp-future-note h3 {
  font-size: 1.15rem;
}

.site-footer {
  padding: 2rem 1rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer p:first-child {
  font-family: var(--font-script);
  font-size: 2.2rem;
  line-height: 1.1;
}

.style-guide {
  background: var(--white);
}

.style-guide code {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
}

.style-guide-band {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.style-swatch-grid,
.style-type-grid,
.style-animation-grid {
  display: grid;
  gap: 1rem;
}

.style-swatch {
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--border);
  color: var(--navy);
}

.style-swatch span {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.style-swatch.navy {
  background: var(--navy);
  color: var(--white);
}

.style-swatch.soft-blue {
  background: var(--soft-blue);
}

.style-swatch.soft-green {
  background: var(--soft-green);
}

.style-swatch.blush {
  background: var(--blush);
}

.style-swatch.ivory {
  background: var(--ivory);
}

.style-swatch.white {
  background: var(--white);
}

.style-large-copy {
  color: var(--ink-muted);
  font-size: 1.2rem;
}

.style-script-sample {
  margin: 0 0 0.5rem;
  font-family: var(--font-script);
  font-size: 4.5rem;
  line-height: 0.9;
}

.style-component-stack {
  display: grid;
  gap: 2.5rem;
}

.style-divider {
  width: min(420px, 100%);
  height: 1px;
  margin: 3rem auto 1rem;
  background: linear-gradient(90deg, transparent, var(--blush), var(--soft-blue), transparent);
}

.style-form-example {
  padding: 1.5rem;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    padding: 0;
    border: 0;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .nav-menu a {
    padding: 0.55rem 0.65rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .card-grid,
  .venue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .party-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 5.5rem 1.5rem;
  }

  .editorial-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .editorial-gallery .gallery-tile {
    min-height: 0;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .registry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .airport-card {
    grid-template-rows: auto 1fr auto;
  }

  .weather-current {
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  }

  .weather-forecast {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-item {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    min-height: 188px;
    padding-bottom: 4.5rem;
  }

  .faq-answer {
    min-height: 100%;
    padding-left: 2rem;
    border-left: 1px solid var(--navy);
  }

  .faq-question {
    padding-right: 2rem;
  }

  .home-details-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-details-title {
    position: relative;
    top: auto;
    align-self: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .home-details-title::after {
    margin-inline: auto;
  }

  .home-detail-item {
    display: grid;
    grid-template-columns: minmax(190px, 0.92fr) minmax(280px, 1.34fr) minmax(170px, 0.72fr);
    gap: 0;
    min-height: 250px;
    padding: 1.45rem;
    align-items: stretch;
  }

  .home-detail-meta,
  .home-detail-main,
  .home-detail-action {
    padding: 1.35rem 1.5rem;
  }

  .home-detail-main,
  .home-detail-action {
    border-left: 1px solid rgba(111, 137, 76, 0.24);
  }

  .home-gallery-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .home-gallery-strip .placeholder-image:nth-child(even) {
    transform: translateY(1.5rem);
  }

  .home-gallery-strip .placeholder-image:nth-child(3) {
    transform: translateY(-0.75rem);
  }
}

@media (max-width: 759px) {
  body {
    font-size: 16px;
  }

  .nav {
    width: min(100% - 1.25rem, 1160px);
    min-height: 66px;
  }

  .brand {
    width: 64px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .nav-menu {
    top: 66px;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
    padding: 0.7rem;
  }

  .nav-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .travel-weather-section {
    padding-block: clamp(2.6rem, 9vw, 4rem);
  }

  .travel-section {
    padding-block: 1.5rem clamp(2.6rem, 9vw, 4rem);
  }

  .hero,
  .home-hero {
    min-height: calc(100svh - 66px);
    padding: 4rem 0.75rem;
  }

  .hero-content,
  .page-hero {
    width: min(100% - 1.25rem, 860px);
  }

  .home-hero .hero-content {
    padding: 2rem 0.75rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .home-hero h1 {
    font-size: 4.5rem;
  }

  .hero-name-line {
    padding-left: 0.06em;
    letter-spacing: 0.06em;
  }

  .hero-names .hero-and {
    font-size: 2.25rem;
    margin: 0.25rem 0 0.35rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: min(380px, 100%);
    margin-top: 1.65rem;
  }

  .countdown-item {
    min-height: 98px;
    padding: 0.85rem 0.65rem;
  }

  .countdown-value {
    font-size: 2.15rem;
  }

  .countdown-label {
    font-size: 0.76rem;
    margin-top: 0.5rem;
  }

  .page-hero {
    padding: 2.5rem 0.75rem 1.75rem;
  }

  .hero-floral {
    width: 88px;
    height: 88px;
    opacity: 0.28;
  }

  .hero-floral-left {
    left: 0.2rem;
    bottom: 1.5rem;
  }

  .hero-floral-right {
    right: 0.2rem;
    top: 5.25rem;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button,
  .rsvp-placeholder .button,
  .registry-card .button,
  .home-copy .button,
  .home-rsvp-cta .button {
    width: 100%;
  }

  .section {
    padding: 3.75rem 0.875rem;
  }

  .home-details-layout {
    gap: 2rem;
  }

  .home-details-title h2 {
    font-size: 3rem;
  }

  .home-detail-item {
    gap: 0;
  }

  .home-detail-meta,
  .home-detail-main,
  .home-detail-action {
    padding: 0.65rem 0.5rem;
  }

  .home-detail-main,
  .home-detail-action {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(111, 137, 76, 0.22);
  }

  .home-detail-item h3 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .welcome-panel p:last-child {
    font-size: 1.08rem;
  }

  .event-card h3,
  .registry-card h2 {
    font-size: 1.85rem;
  }

  .event-card h3 {
    font-size: 2.45rem;
  }

  .card-body,
  .event-card,
  .venue-copy,
  .registry-card,
  .rsvp-placeholder,
  .person-copy {
    padding: 1.15rem;
  }

  .placeholder-image,
  .portrait-placeholder {
    min-height: 220px;
  }

  .home-image-stack {
    min-height: 320px;
  }

  .home-photo-main {
    inset: 0 8% 14% 0;
  }

  .home-photo-small {
    width: 48%;
    min-height: 150px;
  }

  .event-time {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .schedule-event.reveal-on-scroll:nth-of-type(odd),
  .schedule-event.reveal-on-scroll:nth-of-type(even) {
    transform: translate3d(0, 18px, 0);
  }

  .schedule-event.reveal-on-scroll.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .schedule-section {
    background:
      linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 250, 247, 0.9)),
      url("assets/images/schedule-floral-background.png") center top / min(980px, 150%) auto repeat-y scroll,
      var(--ivory);
  }

  .venue-feature::before,
  .rsvp-placeholder::before,
  .rsvp-placeholder::after {
    width: 54px;
    height: 54px;
  }

  .venue-map-frame,
  .venue-map-frame iframe {
    min-height: 320px;
  }

  .venue-map-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .venue-map-link {
    justify-content: center;
  }

  .faq-list {
    gap: 3rem;
  }

  .faq-question h2 {
    font-size: 2.75rem;
  }

  .faq-answer p {
    font-size: 1.08rem;
  }
}

@media (min-width: 360px) and (max-width: 759px) {
  .weather-forecast {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .nav {
    width: min(100% - 1rem, 1160px);
  }

  .home-hero::before {
    inset: 0.7rem;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.32);
  }

  .hero-date,
  .hero-location {
    font-size: 1.12rem;
  }

  .home-hero .hero-location {
    font-size: 1.34rem;
  }

  .home-hero h1 {
    font-size: 3.95rem;
  }

  .hero-names {
    gap: 0.1rem;
  }

  .hero-name-line {
    padding-left: 0.035em;
    letter-spacing: 0.035em;
  }

  .hero-names .hero-and {
    font-size: 1.95rem;
    margin: 0.15rem 0 0.25rem;
  }

  .countdown {
    gap: 0.6rem;
  }

  .countdown-item {
    min-height: 88px;
    padding: 0.75rem 0.55rem;
  }

  .countdown-value {
    font-size: 1.85rem;
  }

  .countdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  h2 {
    font-size: 2.1rem;
  }

  .eyebrow,
  .button,
  .text-link,
  .person-role,
  .venue-address,
  .event-time {
    letter-spacing: 0.07em;
  }

  .home-gallery-strip .placeholder-image,
  .editorial-gallery .gallery-tile,
  .gallery-tile {
    min-height: 230px;
  }

  .portrait-placeholder {
    min-height: 235px;
  }

  .schedule-day h2 {
    width: fit-content;
    max-width: 100%;
    padding-inline: 1rem;
  }

  .schedule-day h2::before,
  .schedule-day h2::after {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 1019px) {
  .travel-page .nav-toggle {
    display: inline-flex;
  }

  .travel-page .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    visibility: hidden;
    transition:
      max-height 420ms var(--ease-soft),
      opacity 260ms var(--ease-polished),
      transform 420ms var(--ease-soft),
      visibility 0s linear 420ms;
  }

  .travel-page .nav-menu.is-open {
    max-height: calc(100svh - 72px);
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition:
      max-height 520ms var(--ease-soft),
      opacity 320ms var(--ease-polished),
      transform 520ms var(--ease-soft),
      visibility 0s linear 0s;
  }

  .travel-page .nav-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0.75rem 1rem;
  }

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

  .registry-grid {
    gap: 1rem;
  }

  .registry-card {
    padding: 1.25rem;
  }
}

@media (min-width: 900px) {
  .schedule-note {
    margin-bottom: 3rem;
  }

  .schedule-timeline {
    gap: 5.5rem;
  }

  .schedule-day {
    position: relative;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 3.75rem;
  }

  .schedule-day h2 {
    grid-column: 1 / -1;
  }

  .schedule-event {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .schedule-event:nth-of-type(odd) {
    grid-column: 1;
  }

  .schedule-event:nth-of-type(even) {
    grid-column: 2;
    margin-top: 5.5rem;
  }

  .three-event-day .schedule-event:nth-of-type(2) {
    grid-row: 2 / span 2;
    align-self: center;
    margin-top: 0;
  }

  .three-event-day .schedule-event:nth-of-type(3) {
    grid-row: 3;
  }

  .event-time {
    justify-self: center;
  }

  .venue-showcase {
    gap: 2.5rem;
  }

  .venue-feature {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .venue-map-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .venue-map-frame,
  .venue-map-frame iframe {
    min-height: 460px;
  }

  .lodging-feature {
    grid-template-columns: minmax(360px, 1.2fr) minmax(0, 0.8fr);
    gap: 4rem;
  }

  .weather-forecast {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lodging-detail {
    padding: 1.75rem;
  }

  .lodging-facts-layout {
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
    gap: 4rem;
  }

  .lodging-facts-heading {
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  .venue-feature:nth-child(even) {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .venue-feature:nth-child(even) .venue-image {
    grid-column: 2;
  }

  .venue-feature:nth-child(even) .venue-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .venue-image {
    min-height: 430px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .venue-feature:nth-child(even) .venue-image {
    border-right: 0;
    border-left: 1px solid var(--border);
  }

  .venue-copy {
    align-self: center;
  }

  .welcome-panel,
  .home-split {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .home-split {
    gap: 4rem;
  }

  .home-welcome .section-inner {
    max-width: 980px;
  }
}

@media (min-width: 1020px) {
  .airport-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-frame {
    position: fixed;
    inset: 0;
    z-index: 12;
    display: block;
    pointer-events: none;
    color: rgba(23, 47, 96, 0.78);
    font-family: var(--font-label);
    font-size: 1.05rem;
    font-weight: 700;
    font-variant-caps: all-small-caps;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-frame span {
    position: fixed;
    display: block;
    line-height: 1.7;
  }

  .site-frame-mark {
    top: 6rem;
    left: 2rem;
    text-align: center;
  }

  .site-frame-date {
    top: 6rem;
    right: 2rem;
    text-align: center;
  }

  .site-frame-place {
    bottom: 4.75rem;
    left: 2rem;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }

  .nav-menu a {
    font-size: 0.9rem;
    padding-inline: 0.78rem;
  }

  .wedding-party-section .party-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-feature-card:hover {
    box-shadow: 0 18px 42px rgba(23, 47, 96, 0.1);
    transform: translateY(-2px);
  }

  .card:hover,
  .venue-card:hover,
  .registry-card:hover {
    border-color: rgba(23, 47, 96, 0.24);
    box-shadow: 0 22px 52px rgba(23, 47, 96, 0.13);
    transform: translateY(-2px);
  }

  .event-card:hover,
  .venue-feature:hover,
  .airport-card:hover,
  .weather-panel:hover {
    border-color: transparent;
    box-shadow: 0 22px 52px rgba(23, 47, 96, 0.12);
    transform: translateY(-2px);
  }

  .person-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(23, 47, 96, 0.13);
  }
}
