@font-face {
    font-family: "Fog";
    src: url("./fonts/FoglihtenNo06_076.otf");
}
@font-face {
    font-family: "Sloop";
    src: url("./fonts/Sloop Script Pro.otf");
}

@font-face {
    font-family: "Manrope";
    src: url("./fonts/Manrope.ttf");
}

@font-face {
    font-family: "Kind";
    src: url("./fonts/Kindentosca.otf");
}

@font-face {
    font-family: "Pukhlyash";
    src: url("./fonts/Pukhlyash-Regular.otf");
}

:root {
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dim: rgba(201, 169, 110, 0.3);
    --cream: #f5f0e8;
    --muted: rgba(245, 240, 232, 0.6);
    --r: 28px;
}

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

.watermark {
    content: "ya-invite";
    position: fixed;
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    transform: rotate(-25deg);
    pointer-events: none;
    z-index: 55555;
    white-space: nowrap;
    font-weight: 600; /* выглядит аккуратнее */
}



body::after {
    content: "ya-invite";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    pointer-events:none;
    z-index:5555555;
    white-space:nowrap;
}

html::after {
    content: "ya-invite";
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 80px;
    color: rgba(0,0,0,0.08);
    pointer-events:none;
    z-index:555555;
    white-space:nowrap;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Manrope', sans-serif;
    color: var(--cream);
    overflow-x: hidden;
}

html.intro-open, body.intro-open {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
}

/* ── SCROLL ANIMATIONS ── */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* ── UTILITY ── */
.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f65d9d, transparent);
    margin: 0 auto 28px;
}

/* ═══════════════════════════════════
   INTRO
═══════════════════════════════════ */
.intro {
    margin: 0 auto;
    max-width: 600px;
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
    background: #fff;
}

.intro-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.intro-heart {
    position: absolute;
    top: 8%;
    left: 10%;
    width: 70px;
    height: auto;
    rotate: -8deg;
    opacity: 0.85;
    z-index: 1;
}


.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(20px, 6vh, 48px) clamp(20px, 7vw, 36px);
    box-sizing: border-box;
    max-width: calc(100vw - 32px);
    animation: fadeSlideUp 1s ease both;
}

.intro-eyebrow {
    font-size: 16px;
    letter-spacing: 0.32em;
    color: deeppink;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: normal;
}

.intro-name {
    font-family: 'Pukhlyash', serif;
    font-size: clamp(52px, 13vw, 88px);
    font-weight: 300;
    color: #f65d9d;
    line-height: 1;
    margin-bottom: clamp(14px, 4vh, 24px);
}

.intro-sub {
    font-size: 13px;
    color: #f65d9d;
    letter-spacing: 0.12em;
    line-height: 1.9;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: clamp(14px, 4vh, 32px);
}

.open-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f65d9d;
    background: transparent;
    color: #f65d9d;
    border-radius: 50px;
    padding: clamp(10px, 2.5vh, 14px) clamp(24px, 6vw, 36px);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: clamp(10px, 2.5vh, 20px);
}

.open-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f65d9d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
}

.open-btn:hover::before {
    transform: scaleX(1);
}


.open-btn-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.open-btn-glow {
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--gold-dim);
    animation: glowPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

.intro.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

/* ── MUSIC BUTTON ── */
.music-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    background: rgba(8, 6, 4, 0.6);
    color: #f65d9d;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.music-toggle:hover {
    border-color: #f65d9d;
    background: rgba(201, 169, 110, 0.1);
}

/* ── SITE ── */
.site {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.site.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 60%;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.is-visible .hero-bg {
    transform: scale(1);
}

/*.hero-overlay {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(*/
/*        to bottom,*/
/*        rgba(8,6,4,0.2) 0%,*/
/*        rgba(8,6,4,0.15) 40%,*/
/*        rgba(8,6,4,0.75) 80%,*/
/*        rgba(8,6,4,1) 100%*/
/*    );*/
/*}*/

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    text-align: center;
}

