/* =============================================================
   INBOUND SPAIN — site.css
   Single shared stylesheet. All pages link this file.
   Never write inline styles for brand decisions.
   ============================================================= */

/* -------------------------------------------------------------
   FONTS
   ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:wght@300;400;700&display=swap');

/* -------------------------------------------------------------
   CUSTOM PROPERTIES
   ------------------------------------------------------------- */

:root {
    --navy:      #274472;
    --coral:     #E56B5A;
    --sand:      #EDE6D6;
    --warm-gray: #7A7062;
    --white:     #FFFFFF;
}

/* -------------------------------------------------------------
   RESET AND BASE
   ------------------------------------------------------------- */

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

html {
    font-size: 17px;
}

body {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 300;
    color: var(--warm-gray);
    background-color: var(--white);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

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

ul {
    list-style: none;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--coral);
}

/* -------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------- */

h1, h2, h3, h4 {
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    color: var(--navy);
}

h5, h6 {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    color: var(--warm-gray);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 0.4em;
}

h4 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 0.4em;
}

h5 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 0.4em;
}

h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    margin-bottom: 0.3em;
}

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------- */

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

section {
    padding: 80px 0;
}

/* -------------------------------------------------------------
   SECTION LABELS
   ------------------------------------------------------------- */

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: currentColor;
    opacity: 0.4;
}

/* -------------------------------------------------------------
   SECTION INTRO
   ------------------------------------------------------------- */

.section-intro {
    max-width: 640px;
    margin-bottom: 48px;
}

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */

.btn {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

/* Hero buttons — coral on navy background */
.btn-hero {
    background-color: var(--coral);
    color: var(--sand);
    border-color: var(--coral);
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--coral);
    border-color: var(--white);
}

/* Pre-footer button — navy on coral background */
.btn-prefooter {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-prefooter:hover {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Standard CTA — audience pages, forms */
.btn-standard {
    background-color: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-standard:hover {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* -------------------------------------------------------------
   HEADER AND NAVIGATION
   ------------------------------------------------------------- */

.site-header {
    background-color: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    display: block;
    height: 36px;
    width: auto;
    transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}

/* Primary nav list */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 24px 18px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
}

.nav-menu > li > a:hover {
    color: var(--coral);
}

/* Dropdown */
.nav-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 210px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.nav-menu .has-dropdown:hover .dropdown {
    display: block;
}

.nav-menu .dropdown li a {
    display: block;
    padding: 13px 20px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--navy);
    transition: color 0.2s;
}

.nav-menu .dropdown li a:hover {
    color: var(--coral);
}

/* Mobile hamburger button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    line-height: 1;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */

.hero {
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
}

/* Dark overlay for text legibility */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(39, 68, 114, 0.70);
}

/* Lift content above the overlay */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 680px;
}

.hero h1 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 24px;
}

.hero-subline {
    color: var(--sand);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------
   PILLARS SECTION (Why Partner With Us)
   ------------------------------------------------------------- */

.pillars-section {
    background-color: var(--sand);
}

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

.pillars-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pillar-cta {
    margin-top: 24px;
}

.pillar h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* -------------------------------------------------------------
   DESTINATIONS SECTION
   ------------------------------------------------------------- */

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

.dest-grids {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.dest-grid-a,
.dest-grid-b {
    display: grid;
    gap: 8px;
    grid-template-rows: 220px;
}

/* Row 1 and 3: large tile left */
.dest-grid-a {
    grid-template-columns: 4fr 3fr 3fr;
}

/* Row 2: large tile right */
.dest-grid-b {
    grid-template-columns: 3fr 3fr 4fr;
}

/* Individual tile */
.dest-tile {
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.dest-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39, 68, 114, 0.72) 0%, rgba(39, 68, 114, 0.08) 55%);
    transition: opacity 0.3s;
}

.dest-tile:hover::before {
    background: linear-gradient(to top, rgba(39, 68, 114, 0.88) 0%, rgba(39, 68, 114, 0.30) 60%);
}

.dest-tile-label {
    position: absolute;
    bottom: 18px;
    left: 20px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
}

