:root {
    --bg: #f6f2ea;
    --bg-soft: #fcfaf5;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.88);
    --text: #2c302c;
    --muted: #68726b;
    --accent: #6e8b8a;
    --accent-deep: #4f6e70;
    --sand: #e6d7c4;
    --line: rgba(79, 110, 112, 0.22);
    --shadow: 0 22px 60px rgba(62, 70, 66, 0.08);
    --container: 780px;
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(110, 139, 138, 0.2), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(230, 215, 196, 0.55), transparent 24%),
        linear-gradient(180deg, #fcfaf6 0%, var(--bg) 48%, #f4efe5 100%);
    line-height: 1.65;
    padding: 104px 24px 48px;
}

body.homepage {
    padding-top: 0;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
}

body::before {
    width: 320px;
    height: 320px;
    top: 14%;
    left: -80px;
    background: rgba(110, 139, 138, 0.08);
}

body::after {
    width: 280px;
    height: 280px;
    right: -40px;
    bottom: 10%;
    background: rgba(230, 215, 196, 0.28);
}

a {
    color: inherit;
}

img,
svg {
    display: block;
}

h1,
h2 {
    font-family: "Carattere", serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.12;
}

h3,
h4 {
    font-family: "Playfair", serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.12;
}

.hero-content h1 {
    font-family: "Monsieur La Doulaise", serif;
}

p {
    color: var(--muted);
}

.site-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.container {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 28px), 1122px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(252, 250, 245, 0.76);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(62, 70, 66, 0.08);
    z-index: 20;
}

.brand-link {
    text-decoration: none;
    font-family: "Quintessential", serif;
    font-size: 1.6rem;
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-right a {
    text-decoration: none;
    color: var(--muted);
    font-family: "EB Garamond", serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--text);
    background: rgba(110, 139, 138, 0.11);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(79, 110, 112, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    color: var(--text);
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
    transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) {
    top: 16px;
}

.nav-toggle span:nth-child(2) {
    top: 22px;
}

.nav-toggle span:nth-child(3) {
    top: 28px;
}

.navbar.is-open .nav-toggle span:nth-child(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
}

.navbar.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.is-open .nav-toggle span:nth-child(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-menu {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--muted);
    font-family: "EB Garamond", serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 10px 12px;
    border-radius: 14px;
    transition: color 180ms ease, background-color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
    background: rgba(110, 139, 138, 0.11);
}

.page {
    padding: 36px 0 64px;
}

.page-header {
    text-align: center;
    margin-bottom: 52px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-header h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    margin-bottom: 14px;
}

.page-header p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.panel {
    background: linear-gradient(180deg, var(--surface-strong), var(--surface));
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lead-video {
    overflow: hidden;
    margin-bottom: 30px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.lead-video video {
    display: block;
    width: 100%;
    height: auto;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 170px);
    padding: clamp(72px, 12vw, 120px) 28px;
    display: grid;
    place-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 8% -18% 8%;
    height: 58%;
    background:
        radial-gradient(circle at 25% 35%, rgba(110, 139, 138, 0.48), transparent 34%),
        radial-gradient(circle at 65% 30%, rgba(163, 192, 189, 0.38), transparent 28%),
        radial-gradient(circle at 58% 72%, rgba(230, 215, 196, 0.78), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(96, 137, 144, 0.26) 100%);
    border-radius: 44% 56% 0 0 / 28% 28% 0 0;
    opacity: 0.95;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(252, 250, 245, 0.95) 0%, rgba(252, 250, 245, 0.4) 32%, rgba(252, 250, 245, 0.82) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
}

.hero-media {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    margin: 34px auto 0;
    isolation: isolate;
}

.hero-media::before,
.page-media::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -2;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0.96) 40%, rgba(255, 255, 255, 0.74) 58%, rgba(255, 255, 255, 0.28) 76%, rgba(246, 242, 234, 0) 100%);
    border-radius: calc(var(--radius) + 18px);
    filter: blur(12px);
    pointer-events: none;
}

.hero-media::after,
.page-media::after {
    content: "";
    position: absolute;
    inset: -34px;
    z-index: -3;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0.34) 48%, rgba(252, 249, 243, 0.14) 68%, rgba(246, 242, 234, 0) 100%);
    border-radius: calc(var(--radius) + 32px);
    filter: blur(20px);
    opacity: 1;
    pointer-events: none;
}

