/* ============================================================
   Curated Travel Bites — Shared Stylesheet
   One file, linked from every page. Edit here, updates everywhere.
   ============================================================ */
/* ---------- Design tokens & base (identical across all pages) ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--slate);
    color: #fffffe;
}

.btn:hover {
    transform: translateY(-1px);
}

h1,
h2,
h3,
.display {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--navy);
}

:root {
    --navy: #232946;
    --slate: #49577c;
    --slate-dark: #3a4665;
    --ivory: #fffffe;
    --parchment: #f6f3ec;
    --gold: #c9a659;
    --line: rgba(35,41,70,0.12);
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate);
}

/* ---------- Layout that differs between the homepage and city pages ----------
   Controlled by the body class: <body class="page-home"> or <body class="page-city"> */
body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: var(--parchment);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.page-home header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,243,236,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

body.page-city header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,243,236,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

body.page-home footer {
    border-top: 1px solid var(--line);
    padding: 40px 24px;
}

body.page-city footer {
    border-top: 1px solid var(--line);
    padding: 32px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--slate-dark);
}

body.page-home .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

body.page-city .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 13px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--ivory);
    color: var(--slate-dark);
    border: 1px solid var(--line);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease;
    max-width: 100%;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

body.page-home .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

body.page-city .wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

body.page-home .hero {
    position: relative;
    overflow: hidden;
    padding: 88px 24px 72px;
    background: radial-gradient(circle at 15% 20%, rgba(201,166,89,0.10), transparent 40%),
      radial-gradient(circle at 85% 0%, rgba(73,87,124,0.14), transparent 45%),
      var(--parchment);
}

body.page-city .hero {
    padding: 48px 0 20px;
}

/* ---------- h1 (city pages only — homepage h1 is styled via .hero h1 below) ---------- */
body.page-city h1 {
    font-size: clamp(32px,5vw,46px);
    line-height: 1.12;
    margin-bottom: 18px;
    text-align: left;
}

/* ============================================================
   Homepage-only components
   ============================================================ */
img {
    max-width: 100%;
    display: block;
}

nav.links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
}

nav.links a {
    opacity: 0.85;
    transition: opacity .2s;
    white-space: nowrap;
}

nav.links a:hover {
    opacity: 1;
    color: var(--slate);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    color: var(--navy);
}

@media (max-width:760px){
    nav.links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--parchment);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 12px 24px -12px rgba(35,41,70,0.15);
    }

    nav.links.open {
        display: flex;
    }

    nav.links a {
        padding: 16px 24px;
        border-top: 1px solid var(--line);
    }

    .nav-toggle {
        display: block;
    }
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(73,87,124,0.35);
}

.btn-ghost {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta {
    display: none;
}

@media (min-width:761px){
    .nav-cta {
        display: inline-flex;
    }
}

body.page-home .hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.pin-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.pin {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.9;
}

.pin:nth-child(2) {
    background: var(--slate);
}

.pin:nth-child(3) {
    background: var(--navy);
}

body.page-home .hero h1 {
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.08;
    margin-bottom: 20px;
}

body.page-home .hero h1 em {
    font-style: italic;
    color: var(--slate);
}

body.page-home .hero p.lede {
    font-size: 18px;
    color: var(--slate-dark);
    max-width: 520px;
    margin: 0 auto 22px;
    font-weight: 400;
}

body.page-home .hero-catchline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--navy);
    max-width: 480px;
    margin: 0 auto 34px;
}

body.page-home .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 15px;
}

.pass {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    box-shadow: 0 30px 60px -20px rgba(35,41,70,0.25);
    text-align: left;
}

.pass-main {
    padding: 26px 28px;
}

.pass-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 700;
    margin-bottom: 10px;
}

.pass-city {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pass-route {
    font-size: 13px;
    color: var(--slate-dark);
    margin-bottom: 18px;
}

.pass-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pass-jump {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    border-top: 1px solid var(--line);
    padding-top: 14px;
    width: 100%;
    transition: gap .15s ease;
}

.pass-jump:hover {
    gap: 9px;
    color: var(--navy);
}

.pass-stub {
    border-left: 1.5px dashed var(--line);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: #fffffe;
    border-radius: 0 18px 18px 0;
    min-width: 132px;
}

.pass-stub .num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

.pass-stub .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.75;
    text-align: center;
}

.pass-stub .price {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity .15s ease;
}

.pass-stub .price:hover {
    opacity: 0.75;
}

.see-all-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 40px auto 0;
    width: fit-content;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    padding: 8px 4px;
    opacity: 0.85;
    transition: opacity .15s ease, gap .15s ease;
}

.see-all-cities:hover {
    opacity: 1;
    gap: 9px;
}

