:root {
    --gold-ink: #f7f0e2;
    --gold-muted: #c8bca7;
    --gold-leaf: #d3a84d;
    --gold-bright: #f4d184;
    --gold-bronze: #856129;
    --gold-night: #090805;
    --gold-umber: #171109;
    --gold-line: rgba(211, 168, 77, 0.28);
    --gold-panel: rgba(255, 244, 218, 0.045);
}

html { scroll-behavior: smooth; }

body.golden-years-page {
    background:
        radial-gradient(circle at 16% 18%, rgba(211, 168, 77, 0.1), transparent 28rem),
        radial-gradient(circle at 84% 52%, rgba(72, 105, 95, 0.09), transparent 34rem),
        var(--gold-night);
    color: var(--gold-ink);
}

.golden-years-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.golden-nav {
    background: linear-gradient(180deg, rgba(9, 8, 5, 0.96), rgba(9, 8, 5, 0.72));
    border-bottom-color: var(--gold-line);
}

.golden-nav .logo {
    color: var(--gold-bright);
    background: linear-gradient(90deg, var(--gold-leaf), #fff0c8, var(--gold-leaf));
    background-size: 200% auto;
    -webkit-background-clip: text;
}

.golden-nav .nav-links a { color: var(--gold-ink); }
.golden-nav .nav-links a:hover {
    color: var(--gold-bright);
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: 0 0 18px rgba(211, 168, 77, 0.35);
}

.golden-nav .nav-links a::after { background: var(--gold-leaf); box-shadow: none; }

.golden-nav-cta {
    color: var(--gold-bright);
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    padding: 0.72rem 1.35rem;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    transition: 220ms ease;
}

.golden-nav-cta:hover { background: var(--gold-leaf); color: var(--gold-night); border-color: var(--gold-leaf); }

.golden-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 9rem 8% 7rem;
    isolation: isolate;
}

.golden-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(9, 8, 5, 0.98) 0%, rgba(9, 8, 5, 0.86) 36%, rgba(9, 8, 5, 0.26) 68%, rgba(9, 8, 5, 0.46) 100%),
        linear-gradient(0deg, var(--gold-night) 0%, transparent 28%, transparent 78%, rgba(9, 8, 5, 0.42) 100%),
        url('assets/golden-years-hero.jpg') center / cover no-repeat;
}

.golden-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.golden-orbit-one { width: min(76vw, 860px); aspect-ratio: 1; opacity: 0.46; }
.golden-orbit-two { width: min(58vw, 650px); aspect-ratio: 1; opacity: 0.24; }

.golden-hero-inner { width: min(1180px, 100%); margin: 0 auto; text-align: left; }

.golden-eyebrow,
.golden-kicker {
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.68rem;
    font-weight: 500;
}

.golden-eyebrow::before {
    content: '';
    display: inline-block;
    width: 38px;
    height: 1px;
    margin: 0 1rem 0.22rem;
    background: var(--gold-line);
}

.golden-hero h1 {
    margin: 1.5rem 0 1.75rem;
    color: var(--gold-ink);
    font-family: 'Cormorant Garamond', serif;
    max-width: 720px;
    font-size: clamp(4.6rem, 9vw, 8.5rem);
    font-weight: 400;
    line-height: 0.73;
    letter-spacing: -0.055em;
    text-shadow: 0 16px 80px rgba(211, 168, 77, 0.12);
}

.golden-hero h1 span {
    display: block;
    color: var(--gold-leaf);
    font-family: 'Cinzel', serif;
    font-size: 0.12em;
    line-height: 1;
    letter-spacing: 0.45em;
    text-transform: uppercase;
}

.golden-hero h1 span:first-child { margin-bottom: 1.4rem; }
.golden-hero h1 span:last-child { margin-top: 2rem; }

.golden-hero-lede {
    max-width: 680px;
    margin: 0;
    color: var(--gold-muted);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.55;
}

