/* ============================================
   AP-Station — Chicken Kebab Landing
   ============================================ */

/* ---------- Fonts (self-hosted, variable) ---------- */

@font-face {
    font-family: "Fraunces";
    src: url("../fonts/fraunces.woff2") format("woff2");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fraunces";
    src: url("../fonts/fraunces-italic.woff2") format("woff2");
    font-weight: 100 1000;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit.woff2") format("woff2");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Yellowtail";
    src: url("../fonts/yellowtail.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
    --cream: #fdf3e2;
    --cream-dim: rgba(253, 243, 226, 0.72);
    --cream-faint: rgba(253, 243, 226, 0.4);
    --gold: #f6b941;
    --gold-deep: #e08a20;
    --ink: #16100d;
    --shadow: rgba(8, 5, 10, 0.65);
}

/* ---------- Base ---------- */

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

html,
body {
    height: 100%;
}

body {
    font-family: "Outfit", "Helvetica Neue", sans-serif;
    color: var(--cream);
    background-color: #11101a;
    overflow-x: hidden;
}

/* ---------- Backdrop: ember gradient, slow drift ---------- */

.backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url("../images/bg.jpg") center / cover no-repeat;
    animation: drift 46s ease-in-out infinite alternate;
}

.backdrop::after {
    /* scrim — keeps type readable over the bright ember zone */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 115%, rgba(8, 6, 12, 0.55), transparent 60%),
        linear-gradient(180deg, rgba(10, 8, 14, 0.55) 0%, rgba(10, 8, 14, 0.22) 42%, rgba(10, 8, 14, 0.5) 100%);
}

@keyframes drift {
    from { transform: scale(1) translateX(0); }
    to   { transform: scale(1.07) translateX(-1.5%); }
}

/* ---------- Layout ---------- */

.page {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

/* ---------- Header ---------- */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.2rem, 2.5vw, 2rem) clamp(1.4rem, 4vw, 3.2rem);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 1.4vw, 0.85rem);
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.22em;
    color: var(--cream);
    text-decoration: none;
    text-shadow: 0 2px 16px rgba(8, 5, 10, 0.4);
}

.brand-logo {
    height: clamp(2rem, 4.5vw, 2.6rem);
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 14px rgba(8, 5, 10, 0.4));
}

.brand span {
    color: var(--gold);
}

.header-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.header-link:hover,
.header-link:focus-visible {
    color: var(--gold);
    border-color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2.2vw, 1.4rem);
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-icon svg {
    display: block;
    width: clamp(1.55rem, 3.2vw, 1.95rem);
    height: clamp(1.55rem, 3.2vw, 1.95rem);
    filter: drop-shadow(0 2px 10px rgba(8, 5, 10, 0.35));
}

.header-icon:hover,
.header-icon:focus-visible {
    color: var(--gold);
    transform: translateY(-1px);
}

/* ---------- Hero ---------- */

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.25rem clamp(0.5rem, 2vh, 1.5rem);
}

.eyebrow {
    font-family: "Yellowtail", cursive;
    font-size: clamp(1.35rem, 2.6vw, 1.8rem);
    color: var(--gold);
    text-shadow: 0 2px 18px rgba(8, 5, 10, 0.45);
}

.eyebrow span {
    display: inline-block;
    transform: rotate(-2deg);
}

h1 {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(2.9rem, 7vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 30px rgba(8, 5, 10, 0.45);
    margin: 0.3rem 0 0.9rem;
}

h1 em {
    font-style: italic;
    padding-right: 0.06em; /* italic overhang */
    background: linear-gradient(115deg, #ffd98a 10%, var(--gold) 40%, var(--gold-deep) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .eyebrow {
    margin-bottom: clamp(0.8rem, 2.4vh, 1.4rem);
}

.sub {
    max-width: 32rem;
    font-weight: 300;
    font-size: clamp(0.98rem, 1.6vw, 1.12rem);
    line-height: 1.55;
    color: var(--cream-dim);
    margin-bottom: clamp(1.4rem, 3.2vh, 2.2rem);
}

/* ---------- Video stage ---------- */

.stage {
    position: relative;
    width: min(860px, 92vw, 50svh * 16 / 9);
}

.stage::before {
    /* breathing warm glow behind the package */
    content: "";
    position: absolute;
    inset: -12% -16%;
    z-index: -1;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 150, 50, 0.32), transparent 70%);
    filter: blur(30px);
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: scale(0.98); }
    50%      { opacity: 1;   transform: scale(1.03); }
}