/* Placeholder background colors (replaced by background-image when photos are added) */
.dest-andalusia  { background-color: #8B7A5E; }
.dest-barcelona  { background-color: #5E6E82; }
.dest-mallorca   { background-color: #4E7A6A; }
.dest-valencia   { background-color: #82684E; }
.dest-galicia    { background-color: #4A6656; }
.dest-basque     { background-color: #5E4E3E; }
.dest-cantabria  { background-color: #4A5E6E; }
.dest-madrid     { background-color: #6E5E4A; }
.dest-asturias   { background-color: #4A6656; }

/* -------------------------------------------------------------
   PROGRAMS SECTION
   ------------------------------------------------------------- */

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

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

.program-card {
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.program-card:hover {
    box-shadow: 0 6px 24px rgba(39, 68, 114, 0.10);
}

.program-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--sand);
}

.program-card-body {
    padding: 28px;
}

.program-card-tag {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.program-card-body h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.program-card-meta {
    font-size: 13px;
    color: var(--warm-gray);
    font-weight: 400;
    margin-bottom: 14px;
}

.program-card-body p {
    font-size: 15px;
    line-height: 1.65;
}

.programs-inline-cta {
    text-align: center;
    margin-top: 48px;
    font-size: 16px;
}

/* -------------------------------------------------------------
   PRE-FOOTER CTA
   ------------------------------------------------------------- */

.prefooter-cta {
    background-color: var(--coral);
    padding: 88px 0;
    text-align: center;
}

.prefooter-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.prefooter-cta p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.92;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */

.site-footer {
    background-color: var(--navy);
    color: var(--sand);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    font-size: 20px;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer-brand p {
    color: var(--sand);
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.75;
}

.footer-col h6 {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--sand);
    font-size: 14px;
    opacity: 0.75;
    transition: color 0.2s, opacity 0.2s;
}

.footer-col ul li a:hover {
    color: var(--coral);
    opacity: 1;
}

.footer-nap {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(237, 230, 214, 0.18);
}

.footer-nap li {
    margin-bottom: 8px;
    color: var(--sand);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.75;
}

.footer-nap li a {
    color: var(--sand);
    font-size: 14px;
    opacity: 1;
    transition: color 0.2s;
}

.footer-nap li a:hover {
    color: var(--coral);
}

.footer-bar {
    border-top: 1px solid rgba(237, 230, 214, 0.18);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--sand);
    opacity: 0.55;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bar a {
    color: inherit;
    transition: opacity 0.2s;
}

.footer-bar a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

/* -------------------------------------------------------------
   INFORMATIONAL PAGE SECTIONS
   ------------------------------------------------------------- */

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

.info-section.bg-sand {
    background-color: var(--sand);
}

/* Also allow bg-sand on other section types */
.programs-section.bg-sand {
    background-color: var(--sand);
}

/* -------------------------------------------------------------
   CAPABILITIES GRID (What We Handle)
   ------------------------------------------------------------- */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
    margin-top: 8px;
}

.capability-card h4 {
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 15px;
    line-height: 1.65;
}

/* -------------------------------------------------------------
   PROCESS GRID (How We Work With You)
   ------------------------------------------------------------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
    margin-top: 8px;
}

.process-step {
    position: relative;
}

.process-number {
    display: block;
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    font-size: 36px;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 12px;
}

.bg-sand .process-number,
.info-section.bg-sand .process-number {
    color: var(--white);
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.65;
}

/* Program card detail line (operator metadata) */
.program-card-detail {
    font-size: 12px;
    font-weight: 400;
    color: var(--warm-gray);
    margin-top: 10px;
    letter-spacing: 0.02em;
}

/* Program card link (view program details) */
.program-card-link {
    display: block;
    padding: 0 28px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* -------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------- */

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

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(122, 112, 98, 0.2);
}

.faq-item:first-child {
    border-top: 1px solid rgba(122, 112, 98, 0.2);
}

.faq-question {
    display: block;
    padding: 24px 40px 24px 0;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    list-style: none;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

/* Custom chevron */
.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
    padding: 0 40px 24px 0;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   PAGE HERO (interior pages)
   ------------------------------------------------------------- */

.page-hero {
    background-color: var(--navy);
    padding: 80px 0;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero-aside {
    font-size: 13px;
    color: var(--sand);
    opacity: 0.55;
    margin-top: 32px;
}

.page-hero-aside a {
    color: var(--sand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-hero-aside a:hover {
    opacity: 1;
    color: var(--white);
}

.page-hero-sub {
    color: var(--sand);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
    max-width: 680px;
    opacity: 0.9;
}

/* -------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------- */

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

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* --- Form fields --- */

.form-group {
    margin-bottom: 24px;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

label {
    display: block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 8px;
}

.required {
    color: var(--coral);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-gray);
    background-color: var(--white);
    border: 1px solid var(--sand);
    padding: 12px 16px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--navy);
    background-color: var(--sand);
    color: var(--navy);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7062' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit button inherits .btn .btn-standard */

.contact-form-col .btn {
    margin-top: 8px;
}

/* --- Honeypot (screen-reader and bot only) --- */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- HubSpot fallback (shown only if cookies are rejected) --- */

.hs-form-fallback {
    display: none;
    background-color: var(--sand);
    padding: 28px 32px;
}

.hs-form-fallback p {
    font-size: 15px;
    line-height: 1.7;
}

.hs-form-fallback p:last-child {
    margin-bottom: 0;
}

/* --- HubSpot form overrides --- */

#hubspot-form .hs-form-field {
    margin-bottom: 24px;
}

#hubspot-form label:not(.hs-error-msg) {
    display: block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 8px;
}

#hubspot-form .hs-input {
    width: 100%;
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-gray);
    background-color: var(--white);
    border: 1px solid var(--sand);
    padding: 12px 16px;
    border-radius: 0;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    box-sizing: border-box;
}

#hubspot-form .hs-input:focus {
    outline: none;
    border-color: var(--navy);
    background-color: var(--sand);
    color: var(--navy);
}

#hubspot-form textarea.hs-input {
    resize: vertical;
    min-height: 120px;
}

#hubspot-form select.hs-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7062' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

#hubspot-form .hs-submit {
    margin-top: 8px;
}

#hubspot-form .hs-button {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    border: 2px solid var(--coral);
    background-color: var(--coral);
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

#hubspot-form .hs-button:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

#hubspot-form .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

#hubspot-form .hs-error-msg {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--coral);
}

#hubspot-form .hs-richtext {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.65;
}

#hubspot-form .submitted-message {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.6;
    padding: 24px 0;
}

/* --- Form row base --- */

.form-row {
    margin-bottom: 0;
}

/* --- Contact info sidebar --- */

.contact-info-col {
    padding-top: 8px;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block h5 {
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-info-block p {
    font-size: 15px;
    line-height: 1.65;
}

/* --- Pre-footer with multiple buttons --- */

.prefooter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------------------- */

.about-story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 8px;
}

.about-story-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-caption {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 13px;
    color: var(--warm-gray);
    margin-top: 12px;
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.team-card {
    background-color: var(--white);
    border-top: 3px solid var(--coral);
    overflow: hidden;
}

.team-card-img {
    width: 220px;
    height: 293px;
    object-fit: cover;
    object-position: top center;
    display: block;
    margin: 32px auto 0;
}

.team-card-body {
    padding: 24px 28px 28px;
}

.team-role {
    display: block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-field-photo {
    max-width: 640px;
    margin: 56px auto 0;
}

.about-field-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-field-caption {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 13px;
    color: var(--warm-gray);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   DESTINATION PAGES
   ------------------------------------------------------------- */

/* Hero with background image */
.dest-hero {
    position: relative;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    padding: 120px 0 96px;
    overflow: hidden;
}

.dest-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(39,68,114,0.82) 0%, rgba(39,68,114,0.55) 55%, rgba(39,68,114,0.25) 100%);
}

.dest-hero .container {
    position: relative;
    z-index: 1;
}

.dest-breadcrumb {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sand);
    opacity: 0.7;
    margin-bottom: 20px;
}

.dest-breadcrumb a {
    color: var(--sand);
    opacity: 0.7;
}

.dest-breadcrumb a:hover {
    opacity: 1;
    color: var(--coral);
}

.dest-hero h1 {
    color: var(--white);
    max-width: 600px;
    margin-bottom: 20px;
}

.dest-hero-intro {
    color: var(--sand);
    font-size: 18px;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 0;
}

/* Persona section */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.persona-card {
    background-color: var(--white);
    border-top: 3px solid var(--coral);
    overflow: hidden;
}

.persona-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.persona-card-body {
    padding: 28px;
}

.persona-tag {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 14px;
}

.persona-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.persona-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Planning notes */
.planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.planning-item h5 {
    color: var(--navy);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sand);
}

.planning-item p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.planning-item strong {
    color: var(--navy);
    font-weight: 700;
}

/* Pillar teaser + expand (Read the full story) */
.pillar-teaser {
    margin-bottom: 10px;
}

.pillar-more-toggle {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--coral);
    cursor: pointer;
    list-style: none;
}

.pillar-more-toggle::-webkit-details-marker {
    display: none;
}

.pillar-more-toggle::marker {
    content: '';
}

.pillar-more-toggle:hover {
    color: var(--navy);
}

.pillar-more-text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   TOUR PAGES (/tours/[program]/)
   ------------------------------------------------------------- */

/* Hero: full-bleed photo, bottom-anchored content, fixed height */
.tour-hero {
    position: relative;
    height: 480px;
    padding: 0;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.tour-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(39,68,114,0.35) 0%, rgba(39,68,114,0.55) 55%, rgba(39,68,114,0.85) 100%);
}

