:root {
  --cream: #f6f1e7;
  --cream-strong: #ece3d4;
  --sage: #66774b;
  --sage-deep: #2a3720;
  --sage-muted: #7c8861;
  --gold: #d1b25c;
  --gold-soft: rgba(209, 178, 92, 0.42);
  --rose: #c5526c;
  --rose-soft: rgba(197, 82, 108, 0.22);
  --pink: #f2d7de;
  --text: #2d1e18;
  --text-soft: rgba(45, 30, 24, 0.72);
  --border: rgba(110, 90, 70, 0.16);
  --shadow: 0 30px 80px rgba(62, 49, 34, 0.08);
  --max-width: 1180px;
  --reading-width: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.panel,
.section,
.site-footer {
  position: relative;
  scroll-margin-top: 6rem;
}

.panel::before,
.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.3), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.08));
  opacity: 0.65;
}

.panel--cream {
  background: linear-gradient(180deg, #f8f5ed 0%, #f5efe3 100%);
}

.section--sage {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #6d7d52 0%, #5f6f47 100%);
  color: #f4eedf;
}

.section--pink {
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #f4dde3 0%, #edc5ce 100%);
  color: #97384e;
}

.site-footer {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #26351e 0%, #27371d 100%);
  color: #e7d7a6;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem clamp(1.25rem, 2.8vw, 2.6rem);
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(248, 245, 237, 0.88), rgba(248, 245, 237, 0.45));
  border-bottom: 1px solid rgba(110, 90, 70, 0.08);
}

.site-mark,
.site-footer__mark {
  text-decoration: none;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-style: italic;
  letter-spacing: 0.04em;
  color: #596948;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  color: #596948;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  cursor: pointer;
}

.menu-button__icon {
  display: inline-grid;
  gap: 0.28rem;
}

.menu-button__icon span {
  display: block;
  width: 1.45rem;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-button__icon span:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon span:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(28rem, 92vw);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.site-menu[data-open="true"] {
  transform: translateX(0);
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  height: 100%;
  padding: 6rem clamp(1.6rem, 4vw, 3rem);
  background: rgba(39, 55, 29, 0.94);
  color: #f0e5c1;
  box-shadow: -24px 0 48px rgba(28, 26, 18, 0.15);
}

.site-nav {
  display: grid;
  gap: 1rem;
}

.site-nav a {
  width: fit-content;
  text-decoration: none;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-style: italic;
}

.site-nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.22rem;
  background: rgba(240, 229, 193, 0.36);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(31, 29, 21, 0.28);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 3rem;
}

.panel-frame {
  position: absolute;
  inset: clamp(1rem, 2vw, 2.2rem);
  border: 1px solid rgba(201, 182, 153, 0.32);
  border-radius: 1.8rem;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.44em;
  font-size: 0.74rem;
  color: #70805c;
}

.eyebrow--rose {
  color: var(--rose);
}

.eyebrow--gold {
  color: var(--gold);
}

.sub-eyebrow {
  margin: 1.1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.54em;
  font-size: 0.72rem;
  color: var(--rose);
}

.hero__title {
  margin: 2.2rem 0 1rem;
  display: grid;
  gap: 0.6rem;
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: 0.9;
  font-style: italic;
  font-weight: 400;
}

.hero__ampersand {
  color: var(--rose);
  font-size: 0.76em;
}

.hero__details {
  margin-top: 2.4rem;
  display: grid;
  gap: 0.5rem;
}

.hero__date,
.hero__venue,
.hero__note,
.site-footer__date,
.site-footer__venue,
.site-footer__note {
  margin: 0;
}

.hero__date,
.site-footer__date,
.map-card__title {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.96rem, 1.45vw, 1.15rem);
}

.hero__venue {
  color: var(--rose);
  font-style: italic;
  font-size: clamp(1.18rem, 2.05vw, 1.6rem);
}

.hero__note {
  margin-top: 1.25rem;
  color: var(--rose);
  font-style: italic;
  font-size: clamp(1.2rem, 1.95vw, 1.55rem);
}

.section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 2.4rem);
}

.section__header {
  position: relative;
  z-index: 1;
  margin: 0 auto clamp(2rem, 5vw, 3.2rem);
  max-width: 48rem;
  text-align: center;
}