.stage video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: clamp(12px, 2vw, 20px);
    border: 1px solid rgba(255, 190, 100, 0.28);
    box-shadow:
        0 36px 90px -24px var(--shadow),
        0 0 90px rgba(255, 140, 46, 0.15);
}

/* ---------- Badges ---------- */

.badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.4rem;
    margin: clamp(1.3rem, 3vh, 2rem) 0 clamp(1.2rem, 2.6vh, 1.8rem);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.badges li {
    display: flex;
    align-items: center;
}

.badges li + li::before {
    content: "·";
    color: var(--gold);
    margin: 0 0.9rem;
    font-size: 1.1rem;
}

/* ---------- CTA ---------- */

.cta {
    display: inline-block;
    padding: 0.95rem 2.6rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, #ffcf6b, var(--gold) 45%, var(--gold-deep));
    color: var(--ink);
    font-family: inherit;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 40px -10px rgba(240, 150, 40, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px rgba(240, 150, 40, 0.7);
}

.cta:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 3px;
}

/* ---------- Moments ---------- */

.moments {
    /* settles the ember glow into night — guarantees contrast over the fixed backdrop */
    background: linear-gradient(180deg,
        transparent,
        rgba(10, 8, 14, 0.55) 10%,
        rgba(10, 8, 14, 0.78));
    padding: clamp(4rem, 9vh, 7rem) clamp(1.4rem, 5vw, 3.2rem) clamp(2.5rem, 6vh, 4.5rem);
}

.moments-intro {
    text-align: center;
    margin-bottom: clamp(2.8rem, 7vh, 5rem);
}

.moments h2 {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(1.9rem, 4.4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 30px rgba(8, 5, 10, 0.45);
    margin-top: 0.3rem;
}

.moments h2 em {
    font-style: italic;
    padding-right: 0.06em;
    background: linear-gradient(115deg, #ffd98a 10%, var(--gold) 40%, var(--gold-deep) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.moment {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: clamp(1.6rem, 4vw, 3.5rem);
    max-width: 62rem;
    margin: 0 auto clamp(3rem, 8vh, 5.5rem);
}

.moment:nth-of-type(even) .moment-media {
    order: 2;
}

.moment-media img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: clamp(12px, 2vw, 20px);
    border: 1px solid rgba(255, 190, 100, 0.28);
    box-shadow:
        0 36px 90px -24px var(--shadow),
        0 0 70px rgba(255, 140, 46, 0.12);
    transition: transform 0.45s cubic-bezier(0.22, 0.65, 0.3, 1);
}

.moment-media:hover img {
    transform: scale(1.02);
}

.kicker {
    font-family: "Yellowtail", cursive;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--gold);
    transform: rotate(-2deg);
    transform-origin: left bottom;
    margin-bottom: 0.2rem;
}

.moment h3 {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    line-height: 1.12;
    margin-bottom: 0.7rem;
}

.moment-text > p:last-child {
    font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    color: var(--cream-dim);
}

.moments-cta {
    text-align: center;
    padding-top: clamp(0.5rem, 2vh, 1.5rem);
}

/* ---------- Price ---------- */

.price {
    /* sitzt nahtlos zwischen Moments (endet im Dunkeln) und Payments */
    background: rgba(10, 8, 14, 0.8);
    padding: clamp(2.6rem, 7vh, 4.5rem) clamp(1.4rem, 5vw, 3.2rem);
    text-align: center;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: clamp(0.4rem, 1.4vw, 0.7rem);
    flex-wrap: wrap;
}

.price-value {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(2.7rem, 8vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.015em;
    background: linear-gradient(115deg, #ffd98a 10%, var(--gold) 40%, var(--gold-deep) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-unit {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.4vw, 1.35rem);
    color: var(--cream-dim);
}

/* ---------- Location ---------- */

.location {
    /* hält die durchgehende Nacht zwischen Price und Payments */
    background: rgba(10, 8, 14, 0.81);
    padding: clamp(1rem, 3vh, 2rem) clamp(1.4rem, 5vw, 3.2rem) clamp(2.6rem, 6vh, 4rem);
    text-align: center;
}

.location-intro {
    margin-bottom: clamp(1.6rem, 4vh, 2.4rem);
}

.location h2 {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 30px rgba(8, 5, 10, 0.45);
    margin-top: 0.3rem;
}

.location h2 em {
    font-style: italic;
    padding-right: 0.06em;
    background: linear-gradient(115deg, #ffd98a 10%, var(--gold) 40%, var(--gold-deep) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* nutzt .contact-address, aber ohne die Trennlinie aus dem Dialog
   (.location-Präfix erhöht die Spezifität, sonst gewinnt .contact-address) */
.location .location-address {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-bottom: clamp(1.5rem, 4vh, 2.2rem);
    font-size: clamp(0.95rem, 3.4vw, 1.1rem);
    color: var(--cream-dim);
    cursor: default;
}

.location-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 190, 100, 0.45);
    background: rgba(246, 185, 65, 0.08);
    color: var(--gold);
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease,
        border-color 0.25s ease, color 0.25s ease;
}

.location-maps-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    flex: none;
}

.location-maps-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, #ffcf6b, var(--gold) 45%, var(--gold-deep));
    border-color: transparent;
    color: var(--ink);
}