.tour-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 40px;
}

.tour-hero .dest-breadcrumb {
    margin-bottom: 14px;
}

.tour-hero h1 {
    color: var(--white);
    max-width: 700px;
    margin-bottom: 16px;
}

.tour-hero-intro {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 0;
}

/* Placeholder for unsourced photography. Remove once real images are in place. */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sand);
    border: 1px dashed rgba(122, 112, 98, 0.4);
    color: var(--warm-gray);
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    padding: 20px;
}

.tour-hero .img-placeholder {
    position: absolute;
    inset: 0;
    border: none;
}

/* Program facts strip */
.tour-facts {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(39, 68, 114, 0.10);
    margin-top: 5px;
    margin-bottom: 48px;
}

/* Program section: facts strip sits close to the hero, not at standard section padding.
   Bottom padding trimmed 60% (80px -> 32px) to tighten the gap before the city list. */
.tour-program-section {
    padding-top: 5px;
    padding-bottom: 32px;
}

/* City-by-city section: top padding trimmed 60% (80px -> 32px) to match */
.tour-city-section {
    padding-top: 32px;
}

.tour-facts-item {
    padding: 20px 18px;
    border-right: 1px solid var(--sand);
}

.tour-facts-item:last-child {
    border-right: none;
}

.tour-facts-label {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: 8px;
}

