:root {
    --bg: #fbf7f2;
    --bg-soft: #f2ebe1;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-accent: #efe5d8;
    --ink: #352c27;
    --muted: #70635a;
    --accent: #75856b;
    --accent-deep: #55614f;
    --border: rgba(83, 68, 56, 0.12);
    --shadow: 0 20px 60px rgba(48, 35, 28, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: min(1120px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(117, 133, 107, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(196, 166, 126, 0.16), transparent 24%),
        linear-gradient(180deg, #fdfaf6 0%, var(--bg) 42%, #f6efe5 100%);
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(251, 247, 242, 0.82);
    border-bottom: 1px solid rgba(83, 68, 56, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.desktop-nav {
    display: none;
    flex: 1;
}

.nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list a,
.side-menu__list a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-list a:hover,
.side-menu__list a:hover,
.nav-list a:focus-visible,
.side-menu__list a:focus-visible {
    color: var(--accent-deep);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(83, 68, 56, 0.12);
}

.language-switch__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 38px;
    padding: 0 0.75rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.language-switch__link.is-active {
    background: var(--accent-deep);
    color: #fff;
    box-shadow: 0 10px 20px rgba(85, 97, 79, 0.24);
}

.menu-toggle,
.side-menu__close {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 24px rgba(53, 44, 39, 0.1);
}

.menu-toggle span,
.side-menu__close span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.side-menu__close span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.side-menu__close span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(31, 22, 18, 0.34);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 1.5rem;
    background: rgba(251, 247, 242, 0.98);
    box-shadow: -12px 0 40px rgba(31, 22, 18, 0.18);
    transform: translateX(102%);
    transition: transform 0.3s ease;
}

.side-menu.is-open {
    transform: translateX(0);
}

.side-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.language-switch--mobile {
    margin-bottom: 1.5rem;
}

.side-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.hero,
.section {
    scroll-margin-top: 92px;
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 78px);
    padding: 4.5rem 0 3rem;
    background-image:
        linear-gradient(180deg, rgba(19, 13, 10, 0.2) 0%, rgba(19, 13, 10, 0.7) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero__content {
    width: 100%;
}

.hero__panel {
    width: min(720px, 100%);
    padding: clamp(1.75rem, 2vw + 1rem, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(29, 21, 18, 0.46);
    box-shadow: 0 25px 80px rgba(17, 11, 9, 0.26);
    color: #fffaf7;
}

.hero__title,
.section-heading h2,
.card h3,
.lead-copy,
.quote-card {
    font-family: "Playfair Display", serif;
}

.hero__title {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.hero__quote {
    max-width: 38rem;
    margin: 1.25rem 0 0;
    font-size: clamp(1rem, 1vw + 0.85rem, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 250, 247, 0.92);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 1.75rem;
    color: rgba(255, 250, 247, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__meta p {
    margin: 0;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.countdown__item {
    padding: 1rem 0.7rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
    backdrop-filter: blur(8px);
}

.countdown__item span {
    display: block;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.4rem);
    font-weight: 700;
}

.countdown__item small {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 250, 247, 0.75);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section {
    padding: clamp(4rem, 6vw, 6.5rem) 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(239, 229, 216, 0.65) 0%, rgba(251, 247, 242, 0) 100%);
}

.section--contrast {
    background: linear-gradient(180deg, rgba(117, 133, 107, 0.08) 0%, rgba(255, 255, 255, 0.62) 100%);
}

.section--gallery {
    padding-top: clamp(3.5rem, 5vw, 5rem);
    padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.15rem);
    color: #2d241f;
}

.section-heading p,
.card p,
.form-errors li,
.faq-answer p,
.section-note,
.card__meta,
.contact-card__link {
    color: var(--muted);
    line-height: 1.8;
}

.section-heading p,
.card p,
.faq-answer p,
.section-note {
    margin: 1rem 0 0;
}

.verse-layout,
.split-layout,
.timeline-layout,
.rsvp-layout {
    display: grid;
    gap: 1.75rem;
}

.verse-layout__images {
    position: relative;
    min-height: 450px;
}

.stacked-image {
    border-radius: calc(var(--radius-lg) + 4px);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.stacked-image--large {
    width: min(100%, 420px);
    height: 100%;
    max-height: 560px;
}

.stacked-image--small {
    position: absolute;
    right: 0;
    bottom: -2rem;
    width: min(48%, 240px);
    aspect-ratio: 1 / 1;
    border: 8px solid #fffaf7;
}

.quote-card,
.card,
.placeholder-card {
    padding: clamp(1.5rem, 2vw, 2.2rem);
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(1.1rem, 1.3vw + 0.85rem, 1.35rem);
    line-height: 1.8;
}

.quote-card p,
.quote-card cite {
    margin: 0;
}

.quote-card cite {
    color: var(--accent-deep);
    font-style: normal;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.split-layout__media img,
.timeline-layout__media img,
.rsvp-layout__media img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.split-layout__content,
.timeline-layout__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-layout__content--centered {
    align-items: flex-start;
}

.lead-copy {
    margin: 0;
    font-size: clamp(2rem, 2.8vw, 3.4rem);
    line-height: 1.2;
    color: #302823;
}

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

.card-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid--accommodation {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card__eyebrow,
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(117, 133, 107, 0.14);
    color: var(--accent-deep);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag--large {
    margin-top: 1.5rem;
}

.card h3 {
    margin: 0.9rem 0 0;
    font-size: 1.55rem;
    color: #2d241f;
}

.card__highlight {
    color: var(--accent-deep);
    font-weight: 700;
}

.card__meta {
    margin-top: 0.7rem;
    font-size: 0.95rem;
}

.button-link,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    margin-top: 1.3rem;
    padding: 0.8rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: var(--accent-deep);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    box-shadow: 0 16px 30px rgba(85, 97, 79, 0.24);
}

.button-link:hover,
.submit-button:hover,
.button-link:focus-visible,
.submit-button:focus-visible {
    transform: translateY(-1px);
    background: #46513f;
}

.section--accommodation {
    padding-top: clamp(3.25rem, 4vw, 4.5rem);
    padding-bottom: clamp(3.25rem, 4vw, 4.5rem);
}

.gallery-showcase {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(1.1rem, 2vw, 1.5rem);
    border: 1px solid rgba(83, 68, 56, 0.1);
    border-radius: calc(var(--radius-lg) + 2px);
    background:
        radial-gradient(circle at top left, rgba(117, 133, 107, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(247, 241, 234, 0.92) 100%);
    box-shadow: 0 22px 48px rgba(48, 35, 28, 0.1);
    overflow: hidden;
}

.gallery-showcase::before,
.gallery-showcase::after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    border-color: rgba(117, 133, 107, 0.22);
    border-style: solid;
    pointer-events: none;
}

.gallery-showcase::before {
    top: 1rem;
    left: 1rem;
    border-width: 1px 0 0 1px;
    border-top-left-radius: 28px;
}

.gallery-showcase::after {
    right: 1rem;
    bottom: 1rem;
    border-width: 0 1px 1px 0;
    border-bottom-right-radius: 28px;
}

.gallery-showcase__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.gallery-showcase__header .section-heading {
    margin: 0;
    max-width: 36rem;
}

.gallery-showcase__header .card__eyebrow {
    margin-bottom: 0.85rem;
}

.gallery-showcase__status {
    flex-shrink: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(83, 68, 56, 0.08);
    color: var(--accent-deep);
    box-shadow: 0 12px 24px rgba(48, 35, 28, 0.08);
}

.gallery-showcase__current {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    line-height: 1;
}

.gallery-showcase__total {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-carousel {
    position: relative;
}

.gallery-carousel__viewport {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 6px);
}

.gallery-carousel__track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    margin: 0;
    opacity: 0.78;
    transform: scale(0.985);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide img {
    width: 100%;
    height: clamp(360px, 48vw, 520px);
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 6px);
    box-shadow: 0 24px 40px rgba(33, 24, 20, 0.12);
}

.gallery-carousel__control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(83, 68, 56, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.84);
    color: var(--accent-deep);
    box-shadow: 0 14px 24px rgba(48, 35, 28, 0.12);
    transform: translateY(-50%);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.gallery-carousel__control:first-of-type {
    left: 1rem;
}

.gallery-carousel__control:last-of-type {
    right: 1rem;
}

.gallery-carousel__control:hover,
.gallery-carousel__control:focus-visible {
    transform: translateY(-50%) scale(1.04);
    background: var(--accent-deep);
    color: #fff;
}

.gallery-carousel__control span {
    font-size: 1rem;
    line-height: 1;
}

.gallery-carousel__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.gallery-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(117, 133, 107, 0.24);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        width 0.2s ease;
}

.gallery-carousel__dot.is-active {
    width: 28px;
    background: var(--accent-deep);
}

.accommodation-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    padding: 1.35rem 1.35rem 1.2rem;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 14px 34px rgba(48, 35, 28, 0.08);
}

.accommodation-card__meta {
    margin: 0;
    color: var(--accent-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accommodation-card h3 {
    margin-top: 0.45rem;
    font-size: 1.22rem;
    line-height: 1.35;
}

.accommodation-card__phones {
    display: grid;
    gap: 0.28rem;
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.accommodation-card__phones span {
    display: block;
}

.accommodation-card__link {
    min-height: auto;
    margin-top: 0.95rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.accommodation-card__link:hover,
.accommodation-card__link:focus-visible {
    transform: none;
    background: transparent;
    color: #46513f;
}

.accommodation-note {
    margin-top: 1.35rem;
    font-size: 0.94rem;
}

.timeline-list {
    display: grid;
    gap: 0.85rem;
}

.timeline-item {
    display: grid;
    gap: 0.55rem;
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
}

.timeline-item__time {
    margin: 0;
    color: var(--accent-deep);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-item__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 600;
}

.timeline-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(117, 133, 107, 0.12);
}

.section-note {
    max-width: 52rem;
    margin: 2rem auto 0;
    text-align: center;
}

.rsvp-layout__media {
    min-height: 420px;
}

.form-card {
    align-self: center;
}

.bridal-shower-page {
    min-height: 100vh;
}

.bridal-shower__back-link {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.bridal-shower__back-link:hover,
.bridal-shower__back-link:focus-visible {
    color: var(--accent-deep);
}

.bridal-shower-hero {
    min-height: min(78vh, 820px);
    align-items: center;
    padding: 5rem 0;
}

.bridal-shower-hero__panel {
    max-width: 760px;
}

.bridal-shower-layout {
    display: grid;
    gap: 1.25rem;
}

.bridal-shower-highlight h2 {
    margin: 0.85rem 0 0;
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    line-height: 1.15;
    color: #2d241f;
    font-family: "Playfair Display", serif;
}

.bridal-shower-form-wrap {
    display: grid;
    place-items: center;
}

.bridal-shower-form-card {
    width: min(100%, 720px);
}

.form-errors {
    margin-bottom: 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(186, 97, 97, 0.2);
    background: rgba(186, 97, 97, 0.08);
}

.form-errors p {
    margin: 0;
    color: #7a3c3c;
    font-weight: 700;
}

.form-errors ul {
    margin: 0.65rem 0 0;
    padding-left: 1.2rem;
}

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

.form-group {
    display: grid;
    gap: 0.45rem;
}

.form-group label {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(83, 68, 56, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(117, 133, 107, 0.12);
}

.placeholder-card {
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 36px rgba(48, 35, 28, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
}

.faq-question__icon {
    font-size: 1.4rem;
    color: var(--accent-deep);
    transition: transform 0.2s ease;
}

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

.faq-answer p {
    margin: 0;
    padding: 0 1.4rem 1.35rem;
}

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

.faq-item.is-open .faq-question__icon {
    transform: rotate(45deg);
}

.contact-card__link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-deep);
    font-weight: 700;
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .verse-layout,
    .split-layout,
    .rsvp-layout,
    .bridal-shower-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: center;
    }

    .timeline-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
    }

    .section-heading {
        margin-bottom: 3rem;
    }

    .gallery-showcase {
        padding: 1.35rem;
    }
}

@media (min-width: 1080px) {
    .gallery-showcase {
        max-width: 980px;
        padding: 1.15rem;
    }

    .gallery-showcase__header {
        margin-bottom: 0.9rem;
    }

    .gallery-showcase__header .section-heading {
        max-width: 30rem;
    }

    .gallery-slide img {
        height: 520px;
    }

    .gallery-carousel__dots {
        margin-top: 0.8rem;
    }

    .desktop-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .side-menu,
    .menu-backdrop {
        display: none;
    }
}

@media (max-width: 1079px) {
    .desktop-nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-inner {
        min-height: 74px;
    }

    .brand {
        font-size: 1.15rem;
    }

    .language-switch {
        display: none;
    }

    .bridal-shower__back-link {
        display: none;
    }

    .language-switch--mobile {
        display: inline-flex;
    }

    .hero {
        min-height: 88vh;
        padding-top: 5rem;
    }

    .hero__panel {
        padding: 1.5rem;
    }

    .hero__meta {
        font-size: 0.82rem;
    }

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

    .verse-layout__images {
        min-height: 360px;
        padding-bottom: 2rem;
    }

    .stacked-image--large {
        max-width: 100%;
    }

    .stacked-image--small {
        width: 43%;
        bottom: 0;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .lead-copy {
        font-size: 2.15rem;
    }

    .gallery-showcase {
        padding: 0.95rem;
    }

    .gallery-showcase::before,
    .gallery-showcase::after {
        width: 58px;
        height: 58px;
    }

    .gallery-showcase__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .gallery-showcase__status {
        padding: 0.55rem 0.85rem;
    }

    .gallery-slide img {
        height: min(68vw, 420px);
    }

    .gallery-carousel__control {
        width: 40px;
        height: 40px;
    }

    .gallery-carousel__control:first-of-type {
        left: 0.65rem;
    }

    .gallery-carousel__control:last-of-type {
        right: 0.65rem;
    }

}
