@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@400;500;600;700;800&display=swap');

:root {
    --black: #102a2d;
    --black-soft: #17383b;
    --charcoal: #27474a;
    --gold: #c66a3d;
    --gold-light: #f0b47c;
    --cream: #e8f0ed;
    --paper: #f7f3ec;
    --white: #ffffff;
    --gray: #63706d;
    --border: rgba(16, 42, 45, .16);
    --shadow: 0 28px 70px rgba(16, 42, 45, .18);
    --radius: 24px;
    --serif: "Libre Baskerville", Georgia, serif;
    --sans: "Source Sans 3", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--black);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.reading-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 2000;
    background: transparent;
}

.reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    color: var(--white);
    transition: .3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    color: var(--black);
    background: rgba(247, 243, 236, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.06rem;
}

.brand-text small {
    margin-top: 4px;
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .7;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
}

.nav-cta {
    padding: 10px 17px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
    transition: .3s ease;
}

.hero {
    min-height: 820px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 25%, rgba(198, 106, 61, .26), transparent 30%),
        linear-gradient(135deg, #0f2d31 0%, #17383b 58%, #3f544c 100%);
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .45;
}

.hero-glow-one {
    width: 380px;
    height: 380px;
    right: -180px;
    top: 10%;
    background: rgba(198, 106, 61, .16);
}

.hero-glow-two {
    width: 280px;
    height: 280px;
    left: -130px;
    bottom: 0;
    background: rgba(255, 255, 255, .05);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: clamp(1.02rem, 1.28vw, 1.24rem);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.eyebrow.dark { color: #8f4d2f; }

.hero h1 {
    max-width: 820px;
    margin: 24px 0 22px;
    font-family: var(--serif);
    font-size: clamp(1.85rem, 3.2vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -.03em;
}

.hero h1 em {
    display: block;
    margin-top: 10px;
    color: var(--gold-light);
    font-weight: 600;
    font-style: normal;
}

.hero-lead {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 1.08rem;
}

.hero-lead strong { color: var(--white); }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 14px 40px rgba(198, 106, 61, .22);
}

.button-ghost {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
}

.button-dark {
    color: var(--white);
    background: var(--black);
}

.button-full { width: 100%; }

.event-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 46px;
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.event-ribbon span {
    flex: 1;
    min-width: 150px;
    padding: 18px 18px;
    font-size: .78rem;
    color: rgba(255,255,255,.58);
    text-transform: uppercase;
    letter-spacing: .1em;
    border-right: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.035);
}

.event-ribbon span:last-child { border-right: 0; }
.event-ribbon strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1;
    letter-spacing: .02em;
}

.event-ribbon span:first-child {
    color: rgba(255,255,255,.78);
    background: linear-gradient(135deg, rgba(240,180,124,.2), rgba(198,106,61,.1));
}

.event-ribbon span:first-child strong {
    color: var(--gold-light);
    font-size: 2rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    perspective: 1400px;
}

.book-mockup {
    position: relative;
    width: min(340px, 80vw);
    aspect-ratio: .7;
    transform: rotateY(-12deg) rotateZ(2deg);
    transform-style: preserve-3d;
    filter: drop-shadow(0 40px 45px rgba(0,0,0,.45));
}

.book-cover {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #123236;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 0 0 7px rgba(240,180,124,.08);
}

.book-cover::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 18px;
    border: 1px solid rgba(240,180,124,.5);
    pointer-events: none;
}