.golden-actions { display: flex; justify-content: flex-start; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

.golden-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.7rem;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    color: var(--gold-ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.66rem;
    font-weight: 500;
    transition: 220ms ease;
}

.golden-button-primary { background: var(--gold-leaf); border-color: var(--gold-leaf); color: #140f07; }
.golden-button:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(211, 168, 77, 0.15); }
.golden-button-quiet:hover { color: var(--gold-bright); border-color: var(--gold-leaf); }

.golden-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    color: var(--gold-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.54rem;
}

.golden-scroll i { display: block; width: 1px; height: 30px; background: linear-gradient(var(--gold-leaf), transparent); }

.golden-introduction {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 9rem 6%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 8vw, 8rem);
    border-top: 1px solid var(--gold-line);
}

.golden-section-mark {
    position: absolute;
    top: -1.05rem;
    left: 50%;
    width: 2.1rem;
    height: 2.1rem;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    background: var(--gold-night);
    color: var(--gold-leaf);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
}

.golden-intro-heading h2 {
    margin-top: 1.4rem;
    color: var(--gold-ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.golden-intro-copy { color: var(--gold-muted); font-size: 1rem; line-height: 1.85; }
.golden-intro-copy p + p { margin-top: 1.3rem; }
.golden-dropcap::first-letter { float: left; margin: 0.08rem 0.55rem 0 0; color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-size: 4.2rem; line-height: 0.72; }
.golden-intro-copy blockquote {
    margin-top: 2.2rem;
    padding: 1.3rem 0 1.3rem 1.6rem;
    border-left: 1px solid var(--gold-leaf);
    color: var(--gold-ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
}

.golden-image-break {
    position: relative;
    min-height: min(72vw, 720px);
    padding: 0;
    background: linear-gradient(90deg, rgba(9, 8, 5, 0.48), transparent 52%), linear-gradient(0deg, var(--gold-night), transparent 24%, transparent 74%, var(--gold-night)), url('assets/golden-years-hero.jpg') center / cover no-repeat;
}

.golden-image-caption { position: absolute; left: clamp(1.5rem, 8vw, 8rem); bottom: clamp(3rem, 8vw, 7rem); max-width: 360px; padding-left: 1.5rem; border-left: 1px solid var(--gold-leaf); }
.golden-image-caption span { color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4.6rem); font-style: italic; }
.golden-image-caption p { margin-top: 0.6rem; color: var(--gold-muted); line-height: 1.7; }

.golden-process, .golden-keepsakes, .golden-founding, .golden-archive, .golden-trust, .golden-about, .golden-faq, .golden-invitation { padding: 9rem max(6%, calc((100vw - 1180px) / 2)); }
.golden-process { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr); gap: clamp(4rem, 9vw, 9rem); }

.golden-section-heading h2, .golden-founding h2, .golden-trust h2, .golden-about h2, .golden-invitation h2 { margin-top: 1.25rem; color: var(--gold-ink); font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.7vw, 5.5rem); font-weight: 400; line-height: 0.96; letter-spacing: -0.045em; }
.golden-section-heading > p:last-child { margin-top: 2rem; color: var(--gold-muted); line-height: 1.8; }
.golden-steps { list-style: none; border-top: 1px solid var(--gold-line); }
.golden-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 1.2rem; padding: 2rem 0; border-bottom: 1px solid var(--gold-line); }
.golden-step-number { color: var(--gold-leaf); font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.14em; }
.golden-steps h3, .golden-keepsake-grid h3 { color: var(--gold-ink); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; }
.golden-steps p { margin-top: 0.5rem; color: var(--gold-muted); line-height: 1.7; }

