:root {
    --green-900: #18392f;
    --green-700: #2f6b55;
    --green-500: #6f9f72;
    --gold-500: #c49a3d;
    --gold-300: #ecd189;
    --ivory-100: #fbf7ec;
    --ivory-200: #f2ead8;
    --rose-700: #7b2f3a;
    --ink: #24302b;
    --muted: #6d756f;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(24, 57, 47, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(123, 47, 58, 0.12), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(47, 107, 85, 0.16), transparent 36rem),
        linear-gradient(135deg, rgba(236, 209, 137, 0.18) 0 25%, transparent 25% 50%, rgba(47, 107, 85, 0.06) 50% 75%, transparent 75%),
        var(--ivory-100);
    background-size: 28px 28px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
}

body.lightbox-open {
    overflow: hidden;
}

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

main > section {
    position: relative;
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    color: var(--white);
    background: linear-gradient(90deg, rgba(24, 57, 47, 0.92), rgba(123, 47, 58, 0.78));
    border-bottom: 1px solid rgba(236, 209, 137, 0.34);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(236, 209, 137, 0.75);
    border-radius: 50%;
    color: var(--gold-300);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.8vw, 34px);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--gold-300);
    transition: transform 0.25s ease;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(236, 209, 137, 0.52);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.music-player audio {
    display: none;
}

.music-toggle {
    position: fixed;
    z-index: 30;
    right: 22px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(236, 209, 137, 0.66);
    border-radius: 50%;
    color: var(--green-900);
    background: rgba(236, 209, 137, 0.94);
    box-shadow: 0 18px 44px rgba(24, 57, 47, 0.24);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.music-toggle:hover,
.music-toggle:focus-visible {
    transform: translateY(-2px);
    background: var(--gold-300);
}

.music-toggle.is-muted {
    color: var(--green-900);
    border-color: rgba(196, 154, 61, 0.74);
    background: rgba(251, 247, 236, 0.94);
}

.music-toggle i {
    font-size: 18px;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

.hero-media.is-missing {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(24, 57, 47, 0.86), rgba(123, 47, 58, 0.76)),
        repeating-linear-gradient(45deg, rgba(236, 209, 137, 0.22) 0 2px, transparent 2px 16px);
}

.hero-media.is-missing::after,
[data-fallback-frame].is-missing::after {
    content: attr(data-fallback);
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 78px;
    font-weight: 700;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(10, 26, 21, 0.18), rgba(10, 26, 21, 0.78)),
        linear-gradient(90deg, rgba(24, 57, 47, 0.9), rgba(24, 57, 47, 0.34) 52%, rgba(123, 47, 58, 0.58));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: end;
    gap: 34px;
    padding-top: 72px;
    text-align: left;
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-300);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 96px;
    line-height: 0.92;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.hero h1 span {
    color: var(--gold-300);
    font-size: 0.7em;
}

.hero-date {
    margin: 24px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 24px;
    font-weight: 700;
}

.hero-actions,
.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(236, 209, 137, 0.5);
    border-radius: 8px;
    background: rgba(24, 57, 47, 0.7);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(236, 209, 137, 0.18), transparent 46%),
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(236, 209, 137, 0.1) 14px 16px);
}

.hero-card > * {
    position: relative;
}

.hero-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-300);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.hero-card strong {
    display: block;
    color: var(--white);
    font-size: 28px;
    line-height: 1.1;
}

.hero-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: var(--green-900);
    background: var(--gold-300);
    box-shadow: 0 14px 36px rgba(196, 154, 61, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #f4dc99;
}

.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.12);
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.section-shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(72px, 9vw, 118px) 0;
}

.section-shell.narrow {
    width: min(780px, calc(100% - 36px));
}

.section-heading {
    margin-bottom: clamp(28px, 5vw, 54px);
    text-align: center;
}