.book-cover img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.book-spine {
    position: absolute;
    width: 28px;
    height: 100%;
    left: -26px;
    background: linear-gradient(90deg, #0a1d20, #2f4a43);
    transform: rotateY(90deg);
    transform-origin: right;
}

.archive-note {
    position: absolute;
    border: 1px solid rgba(240,180,124,.45);
    background: rgba(15,45,49,.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.archive-note small {
    display: block;
    color: var(--gold-light);
    font-size: clamp(.78rem, .92vw, .92rem);
    letter-spacing: .16em;
}

.archive-note {
    left: -30px;
    bottom: 55px;
    padding: 17px 20px;
    transform: rotate(-3deg);
}

.archive-note strong { font-size: clamp(.96rem, 1.12vw, 1.12rem); }

.intro-strip {
    color: var(--white);
    background: var(--gold);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-grid span:nth-child(n+5) { display: none; }

.intro-grid span {
    padding: 18px;
    text-align: center;
    font-size: clamp(.92rem, 1.08vw, 1.08rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-right: 1px solid rgba(16,42,45,.16);
}

@keyframes introMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section { padding: 120px 0; }

.story-section {
    background:
        linear-gradient(rgba(247,243,236,.38), rgba(247,243,236,.38)),
        url("../img/IMG%20BG%201.png") center / cover no-repeat;
}

.story-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 120px;
}

.section-heading h2,
.author-copy h2,
.event-heading h2,
.reasons-title h2,
.reservation-copy h2,
.faq-heading h2,
.final-cta h2 {
    margin: 18px 0 0;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.35vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.date-stamp {
    margin-top: 40px;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px;
    text-align: center;
    color: var(--white);
    background: #193f42;
}

.date-stamp > span {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 4.3rem);
    line-height: 1;
    color: var(--gold-light);
}

.date-stamp strong {
    font-size: clamp(1.28rem, 1.85vw, 1.75rem);
    line-height: 1;
    letter-spacing: .12em;
}

.date-stamp small {
    padding: 6px 14px;
    color: var(--black);
    background: var(--gold-light);
    font-size: clamp(1.22rem, 1.75vw, 1.65rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
}

.story-content { display: grid; gap: 28px; }

.story-block {
    padding: 36px;
    border: 1px solid var(--border);
    background: var(--white);
}

.story-block p {
    font-size: clamp(1.08rem, 1.28vw, 1.22rem);
    line-height: 1.7;
}

.lead-paragraph {
    margin-top: 0;
    font-family: var(--serif);
    font-size: 1.28rem;
    line-height: 1.35;
}

.highlight-block {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

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

.pillar-card {
    min-height: 210px;
    padding: 24px;
    display: grid;
    grid-template-rows: minmax(56px, auto) 1fr;
    align-items: start;
    border-top: 3px solid var(--gold);
    background: #dde9e4;
}

.pillar-card h3 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.25;
}

.pillar-card p {
    margin: auto 0 0;
    color: #566560;
    font-size: clamp(1rem, 1.12vw, 1.12rem);
    line-height: 1.6;
}

.author-section {
    color: var(--white);
    background: var(--black-soft);
}

.author-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.author-portrait { position: relative; }

.portrait-placeholder {
    aspect-ratio: .78;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(198,106,61,.22), transparent 25%),
        linear-gradient(145deg, #264c50, #0f2d31);
    border: 1px solid rgba(255,255,255,.12);
}

.portrait-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.portrait-caption {
    position: absolute;
    right: -35px;
    bottom: 40px;
    min-width: 250px;
    padding: 20px;
    display: grid;
    background: var(--gold);
    color: var(--black);
}

.portrait-caption strong {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 1.95vw, 1.9rem);
}

.portrait-caption span { font-size: clamp(1.08rem, 1.28vw, 1.2rem); }

.author-copy p {
    max-width: 720px;
    color: rgba(255,255,255,.7);
    font-size: clamp(1.14rem, 1.35vw, 1.28rem);
    line-height: 1.72;
}

.author-copy .author-highlight {
    font-size: clamp(1.28rem, 1.95vw, 1.58rem);
    line-height: 1.65;
    color: rgba(255,255,255,.86);
}

.author-copy blockquote {
    margin: 40px 0 34px;
    padding-left: 30px;
    border-left: 2px solid var(--gold);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.25vw, 2rem);
    line-height: 1.3;
    color: var(--gold-light);
}

.event-section {
    background:
        linear-gradient(rgba(232,240,237,.55), rgba(232,240,237,.55)),
        url("../img/IMG%20BG%202.png") center / cover no-repeat;
}

.event-heading {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 52px;
    align-items: end;
}

.event-heading p {
    margin: 0;
    color: #53635f;
    font-size: clamp(1.08rem, 1.28vw, 1.22rem);
    line-height: 1.7;
    text-wrap: pretty;
}

.event-experience {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.experience-card {
    min-height: 250px;
    padding: 24px;
    position: relative;
    display: grid;
    grid-template-rows: 64px minmax(58px, auto) 1fr;
    align-items: start;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.56);
    box-shadow: 0 18px 42px rgba(16,42,45,.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198,106,61,.35);
    box-shadow: 0 24px 52px rgba(16,42,45,.13);
}

.experience-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.experience-icon {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(240,180,124,.95), rgba(198,106,61,.9));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 12px 28px rgba(198,106,61,.22);
    object-fit: contain;
    padding: 11px;
}

.experience-card h3 {
    margin: 28px 0 12px;
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.25;
}

.experience-card p {
    margin: auto 0 0;
    color: #5f6d69;
    font-size: clamp(1rem, 1.12vw, 1.12rem);
    line-height: 1.58;
}

.location-card {
    margin-top: 45px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
    padding: 28px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0,0,0,.07);
}

.location-date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 28px;
    border-right: 1px solid var(--border);
}