.section__header--light {
  color: #f5eedc;
}

.section__header--rose {
  color: #a63a54;
}

.section__header h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(3rem, 5.6vw, 4.8rem);
  line-height: 0.95;
  font-style: italic;
  font-weight: 400;
}

.section-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.section-divider span {
  display: block;
  width: clamp(2.5rem, 8vw, 5rem);
  height: 1px;
  background: rgba(200, 171, 101, 0.55);
}

.section-divider i {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  transform: rotate(45deg);
  background: rgba(200, 171, 101, 0.72);
}

.section-divider--rose span,
.section-divider--rose i {
  background: rgba(197, 82, 108, 0.42);
}

.section-divider--light span,
.section-divider--light i {
  background: rgba(209, 178, 92, 0.75);
}

.story-copy {
  position: relative;
  z-index: 1;
  max-width: var(--reading-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.92;
  text-align: center;
}

.story-copy p {
  margin: 0;
}

.story-copy em {
  color: var(--rose);
  font-style: italic;
}

.detail-grid,
.timeline-grid,
.travel-grid,
.travel-note-grid,
.guide-details,
.countdown {
  position: relative;
  z-index: 1;
}

.detail-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  padding: 1.35rem 1rem;
  text-align: center;
}

.detail-card h3,
.dress-code h3,
.travel-card h3,
.faq-summary__question,
.registry-panel h3,
.rsvp-card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
}

.detail-card p,
.timeline-card p,
.dress-code p,
.travel-card p,
.faq-answer,
.registry-panel p,
.rsvp-card p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.section-rule {
  max-width: 64rem;
  height: 1px;
  margin: 2rem auto;
  background: rgba(209, 178, 92, 0.28);
}

.timeline-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.timeline-card {
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  text-align: center;
  border-right: 1px solid rgba(209, 178, 92, 0.22);
}

.timeline-card:last-child {
  border-right: 0;
}

.timeline-card h3 {
  margin: 0.7rem 0 0.5rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-style: italic;
  font-weight: 400;
}

