:root {
    --navy: #002244;
    --navy-deep: #001a36;
    --warm: #f4f1ec;
    --warm-2: #ebe6dc;
    --ink: #15191f;
    --muted: #5a5f68;
    --rule: #d9d4ca;
    --accent: #c8451b;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--warm);
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.container.narrow { max-width: 760px; }

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.eyebrow.dark { color: var(--navy); }

/* =========================================
   HERO
========================================= */
.hero {
    position: relative;
    min-height: 92vh;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,26,54,0.15) 0%, rgba(0,26,54,0.05) 35%, rgba(0,26,54,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px 88px;
}

.hero .eyebrow {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.98;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
}

.hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2.1vw, 1.65rem);
    font-weight: 400;
    line-height: 1.45;
    max-width: 36ch;
    color: rgba(255,255,255,0.92);
}

.hero-caption {
    position: absolute;
    bottom: 18px;
    right: 32px;
    z-index: 2;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    max-width: 30ch;
    text-align: right;
}

/* =========================================
   SECTIONS — general
========================================= */
.section {
    padding: 120px 0;
}

.section h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 56px;
}

.section h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.section p { margin-bottom: 16px; }
.section p:last-child { margin-bottom: 0; }

/* ---- Intro ---- */
.intro { padding: 96px 0 80px; }
.lede {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 28px !important;
}
.lede:last-child { margin-bottom: 0 !important; }

/* ---- Reel ---- */
.section-reel {
    background: var(--navy);
    color: #fff;
    padding: 100px 0 110px;
}
.section-reel .eyebrow { color: rgba(255,255,255,0.7); }
.section-reel h2 { color: #fff; margin-bottom: 24px; }
.reel-lede {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 50ch;
}
.reel-wrap {
    max-width: 460px;
    margin: 56px auto 0;
    padding: 0 32px;
}
.reel-video {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    background: #000;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* ---- Inline video (guitar) ---- */
.inline-video {
    margin-top: 28px;
    background: #000;
}
.inline-video video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.inline-video figcaption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.4;
}

/* ---- Media grid ---- */
.section-media {
    background: var(--warm-2);
    padding: 120px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.media-card {
    grid-column: span 6;
    background: #fff;
    overflow: hidden;
}

.media-grid.grid-of-three .media-card { grid-column: span 4; }
.media-grid.grid-of-two .media-card { grid-column: span 6; }
.media-card.tall { grid-column: span 6; grid-row: span 2; }
.media-card.tall img { height: 560px; object-fit: cover; }

.media-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.media-card figcaption {
    padding: 24px 28px 28px;
}

.media-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.media-card p { font-size: 0.96rem; color: var(--muted); }

/* ---- Feature image (full bleed, no crop) ---- */
.feature-image {
    background: var(--warm);
    padding: 0;
}
.feature-image figure {
    margin: 0;
    background: var(--warm-2);
}
.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 1600px;
    object-fit: contain;
}
.feature-image.portrait { background: var(--warm-2); padding: 80px 0 40px; }
.feature-image.portrait figure { background: transparent; }
.feature-image.portrait img { max-width: 620px; }
.feature-image.portrait figcaption { text-align: center; padding-top: 22px; }
.feature-image figcaption {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 32px 4px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--muted);
}

/* ---- Stat row ---- */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 0 0 72px;
    padding: 36px 0;
    border-top: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.35;
    max-width: 22ch;
}

.forward {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--navy);
    border-left: 2px solid var(--accent);
    padding-left: 18px;
    margin-top: 24px !important;
}

/* ---- Pullquote ---- */
.section-quote {
    background: var(--navy);
    color: #fff;
    padding: 88px 0;
    text-align: center;
}

.pullquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.35;
    color: #fff;
    max-width: 30ch;
    margin: 0 auto !important;
}

/* ---- Travel ---- */
.section-travel { padding: 120px 0; }
.travel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.travel-grid h3 {
    font-size: 1.55rem;
    border-bottom: 1px solid var(--navy);
    padding-bottom: 12px;
    margin-bottom: 18px;
}

/* ---- Utah grid ---- */
.section-utah {
    background: #fff;
    padding: 120px 0;
}
.utah-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
}
.utah-col h3 {
    border-top: 1px solid var(--navy);
    padding-top: 16px;
    font-size: 1.5rem;
}

/* ---- Ask ---- */
.section-ask {
    background: var(--warm-2);
    padding: 120px 0;
}
.section-ask p { font-size: 1.05rem; }
.section-ask strong { color: var(--navy); font-weight: 600; }

.cta {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 32px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: background 0.2s ease;
}
.cta:hover { background: var(--navy-deep); }
.cta-meta {
    margin-top: 16px !important;
    font-size: 0.88rem;
    color: var(--muted);
    font-style: italic;
}

/* ---- Footer ---- */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 64px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
footer p { margin-bottom: 8px; }
.footer-fine {
    font-style: italic;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0 !important;
    max-width: 60ch;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
    .media-grid { grid-template-columns: 1fr; gap: 24px; }
    .media-card, .media-card.tall { grid-column: span 1; grid-row: auto; }
    .media-card.tall img { height: 360px; }
    .media-card img { height: 280px; }
    .travel-grid, .utah-grid { grid-template-columns: 1fr; gap: 40px; }
    .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px 24px; padding: 28px 0; margin-bottom: 56px; }
    .media-grid.grid-of-three .media-card { grid-column: span 1; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .container { padding: 0 22px; }
    .section { padding: 80px 0; }
    .section h2 { margin-bottom: 36px; }
    .hero { min-height: 88vh; }
    .hero-content { padding: 0 22px 64px; }
    .hero-caption { display: none; }
    .section-quote { padding: 64px 0; }
    .lede { font-size: 1.2rem !important; }
    .cta { padding: 16px 24px; font-size: 0.9rem; }
}