.editorial-image {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) - 2px);
    background: transparent;
}

.editorial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.editorial-image img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.editorial-image--hero {
    aspect-ratio: auto;
}

.editorial-image--page {
    aspect-ratio: auto;
    margin-bottom: 0;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(110, 139, 138, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--accent-deep);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.7rem);
    margin-bottom: 18px;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    color: var(--accent-deep);
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-summary {
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.04rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(79, 110, 112, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 110, 112, 0.42);
    background: rgba(255, 255, 255, 0.82);
}

.btn-primary {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    color: #f8f4ec;
}

.btn-primary:hover {
    background: #446264;
    border-color: #446264;
}

.schedule-list,
.travel-stack,
.recommendation-list {
    display: grid;
    gap: 22px;
}

.schedule-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1.2fr);
    align-items: stretch;
    gap: 26px;
    padding: 30px 32px;
}

.schedule-main,
.schedule-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.schedule-main h2 {
    font-size: 1.8rem;
}

.schedule-time {
    color: var(--accent-deep);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.schedule-divider {
    background: linear-gradient(180deg, transparent 0%, var(--line) 18%, var(--line) 82%, transparent 100%);
}

.schedule-side h3 {
    font-size: 1.3rem;
}

.schedule-side p {
    font-size: 0.98rem;
}

.travel-overview,
.registry-copy {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 34px;
}

.location-meta {
    display: grid;
    gap: 10px;
    margin: 6px 0 2px;
}

.location-address {
    color: var(--muted);
    font-size: 0.95rem;
}

.travel-stack {
    gap: 20px;
}

.travel-item {
    padding: 28px 30px;
    text-align: center;
}

.travel-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(110, 139, 138, 0.12);
    color: var(--accent-deep);
}

.travel-item h2,
.travel-item h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.travel-meta {
    margin: 10px 0 18px;
    color: var(--accent-deep);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-button {
    appearance: none;
    border: 1px solid rgba(79, 110, 112, 0.18);
    background: rgba(255, 255, 255, 0.56);
    color: var(--muted);
    border-radius: 999px;
    padding: 11px 18px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.filter-button:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 110, 112, 0.34);
}

.filter-button.is-active {
    background: var(--accent-deep);
    color: #f8f4ec;
    border-color: var(--accent-deep);
}

.recommendation-list {
    gap: 18px;
}

.recommendation {
    padding: 28px 30px;
    text-align: center;
}

.recommendation-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.recommendation h2,
.recommendation h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.recommendation p {
    margin-bottom: 18px;
}

.recommendation[hidden] {
    display: none;
}

.things-shell {
    width: min(100%, 1340px);
    margin: 0 auto;
    padding: 0 24px;
}

.things-filter-bar-wrap {
    margin-bottom: 24px;
}

.things-filter-bar {
    margin-bottom: 0;
    padding: 12px 16px;
}

.things-layout {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.things-map-column {
    position: sticky;
    top: 112px;
}

.things-map-frame {
    position: relative;
    padding: 14px;
}

.things-map {
    width: 100%;
    height: min(68vh, 720px);
    min-height: 520px;
    border-radius: calc(var(--radius) - 8px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
}

.things-map .leaflet-control-attribution {
    font-size: 0.7rem;
}

.map-reset-zoom {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 500;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(79, 110, 112, 0.18);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.96);
    color: var(--text);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(30, 39, 44, 0.12);
}

.map-reset-zoom:hover {
    border-color: rgba(79, 110, 112, 0.3);
    background: rgba(255, 255, 255, 0.99);
}

.things-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot--eat-drink {
    background: #b96f57;
}

.legend-dot--fun {
    background: #4e7a82;
}

.legend-dot--nature {
    background: #7c8a52;
}

.things-list {
    min-width: 0;
}

.things-list .recommendation-list {
    gap: 20px;
}

.things-list .recommendation {
    display: grid;
    gap: 16px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.things-list .recommendation[hidden] {
    display: none;
}

.things-list .recommendation:hover,
.things-list .recommendation:focus-within {
    transform: translateY(-2px);
    border-color: rgba(79, 110, 112, 0.22);
    box-shadow: 0 20px 36px rgba(40, 44, 55, 0.08);
}

.recommendation-photo-slot {
    min-height: 168px;
    border-radius: calc(var(--radius) - 8px);
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(184, 141, 113, 0.22), transparent 44%),
        radial-gradient(circle at bottom right, rgba(78, 122, 130, 0.18), transparent 48%),
        linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(245, 239, 229, 0.88));
    border: 1px solid rgba(79, 110, 112, 0.12);
    overflow: hidden;
}