.golden-keepsakes { border-block: 1px solid var(--gold-line); background: linear-gradient(135deg, rgba(211, 168, 77, 0.07), transparent 46%); }
.golden-section-heading-centered { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.golden-keepsake-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.golden-keepsake-grid article { min-height: 650px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--gold-line); background: var(--gold-panel); transition: 260ms ease; }
.golden-keepsake-grid article:hover { transform: translateY(-6px); border-color: rgba(244, 209, 132, 0.6); background: rgba(255, 244, 218, 0.07); }
.golden-keepsake-grid .golden-package-featured { border-color: rgba(244, 209, 132, 0.62); background: linear-gradient(180deg, rgba(211, 168, 77, 0.12), rgba(255, 244, 218, 0.045)); }
.golden-card-label, .golden-includes { color: var(--gold-leaf); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.golden-format-icon { margin: 2.7rem 0 1.25rem; color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; }
.golden-keepsake-grid p { margin-top: 1rem; color: var(--gold-muted); line-height: 1.7; }
.golden-includes { margin-top: auto; padding-top: 2rem; line-height: 1.6; }
.golden-package-price { display: flex; align-items: baseline; gap: 0.45rem; min-height: 3rem; }
.golden-package-price span { color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; line-height: 1; }
.golden-package-price small { color: var(--gold-muted); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.golden-package-list { margin: 1.5rem 0 2rem; padding: 1.4rem 0 0; border-top: 1px solid var(--gold-line); list-style: none; }
.golden-package-list li { position: relative; padding: 0.42rem 0 0.42rem 1.25rem; color: var(--gold-muted); font-size: 0.82rem; line-height: 1.5; }
.golden-package-list li::before { content: '·'; position: absolute; left: 0.18rem; color: var(--gold-leaf); }
.golden-package-button { width: 100%; margin-top: auto; background: transparent; cursor: pointer; font-family: 'Inter', sans-serif; }
.golden-package-button:hover { border-color: var(--gold-leaf); color: var(--gold-bright); }
.golden-package-featured .golden-package-button { background: var(--gold-leaf); border-color: var(--gold-leaf); color: var(--gold-night); }
.golden-package-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 980px; margin: 2rem auto 0; background: var(--gold-line); border: 1px solid var(--gold-line); }
.golden-package-notes p { margin: 0; padding: 1.45rem 1.6rem; background: #0d0b07; color: var(--gold-muted); font-size: 0.82rem; line-height: 1.65; }
.golden-package-notes strong { display: block; margin-bottom: 0.25rem; color: var(--gold-ink); font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 500; }
.golden-custom-note { max-width: 700px; margin: 2.4rem auto 0; color: var(--gold-muted); text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; }

.golden-founding { position: relative; overflow: hidden; border-bottom: 1px solid var(--gold-line); background: #0d0b07; }
.golden-founding::after { content: 'V'; position: absolute; right: -0.02em; bottom: -0.24em; color: rgba(211, 168, 77, 0.045); font-family: 'Cinzel', serif; font-size: min(42vw, 34rem); line-height: 1; pointer-events: none; }
.golden-founding-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 0.75fr 1.25fr; column-gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.golden-founding-heading .golden-kicker { grid-column: 1 / -1; }
.golden-founding-heading h2 { max-width: 620px; }
.golden-founding-heading > p:last-child { color: var(--gold-muted); line-height: 1.8; }
.golden-founding-rates { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; border: 1px solid var(--gold-line); background: var(--gold-line); }
.golden-founding-rates button { min-width: 0; padding: 1.7rem; border: 0; background: var(--gold-night); color: inherit; cursor: pointer; text-align: left; transition: 220ms ease; }
.golden-founding-rates button:hover, .golden-founding-rates button:focus-visible { background: rgba(211, 168, 77, 0.11); outline: none; }
.golden-founding-rates span, .golden-founding-rates small { display: block; color: var(--gold-muted); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.golden-founding-rates strong { display: block; margin: 0.8rem 0 0.55rem; color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 400; }
.golden-five-slots { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 2rem; border-block: 1px solid var(--gold-line); }
.golden-five-slots span { display: flex; align-items: center; justify-content: center; gap: 0.7rem; min-height: 72px; color: var(--gold-muted); font-size: 0.61rem; letter-spacing: 0.13em; text-transform: uppercase; }
.golden-five-slots span + span { border-left: 1px solid var(--gold-line); }
.golden-five-slots b { display: grid; width: 2.2rem; height: 2.2rem; place-items: center; border: 1px solid var(--gold-leaf); border-radius: 50%; color: var(--gold-bright); font-family: 'Cinzel', serif; font-size: 0.6rem; font-weight: 400; }
.golden-founding-note { position: relative; z-index: 1; margin-top: 1.2rem; color: var(--gold-muted); text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; }

.golden-archive { border-bottom: 1px solid var(--gold-line); }
.golden-archive .golden-section-heading { max-width: 800px; }
.golden-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: var(--gold-line); border: 1px solid var(--gold-line); }
.golden-archive-grid article { padding: 2rem; background: var(--gold-night); }
.golden-archive-grid article > span { color: var(--gold-leaf); font-family: 'Cinzel', serif; font-size: 0.62rem; }
.golden-archive-grid h3 { margin-top: 3rem; color: var(--gold-ink); font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; }
.golden-archive-grid p { margin-top: 0.8rem; color: var(--gold-muted); font-size: 0.9rem; line-height: 1.75; }

.golden-trust { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); }
.golden-trust-points { border-top: 1px solid var(--gold-line); }
.golden-trust-points p { padding: 1.6rem 0; border-bottom: 1px solid var(--gold-line); color: var(--gold-muted); line-height: 1.75; }
.golden-trust-points strong { display: block; color: var(--gold-ink); font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; }

.golden-about { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); background: #0d0b07; }
.golden-about-line { position: absolute; top: 0; left: 50%; height: 5rem; width: 1px; background: linear-gradient(var(--gold-leaf), transparent); }
.golden-about-copy { padding-top: 2.3rem; color: var(--gold-muted); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; line-height: 1.65; }
.golden-about-copy p + p { margin-top: 1.2rem; }
.golden-text-link { display: inline-flex; gap: 0.8rem; margin-top: 2rem; color: var(--gold-bright); font-family: 'Inter', sans-serif; font-size: 0.67rem; letter-spacing: 0.18em; text-decoration: none; text-transform: uppercase; }

.golden-faq { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); }
.golden-faq-list { border-top: 1px solid var(--gold-line); }
.golden-faq details { border-bottom: 1px solid var(--gold-line); }
.golden-faq summary { position: relative; padding: 1.7rem 2.5rem 1.7rem 0; color: var(--gold-ink); cursor: pointer; list-style: none; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; }
.golden-faq summary::-webkit-details-marker { display: none; }
.golden-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--gold-leaf); font-family: 'Inter', sans-serif; font-weight: 300; }
.golden-faq details[open] summary::after { content: '–'; }
.golden-faq details p { max-width: 630px; padding: 0 2.5rem 1.7rem 0; color: var(--gold-muted); line-height: 1.75; }