.tour-facts-value {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.4;
}

/* Program intro */
.tour-intro-text {
    max-width: 1000px;
}

/* City-by-city blocks. Vertical padding trimmed 50% (48px -> 24px) to close the gap between rows. */
.tour-city {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--sand);
}

.tour-city:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tour-city-img-wrap {
    width: 100%;
    max-width: 400px;
    height: 300px;
    min-width: 0;
    object-fit: cover;
    display: block;
}

.tour-city-body {
    min-width: 0;
}

.tour-city.reverse .tour-city-img-wrap {
    order: 2;
}

.tour-city.reverse .tour-city-body {
    order: 1;
}

.tour-city-meta {
    display: block;
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    margin-bottom: 10px;
}

.tour-city-body h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.tour-city-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.tour-day-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.tour-day-list p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.tour-day-list strong {
    color: var(--navy);
}

.tour-city-hotel {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.tour-city-hotel strong {
    color: var(--navy);
}

/* For advisors / For operators split */
/* Gap above the audience split trimmed 60% (56px -> 24px) to match the tighter rhythm */
.tour-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.tour-audience-card {
    background-color: var(--sand);
    padding: 28px;
}

.tour-audience-card h4 {
    margin-bottom: 14px;
}

.tour-audience-card p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.tour-audience-card p:last-of-type {
    margin-bottom: 0;
}

.tour-audience-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--navy);
    padding-bottom: 2px;
}

/* Icons for "On the ground" capability cards (inline SVG, no external library) */
.capability-icon {
    width: 22px;
    height: 22px;
    color: var(--coral);
    margin-bottom: 12px;
    display: block;
}

/* -------------------------------------------------------------
   TOURS INDEX (/tours/)
   ------------------------------------------------------------- */

/* Sticky jump bar under the hero. Offset by the site header's fixed height (72px)
   so it docks directly beneath the nav rather than underneath it. */