.hero-date {
    font-size: 16px;
    letter-spacing: 0.32em;
    color: deeppink;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Pukhlyash', serif;
    font-size: clamp(52px, 13vw, 96px);
    font-weight: 300;
    line-height: 1;
    color: #f65d9d;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.hero-amp {
    font-style: italic;
    color: #f65d9d;
    font-size: 0.4em;
}



.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 8px;
    background: #f65d9d;
    opacity: 0;
    animation: scrollDots 1.5s ease-in-out infinite;
}

.hero-scroll span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-scroll span:nth-child(3) {
    animation-delay: 0.4s;
}
.hero-photo {
    position: absolute;
    bottom: -130px;
    right: -45px;
    rotate: -10deg;
    width: 400px;
    height: auto;
}
.hero-photo img{
    width: 100%;
    height: 100%;
}
.hero-plaska {
    position: absolute;
    top: 190px;
    left: 0px;
    rotate: -10deg;
    width: 300px;
    height: auto;
}
.hero-plaska img{
    width: 100%;
    height: 100%;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 52%;
    text-align: center;
    font-size: 30px;
    font-family: 'Sloop', serif;
    transform: translate(-50%, -50%);
    rotate: 0deg;
    color: #f65d9d;
    width: 300px;
}
/* ═══════════════════════════════════
   WELCOME
═══════════════════════════════════ */
.section-welcome {
    max-width: 600px;
    margin: -1px auto 0;
    padding: 80px 32px;
    text-align: center;
    background-color: #f65d9d;
}


.welcome-title {
    font-family: 'Fog', serif;
    font-size: clamp(30px, 7vw, 48px);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 24px;
    line-height: 1.2;
}

.welcome-text {
    font-size: 15px;
    line-height: 2;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 28px;
}

/* ═══════════════════════════════════
   CALENDAR
═══════════════════════════════════ */
.section-calendar {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    text-align: center;
}

.calendar-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.calendar-overlay {
    position: absolute;
    inset: 0;
}

.calendar-inner {
    position: relative;
    z-index: 2;
}

.cal-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 12px;
}

.cal-month {
    font-family: 'Fog', serif;
    font-size: clamp(26px, 6vw, 40px);
    color: #f65d9d;
    margin-bottom: 36px;
    letter-spacing: 0.08em;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    max-width: 380px;
    margin: 0 auto;
}

.cal-weekday {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #f65d9d;
    padding-bottom: 12px;
    font-weight: 400;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #f65d9d;
    border-radius: 50%;
    font-weight: 300;
    position: relative;
    transition: color 0.2s;
}

.cal-day.cal-special {
    background: #f65d9d;
    color: var(--cream);
    font-weight: 600;
    font-size: 23px;
    animation: heartbeat 2s ease-in-out infinite;
}

/* ═══════════════════════════════════
   LOCATION
═══════════════════════════════════ */
.section-location {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    overflow: hidden;
}

.location-text {
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.loc-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
}

.loc-title {
    font-family: 'Fog', serif;
    font-size: clamp(22px, 4vw, 32px);
    color: #f65d9d;
    line-height: 1.1;
}

.loc-divider {
    width: 30px;
    height: 1px;
    background: #f65d9d;
    margin: 4px 0;
}

.loc-name {
    font-size: 14px;
    color: #f65d9d;
    line-height: 1.6;
    font-weight: 300;
}

.loc-name i {
    color: #f65d9d;
    margin-right: 8px;
}

.loc-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    border: 1px solid #f65d9d;
    color: #f65d9d;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}

.loc-btn:hover {
    background: #f65d9d;
}

.location-photo {
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

/* ═══════════════════════════════════
   TIMELINE
═══════════════════════════════════ */
.section-timeline {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 32px;
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.tl-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}

.tl-title {
    font-family: 'Fog', serif;
    font-size: clamp(28px, 6vw, 44px);
    color: #f65d9d;
}

.timeline-list {
    position: relative;
    padding-left: 0;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold-dim) 15%, var(--gold-dim) 85%, transparent);
    transform: translateX(-50%);
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.tl-item:nth-child(even) .tl-time {
    order: 3;
    text-align: left;
}