.recommendation-photo-slot span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rsvp-shell {
    display: grid;
    gap: 24px;
}

.rsvp-panel {
    padding: clamp(28px, 5vw, 42px);
}

.rsvp-panel button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.rsvp-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.rsvp-intro {
    text-align: center;
    margin-bottom: 28px;
}

.rsvp-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.rsvp-intro p {
    max-width: 620px;
    margin: 0 auto;
}

.rsvp-intro--compact {
    margin-bottom: 12px;
}

.rsvp-step[hidden] {
    display: none;
}

.rsvp-lookup-form {
    display: grid;
    gap: 18px;
}

.rsvp-lookup-grid,
.rsvp-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rsvp-field {
    display: grid;
    gap: 10px;
    min-width: 0;
    border: 0;
    padding: 0;
}

.rsvp-field span,
.rsvp-field legend,
.rsvp-member-note,
.rsvp-supporting {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rsvp-field legend {
    margin-bottom: 10px;
}

.rsvp-field input,
.rsvp-field select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(79, 110, 112, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font: inherit;
}

.rsvp-field input:focus,
.rsvp-field select:focus {
    outline: 2px solid rgba(79, 110, 112, 0.22);
    outline-offset: 2px;
}

.rsvp-actions,
.rsvp-confirm-actions,
.rsvp-success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rsvp-message {
    min-height: 24px;
    text-align: center;
    font-size: 0.95rem;
}

.rsvp-message.is-error {
    color: #8b5247;
}

.rsvp-message.is-success {
    color: var(--accent-deep);
}

.rsvp-supporting {
    display: inline-block;
}

.rsvp-confirm {
    text-align: center;
    display: grid;
    gap: 14px;
}

.rsvp-confirm h2,
.rsvp-success h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.rsvp-party-name {
    color: var(--text);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.15;
}

.rsvp-form {
    display: grid;
    gap: 22px;
}

.rsvp-members {
    display: grid;
}

.rsvp-member {
    padding: 24px 0;
    border-top: 1px solid rgba(79, 110, 112, 0.12);
}

.rsvp-member:first-child {
    padding-top: 0;
    border-top: 0;
}

.rsvp-member:last-child {
    padding-bottom: 0;
}

.rsvp-member--plus-one {
    margin-top: 8px;
}

.rsvp-member-header {
    margin-bottom: 18px;
}

.rsvp-member-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.rsvp-choice-set {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rsvp-choice {
    position: relative;
}

.rsvp-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rsvp-choice span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(79, 110, 112, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--text);
    font-family: "EB Garamond", serif;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.rsvp-choice input:checked + span {
    border-color: var(--accent-deep);
    background: rgba(110, 139, 138, 0.12);
    color: var(--text);
}

.rsvp-choice input:focus-visible + span {
    outline: 2px solid rgba(79, 110, 112, 0.28);
    outline-offset: 2px;
}

.rsvp-entree[hidden] {
    display: none;
}

.rsvp-plus-one-name[hidden] {
    display: none;
}

.rsvp-entree select {
    font-family: "Inter", sans-serif;
}

.rsvp-success {
    text-align: center;
    display: grid;
    gap: 14px;
}

.map-marker {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 180ms ease;
}

.map-marker::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: currentColor;
    box-shadow: 0 12px 24px rgba(30, 39, 44, 0.16);
    transition: box-shadow 180ms ease;
}

.map-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 12px;
    height: 4px;
    margin-left: -6px;
    border-radius: 999px;
    background: rgba(42, 52, 58, 0.12);
    filter: blur(1px);
    transition: transform 180ms ease, opacity 180ms ease;
}

.map-marker__core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
}

.map-marker--eat-drink {
    color: #b96f57;
}

.map-marker--fun {
    color: #4e7a82;
}

.map-marker--nature {
    color: #7c8a52;
}

.map-landmark {
    display: inline-flex;
}