@media (max-width:520px){
    .pass {
        grid-template-columns: 1fr;
    }

    .pass-stub {
        border-left: none;
        border-top: 1.5px dashed rgba(255,255,255,0.25);
        border-radius: 0 0 18px 18px;
        flex-direction: row;
        justify-content: space-between;
        padding: 18px 24px;
    }
}

section {
    padding: 76px 0;
}

.section-head {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(26px,4vw,36px);
    margin-top: 10px;
}

.section-head p {
    color: var(--slate-dark);
    margin-top: 12px;
    font-size: 16px;
}

.about-copy {
    max-width: 640px;
    margin: 0 auto;
}

.about-copy p {
    color: var(--slate-dark);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

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

.step {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
}

.step .index {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

.step h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.step p {
    color: var(--slate-dark);
    font-size: 14.5px;
}

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

@media (max-width:900px){
    .city-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:600px){
    .city-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:700px){
    .steps {
        grid-template-columns: 1fr;
    }
}

.city-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4/3;
    min-height: 220px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--slate) 100%);
    text-decoration: none;
    color: #fffffe;
    box-shadow: 0 14px 30px -12px rgba(35,41,70,0.4);
    transition: transform .2s ease, box-shadow .2s ease;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -14px rgba(35,41,70,0.5);
}

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

.city-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(35,41,70,0.55) 0%, rgba(35,41,70,0.35) 100%);
}

.city-pin {
    z-index: 2;
}

.city-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    z-index: 2;
    background: linear-gradient(to top, rgba(35,41,70,0.92), rgba(35,41,70,0));
}

.city-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.city-card-label h3 {
    font-size: clamp(24px,3vw,30px);
    color: #fffffe;
    font-weight: 700;
}

.city-pin {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--accent, var(--gold));
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 3px 8px rgba(0,0,0,0.4);
    transition: transform .2s ease;
    animation: cityPinGlow 2.4s ease-in-out infinite;
}

@keyframes cityPinGlow {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 3px 8px rgba(0,0,0,0.4), 0 0 6px 2px rgba(var(--accent-rgb, 201,166,89), 0.5); }
    50% { box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 3px 8px rgba(0,0,0,0.4), 0 0 16px 6px rgba(var(--accent-rgb, 201,166,89), 0.85); }
}

.city-pin::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border-radius: 50%;
    border: 1.5px solid var(--accent, var(--gold));
    opacity: 0.55;
}

.city-card:hover .city-pin {
    transform: scale(1.15);
}

.city-card.accent-seoul {
    --accent: #c9a659;
    --accent-rgb: 201,166,89;
}

.city-card.accent-tokyo {
    --accent: #c1666b;
    --accent-rgb: 193,102,107;
}

.city-card.accent-paris {
    --accent: #5c8a99;
    --accent-rgb: 92,138,153;
}

.city-card.accent-rome {
    --accent: #c1734a;
    --accent-rgb: 193,115,74;
}

.city-card.accent-dubai {
    --accent: #8a6a9e;
    --accent-rgb: 138,106,158;
}

.city-card.accent-seoul .city-eyebrow {
    color: #c9a659;
}

.city-card.accent-tokyo .city-eyebrow {
    color: #c1666b;
}

.city-card.accent-paris .city-eyebrow {
    color: #5c8a99;
}

.city-card.accent-rome .city-eyebrow {
    color: #c1734a;
}

.city-card.accent-dubai .city-eyebrow {
    color: #8a6a9e;
}

.cities-section {
    padding-top: 20px;
    padding-bottom: 64px;
}

#contact {
    margin-top: 76px;
}

.cities-footnote {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: var(--slate-dark);
}

.cities-footnote a {
    color: var(--slate);
    font-weight: 600;
}

.cities-footnote a:hover {
    color: var(--navy);
}

.format-demo-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.map-mock {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    background: linear-gradient(150deg, #2c3560, var(--slate));
    overflow: visible;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px -18px rgba(0,0,0,0.5);
}

.map-mock-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.map-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    margin: -30px 0 0 -15px;
    z-index: 2;
}

.map-pin.pin-lg {
    width: 38px;
    height: 38px;
    margin: -38px 0 0 -19px;
}

.pin-badge {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--navy);
    border: 2.5px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-badge img {
    width: 54%;
    height: 54%;
    object-fit: contain;
}

.pin-tail {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--gold);
}

.pin-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    margin: -35% 0 0 -35%;
    border-radius: 50%;
    background: var(--gold);
    animation: pinPulse 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes pinPulse{
    0% {
        opacity: 0.55;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(3.2);
    }
}

.showcase {
    background: var(--navy);
    color: #fffffe;
}

.showcase .section-head h2,
.showcase .section-head .eyebrow {
    color: #fffffe;
}

.showcase .section-head p {
    color: rgba(255,255,255,0.72);
}

.vol-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.vol-tab {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.22);
    background: transparent;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .15s ease;
}