h2 {
    margin: 0;
    color: var(--green-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: 1.05;
}

h3 {
    margin: 0;
    color: var(--green-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.08;
}

.intro-section {
    background:
        linear-gradient(180deg, rgba(251, 247, 236, 0.96), rgba(242, 234, 216, 0.9)),
        repeating-linear-gradient(90deg, transparent 0 20px, rgba(196, 154, 61, 0.08) 20px 22px);
}

.intro-section .section-shell {
    text-align: center;
}

.bismillah {
    margin: 0 0 20px;
    color: var(--green-700);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

blockquote {
    position: relative;
    margin: 0 auto 28px;
    padding: 32px clamp(22px, 5vw, 54px);
    color: var(--green-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.28;
}

blockquote::before,
blockquote::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 132px;
    height: 10px;
    transform: translateX(-50%);
    background:
        linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

blockquote::before {
    top: 0;
}

blockquote::after {
    bottom: 0;
}

.intro-section p:not(.bismillah),
.gift-section p,
.closing-section p {
    margin: 0 auto 18px;
    color: var(--muted);
    font-size: 17px;
}

.intro-section p:not(.bismillah):not(.sunda-greeting),
.gift-section p,
.closing-section p {
    max-width: 720px;
}

.sunda-greeting {
    max-width: 620px;
    color: var(--rose-700) !important;
    font-weight: 800;
}

.couple-section,
.agenda-section,
.closing-section {
    background: var(--ivory-100);
}

.couple-section::before,
.agenda-section::before,
.gallery-section::before,
.gift-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 47%, rgba(196, 154, 61, 0.1) 47% 53%, transparent 53%),
        linear-gradient(0deg, transparent 0 47%, rgba(47, 107, 85, 0.07) 47% 53%, transparent 53%);
    background-size: 92px 92px;
    opacity: 0.45;
}

.couple-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(18px, 3vw, 34px);
}

.person-card,
.bank-card,
.event-panel,
.agenda-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(196, 154, 61, 0.28);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.person-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
}

.person-card::before,
.bank-card::before,
.event-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(111, 159, 114, 0.08), transparent 42%),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(196, 154, 61, 0.08) 18px 20px);
}

.person-card > *,
.bank-card > *,
.event-panel > * {
    position: relative;
}

.person-ornament {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border: 2px solid rgba(196, 154, 61, 0.58);
    border-radius: 50%;
}

.person-ornament::before,
.person-ornament::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border: 2px solid var(--green-500);
    border-radius: 50% 50% 50% 0;
}

.person-ornament::before {
    transform: translate(-21px, 18px) rotate(-45deg);
}

.person-ornament::after {
    transform: translate(21px, 18px) rotate(135deg);
}

.role {
    margin: 0 0 14px;
    color: var(--rose-700);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.person-card p:last-child {
    margin: 18px 0 0;
    color: var(--muted);
}

.ampersand {
    display: grid;
    place-items: center;
    color: var(--gold-500);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 76px;
}

.detail-section {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(24, 57, 47, 0.96), rgba(47, 107, 85, 0.9) 58%, rgba(123, 47, 58, 0.92)),
        repeating-linear-gradient(135deg, transparent 0 24px, rgba(236, 209, 137, 0.08) 24px 26px);
}

.detail-section h2,
.detail-section .event-item strong {
    color: var(--white);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: center;
}

.detail-photo {
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(236, 209, 137, 0.46);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.detail-photo img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center 35%;
}

.detail-photo.is-missing,
.gallery-item.is-missing {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(24, 57, 47, 0.86), rgba(123, 47, 58, 0.72)),
        repeating-linear-gradient(45deg, rgba(236, 209, 137, 0.14) 0 2px, transparent 2px 16px);
}

.detail-photo.is-missing::after,
.gallery-item.is-missing::after {
    font-size: 36px;
}

.event-panel {
    padding: clamp(26px, 4.5vw, 44px);
    color: var(--white);
    border-color: rgba(236, 209, 137, 0.34);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.event-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(236, 209, 137, 0.22);
}

.event-item:first-child {
    padding-top: 0;
}

.event-item:last-of-type {
    border-bottom: 0;
}

.event-item i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(236, 209, 137, 0.52);
    border-radius: 50%;
    color: var(--gold-300);
}

.event-item span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.event-item strong {
    display: block;
    font-size: 22px;
    line-height: 1.35;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: clamp(28px, 5vw, 48px);
}

.countdown div {
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 18px 10px;
    border-radius: 8px;
    border: 1px solid rgba(236, 209, 137, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.countdown strong {
    display: block;
    color: var(--gold-300);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1;
}

.countdown span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.agenda-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.agenda-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
}

.agenda-item span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--green-900);
    border: 1px solid rgba(196, 154, 61, 0.52);
    border-radius: 50%;
    background: var(--gold-300);
    font-weight: 900;
}

