/* ==========================================================================
   Road King Tenerife Tours — design system
   Premium, dark-first motorcycle & sidecar touring brand: bold condensed
   display type (Bebas Neue) + clean body (Inter), near-black base with a
   single confident orange accent. No emojis, no third-party trademarks.
   ========================================================================== */

:root {
    --ink:        #0a0a0b;
    --ink-soft:   #161619;
    --ink-softer: #212125;
    --cream:      #f4ede1;
    --stone:      #a8a29a;
    --white:      #ffffff;

    --orange:       #ff6a1a;
    --orange-deep:  #cc4e10;
    --orange-light: #ffab6e;

    --steel:       #6b7280;
    --steel-light: #9aa1ab;

    --line: rgba(244, 237, 225, .12);
    --line-strong: rgba(244, 237, 225, .2);

    --font-display: 'Bebas Neue', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
    --shadow: 0 12px 32px rgba(0, 0, 0, .38);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, .5);

    --ease: cubic-bezier(.25, .8, .35, 1);
    color-scheme: dark;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 .5em;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--white);
}
em, .italic { font-style: normal; color: var(--orange); }

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

.skip-link {
    position: absolute; left: -9999px; top: 0; background: var(--orange); color: var(--ink);
    padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Icons ---------- */
.icon { width: 1.15em; height: 1.15em; vertical-align: -0.22em; flex-shrink: 0; }
.icon--lg { width: 28px; height: 28px; }
.stars { display: inline-flex; gap: 2px; color: var(--orange); }
.stars .icon { width: 15px; height: 15px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 13px 24px; border-radius: 4px; font-weight: 700; font-size: .88rem;
    text-transform: uppercase; letter-spacing: .04em;
    border: 1px solid transparent; cursor: pointer; position: relative; overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
}
.btn::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 45%, transparent 60%);
    transform: translateX(-120%); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--orange); color: var(--ink); box-shadow: 0 8px 22px rgba(255, 106, 26, .32); }
.btn--primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 106, 26, .4); }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--sm { padding: 9px 18px; font-size: .78rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 10, 11, .82); backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 24px; transition: padding .3s var(--ease); }
.site-header.is-scrolled .header-inner { padding: 12px 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.logo-img { display: block; border-radius: 50%; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.footer__badge { width: 88px; height: 88px; }
.login__mark { width: 96px; height: 96px; margin: 0 auto; }
.brand__name-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); letter-spacing: .02em; }
.brand__name em { color: var(--orange); font-style: normal; }
.brand__tag { font-size: .64rem; letter-spacing: .09em; text-transform: uppercase; color: var(--stone); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
    position: relative; font-weight: 600; font-size: .82rem; color: var(--cream); padding: 6px 0;
    text-transform: uppercase; letter-spacing: .04em;
}
.main-nav a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--orange);
    transition: right .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; background: transparent; border: none; color: var(--cream); cursor: pointer;
    transition: background-color .2s var(--ease);
}
.icon-btn:hover { background: var(--ink-softer); }
.nav-toggle { display: none; }

.mobile-nav {
    display: none; flex-direction: column; gap: 4px; padding: 10px 24px 22px; background: var(--ink);
    border-bottom: 1px solid var(--line);
}
.mobile-nav a { padding: 12px 4px; font-weight: 700; border-radius: 6px; text-transform: uppercase; font-size: .85rem; letter-spacing: .03em; color: var(--cream); }
.mobile-nav a:hover, .mobile-nav a.is-active { background: var(--ink-softer); color: var(--orange); }
.mobile-nav .btn { margin-top: 10px; }

@media (max-width: 880px) {
    .main-nav, .header-actions .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-nav.is-open { display: flex; }
}