.tours-jump-bar {
    position: sticky;
    top: 72px;
    z-index: 20;
    background-color: var(--white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 2px 12px rgba(39, 68, 114, 0.08);
    padding: 20px 0;
}

/* Region sections jumped to from the sticky bar need scroll offset for both
   the site header and the jump bar itself. */
.tours-region-section {
    scroll-margin-top: 140px;
}

/* Program card grid on the tours index page: 2 columns, scoped so the
   shared .programs-grid class stays 3-across everywhere else it's reused
   (destination guides, travel-partner pages). */
.tours-region-section .programs-grid {
    grid-template-columns: repeat(2, 1fr);
}

.tours-jump-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tours-jump-label {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    white-space: nowrap;
}

.jump-pill {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    border: 1px solid var(--sand);
    border-radius: 0;
    padding: 6px 14px;
    white-space: nowrap;
}

.jump-pill:hover {
    background-color: var(--sand);
    color: var(--navy);
}

/* "How these programs run" two-column format explainer */
.tours-format-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 36px;
    margin-top: 8px;
    margin-bottom: 32px;
}

.tours-format-grid h4 {
    margin-bottom: 10px;
}

.tours-format-grid p {
    font-size: 15px;
    line-height: 1.7;
}

.tours-format-note {
    text-align: center;
    font-size: 16px;
}

/* -------------------------------------------------------------
   LEGAL / TERMS PAGES (/legal/*, /terms/)
   ------------------------------------------------------------- */

.legal-content {
    max-width: 760px;
}

.legal-updated {
    font-size: 13px;
    color: var(--warm-gray);
    opacity: 0.8;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 2.2em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 1.6em;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.5em 1.25em;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0.6em;
}

.legal-content strong {
    color: var(--navy);
    font-weight: 700;
}

.legal-toc {
    background-color: var(--sand);
    padding: 28px 32px;
    margin-bottom: 48px;
}

/* -------------------------------------------------------------
   BLOG PAGES (/blog/, /blog/[article]/)
   ------------------------------------------------------------- */

/* Index: article card grid, reuses .programs-grid rhythm at a 2-column width */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.blog-card {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(39, 68, 114, 0.10);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.blog-card-body {
    padding: 28px;
}

.blog-card-tag {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.blog-card-meta {
    font-size: 13px;
    color: var(--warm-gray);
    opacity: 0.85;
    margin-bottom: 14px;
}

.blog-card-link {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
}

/* Article hero: same full-bleed convention as .dest-hero, shorter */
.blog-hero {
    position: relative;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    padding: 96px 0 64px;
    overflow: hidden;
}

.blog-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(39,68,114,0.85) 0%, rgba(39,68,114,0.6) 55%, rgba(39,68,114,0.3) 100%);
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    color: var(--white);
    max-width: 680px;
    margin-bottom: 16px;
}

.blog-hero-meta {
    color: var(--sand);
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Wrapping section for the article body: tighter top padding than the
   default section rhythm, since the hero already carries its own spacing. */
.blog-body-section {
    padding: 40px 0 80px;
}

/* Article body: prose column, mirrors .legal-content proportions */
.blog-content {
    max-width: 760px;
    margin: 0 auto;
}

.blog-content h2 {
    font-size: 30px;
    margin-top: 1.8em;
}

.blog-content h2:first-of-type {
    margin-top: 0;
}

.blog-content h3 {
    font-size: 21px;
    margin-top: 1.5em;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.75;
}

.blog-content ul,
.blog-content ol {
    margin: 0 0 1.5em 1.25em;
}

.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }

.blog-content li {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0.6em;
}

.blog-content strong {
    color: var(--navy);
    font-weight: 700;
}

.blog-content .section-label {
    margin-top: 2.2em;
}

/* Seasonal calendar visual: 12-month grid, sits inside .blog-content's parent section */
.season-calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--sand);
    border: 1px solid var(--sand);
    margin: 32px 0 40px;
    max-width: 900px;
}

.season-month {
    background-color: var(--white);
    padding: 20px 18px;
}