.agenda-item h3 {
    font-size: 26px;
}

.agenda-item p {
    margin: 14px 0 0;
    color: var(--muted);
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--green-900);
    cursor: pointer;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.45s ease;
}

.gallery-item.crop-top img {
    object-position: center top;
}

.gallery-item::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(24, 57, 47, 0.78));
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-weight: 900;
    text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.06);
}

.gallery-item.is-missing {
    cursor: default;
}

.gallery-item.is-missing::before,
.gallery-item.is-missing span {
    display: none;
}

.gift-section {
    background:
        linear-gradient(180deg, rgba(251, 247, 236, 0.92), rgba(255, 255, 255, 0.92)),
        repeating-linear-gradient(0deg, transparent 0 18px, rgba(47, 107, 85, 0.07) 18px 20px);
    text-align: center;
}

.bank-card {
    margin: 32px auto 0;
    max-width: 520px;
    padding: clamp(26px, 5vw, 44px);
}

.bank-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 40px;
    margin-bottom: 22px;
    color: var(--white);
    background: var(--green-900);
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0;
}

.bank-card strong {
    display: block;
    color: var(--green-900);
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0;
}

.bank-card p {
    margin: 14px 0 0;
    color: var(--ink);
    font-weight: 800;
}

.bank-card .btn {
    margin-top: 22px;
    border: 0;
}

.copy-status {
    min-height: 24px;
    color: var(--green-700) !important;
}

.closing-section {
    text-align: center;
}

.signature {
    margin-top: 34px !important;
    color: var(--green-900) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px !important;
    line-height: 1.12;
}

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

.site-footer {
    padding: 34px 18px;
    text-align: center;
    color: var(--white);
    background: var(--green-900);
}

.site-footer p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer strong {
    color: var(--gold-300);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.lightbox {
    position: fixed;
    z-index: 50;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 70px 18px 32px;
    background: rgba(10, 26, 21, 0.88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(960px, 94vw);
    max-height: 76vh;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.lightbox p {
    margin: 14px 0 0;
    color: var(--white);
    font-weight: 800;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

@media (max-width: 860px) {
    .site-header {
        min-height: 64px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        color: var(--green-900);
        background: rgba(251, 247, 236, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 14px;
    }

    .hero {
        min-height: 96svh;
        place-items: end start;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-bottom: 96px;
    }

    .hero-card {
        max-width: 420px;
        padding: 20px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 26, 21, 0.12), rgba(10, 26, 21, 0.82)),
            linear-gradient(90deg, rgba(24, 57, 47, 0.72), rgba(123, 47, 58, 0.42));
    }

    .hero-media img {
        object-position: center top;
    }

    .hero h1 {
        font-size: 70px;
    }

    .hero-date {
        font-size: 21px;
    }

    .hero-media.is-missing::after,
    [data-fallback-frame].is-missing::after {
        font-size: 58px;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 34px;
    }

    blockquote {
        font-size: 29px;
    }

    .couple-grid,
    .detail-layout,
    .agenda-list {
        grid-template-columns: 1fr;
    }

    .ampersand {
        font-size: 58px;
        min-height: 42px;
    }

    .detail-photo,
    .detail-photo img {
        min-height: 390px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
    }

    .event-item strong {
        font-size: 20px;
    }

    .countdown strong {
        font-size: 44px;
    }

    .bank-card strong {
        font-size: 40px;
    }

    .signature {
        font-size: 38px !important;
    }
}

@media (max-width: 560px) {
    .music-toggle {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }

    .brand span:last-child {
        max-width: 142px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-content {
        width: min(100% - 28px, 980px);
        gap: 20px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1;
    }

    .hero-date {
        font-size: 18px;
    }

    .hero-card {
        display: none;
    }

    .hero-media.is-missing::after,
    [data-fallback-frame].is-missing::after {
        font-size: 36px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
    }

    blockquote {
        font-size: 24px;
    }

    .hero-actions,
    .event-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

    .countdown strong {
        font-size: 38px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .event-item {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 14px;
    }

    .event-item i {
        width: 36px;
        height: 36px;
    }

    .event-item strong {
        font-size: 18px;
    }

    .bank-card strong {
        font-size: 34px;
    }

    .signature {
        font-size: 32px !important;
    }
}