.scrim {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; z-index: 90;
    transition: opacity .3s var(--ease);
}
.scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
    position: relative; background: var(--ink); color: var(--cream); overflow: hidden;
    padding: 96px 0 120px;
}
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; pointer-events: none;
    animation: orangeFloat 12s ease-in-out infinite;
}
.hero::before { width: 480px; height: 480px; background: radial-gradient(circle, var(--orange) 0%, transparent 70%); top: -160px; right: -120px; }
.hero::after { width: 380px; height: 380px; background: radial-gradient(circle, var(--steel-light) 0%, transparent 70%); bottom: -180px; left: -100px; animation-delay: -6s; }
@keyframes orangeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 24px) scale(1.08); }
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 3px;
    background: rgba(255,106,26,.14); color: var(--orange-light); font-size: .75rem; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.hero h1 { font-size: clamp(2.8rem, 5.6vw, 4.6rem); color: var(--white); }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p.lede { font-size: 1.1rem; color: rgba(244,237,225,.78); max-width: 46ch; margin: 0 0 32px; text-transform: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 52px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--white); }
.hero-stat span { font-size: .8rem; color: rgba(244,237,225,.6); text-transform: uppercase; letter-spacing: .03em; }

.hero-media { position: relative; }
.hero-media img {
    border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover;
    box-shadow: var(--shadow-lg); filter: saturate(1.05) contrast(1.08);
}
.hero-media .float-card {
    position: absolute; left: -30px; bottom: 30px; background: var(--ink-soft); color: var(--cream);
    border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
    display: flex; align-items: center; gap: 12px; max-width: 240px;
    animation: floatCard 5s ease-in-out infinite;
}
.float-card .icon { color: var(--orange); width: 26px; height: 26px; }
.float-card strong { display: block; font-size: .88rem; text-transform: uppercase; letter-spacing: .02em; color: var(--white); }
.float-card span { font-size: .78rem; color: var(--stone); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .hero-stats { flex-wrap: wrap; row-gap: 20px; }
    .float-card { left: 16px; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--ink-soft); }
.section--paper { background: var(--cream); color: var(--ink); }
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4 { color: var(--ink); }

.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
    display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(2.1rem, 3.8vw, 3rem); }
.section-head p { color: var(--stone); font-size: 1.05rem; text-transform: none; }
.section--paper .section-head p { color: #55524b; }

/* ---------- Tour / feature cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

.tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 780px) { .tours-grid { grid-template-columns: 1fr; } }

.tcard {
    background: var(--ink-soft); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    display: flex; flex-direction: column; height: 100%; border: 1px solid var(--line);
}
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,106,26,.4); }
.tcard__icon {
    width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--orange-light), var(--orange)); color: var(--ink); margin-bottom: 20px;
    transition: transform .35s var(--ease);
}
.tcard:hover .tcard__icon { transform: rotate(-6deg) scale(1.06); }
.tcard__icon .icon { width: 26px; height: 26px; }
.tcard h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--white); }
.tcard p { color: var(--stone); font-size: .92rem; flex-grow: 1; text-transform: none; }
.tcard__from { font-weight: 700; color: var(--orange); margin: 14px 0 18px; font-size: .92rem; }
.tcard__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; color: var(--cream); text-transform: uppercase; letter-spacing: .02em; }
.tcard__link .icon { transition: transform .25s var(--ease); }
.tcard:hover .tcard__link .icon { transform: translateX(4px); }

/* ---------- Tour listing card (full) ---------- */
.tour-card {
    background: var(--ink-soft); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
    display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card__media { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__duration {
    position: absolute; top: 14px; left: 14px; background: rgba(10,10,11,.78); backdrop-filter: blur(4px);
    color: var(--orange-light); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    padding: 6px 12px; border-radius: 4px; display: inline-flex; align-items: center; gap: 6px;
}
.tour-card__body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.tour-card__body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.tour-card__body p { color: var(--stone); font-size: .93rem; text-transform: none; margin: 0 0 16px; }
.tour-card__route { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--steel-light); margin-bottom: 18px; text-transform: none; }
.tour-card__route .icon { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.tour-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.tour-card__price { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.tour-card__price span { font-family: var(--font-body); font-size: .74rem; color: var(--stone); text-transform: uppercase; margin-left: 4px; }
.tour-card__price .was { font-family: var(--font-body); text-decoration: line-through; color: var(--stone); font-size: .82rem; display: block; }

/* ---------- Category quick-jump pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 4px;
    border: 1px solid var(--line); background: var(--ink-soft); font-weight: 700; font-size: .8rem;
    text-transform: uppercase; letter-spacing: .02em; cursor: pointer; color: var(--cream);
    transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.pill:hover, .pill.is-active { transform: translateY(-1px); background: var(--orange); color: var(--ink); border-color: var(--orange); }
.pill .icon { width: 16px; height: 16px; }

/* ---------- USP / feature row ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
    text-align: center; padding: 30px 20px; border-radius: var(--radius); background: rgba(244,237,225,.04);
    border: 1px solid var(--line);
}
.feature__icon {
    width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,106,26,.14); color: var(--orange);
}
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.feature p { font-size: .86rem; color: var(--stone); margin: 0; text-transform: none; }

/* ---------- Safety equipment strip ---------- */
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 780px) { .safety-grid { grid-template-columns: 1fr; } }
.safety-item {
    display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--radius);
    background: var(--ink-soft); border: 1px solid var(--line);
}
.safety-item__icon {
    width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(255,106,26,.14); color: var(--orange);
}
.safety-item strong { display: block; color: var(--white); font-size: .95rem; }
.safety-item span { font-size: .82rem; color: var(--stone); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--ink-soft); color: var(--cream); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.testi p { font-size: .95rem; margin: 14px 0 18px; text-transform: none; color: var(--cream); }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--steel); color: var(--cream);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.testi__who strong { display: block; font-size: .9rem; text-transform: none; color: var(--white); }
.testi__who span { font-size: .78rem; color: var(--stone); }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--ink-softer), var(--ink)); color: var(--white);
    border: 1px solid rgba(255,106,26,.3);
    border-radius: var(--radius-lg); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::after {
    content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,106,26,.14); top: -100px; right: -60px;
}
.cta-band h3 { color: var(--white); margin-bottom: 8px; font-size: 1.9rem; position: relative; z-index: 1; }
.cta-band p { margin: 0; color: rgba(244,237,225,.8); position: relative; z-index: 1; text-transform: none; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: none; border: none; text-align: left; padding: 22px 4px; cursor: pointer;
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--white); text-transform: none;
}
.faq-q .icon { transition: transform .3s var(--ease); color: var(--orange); flex-shrink: 0; }
.faq-item.is-open .faq-q .icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--stone); margin: 0; max-width: 62ch; text-transform: none; }