.location-maps-btn:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 3px;
}

/* im Dialog steht der Button direkt unter der Adresse und braucht Abstand */
.contact-card .location-maps-btn {
    margin-top: clamp(1.2rem, 3vw, 1.5rem);
}

/* ---------- Payments ---------- */

.payments {
    /* continues the night the moments section settled into */
    background: rgba(10, 8, 14, 0.82);
    padding: clamp(1rem, 3vh, 2rem) clamp(1.4rem, 5vw, 3.2rem) clamp(3.5rem, 8vh, 6rem);
    text-align: center;
}

.payments-intro {
    margin-bottom: clamp(2rem, 5vh, 3.2rem);
}

.payments h2 {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 30px rgba(8, 5, 10, 0.45);
    margin-top: 0.3rem;
}

.payments h2 em {
    font-style: italic;
    padding-right: 0.06em;
    background: linear-gradient(115deg, #ffd98a 10%, var(--gold) 40%, var(--gold-deep) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.payment-methods {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.6rem, 5vw, 3.6rem);
    max-width: 40rem;
    margin: 0 auto;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    width: clamp(8.5rem, 30vw, 11rem);
}

.payment-icon {
    display: grid;
    place-items: center;
    width: clamp(4.6rem, 12vw, 5.6rem);
    height: clamp(4.6rem, 12vw, 5.6rem);
    border-radius: 50%;
    color: var(--gold);
    background: radial-gradient(circle at 50% 35%, rgba(246, 185, 65, 0.16), rgba(12, 10, 16, 0.5));
    border: 1px solid rgba(255, 190, 100, 0.3);
    box-shadow:
        0 18px 50px -22px var(--shadow),
        0 0 40px rgba(255, 140, 46, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.payment-method:hover .payment-icon {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow:
        0 24px 60px -22px var(--shadow),
        0 0 55px rgba(255, 140, 46, 0.2);
}

.payment-icon svg {
    width: 52%;
    height: 52%;
}

.payment-label {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--cream);
}

/* ---------- Scroll reveal (JS adds .will-reveal, then .in-view) ---------- */

.will-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 0.65, 0.3, 1),
        transform 0.9s cubic-bezier(0.22, 0.65, 0.3, 1);
}

.will-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Footer ---------- */

footer {
    text-align: center;
    padding: 0.9rem 0 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--cream-faint);
}

.footer-sep {
    color: var(--gold);
    margin: 0 0.7rem;
}

.footer-link {
    color: var(--cream-faint);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--gold);
    border-color: var(--gold);
}

/* ---------- Legal / Impressum ---------- */

.legal-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vh, 3rem) clamp(1.2rem, 4vw, 2rem) clamp(2rem, 5vh, 3.5rem);
}

.legal {
    width: min(46rem, 100%);
    padding: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 4vw, 2.8rem);
    background: rgba(12, 10, 16, 0.66);
    border: 1px solid rgba(255, 190, 100, 0.18);
    border-radius: clamp(14px, 2vw, 22px);
    box-shadow: 0 36px 90px -30px var(--shadow);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.legal h1 {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 30px rgba(8, 5, 10, 0.45);
    margin-bottom: clamp(1.2rem, 3vh, 2rem);
}

.legal h2 {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--cream);
    margin: clamp(1.7rem, 4vh, 2.4rem) 0 0.5rem;
}

.legal p {
    font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 0.35rem;
}

.legal .legal-lead {
    color: var(--cream);
    font-weight: 400;
}

.legal a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(246, 185, 65, 0.4);
    transition: border-color 0.25s ease;
}

.legal a:hover,
.legal a:focus-visible {
    border-color: var(--gold);
}

/* ---------- Kontakt-Dialog ---------- */

.contact-dialog {
    margin: auto; /* zentriert das Fenster */
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--cream);
    overflow: visible;
}