.map-landmark__badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8f4ec;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(30, 39, 44, 0.18);
}

.map-landmark--wedding .map-landmark__badge {
    background: #9f6c73;
}

.map-landmark--airport .map-landmark__badge {
    background: #4e7a82;
}

.leaflet-marker-icon.is-active .map-marker {
    animation: map-pin-hop 1s ease-in-out infinite;
}

.leaflet-marker-icon.is-active .map-marker::before {
    box-shadow: 0 16px 28px rgba(30, 39, 44, 0.22);
}

.leaflet-marker-icon.is-active .map-marker--eat-drink::before {
    background: #cc826b;
}

.leaflet-marker-icon.is-active .map-marker--fun::before {
    background: #5c8c95;
}

.leaflet-marker-icon.is-active .map-marker--nature::before {
    background: #8f9d63;
}

.leaflet-marker-icon.is-active .map-marker::after {
    animation: map-pin-shadow 1.05s ease-in-out infinite;
}

.map-tooltip {
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(79, 110, 112, 0.14);
    border-radius: 999px;
    box-shadow: 0 14px 24px rgba(30, 39, 44, 0.12);
    color: var(--text);
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 7px 12px;
    text-transform: uppercase;
}

.map-tooltip::before {
    display: none;
}

@keyframes map-pin-hop {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -11px, 0) scale(1.04);
    }
}

@keyframes map-pin-shadow {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    45% {
        transform: scale(0.84);
        opacity: 0.74;
    }

    75% {
        transform: scale(0.9);
        opacity: 0.82;
    }
}

.registry {
    min-height: calc(100vh - 240px);
    display: grid;
    place-items: center;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    cursor: pointer;
}

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

.faq-item summary:focus-visible {
    outline: 2px solid rgba(79, 110, 112, 0.45);
    outline-offset: -2px;
    border-radius: var(--radius);
}

.faq-question {
    font-size: 1.4rem;
}

.faq-toggle {
    flex: 0 0 auto;
    color: var(--accent-deep);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 180ms ease, color 180ms ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 0 28px 24px;
}

.faq-answer p {
    max-width: 620px;
}

.page-media {
    position: relative;
    margin-bottom: 25px;
    isolation: isolate;
}

.registry-card {
    padding: clamp(36px, 8vw, 60px);
    text-align: center;
}

.registry-card h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    margin-bottom: 14px;
}

.registry-card p {
    max-width: 560px;
    margin: 0 auto 26px;
}

footer {
    padding: 26px 0 8px;
    text-align: center;
}

footer p {
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    body {
        padding-top: 122px;
    }

    .navbar {
        width: min(calc(100% - 20px), 980px);
        top: 16px;
        border-radius: 28px;
        padding: 12px 14px;
        align-items: center;
    }

    .brand-link {
        font-size: 1.3rem;
    }

    .nav-right {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        border-radius: 22px;
        background: rgba(252, 250, 245, 0.94);
        backdrop-filter: blur(14px);
        box-shadow: 0 18px 34px rgba(62, 70, 66, 0.1);
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .navbar.is-open .nav-menu {
        display: grid;
    }

    .things-shell {
        width: min(100%, var(--container));
        padding: 0;
    }

    .things-filter-bar-wrap {
        margin-bottom: 22px;
    }

    .things-filter-bar {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .things-layout {
        grid-template-columns: 1fr;
    }

    .things-map-column {
        display: none;
    }
}

@media (max-width: 720px) {
    body {
        padding: 132px 16px 32px;
    }

    .page {
        padding: 20px 0 44px;
    }

    .page-header {
        margin-bottom: 34px;
    }

    .hero {
        min-height: calc(100vh - 210px);
        padding: 64px 22px;
    }

    .hero-media,
    .page-media {
        margin-top: 28px;
    }

    .hero-details {
        gap: 8px;
        font-size: 0.85rem;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px 22px;
    }

    .schedule-divider {
        display: none;
    }

    .travel-item,
    .recommendation,
    .registry-card {
        padding: 24px 22px;
    }

    .rsvp-panel {
        padding: 24px 22px;
    }

    .rsvp-lookup-grid,
    .rsvp-choice-grid {
        grid-template-columns: 1fr;
    }

    .rsvp-choice-set {
        gap: 10px;
    }
}