/* ---------- Forms ---------- */
.form-card {
    background: var(--ink-soft); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: .82rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .02em; color: var(--cream); }
.field .hint { font-weight: 400; color: var(--stone); font-size: .78rem; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
    background: var(--ink); font: inherit; color: var(--cream); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,26,.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check-field { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; cursor: pointer; }
.check-field input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); }
.check-field span { font-size: .88rem; color: var(--stone); text-transform: none; line-height: 1.5; }
.check-field a { color: var(--orange-light); text-decoration: underline; }
.check-field--required span { color: var(--cream); }

.alert {
    border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start;
    font-size: .92rem; text-transform: none;
}
.alert--success { background: rgba(107,114,128,.18); color: var(--steel-light); }
.alert--error { background: rgba(255,106,26,.14); color: var(--orange-light); }
.alert .icon { flex-shrink: 0; margin-top: 2px; }

/* ---------- Misc content blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split p, .split ul { text-transform: none; color: var(--stone); }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 4px;
    background: var(--ink-softer); font-size: .74rem; font-weight: 700; color: var(--stone); text-transform: uppercase; letter-spacing: .02em;
}
.badge .icon { width: 14px; height: 14px; color: var(--orange); }

/* ---------- Promotions ---------- */
.promo-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 3px;
    background: var(--orange); color: var(--ink); font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .04em; animation: promoPulse 2.4s ease-in-out infinite;
}
@keyframes promoPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,106,26,.4); } 50% { box-shadow: 0 0 0 6px rgba(255,106,26,0); } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
    border: 1px solid var(--line);
}
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
.gallery-item__overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,.85) 100%);
    display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span { color: var(--white); font-size: .84rem; font-weight: 600; }
.gallery-item__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px;
    color: var(--white); filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}