.contact-dialog::backdrop {
    background: rgba(8, 5, 10, 0.62);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.contact-card {
    position: relative;
    width: min(25rem, calc(100vw - 2rem));
    padding: clamp(2rem, 5vw, 2.8rem) clamp(1.6rem, 5vw, 2.6rem) clamp(1.8rem, 4vw, 2.4rem);
    text-align: center;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(246, 185, 65, 0.12), transparent 60%),
        rgba(18, 13, 18, 0.92);
    border: 1px solid rgba(255, 190, 100, 0.28);
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow:
        0 40px 100px -30px var(--shadow),
        0 0 70px rgba(255, 140, 46, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-dialog[open] .contact-card {
    animation: dialog-in 0.4s cubic-bezier(0.22, 0.65, 0.3, 1);
}

@keyframes dialog-in {
    from { opacity: 0; transform: translateY(14px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-close {
    position: absolute;
    top: clamp(0.7rem, 2vw, 1rem);
    right: clamp(0.7rem, 2vw, 1rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--cream-dim);
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.contact-close svg {
    width: 1.15rem;
    height: 1.15rem;
}

.contact-close:hover,
.contact-close:focus-visible {
    color: var(--gold);
    background: rgba(246, 185, 65, 0.12);
    transform: rotate(90deg);
    outline: none;
}

.contact-eyebrow {
    margin-bottom: 0.1rem;
}

.contact-title {
    font-family: "Fraunces", serif;
    font-weight: 900;
    font-size: clamp(1.55rem, 5vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: clamp(1.6rem, 4vw, 2.1rem);
}

.contact-title em {
    font-style: italic;
    padding-right: 0.06em;
    background: linear-gradient(115deg, #ffd98a 10%, var(--gold) 40%, var(--gold-deep) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-channels {
    display: flex;
    justify-content: center;
    gap: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: clamp(1.6rem, 4vw, 2.1rem);
}

.contact-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--cream);
}

.contact-channel-icon {
    display: grid;
    place-items: center;
    width: clamp(4.2rem, 16vw, 4.8rem);
    height: clamp(4.2rem, 16vw, 4.8rem);
    border-radius: 50%;
    color: var(--gold);
    background: radial-gradient(circle at 50% 35%, rgba(246, 185, 65, 0.16), rgba(12, 10, 16, 0.5));
    border: 1px solid rgba(255, 190, 100, 0.3);
    box-shadow:
        0 18px 50px -22px var(--shadow),
        0 0 40px rgba(255, 140, 46, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-channel-icon svg {
    width: 46%;
    height: 46%;
}

.contact-channel:hover .contact-channel-icon,
.contact-channel:focus-visible .contact-channel-icon {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow:
        0 24px 60px -22px var(--shadow),
        0 0 55px rgba(255, 140, 46, 0.2);
}

.contact-channel:focus-visible {
    outline: none;
}

.contact-channel-label {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    color: var(--cream);
}

.contact-address {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.2rem;
    padding-top: clamp(1.2rem, 3vw, 1.5rem);
    border-top: 1px solid rgba(255, 190, 100, 0.16);
    width: 100%;
    justify-content: center;
    font-style: normal;
    font-weight: 300;
    font-size: clamp(0.9rem, 3.4vw, 1rem);
    line-height: 1.5;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-address-pin {
    flex: none;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    color: var(--gold);
}

.contact-address-text {
    text-align: left;
}

.contact-address-name {
    display: block;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.05em;
    color: var(--cream);
    letter-spacing: 0.02em;
}

a.contact-address:hover,
a.contact-address:focus-visible {
    color: var(--cream);
    outline: none;
}

a.contact-address:hover .contact-address-name,
a.contact-address:focus-visible .contact-address-name {
    color: var(--gold);
}

/* ---------- Entrance ---------- */

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: rise 0.9s cubic-bezier(0.22, 0.65, 0.3, 1) forwards;
    animation-delay: var(--d, 0s);
}

.stage.reveal {
    transform: translateY(16px) scale(0.97);
    animation-name: rise-stage;
}

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rise-stage {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Small screens ---------- */

@media (max-width: 560px) {
    .badges {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .badges li + li::before {
        margin: 0 0.55rem;
    }
}

@media (max-width: 720px) {
    .moment {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        text-align: center;
    }

    .moment:nth-of-type(even) .moment-media {
        order: 0;
    }

    .kicker {
        transform-origin: center bottom;
    }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .backdrop,
    .stage::before {
        animation: none;
    }

    .reveal {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .contact-dialog[open] .contact-card {
        animation: none;
    }

    .contact-close:hover,
    .contact-close:focus-visible {
        transform: none;
    }
}