.dress-code {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.dress-code__details {
  margin-top: 1.15rem;
  border: 1px solid rgba(209, 178, 92, 0.26);
  background: rgba(255, 255, 255, 0.03);
}

.dress-code__summary {
  padding: 1rem 1.2rem;
  list-style: none;
  cursor: pointer;
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-style: italic;
}

.dress-code__summary::-webkit-details-marker {
  display: none;
}

.dress-code__content {
  padding: 0 1.25rem 1.4rem;
}

.dress-code__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dress-code__column {
  padding: 1rem;
  border-top: 1px solid rgba(209, 178, 92, 0.16);
}

.dress-code__column p:last-child {
  margin: 0.5rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.dress-code__copy {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  line-height: 1.55;
  color: rgba(244, 238, 220, 0.84);
}

.travel-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.travel-card {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
}

.travel-card:first-child {
  border-right: 1px solid rgba(201, 182, 153, 0.52);
}

.travel-card p,
.travel-card a {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.travel-link,
.map-links a,
.faq-intro {
  color: var(--rose);
}

.travel-link,
.map-links a,
.faq-intro,
.site-nav a {
  text-underline-offset: 0.28rem;
}

.travel-note-grid {
  max-width: 72rem;
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.travel-note-grid p {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 2px dashed rgba(197, 82, 108, 0.35);
  color: #718063;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
}

.guide-details {
  max-width: 56rem;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.guide-tile {
  border: 1px solid rgba(201, 182, 153, 0.8);
  background: rgba(255, 250, 241, 0.55);
  box-shadow: var(--shadow);
}

.guide-tile summary {
  display: grid;
  gap: 0.9rem;
  place-items: center;
  padding: 2.4rem 1rem 2rem;
  list-style: none;
  cursor: pointer;
}

.guide-tile summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.guide-tile summary span {
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.95rem;
  color: #556746;
}

.guide-chevron {
  width: 0.78rem;
  height: 0.78rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.guide-tile[open] .guide-chevron {
  transform: rotate(-135deg);
}

.guide-content {
  padding: 0 1.25rem 1.6rem;
}

.guide-content ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.55;
}

.guide-content li + li {
  margin-top: 0.55rem;
}

.guide-item {
  display: grid;
  gap: 0.18rem;
}

.guide-item strong {
  font-size: 1.32rem;
  font-style: italic;
  font-weight: 500;
}

.guide-item span {
  color: #6f7f60;
  font-size: 1.08rem;
}

.guide-item a {
  width: fit-content;
  margin-top: 0.2rem;
  color: var(--rose);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.guide-item a::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.16rem;
  background: currentColor;
}

.map-card {
  max-width: 60rem;
  margin: 0 auto;
}

.map-card__surface {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(201, 182, 153, 0.85);
  background:
    radial-gradient(circle at 22% 56%, rgba(152, 173, 101, 0.18), transparent 10%),
    radial-gradient(circle at 69% 48%, rgba(152, 173, 101, 0.18), transparent 10%),
    radial-gradient(circle at 85% 66%, rgba(152, 173, 101, 0.16), transparent 8%),
    linear-gradient(180deg, #f8eed7 0%, #f3e6cb 100%);
}

.map-card__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 11%, rgba(196, 181, 145, 0.42) 12%, transparent 12.6%),
    linear-gradient(90deg, transparent 38%, rgba(196, 181, 145, 0.24) 38.2%, transparent 38.4%),
    linear-gradient(90deg, transparent 58%, rgba(196, 181, 145, 0.32) 58.25%, transparent 58.45%),
    linear-gradient(90deg, transparent 81%, rgba(196, 181, 145, 0.18) 81.1%, transparent 81.25%),
    linear-gradient(180deg, transparent 15%, rgba(196, 181, 145, 0.22) 15.2%, transparent 15.35%),
    linear-gradient(180deg, transparent 31%, rgba(196, 181, 145, 0.18) 31.1%, transparent 31.25%),
    linear-gradient(180deg, transparent 47%, rgba(196, 181, 145, 0.18) 47.05%, transparent 47.2%),
    linear-gradient(180deg, transparent 68%, rgba(196, 181, 145, 0.2) 68.1%, transparent 68.25%);
  opacity: 0.8;
}

.map-road {
  position: absolute;
  background: rgba(91, 82, 71, 0.72);
}

.map-road--one {
  inset: 60% -6% auto -3%;
  height: 2px;
  transform: rotate(4deg);
}

.map-road--two {
  inset: auto 6% 18% -8%;
  height: 4px;
  transform: rotate(-9deg);
}

.map-road--three {
  inset: 8% -4% auto 84%;
  height: 12%;
  width: 18%;
  transform: rotate(-18deg);
  background: rgba(114, 154, 120, 0.38);
}

.map-district {
  position: absolute;
  background: rgba(144, 169, 104, 0.22);
  border-radius: 999px;
}

.map-district--one {
  inset: 50% auto auto 14%;
  width: 20%;
  height: 18%;
}

.map-district--two {
  inset: 36% auto auto 60%;
  width: 16%;
  height: 14%;
}

.map-district--three {
  inset: 62% auto auto 79%;
  width: 12%;
  height: 10%;
}

.map-district--four {
  inset: auto -4% -8% 45%;
  width: 60%;
  height: 30%;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: #6d754a;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-pin span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.map-pin span::after {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border-radius: inherit;
  background: currentColor;
}

.map-pin label {
  white-space: nowrap;
}

.map-pin--venue {
  left: 22%;
  top: 54%;
  color: var(--rose);
}

.map-pin--airport {
  left: 9%;
  top: 80%;
}

.map-pin--downtown {
  left: 66%;
  top: 44%;
}

.map-pin--heights {
  left: 76%;
  top: 10%;
}

.map-card__caption {
  text-align: center;
  padding-top: 1.2rem;
}

.map-card__note {
  max-width: 42rem;
  margin: 0.85rem auto 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  font-style: italic;
  color: #64744d;
}

.map-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.map-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #556746;
}

.map-links a::after,
.travel-link::after,
.faq-intro::after {
  content: "";
  display: block;
  margin-top: 0.2rem;
  height: 1px;
  background: currentColor;
}

.registry-copy,
.registry-footnote,
.faq-intro,
.rsvp-deadline {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.6;
  font-style: italic;
}

.registry-footnote:empty {
  display: none;
}

.registry-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.registry-links:empty {
  display: none;
}

.registry-links a {
  display: inline-grid;
  gap: 0.2rem;
  min-width: 10rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(197, 82, 108, 0.24);
  color: var(--rose);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.registry-links small {
  color: rgba(73, 54, 45, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.registry-panel,
.rsvp-card {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin: 2rem auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border: 1px solid rgba(197, 82, 108, 0.28);
  background: rgba(255, 247, 248, 0.18);
}

.rsvp-card__cta-wrap {
  margin-top: 1.3rem;
}

.rsvp-card__cta {
  color: var(--rose);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.84rem;
}

.rsvp-card__cta::after {
  content: "";
  display: block;
  width: fit-content;
  min-width: 10rem;
  height: 1px;
  margin: 0.18rem auto 0;
  background: currentColor;
}

.registry-footnote {
  margin-top: 1rem;
}

.faq-list {
  max-width: 58rem;
  margin: 2rem auto 0;
  display: grid;
  gap: 1rem;
}

.faq-intro {
  width: fit-content;
}

.faq-item {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201, 182, 153, 0.6);
  border-bottom: 1px solid rgba(201, 182, 153, 0.16);
  background: rgba(255, 252, 246, 0.62);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
}

.faq-summary__question {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.faq-summary__icon {
  flex: 0 0 auto;
  position: relative;
  width: 1rem;
  height: 1rem;
}

.faq-summary__icon::before,
.faq-summary__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: var(--rose);
  transform: translateY(-50%);
}

.faq-summary__icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] .faq-summary__icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 0 1.5rem 1.45rem;
  color: var(--text-soft);
}

.section--rsvp {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem clamp(4.5rem, 8vw, 7rem);
  text-align: center;
}

.countdown {
  margin: 2rem auto 0;
  max-width: 28rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.countdown__item {
  padding: 1rem 0.75rem;
  border: 1px solid rgba(209, 178, 92, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.countdown__item strong {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
}

.countdown__item span {
  display: block;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
}

.footer-divider {
  width: 5rem;
  height: 1px;
  margin: 2rem auto;
  background: rgba(209, 178, 92, 0.4);
}

.site-footer__venue {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__note {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic;
  color: #a6aa80;
}

@media (max-width: 900px) {
  .detail-grid,
  .timeline-grid,
  .travel-grid,
  .travel-note-grid,
  .guide-details,
  .countdown {
    grid-template-columns: 1fr;
  }

  .timeline-card,
  .travel-card:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(209, 178, 92, 0.22);
  }

  .timeline-card:last-child,
  .travel-card:last-child {
    border-bottom: 0;
  }

  .site-header {
    padding: 0.95rem 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .panel-frame {
    border-radius: 1.2rem;
  }

  .guide-tile summary {
    padding: 1.8rem 1rem 1.5rem;
  }

  .faq-item summary {
    padding: 1.1rem 1.1rem;
  }

  .faq-answer {
    padding: 0 1.1rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .site-mark,
  .site-footer__mark {
    font-size: 1.9rem;
  }

  .menu-button {
    gap: 0.6rem;
    font-size: 0.66rem;
    letter-spacing: 0.26em;
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 4.4rem);
    gap: 0.35rem;
  }

  .hero__details {
    gap: 0.8rem;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__date {
    font-size: 0.86rem;
    letter-spacing: 0.18em;
  }

  .hero__venue {
    font-size: 1.25rem;
  }

  .hero__note {
    font-size: 1.18rem;
  }

  .story-copy {
    text-align: left;
    font-size: 1.42rem;
    line-height: 1.7;
  }

  .travel-note-grid p,
  .registry-copy,
  .registry-footnote,
  .faq-intro,
  .rsvp-deadline,
  .guide-content ul,
  .map-card__note {
    font-size: 1.25rem;
  }

  .dress-code__grid {
    grid-template-columns: 1fr;
  }

  .map-card__surface {
    aspect-ratio: 4 / 5;
  }

  .map-pin {
    font-size: 0.66rem;
  }

  .map-pin span {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
  }
}