.vol-tab:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.vol-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width:820px){
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.vol-intro {
    margin-bottom: 20px;
}

.vol-intro .vol-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.vol-intro p {
    font-size: 14px;
    color: rgba(255,255,255,0.68);
}

.venue-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.venue {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 18px;
}

.venue .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
    flex-shrink: 0;
}

.venue > div {
    min-width: 0;
}

.venue h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 700;
}

.venue .kind {
    font-size: 11.5px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    display: block;
}

.venue p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.68);
}

.map-card {
    background: var(--ivory);
    color: var(--navy);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    position: sticky;
    top: 96px;
}

.map-card .badge {
    display: inline-block;
    background: var(--parchment);
    border: 1px solid var(--line);
    color: var(--slate-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.map-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-card ul {
    list-style: none;
    margin: 18px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-card li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    color: var(--slate-dark);
}

.map-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--slate);
    font-weight: 700;
}

.map-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
}

.map-price .amt {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
}

.map-price .unit {
    font-size: 13px;
    color: var(--slate-dark);
}

.map-card .pro-tip {
    font-size: 12.5px;
    color: var(--slate-dark);
    background: var(--parchment);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.map-card .pro-tip b {
    color: var(--navy);
}

.capture {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 52px 32px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.capture h2 {
    font-size: clamp(24px,4vw,30px);
    margin: 12px 0 12px;
}

.capture p {
    color: var(--slate-dark);
    margin-bottom: 26px;
}

.capture-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.capture-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    background: var(--parchment);
    color: var(--navy);
}

.capture-form input:focus {
    outline: 2px solid var(--slate);
    outline-offset: 2px;
}

.capture-form .btn {
    white-space: nowrap;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-inner .brand-name {
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-dark);
}

.footer-note {
    font-size: 12px;
    color: var(--slate-dark);
    opacity: 0.7;
    margin-top: 18px;
    text-align: center;
}

/* ============================================================
   City page-only components
   ============================================================ */
.breadcrumb {
    font-size: 13px;
    color: var(--slate-dark);
    padding: 16px 24px;
    max-width: 860px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--slate);
    font-weight: 600;
}

.breadcrumb span {
    opacity: 0.5;
    margin: 0 6px;
}

body.page-city .hero .eyebrow {
    margin-bottom: 14px;
}

body.page-city .hero .lede {
    font-size: 17px;
    color: var(--slate-dark);
    margin-bottom: 26px;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

article section {
    padding: 36px 0;
}

article h2 {
    font-size: clamp(22px,3vw,28px);
    margin-bottom: 14px;
}

article h3 {
    font-size: 18px;
    margin: 22px 0 8px;
}

article p {
    color: var(--slate-dark);
    margin-bottom: 14px;
    font-size: 15.5px;
}

article ul {
    margin: 0 0 14px 20px;
    color: var(--slate-dark);
    font-size: 15.5px;
}

article li {
    margin-bottom: 6px;
}

.volume-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 20px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.volume-card .vol-thumb {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.volume-card .vol-content {
    flex: 1;
    min-width: 0;
}

@media (max-width:520px){
    .volume-card {
        flex-direction: column;
    }

    .volume-card .vol-thumb {
        width: 100%;
        height: 160px;
    }
}

.volume-card .vol-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.volume-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
}

.volume-card p {
    margin-bottom: 10px;
}

.volume-card ul {
    margin-bottom: 18px;
}

.vol-price {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    padding: 12px 34px;
    display: inline-flex;
}

.vol-price.coming-soon {
    background: var(--parchment);
    color: var(--slate-dark);
    border-color: var(--line);
    cursor: default;
    pointer-events: none;
    gap: 8px;
    align-items: center;
}

.vol-price.coming-soon .cs-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.bundle-card {
    background: var(--navy);
    color: #fffffe;
    border-radius: 16px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.bundle-card .vol-thumb {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.bundle-card .bundle-card-text {
    flex: 1;
    min-width: 0;
}

.bundle-card .vol-eyebrow {
    color: var(--gold);
}

.bundle-card h3 {
    color: #fffffe;
    margin: 4px 0 8px;
}

.bundle-card p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

.bundle-price {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 36px;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.bundle-price:hover {
    box-shadow: 0 8px 20px rgba(201,166,89,0.35);
}

@media (max-width:560px){
    .bundle-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .bundle-card .vol-thumb {
        width: 100%;
        height: 160px;
    }

    .bundle-price {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.pull-quote {
    border-left: 3px solid var(--gold);
    padding: 4px 0 4px 20px;
    margin: 24px 0;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--navy);
}

.cta-block {
    background: var(--navy);
    color: #fffffe;
    border-radius: 18px;
    padding: 34px 30px;
    text-align: center;
    margin: 36px 0;
}

.cta-block h2 {
    color: #fffffe;
}

.cta-block p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

footer a {
    color: var(--slate);
    font-weight: 600;
}