.tl-item:nth-child(even) .tl-dot {
    order: 2;
}

.tl-item:nth-child(even) .tl-info {
    order: 1;
    text-align: right;
}

.tl-time {
    font-family: 'Fog', serif;
    font-size: 28px;
    color: #f65d9d;
    text-align: right;
    line-height: 1;
    position: relative;
}
.tl-time img {
    position: absolute;
    left: 77%;
    top: 50%;
    width: 120px;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}
.tl-time img.tl-img{
    position: absolute;
    left: 20%;
    top: 50%;
    width: 120px;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f6bad6;
    box-shadow: 0 0 12px #f65d9d;
    justify-self: center;
    flex-shrink: 0;
}

.tl-info h3 {
    font-family: 'Fog', serif;
    font-size: 16px;
    color: #f65d9d;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.tl-info p {
    font-size: 13px;
    color: #f65d9d;
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════
   DETAILS
═══════════════════════════════════ */
.section-details {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0px 32px;
}

.details-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.details-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.85;
}

.details-inner {
    position: relative;
    z-index: 2;
}

.details-header {
    text-align: center;
    margin-bottom: 50px;
}

.det-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}

.det-title {
    font-family: 'Fog', serif;
    font-size: clamp(28px, 6vw, 44px);
    color: #f65d9d;
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.det-card {
    padding: 32px 28px;
    border: 1px solid #f6bad6;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
    margin-bottom: 16px;
}
.art {
    position: absolute;
    pointer-events: none;
    user-select: none;
}
.details__bg {
    max-width: 100%;
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    top: auto;
    bottom: 0;
    mask-image: linear-gradient(to top, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 40%, transparent 100%);
    opacity: 0.5;
    z-index: -1;
}
.det-card:hover {
    border-color: #f65d9d;
}

.det-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Fog', serif;
    font-size: 60px;
    color: #f6bad6;
    line-height: 1;
}

.det-card h3 {
    font-family: 'Fog', serif;
    font-size: 18px;
    color: #f65d9d;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.det-card p {
    font-size: 14px;
    color: #f65d9d;
    line-height: 1.8;
    font-weight: 300;
}

/* ═══════════════════════════════════
   DRESSCODE
═══════════════════════════════════ */
.section-dresscode {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 32px;
    text-align: center;
    position: relative;
}

.dc-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 12px;
}

.dc-title {
    font-family: 'Fog', serif;
    font-size: clamp(28px, 6vw, 44px);
    color: #f65d9d;
    margin-bottom: 20px;
}

.dc-text {
    font-size: 14px;
    color: #f65d9d;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 40px;
}

.dc-palette {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dc-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dc-swatch::before {
    content: '';
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c);
    border: 1px solid var(--gold-dim);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}


/* ═══════════════════════════════════
   COUNTDOWN
═══════════════════════════════════ */
.section-countdown {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 32px 0;
    text-align: center;
}

.cd-header {
    margin-bottom: 50px;
}



.cd-title {
    font-family: 'Fog', serif;
    font-size: clamp(28px, 6vw, 44px);
    color: #f65d9d;
}

.cd-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-ring {
    position: relative;
    width: 90px;
    height: 90px;
}

.cd-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.cd-ring-bg {
    fill: none;
    stroke: rgba(201, 169, 110, 0.12);
    stroke-width: 3;
}

.cd-ring-fill {
    fill: none;
    stroke: #f65d9d;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 276.46;
    stroke-dashoffset: 276.46;
    transition: stroke-dashoffset 0.5s ease;
}

.cd-val-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cd-val {
    font-family: 'Fog', serif;
    font-size: 26px;
    color: #f65d9d;
    line-height: 1;
}

.cd-lbl {
    font-size: 9px;
    color: #f65d9d;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 2px;
}