.golden-invitation { text-align: center; background: radial-gradient(circle, rgba(211, 168, 77, 0.13), transparent 54%); border-top: 1px solid var(--gold-line); }
.golden-invitation-inner { max-width: 900px; margin: 0 auto; }
.golden-invitation h2 em { color: var(--gold-bright); font-weight: 400; }
.golden-invitation-inner > p:not(.golden-kicker) { max-width: 650px; margin: 2rem auto 2.5rem; color: var(--gold-muted); line-height: 1.8; }
.golden-reservation-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; margin-top: 3rem; padding: clamp(1.4rem, 4vw, 3rem); border: 1px solid var(--gold-line); background: rgba(9, 8, 5, 0.78); text-align: left; }
.golden-form-field { display: flex; flex-direction: column; gap: 0.55rem; }
.golden-form-field-wide { grid-column: 1 / -1; }
.golden-form-field label, .golden-form-consent { color: var(--gold-bright); font-size: 0.63rem; letter-spacing: 0.13em; line-height: 1.45; text-transform: uppercase; }
.golden-form-field input, .golden-form-field select, .golden-form-field textarea { width: 100%; border: 1px solid var(--gold-line); border-radius: 0; background: rgba(255, 244, 218, 0.035); color: var(--gold-ink); font: 300 0.92rem/1.5 'Inter', sans-serif; }
.golden-form-field input, .golden-form-field select { height: 50px; padding: 0 0.9rem; }
.golden-form-field textarea { min-height: 130px; padding: 0.9rem; resize: vertical; }
.golden-form-field input::placeholder, .golden-form-field textarea::placeholder { color: #8f8575; }
.golden-form-field input:focus, .golden-form-field select:focus, .golden-form-field textarea:focus { border-color: var(--gold-leaf); outline: 1px solid rgba(211, 168, 77, 0.22); outline-offset: 2px; }
.golden-form-consent { display: flex; align-items: flex-start; gap: 0.75rem; margin: 0.35rem 0; color: var(--gold-muted); cursor: pointer; font-size: 0.6rem; }
.golden-form-consent input { flex: 0 0 auto; margin-top: 0.18rem; accent-color: var(--gold-leaf); }
.golden-form-submit { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.golden-form-submit button { cursor: pointer; font-family: 'Inter', sans-serif; }
.golden-form-submit span { color: var(--gold-muted); font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; }
.golden-reservation-status { margin-top: 2rem; padding: 2rem; border: 1px solid var(--gold-line); background: rgba(211, 168, 77, 0.08); text-align: left; }
.golden-reservation-status h3 { color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; }
.golden-reservation-status p { margin-top: 0.6rem; color: var(--gold-muted); line-height: 1.7; }
.golden-copy-request { margin: 1.2rem 0 0 1.4rem; padding: 0; border: 0; border-bottom: 1px solid var(--gold-line); background: transparent; color: var(--gold-bright); cursor: pointer; font: 500 0.62rem/1.8 'Inter', sans-serif; letter-spacing: 0.15em; text-transform: uppercase; }
.golden-email-note { display: block; margin-top: 1.25rem; color: var(--gold-muted); font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; }
.golden-email-note a { color: var(--gold-bright); }

.golden-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; padding: 3rem 5%; border-top: 1px solid var(--gold-line); color: var(--gold-muted); font-size: 0.72rem; line-height: 1.7; }
.golden-footer > p:nth-child(2) { text-align: center; color: var(--gold-ink); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
.golden-footer > p:nth-child(2) span { color: var(--gold-muted); font-size: 0.95rem; font-style: italic; }
.golden-footer > p:last-child { text-align: right; }

@media (max-width: 860px) {
    .golden-hero { padding-inline: 6%; }
    .golden-eyebrow::before { display: none; }
    .golden-orbit-one { width: 130vw; }
    .golden-orbit-two { width: 92vw; }
    .golden-introduction { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 7rem; }
    .golden-process, .golden-trust, .golden-about, .golden-faq { grid-template-columns: 1fr; }
    .golden-keepsake-grid { grid-template-columns: 1fr; }
    .golden-keepsake-grid article { min-height: 0; }
    .golden-package-notes, .golden-founding-heading, .golden-archive-grid { grid-template-columns: 1fr; }
    .golden-founding-rates { grid-template-columns: 1fr; }
    .golden-five-slots { grid-template-columns: repeat(5, minmax(72px, 1fr)); overflow-x: auto; }
    .golden-five-slots span { flex-direction: column; gap: 0.45rem; }
    .golden-footer { grid-template-columns: 1fr; text-align: center; }
    .golden-footer > p:last-child { text-align: center; }
}

@media (max-width: 540px) {
    .golden-hero h1 { font-size: clamp(4rem, 23vw, 6.3rem); }
    .golden-hero-lede { font-size: 1.16rem; }
    .golden-actions { flex-direction: column; align-items: stretch; }
    .golden-eyebrow { line-height: 1.7; }
    .golden-hero::before { background: linear-gradient(90deg, rgba(9, 8, 5, 0.93), rgba(9, 8, 5, 0.46)), linear-gradient(0deg, var(--gold-night), transparent 45%), url('assets/golden-years-hero.jpg') 58% center / cover no-repeat; }
    .golden-image-break { min-height: 88svh; background-position: 62% center; }
    .golden-process, .golden-keepsakes, .golden-founding, .golden-archive, .golden-trust, .golden-about, .golden-faq, .golden-invitation { padding-block: 6.5rem; }
    .golden-steps li { grid-template-columns: 46px 1fr; }
    .golden-reservation-form { grid-template-columns: 1fr; }
    .golden-form-field-wide { grid-column: auto; }
    .golden-form-submit { align-items: stretch; flex-direction: column; }
    .golden-form-submit button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