/* ---------- Route map page ---------- */
.map-wrap {
    background: var(--ink-soft); border-radius: var(--radius-lg); border: 1px solid var(--line);
    padding: 40px; box-shadow: var(--shadow);
}
.map-stops { display: grid; gap: 16px; margin-top: 36px; }
.map-stop { display: flex; align-items: flex-start; gap: 16px; }
.map-stop__num {
    width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--ink);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.05rem;
    flex-shrink: 0;
}
.map-stop strong { display: block; color: var(--white); font-size: 1rem; }
.map-stop span { font-size: .86rem; color: var(--stone); }

.map-frame-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--ink); }
.map-frame-wrap iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.15) contrast(1.05); }
.map-empty { padding: 60px 24px; text-align: center; color: var(--stone); }

/* ---------- Tour detail page ---------- */
.tour-detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 980px) { .tour-detail-grid { grid-template-columns: 1fr; } }
.tour-detail-hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/7; }
.tour-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-detail-main h2 { font-size: 1.6rem; margin-top: 36px; }
.tour-detail-main > p:first-of-type { font-size: 1.05rem; }

.itinerary-list { display: grid; gap: 18px; counter-reset: step; margin: 0; padding: 0; list-style: none; }
.itinerary-list li { display: flex; gap: 16px; align-items: flex-start; }
.itinerary-list li::before {
    counter-increment: step; content: counter(step); flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    background: var(--orange); color: var(--ink); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem;
}
.itinerary-list li span { padding-top: 4px; color: var(--stone); font-size: .95rem; }

.includes-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.includes-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--stone); }
.includes-list li .icon { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.tour-price-card {
    background: var(--ink-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 28px; position: sticky; top: 100px; box-shadow: var(--shadow);
}
.tour-price-card .amount { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); }
.tour-price-card .amount span { font-family: var(--font-body); font-size: .78rem; color: var(--stone); text-transform: uppercase; }
.tour-price-card .was { text-decoration: line-through; color: var(--stone); font-size: .95rem; }
.tour-price-card .extra-note { font-size: .8rem; color: var(--stone); margin-top: 14px; text-transform: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(244,237,225,.7); padding: 76px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { font-size: .88rem; max-width: 34ch; margin: 16px 0 20px; text-transform: none; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(244,237,225,.08); transition: background-color .2s var(--ease), color .2s var(--ease);
}
.socials a:hover { background: var(--orange); color: var(--ink); }
.footer-col h4 { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .88rem; padding: 6px 0; transition: color .2s var(--ease); text-transform: none; color: rgba(244,237,225,.7); }
.footer-col a:hover { color: var(--orange-light); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; text-transform: none; }
.footer-contact .icon { color: var(--orange); margin-top: 2px; }

.footer-bar {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
    padding: 26px 0 10px; font-size: .8rem; text-transform: none;
}
.footer-credit { text-align: center; white-space: nowrap; }
.credit-link { color: var(--orange-light); font-weight: 600; }
.footer-legal { display: flex; gap: 18px; justify-content: flex-end; }
@media (max-width: 700px) {
    .footer-bar { grid-template-columns: 1fr; text-align: center; }
    .footer-legal { justify-content: center; }
}
.footer-fineprint { font-size: .74rem; color: rgba(244,237,225,.35); text-align: center; margin: 10px 0 0; text-transform: none; }

/* ---------- Cookie bar ---------- */
.cookie-bar {
    position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 640px; margin: 0 auto;
    background: var(--ink-soft); color: var(--cream); border-radius: var(--radius); padding: 20px 24px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--line); z-index: 150; display: flex; flex-direction: column; gap: 14px;
    transform: translateY(140%); transition: transform .4s var(--ease);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: .86rem; text-transform: none; }
.cookie-bar a { color: var(--orange-light); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: .24s; }

/* ---------- Simple content pages (about/contact/legal) ---------- */
.page-hero { background: var(--ink); color: var(--cream); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 4.4vw, 3.4rem); }
.page-hero p { color: rgba(244,237,225,.72); max-width: 56ch; margin: 12px auto 0; text-transform: none; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose p { color: var(--stone); text-transform: none; }
.prose ul { color: var(--stone); text-transform: none; }

.hide-sm { }
@media (max-width: 880px) { .hide-sm { display: none !important; } }