.season-month-name {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.season-month-tag {
    font-family: 'Abril Fatface', Georgia, serif;
    font-size: 17px;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 8px;
}

.season-month-note {
    font-size: 13px;
    line-height: 1.55;
    color: var(--warm-gray);
}

.legal-toc h5 {
    color: var(--navy);
    margin-bottom: 16px;
}

.legal-toc ul {
    list-style: none;
    margin: 0;
    columns: 2;
    column-gap: 32px;
}

.legal-toc li {
    margin-bottom: 10px;
    font-size: 14px;
    break-inside: avoid;
}

.legal-toc a {
    font-weight: 700;
}

/* -------------------------------------------------------------
   COOKIE CONSENT BANNER
   ------------------------------------------------------------- */

.cookie-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background-color: var(--navy);
    padding: 24px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    color: var(--sand);
    font-size: 14px;
    line-height: 1.6;
    max-width: 640px;
    opacity: 0.92;
}

.cookie-banner-text a {
    color: var(--sand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: var(--coral);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cookie-reject {
    background-color: var(--sand);
    color: var(--navy);
    border-color: var(--sand);
}

.btn-cookie-reject:hover {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* -------------------------------------------------------------
   MOBILE — max-width: 768px
   ------------------------------------------------------------- */

@media (max-width: 768px) {

    .nav-logo-img {
        height: 30px;
    }


    html { font-size: 16px; }

    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .container { padding: 0 20px; }

    section { padding: 56px 0; }

    /* --- Navigation --- */

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 12px;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 14px 24px;
    }

    /* Mobile dropdown: revealed by JS-toggled class */
    .nav-menu .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-menu .has-dropdown.is-open .dropdown {
        display: block;
    }

    .nav-menu .dropdown li a {
        color: var(--sand);
        padding: 10px 24px 10px 44px;
        font-size: 13px;
        opacity: 0.8;
    }

    .nav-menu .dropdown li a:hover {
        color: var(--coral);
        opacity: 1;
    }

    /* --- Hero --- */

    .hero { padding: 72px 0; }

    .hero h1 { font-size: 34px; }

    .hero-subline { font-size: 16px; }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn { text-align: center; }

    /* --- Pillars --- */

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* --- Destinations --- */

    .dest-grid-a,
    .dest-grid-b {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .dest-tile {
        height: 64px;
    }

    .dest-tile-label {
        bottom: 50%;
        transform: translateY(50%);
        left: 16px;
    }

    /* --- Programs --- */

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

    .tours-region-section .programs-grid {
        grid-template-columns: 1fr;
    }

    /* --- Capabilities and Process grids --- */

    .capabilities-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* --- FAQ --- */

    .faq-question {
        font-size: 15px;
        padding: 20px 36px 20px 0;
    }

    .faq-answer {
        padding: 0 36px 20px 0;
    }

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

    .page-hero { padding: 56px 0; }

    .page-hero h1 { font-size: 34px; }

    .page-hero-sub { font-size: 16px; }

    /* --- Contact --- */

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row-half {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* --- Footer --- */

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    /* --- About page --- */

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-card-img {
        width: 200px;
        height: 267px;
    }

    /* --- Destination pages --- */

    .dest-hero { padding: 72px 0; }

    .dest-hero h1 { font-size: 36px; }

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

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

    .dest-breadcrumb { font-size: 12px; }

    /* --- Tour pages --- */

    .tour-hero { height: auto; padding: 72px 0; }

    .tour-hero h1 { font-size: 34px; }

    .tour-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-facts-item {
        border-right: 1px solid var(--sand);
        border-bottom: 1px solid var(--sand);
    }

    .tour-city,
    .tour-city.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tour-city .tour-city-img-wrap,
    .tour-city.reverse .tour-city-img-wrap {
        order: 1;
    }

    .tour-city .tour-city-body,
    .tour-city.reverse .tour-city-body {
        order: 2;
    }

    .tour-audience-grid {
        grid-template-columns: 1fr;
    }

    /* --- Tours index --- */

    .tours-jump-bar {
        position: static;
    }

    .tours-jump-row {
        gap: 10px;
    }

    .tours-region-section {
        scroll-margin-top: 20px;
    }

    .tours-format-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* --- Legal / Terms pages --- */

    .legal-toc ul {
        columns: 1;
    }

    /* --- Cookie banner --- */

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }

    .cookie-banner-buttons {
        justify-content: center;
    }

    /* --- Blog pages --- */

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-hero { padding: 72px 0; }

    .blog-hero h1 { font-size: 30px; }

    .blog-body-section { padding: 24px 0 56px; }

    .season-calendar {
        grid-template-columns: repeat(2, 1fr);
    }
}