.location-date strong {
    font-family: var(--serif);
    font-size: 2.65rem;
    color: var(--gold);
}

.location-date span {
    line-height: 1.15;
    font-size: clamp(.92rem, 1.08vw, 1.08rem);
    font-weight: 700;
}

.location-label {
    color: var(--gray);
    font-size: clamp(.84rem, 1vw, .98rem);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.location-info h3 {
    margin: 4px 0;
    font-family: var(--serif);
    font-size: clamp(1.48rem, 1.8vw, 1.8rem);
}

.location-info p {
    margin: 0;
    color: var(--gray);
    font-size: clamp(1rem, 1.12vw, 1.12rem);
}
.location-time { display: grid; }
.location-time span {
    font-size: clamp(.84rem, 1vw, .98rem);
    color: var(--gray);
}
.location-time strong {
    font-family: var(--serif);
    font-size: clamp(1.48rem, 1.8vw, 1.8rem);
}

.reasons-section {
    color: var(--white);
    background: #193f42;
}

.reasons-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.reasons-title p { color: rgba(255,255,255,.6); }

.reasons-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.reason-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.reason-item > span {
    font-family: var(--serif);
    color: var(--gold-light);
}

.reason-item h3 {
    margin: 0 0 6px;
    font-family: var(--serif);
    font-size: 1.25rem;
}

.reason-item p { margin: 0; color: rgba(255,255,255,.58); }

.reservation-section {
    background:
        linear-gradient(rgba(247,243,236,.42), rgba(247,243,236,.42)),
        url("../img/IMG%20BG%203.png") center / cover no-repeat,
        var(--paper);
}

.reservation-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.reservation-copy p { color: #5c6965; }

.reservation-summary {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.reservation-summary div {
    display: grid;
    padding: 16px;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--border);
}

.reservation-summary span {
    color: var(--gray);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.form-card {
    padding: 38px;
    color: var(--white);
    background: var(--black);
    box-shadow: var(--shadow);
}

.form-heading span {
    color: var(--gold-light);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.form-heading h3 {
    margin: 8px 0 26px;
    font-family: var(--serif);
    font-size: 1.55rem;
}

.field { margin-bottom: 18px; }

.field label {
    display: block;
    margin-bottom: 7px;
    font-size: .76rem;
    color: rgba(255,255,255,.68);
}

.field input {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    padding: 0 15px;
    color: var(--white);
    background: rgba(255,255,255,.06);
    outline: none;
    transition: .2s ease;
}

.field input:focus { border-color: var(--gold-light); }
.field input.invalid { border-color: #d96d5f; }

.field-error, .consent-error {
    display: block;
    min-height: 18px;
    margin-top: 4px;
    color: #f4a095;
    font-size: .68rem;
}

.consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 4px;
    color: rgba(255,255,255,.66);
    font-size: .78rem;
}

.consent input { margin-top: 4px; accent-color: var(--gold); }

.form-note {
    margin: 15px 0 0;
    text-align: center;
    color: rgba(255,255,255,.43);
    font-size: .7rem;
}

.form-alert {
    margin-bottom: 20px;
    padding: 13px 15px;
    font-size: .8rem;
}

.form-alert.success { background: #276b4f; }
.form-alert.error { background: #7d3732; }

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.faq-section { background: var(--white); }

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.faq-heading p { color: var(--gray); }

.accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-trigger {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    color: var(--black);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.accordion-trigger i {
    width: 24px;
    height: 24px;
    position: relative;
    flex: 0 0 auto;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.accordion-trigger i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: .2s ease;
}

.accordion-trigger[aria-expanded="true"] i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.accordion-panel p {
    margin: 0;
    padding: 0 40px 24px 0;
    color: var(--gray);
}

.final-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(198,106,61,.22), transparent 36%),
        var(--black);
}

.final-cta-inner {
    display: grid;
    justify-items: center;
}

.final-cta h2 {
    max-width: 900px;
    margin-bottom: 34px;
}

.site-footer {
    padding: 60px 0 20px;
    color: rgba(255,255,255,.64);
    background: #0a2023;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-grid strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.5rem;
}

.footer-grid span {
    color: var(--gold-light);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.footer-grid p { font-size: .83rem; }

.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .72rem;
}

.footer-bottom a { color: var(--gold-light); }

.mobile-fixed-cta { display: none; }

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
    .hero-layout,
    .story-layout,
    .author-layout,
    .reasons-layout,
    .reservation-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout { gap: 20px; }
    .hero-visual { min-height: 500px; }
    .story-layout { gap: 48px; }
    .sticky-heading { position: static; }
    .author-layout { gap: 55px; }
    .author-portrait { max-width: 620px; }
    .event-heading { grid-template-columns: 1fr; gap: 25px; }
    .event-experience { grid-template-columns: repeat(2, 1fr); }
    .experience-card:nth-child(2) { border-right: 0; }
    .experience-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .reasons-layout { gap: 50px; }
    .reservation-layout { gap: 45px; }
    .faq-layout { gap: 40px; }

    .location-card {
        grid-template-columns: auto 1fr auto;
    }

    .location-card .button { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    .site-header {
        color: var(--black);
        background: rgba(247,243,236,.94);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
    }

    .menu-toggle { display: block; }

    .main-nav {
        position: fixed;
        inset: 72px 20px auto;
        max-height: 0;
        overflow: hidden;
        display: grid;
        gap: 0;
        background: var(--paper);
        box-shadow: var(--shadow);
        transition: max-height .3s ease;
    }

    .main-nav.open { max-height: 440px; }

    .main-nav a {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta { border: 0; border-radius: 0; }

    .intro-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid span:nth-child(2) { border-right: 0; }

    .section { padding: 90px 0; }

    .pillars { grid-template-columns: 1fr; }
    .pillar-card {
        min-height: 0;
        grid-template-rows: none;
        gap: 8px;
    }
    .pillar-card h3 { margin-bottom: 0; }
    .pillar-card p { margin: 0; }

    .event-experience { grid-template-columns: 1fr; }
    .experience-card {
        min-height: auto;
    }

    .location-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-date {
        justify-content: center;
        padding-right: 0;
        border-right: 0;
    }

    .location-time { justify-items: center; }

    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .container { width: min(100% - 28px, 1180px); }

    .brand-text small { display: none; }
    .hero { min-height: auto; }
    .hero-layout { padding-top: 130px; padding-bottom: 60px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-lead { font-size: .98rem; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .event-ribbon { display: grid; grid-template-columns: 1fr; }
    .event-ribbon span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }

    .hero-visual { min-height: 440px; }
    .book-mockup { width: 300px; }
    .archive-note { left: -10px; bottom: 35px; }
    .archive-note small { font-size: 1rem; }

    .intro-strip {
        overflow: hidden;
    }

    .intro-grid {
        width: max-content;
        display: flex;
        grid-template-columns: none;
        animation: introMarquee 18s linear infinite;
    }

    .intro-grid span,
    .intro-grid span:nth-child(n+5) {
        min-width: max-content;
        display: block;
        padding: 18px 28px;
        border-right: 1px solid rgba(16,42,45,.16);
        border-bottom: 0;
        white-space: nowrap;
    }

    .section-heading h2,
    .author-copy h2,
    .event-heading h2,
    .reasons-title h2,
    .reservation-copy h2,
    .faq-heading h2,
    .final-cta h2 {
        font-size: 1.55rem;
    }

    .story-block { padding: 25px; }
    .lead-paragraph { font-size: 1.14rem; }

    .portrait-caption {
        position: static;
        min-width: 0;
    }

    .author-copy blockquote {
        padding-left: 18px;
        font-size: 1.3rem;
    }

    .reservation-summary { grid-template-columns: 1fr; }
    .form-card { padding: 25px 20px; }
    .form-heading h3 { font-size: 1.35rem; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-fixed-cta {
        position: fixed;
        z-index: 800;
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: block;
        padding: 14px;
        text-align: center;
        text-decoration: none;
        color: var(--black);
        background: var(--gold-light);
        border-radius: 999px;
        font-size: .78rem;
        font-weight: 800;
        text-transform: uppercase;
        box-shadow: 0 14px 35px rgba(0,0,0,.25);
    }

    .site-footer { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .intro-grid,
    .pillars { animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}