/* ═══════════════════════════════════
   FORM
═══════════════════════════════════ */
.section-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 32px;
}

.form-inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.form-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}

.form-title {
    font-family: 'Fog', serif;
    font-size: clamp(28px, 6vw, 44px);
    color: #f65d9d;
    margin-bottom: 16px;
}

.form-sub {
    font-size: 13px;
    color: #f65d9d;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.wedding-form {
    text-align: left;
}

.field {
    margin-bottom: 28px;
}

.field > label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f65d9d;
    font-weight: 400;
    margin-bottom: 10px;
}

.field-note {
    font-size: 9px;
    color: #f65d9d;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
}

.field input[type="text"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f65d9d;
    color: #f65d9d;
    font-size: 15px;
    padding: 10px 0;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: border-color 0.3s;
}

.field input[type="text"]:focus {
    border-color: #f65d9d;
}

.field input[type="text"]::placeholder {
    color: #f65d9d;
}

.radio-group, .check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.radio-item, .check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: #f65d9d;
    font-weight: 300;
    transition: color 0.2s;
}

.radio-item:hover, .check-item:hover {
    color: #f65d9d;
}

.radio-item input, .check-item input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #f65d9d;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s;
}

.check-item input {
    border-radius: 3px;
}

.radio-item input:checked,
.check-item input:checked {
    border-color: #f65d9d;
    background: #f65d9d;
}

.radio-item input:checked::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
}

.check-item input:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

.form-btn {
    width: 100%;
    margin-top: 36px;
    padding: 16px;
    background: transparent;
    border: 1px solid #f65d9d;
    color: #f65d9d;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    position: relative;
    overflow: hidden;
}

.form-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f65d9d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
}

.form-btn:hover::before {
    transform: scaleX(1);
}

.form-btn span {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════
   FINAL
═══════════════════════════════════ */
.section-final {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.final-photo {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    max-width: 500px;
    height: 600px;

    margin: 0 auto;

    -webkit-mask-image: url("images/IMG_5514.PNG");
    mask-image: url("images/IMG_5514.PNG");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: contain;
    mask-size: contain;

    overflow: hidden;
}

.final-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(145px);
}
.final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 30px 30px;
}

.final-eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: #f65d9d;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 16px;
}

.final-title {
    font-family: 'Fog', serif;
    font-size: clamp(36px, 9vw, 64px);
    color: #f65d9d;
    margin-bottom: 16px;
}

.final-sub {
    font-size: 15px;
    color: #f65d9d;
    line-height: 1.8;
    font-weight: 300;
}

.final-sub em {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #f65d9d;
    font-style: italic;
    margin-top: 4px;
}

/* ═══════════════════════════════════
   KEYFRAMES
═══════════════════════════════════ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(246, 93, 157, 0.25);
    }
    50% {
        box-shadow: 0 0 28px rgba(246, 93, 157, 0.5);
    }
}

@keyframes scrollDots {
    0% {
        opacity: 0;
        transform: translateY(-6px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 520px) {
    .section-location {
        grid-template-columns: 1fr;
    }

    .location-photo {
        min-height: 240px;
    }

    /*.timeline-list::before { display: none; }*/
    /*.tl-item {*/
    /*    grid-template-columns: 20px 1fr;*/
    /*    gap: 16px;*/
    /*}*/
    /*.tl-item .tl-time { display: none; }*/
    /*.tl-item:nth-child(even) .tl-info { order: 3; text-align: left; }*/
    /*.tl-item:nth-child(even) .tl-dot  { order: 1; }*/
    .cd-ring {
        width: 72px;
        height: 72px;
    }

    .cd-val {
        font-size: 20px;
    }

    .cd-boxes {
        gap: 12px;
    }

    .check-group {
        grid-template-columns: 1fr;
    }

    .intro-photo {
        width: 240px;
        bottom: -50px;
        right: -35px;
    }

    .intro-heart {
        width: 50px;
        top: 6%;
    }
}
