/* LisboaCards.com — style.css
 * All classes prefixed lc-*. Colors from the Azulejo Blue scheme.
 * Components documented in components.md.
 */

/* -------------------- Design tokens -------------------- */
:root {
    /* Colors */
    --c-primary: #1e5b8e;       /* Azulejo Blue */
    --c-primary-dk: #143f66;
    --c-secondary: #3ba0c9;     /* Tejo turquoise */
    --c-secondary-lt: #e6f3f9;
    --c-accent: #f4b942;        /* Sunlight gold */
    --c-cta: #d94a2a;           /* Terracotta CTA */
    --c-cta-dk: #b83c1e;
    --c-ink: #1a2530;
    --c-ink-2: #4a5967;
    --c-sand: #faf5ec;          /* Cream / heads-up */
    --c-bg: #ffffff;
    --c-line: #e2ecf3;
    --c-line-2: #cbd8e2;

    /* Type scale */
    --f-sans: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    --f-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --fw-med: 600;
    --fw-bold: 700;

    /* Spacing */
    --s-0: 4px;
    --s-1: 8px;
    --s-2: 16px;
    --s-3: 24px;
    --s-4: 32px;
    --s-5: 48px;
    --s-6: 64px;

    /* Radii + shadow */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --sh-1: 0 2px 6px rgba(20, 60, 100, 0.06);
    --sh-2: 0 8px 24px rgba(20, 60, 100, 0.10);

    /* Layout */
    --w-max: 1120px;
    --stickybar-h: 60px;
}

/* -------------------- Base -------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--f-sans);
    color: var(--c-ink);
    background: var(--c-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--stickybar-h) + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    color: var(--c-ink);
    line-height: 1.2;
    margin: 0 0 var(--s-2);
    font-weight: var(--fw-bold);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(30px, 4.5vw, 48px); font-family: var(--f-display); font-weight: 700; letter-spacing: -0.015em; line-height: 1.1; }
.lc-hero-text h1, .lc-subhero h1 { font-family: var(--f-display); font-weight: 700; }
h2 { font-size: clamp(24px, 3.2vw, 34px); }
h3 { font-size: clamp(19px, 2.4vw, 24px); }

p { margin: 0 0 var(--s-2); }

.lc-body { min-height: 100vh; }
.lc-main { display: block; }
.lc-skip {
    position: absolute; left: -9999px; top: 0;
}
.lc-skip:focus { left: var(--s-2); top: var(--s-2); background: var(--c-bg); padding: 8px 12px; z-index: 100; }

/* -------------------- Buttons -------------------- */
.lc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 22px;
    border-radius: var(--r-md);
    font-weight: var(--fw-bold);
    font-size: 16px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: transform 0.1s, background 0.15s;
    line-height: 1.1;
    white-space: nowrap;
}
.lc-btn:hover { text-decoration: none; }
.lc-btn-cta {
    background: var(--c-cta);
    color: #fff;
    box-shadow: 0 2px 6px rgba(217, 74, 42, 0.3);
}
.lc-btn-cta:hover { background: var(--c-cta-dk); color: #fff; }
.lc-btn-cta:active { transform: translateY(1px); }
.lc-btn-secondary {
    background: #fff;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
}
.lc-btn-secondary:hover { background: var(--c-primary); color: #fff; }
.lc-btn-block { width: 100%; }
.lc-btn-lg { padding: 16px 26px; font-size: 17px; }
.lc-btn-sm { padding: 10px 14px; font-size: 14px; white-space: normal; text-align: center; line-height: 1.25; }

/* -------------------- Layout -------------------- */
.lc-container {
    max-width: var(--w-max);
    margin: 0 auto;
    padding: 0 var(--s-3);
}
.lc-section { padding: var(--s-6) var(--s-3); }
.lc-section-inner { max-width: var(--w-max); margin: 0 auto; }
.lc-section-alt { background: var(--c-sand); }

/* -------------------- Trust bar -------------------- */
.lc-trustbar {
    background: var(--c-primary-dk);
    color: #eaf3fa;
    font-size: 13px;
    padding: var(--s-1) var(--s-3);
}
.lc-trustbar-inner {
    max-width: var(--w-max); margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: var(--s-3);
    justify-content: center; align-items: center;
}
.lc-trust { display: inline-flex; gap: 6px; align-items: center; }
.lc-trust-i { color: var(--c-accent); }

/* Desktop: show desktop variant, hide mobile variant */
.lc-trustbar--mobile { display: none; }

/* -------------------- Header -------------------- */
.lc-header {
    background: #fff; border-bottom: 1px solid var(--c-line);
    position: sticky; top: 0; z-index: 40;
}
.lc-header-inner {
    max-width: var(--w-max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--s-2) var(--s-3);
    gap: var(--s-3);
}
.lc-logo {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--c-ink); text-decoration: none;
    font-family: var(--f-display);
    font-weight: 500; font-size: 26px;
    letter-spacing: 0.005em; line-height: 1;
}
.lc-logo:hover { text-decoration: none; }
.lc-logo-mark {
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(20, 60, 100, 0.15), inset 0 1px 0 rgba(255,255,255,0.10);
}
.lc-logo-mark::before {
    /* Subtle azulejo-tile inspired diagonal shine */
    content: "";
    position: absolute;
    inset: -50%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.08) 45%, transparent 55%);
    pointer-events: none;
}
.lc-logo-mark::after {
    /* Small accent dot bottom-right — azulejo corner tile hint */
    content: "";
    position: absolute;
    width: 6px; height: 6px;
    background: var(--c-accent);
    bottom: 5px; right: 5px;
    border-radius: 1.5px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}
.lc-logo-mark--sm {
    width: 30px; height: 30px; font-size: 22px; border-radius: 7px;
}
.lc-logo-mark--sm::after { width: 4px; height: 4px; bottom: 3px; right: 3px; border-radius: 1px; }
.lc-logo-text {
    display: inline-flex; align-items: baseline; gap: 4px;
    font-family: var(--f-display);
    font-weight: 500;
    color: var(--c-ink);
}
.lc-logo-text-lisboa {
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.lc-logo-text-cards {
    font-style: normal;
    font-weight: 500;
    color: var(--c-primary);
    letter-spacing: 0.02em;
}
.lc-nav { display: flex; gap: var(--s-3); }
.lc-nav a {
    color: var(--c-ink); font-size: 15px; font-weight: var(--fw-med);
    padding: 6px 2px; border-bottom: 2px solid transparent;
}
.lc-nav a:hover { color: var(--c-primary); text-decoration: none; }
.lc-nav a[aria-current="page"] { color: var(--c-primary); border-bottom-color: var(--c-primary); }
.lc-langswitch { display: flex; align-items: center; }
.lc-langs-list {
    display: flex; list-style: none; padding: 0; margin: 0; gap: 6px;
}
.lc-langs-list a {
    display: inline-block; padding: 4px 6px; font-size: 12px; color: var(--c-ink-2);
    border-radius: 4px; font-weight: var(--fw-med);
}
.lc-langs-list a:hover { color: var(--c-primary); background: var(--c-secondary-lt); text-decoration: none; }
.lc-langs-list a[aria-current="true"] { color: var(--c-primary); background: var(--c-secondary-lt); }
.lc-langs-select {
    display: none; padding: 6px 8px; border-radius: 6px; border: 1px solid var(--c-line-2);
    background: #fff; font-family: inherit; font-size: 14px;
}
.lc-menu-toggle {
    display: none; background: none; border: none;
    width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; cursor: pointer;
}
.lc-menu-toggle span {
    display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 1px; margin: 0 auto;
}
.lc-mobile-nav {
    display: none; padding: var(--s-2) var(--s-3);
    border-top: 1px solid var(--c-line); background: #fff;
    flex-direction: column; gap: var(--s-2);
}
.lc-mobile-nav.is-open { display: flex; }
.lc-mobile-nav a {
    color: var(--c-ink); font-weight: var(--fw-med); padding: 8px 0;
    border-bottom: 1px solid var(--c-line);
}

/* -------------------- Hero -------------------- */
.lc-hero {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 60%, #0d2a44 100%);
    color: #fff;
    padding: var(--s-6) var(--s-3);
    position: relative;
    overflow: hidden;
    min-height: 480px;
}
.lc-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(1200px 400px at 80% -100px, rgba(59, 160, 201, 0.3), transparent 60%);
    pointer-events: none;
}
/* Hero variant with background photo */
.lc-hero--bg { padding: var(--s-6) var(--s-3); }
.lc-hero-bg-picture {
    position: absolute; inset: 0; display: block;
    width: 100%; height: 100%;
    z-index: 0;
}
.lc-hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 55%;
    display: block;
}
.lc-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg,
        rgba(20, 63, 102, 0.90) 0%,
        rgba(20, 63, 102, 0.80) 50%,
        rgba(20, 63, 102, 0.55) 100%);
}
.lc-hero--bg .lc-hero-inner { position: relative; z-index: 2; }
.lc-check { color: var(--c-accent); font-weight: 800; margin-right: 2px; }
.lc-hero-inner {
    max-width: var(--w-max); margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-5);
    align-items: center; position: relative;
}
.lc-hero-text h1 { color: #fff; margin-bottom: var(--s-3); }
.lc-hero-text .lc-hero-sub {
    font-size: 18px; color: #dbe8f2; margin-bottom: var(--s-3);
}
.lc-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s-3); }
.lc-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, 0.12); color: #fff;
    padding: 6px 12px; border-radius: 20px;
    font-size: 13px; font-weight: var(--fw-med);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.lc-hero-badge .lc-star { color: var(--c-accent); }

/* Hero card (right side) */
.lc-hero-card {
    background: #fff; color: var(--c-ink);
    border-radius: var(--r-lg);
    padding: var(--s-3);
    box-shadow: var(--sh-2);
}
.lc-hero-card-header {
    display: flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-3);
}
.lc-hero-card-img {
    width: 120px; height: auto; aspect-ratio: 155/100;
    object-fit: cover; border-radius: 6px; background: #f4f7fa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.lc-hero-card-title { font-weight: var(--fw-bold); font-size: 16px; color: var(--c-ink); margin: 0; line-height: 1.25; }
.lc-hero-card-sub { color: var(--c-ink-2); font-size: 13px; margin: 2px 0 0; }
.lc-hero-card-h3 { font-size: 15px; color: var(--c-ink-2); font-weight: var(--fw-med); margin: 0 0 var(--s-2); text-transform: uppercase; letter-spacing: 0.04em; }

.lc-price-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-1); margin-bottom: var(--s-2); }
.lc-price-option {
    padding: 12px 8px; border: 2px solid var(--c-line); border-radius: var(--r-md);
    text-align: center; background: #fff;
    color: var(--c-ink);
    transition: border-color 0.15s, background 0.15s;
}
.lc-price-option:hover { border-color: var(--c-secondary); text-decoration: none; }
.lc-price-option-dur { display: block; font-size: 13px; color: var(--c-ink-2); font-weight: var(--fw-med); }
.lc-price-option-price { display: block; font-size: 22px; font-weight: var(--fw-bold); color: var(--c-primary); margin-top: 2px; }
.lc-price-option-per { display: block; font-size: 11px; color: var(--c-ink-2); margin-top: 2px; }
.lc-hero-card-cta { margin-top: var(--s-2); }
.lc-hero-card-note { font-size: 12px; color: var(--c-ink-2); text-align: center; margin-top: var(--s-1); }
.lc-hero-card-note .lc-dot { color: var(--c-line-2); }

/* -------------------- Honest heads-up (when not to buy) -------------------- */
.lc-headsup {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
    margin-top: var(--s-4);
}
.lc-headsup-card {
    background: var(--c-sand);
    border: 1px dashed var(--c-line-2);
    border-radius: var(--r-md);
    padding: var(--s-3);
    color: var(--c-ink);
    position: relative;
}
.lc-headsup-icon {
    position: absolute; top: -14px; left: 20px;
    width: 32px; height: 32px; border-radius: 50%;
    background: #fff;
    border: 1px solid var(--c-line-2);
    color: var(--c-ink-2);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px;
}
.lc-headsup-card h3 { color: var(--c-ink); font-size: 17px; margin-top: 6px; margin-bottom: var(--s-1); }
.lc-headsup-card p { color: var(--c-ink); font-size: 14px; line-height: 1.6; margin: 0; }
.lc-headsup-cta { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-top: var(--s-2); }
.lc-headsup-cta .lc-btn { flex: 1 1 auto; min-width: 130px; }

/* -------------------- Section title -------------------- */
.lc-sect-title { text-align: center; margin-bottom: var(--s-4); }
.lc-sect-title p { color: var(--c-ink-2); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* -------------------- Price table -------------------- */
.lc-price-table {
    width: 100%; max-width: 720px; margin: 0 auto;
    border-collapse: separate; border-spacing: 0;
    background: #fff; border-radius: var(--r-md);
    overflow: hidden; box-shadow: var(--sh-1);
}
.lc-price-table th, .lc-price-table td {
    padding: 14px 16px; text-align: left;
}
.lc-price-table thead th {
    background: var(--c-primary); color: #fff;
    font-weight: var(--fw-med); font-size: 15px;
}
.lc-price-table tbody tr { border-bottom: 1px solid var(--c-line); }
.lc-price-table tbody tr:last-child { border-bottom: none; }
.lc-price-table tbody td { font-size: 16px; color: var(--c-ink); }
.lc-price-table tbody td:first-child { font-weight: var(--fw-med); }
.lc-price-table tbody tr:nth-child(even) { background: var(--c-secondary-lt); }
.lc-pt-live-note,
.lc-pt-note {
    text-align: center; margin-top: var(--s-2); font-size: 14px; color: var(--c-ink-2); max-width: 640px; margin-left: auto; margin-right: auto;
}

/* -------------------- How it works (3 steps) -------------------- */
.lc-howit {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
    margin-top: var(--s-4);
}
.lc-howit-step {
    position: relative;
    background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
    padding: var(--s-3) var(--s-3) var(--s-3);
    color: var(--c-ink);
}
.lc-howit-num {
    position: absolute; top: -18px; left: 20px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--c-accent); color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px;
    box-shadow: 0 3px 8px rgba(20, 60, 100, 0.15);
}
.lc-howit-step h3 { color: var(--c-primary); margin-top: var(--s-1); margin-bottom: var(--s-1); font-size: 20px; }
.lc-howit-step p { color: var(--c-ink); margin: 0; font-size: 15px; line-height: 1.6; }

/* -------------------- Break-even scenarios -------------------- */
.lc-scen {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3);
    margin-top: var(--s-4);
}
.lc-scen-card {
    background: #fff; border-radius: var(--r-md); padding: var(--s-3);
    box-shadow: var(--sh-1);
    border-top: 4px solid var(--c-accent);
    color: var(--c-ink);
    display: flex; flex-direction: column;
}
.lc-scen-title {
    font-family: var(--f-display); font-weight: 700;
    color: var(--c-primary-dk);
    font-size: 22px; letter-spacing: -0.01em;
    margin-bottom: var(--s-1);
}
.lc-scen-desc {
    color: var(--c-ink-2); font-size: 15px; line-height: 1.55;
    margin-bottom: var(--s-3);
}

/* Structured breakdown table */
.lc-scen-breakdown {
    background: #fbfcfd;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: var(--s-3);
}
.lc-scen-breakdown-head {
    background: var(--c-secondary-lt);
    color: var(--c-primary-dk);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 14px;
    border-bottom: 1px solid var(--c-line);
}
.lc-scen-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 14px;
    font-size: 14px;
    color: var(--c-ink);
}
.lc-scen-row + .lc-scen-row {
    border-top: 1px solid var(--c-line);
}
.lc-scen-row-label { flex: 1; padding-right: 12px; }
.lc-scen-row-price {
    font-variant-numeric: tabular-nums;
    font-weight: var(--fw-med);
    color: var(--c-ink);
    white-space: nowrap;
}
.lc-scen-row--total {
    background: var(--c-sand);
    border-top: 2px solid var(--c-line-2) !important;
    padding: 12px 14px;
    font-weight: var(--fw-bold);
}
.lc-scen-row--total .lc-scen-row-label {
    color: var(--c-ink);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.lc-scen-row--total .lc-scen-row-price {
    font-size: 17px;
    color: var(--c-primary-dk);
}

/* With-card result block */
.lc-scen-result {
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-dk) 60%, #0d2a44 100%);
    color: #fff;
    border-radius: var(--r-md);
    padding: var(--s-3);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}
.lc-scen-result::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(500px 200px at 30% 20%, rgba(59, 160, 201, 0.35), transparent 65%);
    pointer-events: none;
}
.lc-scen-result-label {
    position: relative;
    font-family: var(--f-display); font-style: italic; font-weight: 500;
    color: #cfe0ee;
    font-size: 14px;
    margin-bottom: 4px;
}
.lc-scen-result-price {
    position: relative;
    font-family: var(--f-display); font-weight: 700;
    color: #fff;
    font-size: 44px; line-height: 1;
    margin-bottom: var(--s-2);
    letter-spacing: -0.02em;
}
.lc-scen-save-badge {
    position: relative;
    display: inline-flex; align-items: baseline; gap: 8px;
    background: var(--c-accent);
    color: var(--c-ink);
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: var(--s-2);
    box-shadow: 0 2px 8px rgba(244, 185, 66, 0.35);
}
.lc-scen-save-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--c-ink);
}
.lc-scen-save-amount {
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--c-cta-dk);
}
.lc-scen-bonus {
    position: relative;
    color: #eaf2f8;
    font-family: var(--f-display); font-style: italic;
    font-size: 14px;
    margin: 0;
}

.lc-scen-disclaimer {
    text-align: center; margin-top: var(--s-3); font-size: 13px; color: var(--c-ink-2);
    font-style: italic;
}

/* -------------------- Attractions grid -------------------- */
.lc-attr-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2);
    margin-top: var(--s-4);
}
.lc-attr-card {
    background: #fff; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--sh-1);
    color: var(--c-ink);
    display: flex; flex-direction: column;
}
.lc-attr-card:hover { text-decoration: none; }
.lc-attr-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #eef4f9;
}
.lc-attr-card-body { padding: var(--s-2); }
.lc-attr-card-title {
    font-weight: var(--fw-bold); font-size: 15px; margin-bottom: 4px; color: var(--c-ink);
}
.lc-attr-card-desc { color: var(--c-ink-2); font-size: 13px; line-height: 1.45; margin: 0; }
.lc-attr-cta { text-align: center; margin-top: var(--s-4); }

/* -------------------- Included blocks -------------------- */
.lc-incl {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
    margin-top: var(--s-4);
}
.lc-incl-card {
    background: #fff; border-radius: var(--r-md); padding: var(--s-3);
    box-shadow: var(--sh-1); border-top: 4px solid var(--c-secondary);
    color: var(--c-ink);
}
.lc-incl-card h3 { color: var(--c-primary); margin-bottom: var(--s-1); }
.lc-incl-card p { color: var(--c-ink-2); margin: 0; }

/* -------------------- Reviews -------------------- */
.lc-reviews {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-2);
    margin-top: var(--s-4);
}
.lc-review-card {
    background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
    padding: var(--s-3);
    color: var(--c-ink);
}
.lc-review-stars {
    color: var(--c-accent); letter-spacing: 1px; font-size: 15px; margin-bottom: 6px;
}
.lc-review-text {
    color: var(--c-ink); font-size: 15px; line-height: 1.55; margin: 0 0 var(--s-1);
}
.lc-review-meta { color: var(--c-ink-2); font-size: 13px; }
.lc-rating-line { text-align: center; font-size: 15px; color: var(--c-ink-2); margin-top: var(--s-3); }
.lc-rating-line strong { color: var(--c-ink); }

/* -------------------- Reservation warning -------------------- */
.lc-warnband {
    background: var(--c-sand); border-radius: var(--r-md);
    padding: var(--s-4); border-left: 5px solid var(--c-cta);
    max-width: 900px; margin: 0 auto;
    color: var(--c-ink);
}
.lc-warnband h2 { color: var(--c-cta-dk); margin-bottom: var(--s-2); font-size: 22px; }
.lc-warnband p { color: var(--c-ink); font-size: 16px; margin-bottom: var(--s-2); }
.lc-warnband a {
    display: inline-block; font-weight: var(--fw-bold); color: var(--c-cta-dk);
    text-decoration: underline;
}

/* -------------------- FAQ (accordion) -------------------- */
.lc-faq { max-width: 820px; margin: var(--s-4) auto 0; }
.lc-faq-item {
    border-bottom: 1px solid var(--c-line);
}
.lc-faq-item summary {
    padding: var(--s-3) var(--s-2); font-weight: var(--fw-bold); font-size: 17px;
    cursor: pointer; color: var(--c-ink);
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-2);
}
.lc-faq-item summary::-webkit-details-marker { display: none; }
.lc-faq-item summary::after {
    content: "+"; color: var(--c-primary); font-size: 22px; font-weight: var(--fw-bold);
    transition: transform 0.2s;
}
.lc-faq-item[open] summary::after { content: "−"; }
.lc-faq-item-body {
    padding: 0 var(--s-2) var(--s-3);
    color: var(--c-ink); font-size: 16px; line-height: 1.65;
}
.lc-faq-more { text-align: center; margin-top: var(--s-3); }

/* -------------------- Closing CTA -------------------- */
.lc-cta-band {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
    color: #fff; padding: var(--s-6) var(--s-3);
    text-align: center;
}
.lc-cta-band h2 { color: #fff; margin-bottom: var(--s-2); }
.lc-cta-band p { color: #dbe8f2; max-width: 600px; margin: 0 auto var(--s-3); font-size: 17px; }

/* -------------------- Sticky bar -------------------- */
.lc-stickybar {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: var(--c-primary-dk); color: #fff;
    z-index: 60;
    box-shadow: 0 -4px 12px rgba(20, 40, 60, 0.15);
    padding: var(--s-1) var(--s-3);
    padding-bottom: calc(var(--s-1) + env(safe-area-inset-bottom, 0px));
}
.lc-stickybar-inner {
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap;
    align-items: center; justify-content: space-between; gap: var(--s-2);
    max-width: var(--w-max); margin: 0 auto;
    min-height: var(--stickybar-h);
}
.lc-stickybar-text { color: #fff; font-weight: var(--fw-med); font-size: 15px; }
.lc-stickybar-btn { padding: 10px 18px; font-size: 15px; }

/* -------------------- Footer -------------------- */
.lc-footer {
    background: #0d2a44; color: #cfe0ee;
    padding: var(--s-5) var(--s-3);
}
.lc-footer-inner {
    max-width: var(--w-max); margin: 0 auto;
    display: flex; flex-direction: column; gap: var(--s-2);
}
.lc-footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.lc-footer-brand-name { font-family: var(--f-display); font-weight: 500; font-size: 17px; letter-spacing: 0.01em; }
.lc-footer-brand-text { color: #eaf2f8; }
.lc-footer-about { font-size: 14px; color: #b9cad9; max-width: 720px; margin: 0; }
.lc-footer-links { font-size: 14px; }
.lc-footer-links a { color: #cfe0ee; text-decoration: underline; }
.lc-sep { color: #6b8397; }
.lc-partner-note { color: #b9cad9; }

/* -------------------- Sub-page hero -------------------- */
.lc-subhero {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
    color: #fff; padding: var(--s-6) var(--s-3) var(--s-5);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.lc-subhero-bg {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 55%;
    display: block;
}
.lc-subhero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg,
        rgba(20, 63, 102, 0.90) 0%,
        rgba(20, 63, 102, 0.78) 50%,
        rgba(20, 63, 102, 0.55) 100%);
}
.lc-subhero-inner {
    position: relative; z-index: 2;
    max-width: var(--w-max); margin: 0 auto; width: 100%;
}
.lc-subhero h1 { color: #fff; margin-bottom: var(--s-2); text-shadow: 0 2px 12px rgba(20,40,60,0.35); }
.lc-subhero p { color: #eaf2f8; max-width: 720px; margin: 0; font-size: 17px; text-shadow: 0 1px 4px rgba(20,40,60,0.4); }
.lc-subhero-crumb {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.75); font-size: 13px; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 10px;
}
.lc-subhero-crumb-tag {
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.22);
    padding: 3px 10px; border-radius: 999px;
    font-family: var(--f-display); font-style: italic;
    text-transform: none; letter-spacing: 0;
    font-size: 13px;
}

/* -------------------- Photo tiles (transport gallery) -------------------- */
.lc-photo-tile {
    margin: 0;
    background: #fff; border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-1);
}
.lc-photo-tile img {
    width: 100%; height: 200px;
    object-fit: cover; display: block;
}
.lc-photo-tile figcaption {
    padding: 10px 14px; font-size: 14px; color: var(--c-ink);
    font-weight: var(--fw-med);
    background: #fff;
}
.lc-attr-grid--transport { grid-template-columns: repeat(4, 1fr); }

/* -------------------- Inline photo in prose (side or center) -------------------- */
.lc-inline-photo {
    margin: var(--s-2) 0;
    max-width: 460px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-1);
    background: #fff;
}
.lc-inline-photo img {
    width: 100%; height: 260px;
    object-fit: cover; display: block;
}
.lc-inline-photo--right {
    float: right;
    margin: 0 0 var(--s-2) var(--s-3);
    max-width: 380px;
}
.lc-inline-photo--right img { height: 220px; }

/* -------------------- Tip photo (legacy — kept for other pages) -------------------- */
.lc-tip-photo {
    margin: var(--s-3) 0 var(--s-3);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-1);
    background: #fff;
}
.lc-tip-photo img {
    width: 100%; height: 280px;
    object-fit: cover; display: block;
}
.lc-tip-photo figcaption {
    padding: 12px 16px; font-size: 14px; color: var(--c-ink-2);
    font-style: italic; font-family: var(--f-display);
    background: var(--c-sand);
}

/* -------------------- Tips page: category legend -------------------- */
.lc-tips-legend {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin: 0 auto var(--s-5);
    max-width: 780px;
}

/* -------------------- Tips page: category chips (used both in legend and card) -------------------- */
.lc-tip-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px 5px 10px;
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}
.lc-tip-chip-icon {
    font-family: var(--f-display); font-style: normal;
    font-size: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.lc-tip-chip--money       { background: #fef2d3; color: #8a5a00; }
.lc-tip-chip--money .lc-tip-chip-icon { background: var(--c-accent); color: var(--c-ink); }
.lc-tip-chip--timing      { background: #e6f3f9; color: var(--c-primary-dk); }
.lc-tip-chip--timing .lc-tip-chip-icon { background: var(--c-secondary); color: #fff; }
.lc-tip-chip--reservation { background: #fce8e0; color: var(--c-cta-dk); }
.lc-tip-chip--reservation .lc-tip-chip-icon { background: var(--c-cta); color: #fff; }
.lc-tip-chip--practical   { background: #eaf2ea; color: #2b6b2b; }
.lc-tip-chip--practical .lc-tip-chip-icon { background: #4a8a4a; color: #fff; }
.lc-tip-chip--flavour     { background: #f3ebe0; color: #6b4a25; }
.lc-tip-chip--flavour .lc-tip-chip-icon { background: #b98c5a; color: #fff; }

/* -------------------- Tips page: tip cards -------------------- */
.lc-tips {
    max-width: 820px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    gap: var(--s-4);
}
.lc-tip {
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--sh-1);
    padding: var(--s-4) var(--s-4) var(--s-3);
    position: relative;
    color: var(--c-ink);
    border-left: 4px solid var(--c-line-2);
    transition: transform 0.15s, box-shadow 0.15s;
}
.lc-tip:hover { transform: translateY(-1px); box-shadow: var(--sh-2); }
.lc-tip--money       { border-left-color: var(--c-accent); }
.lc-tip--timing      { border-left-color: var(--c-secondary); }
.lc-tip--reservation { border-left-color: var(--c-cta); }
.lc-tip--practical   { border-left-color: #4a8a4a; }
.lc-tip--flavour     { border-left-color: #b98c5a; }

.lc-tip-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s-2); margin-bottom: var(--s-2);
}
.lc-tip-num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    color: var(--c-ink-2);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    opacity: 0.55;
}
.lc-tip-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--c-primary-dk);
    margin: 0 0 var(--s-2);
}
.lc-tip-body {
    color: var(--c-ink);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}
.lc-tip-body a {
    color: var(--c-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.lc-tip-figure {
    margin: var(--s-3) calc(var(--s-4) * -1) 0;
    background: var(--c-sand);
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.lc-tip-figure img {
    width: 100%; height: 260px;
    object-fit: cover; display: block;
    margin: 0;
}
.lc-tip-figure figcaption {
    padding: 10px 22px;
    font-family: var(--f-display); font-style: italic;
    font-size: 13px; color: var(--c-ink-2);
    background: var(--c-sand);
}

/* -------------------- Tips page: bonus two days -------------------- */
.lc-bonus-days {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3);
    max-width: 900px; margin: 0 auto;
}
.lc-bonus-day {
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--sh-1);
    padding: var(--s-3);
    border-top: 4px solid var(--c-accent);
    color: var(--c-ink);
    display: flex; flex-direction: column;
}
.lc-bonus-day-num {
    display: inline-block;
    background: var(--c-primary-dk);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: var(--s-1);
}
.lc-bonus-day-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--c-primary-dk);
    margin: 0 0 var(--s-2);
    letter-spacing: -0.01em;
}
.lc-bonus-day-list {
    list-style: none;
    counter-reset: bonus;
    padding: 0;
    margin: 0;
    display: flex; flex-direction: column;
    gap: 8px;
}
.lc-bonus-day-list li {
    counter-increment: bonus;
    position: relative;
    padding-left: 32px;
    color: var(--c-ink);
    font-size: 14px;
    line-height: 1.55;
}
.lc-bonus-day-list li::before {
    content: counter(bonus);
    position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    background: var(--c-secondary-lt);
    color: var(--c-primary-dk);
    border-radius: 50%;
    font-family: var(--f-display); font-weight: 700;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lc-bonus-note {
    max-width: 780px;
    margin: var(--s-4) auto 0;
    text-align: center;
    font-family: var(--f-display); font-style: italic;
    font-size: 15px; line-height: 1.65;
    color: var(--c-ink);
}

/* -------------------- "See all" card (attractions preview last tile) -------------------- */
.lc-attr-card--cta {
    background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-dk) 55%, #0d2a44 100%);
    color: #fff;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: var(--s-3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.lc-attr-card--cta::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 200px at 30% 20%, rgba(59, 160, 201, 0.4), transparent 65%);
}
.lc-attr-card--cta:hover { text-decoration: none; }
.lc-attr-card-cta-badge {
    position: relative;
    background: var(--c-accent); color: var(--c-ink);
    font-weight: 800; font-size: 12px; letter-spacing: 0.15em;
    padding: 5px 14px; border-radius: 999px; margin-bottom: var(--s-2);
    text-transform: uppercase;
}
.lc-attr-card-cta-title {
    position: relative;
    font-family: var(--f-display); font-weight: 700; font-size: 26px;
    color: #fff; margin-bottom: var(--s-1);
}
.lc-attr-card-cta-desc {
    position: relative;
    color: #dbe8f2; font-size: 14px; margin-bottom: var(--s-3); line-height: 1.55;
}
.lc-attr-card-cta-arrow {
    position: relative;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 18px; border-radius: 999px;
    font-weight: var(--fw-med); font-size: 14px; color: #fff;
}

/* -------------------- Opening-hours grid (reservation page) -------------------- */
.lc-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
    max-width: 900px;
    margin: 0 auto;
}
.lc-hours-card {
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--sh-1);
    padding: var(--s-3);
    border-top: 4px solid var(--c-primary);
    display: flex;
    flex-direction: column;
    color: var(--c-ink);
}
.lc-hours-title {
    font-family: var(--f-display);
    font-weight: 700;
    color: var(--c-primary-dk);
    font-size: 22px;
    letter-spacing: -0.01em;
    margin: 0 0 var(--s-2);
    padding-bottom: var(--s-2);
    border-bottom: 1px solid var(--c-line);
}
.lc-hours-block {
    margin-bottom: var(--s-3);
}
.lc-hours-block:last-of-type {
    margin-bottom: var(--s-2);
}
.lc-hours-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-primary-dk);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lc-hours-label span[aria-hidden] {
    display: inline-block;
    width: 18px;
    text-align: center;
    color: var(--c-accent);
    font-size: 14px;
    letter-spacing: 0;
}
.lc-hours-rows {
    background: #fbfcfd;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    overflow: hidden;
}
.lc-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--c-ink);
}
.lc-hours-row + .lc-hours-row {
    border-top: 1px solid var(--c-line);
}
.lc-hours-row > span:first-child {
    color: var(--c-ink-2);
    font-weight: var(--fw-med);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.lc-hours-row > span:last-child {
    font-variant-numeric: tabular-nums;
    font-weight: var(--fw-med);
    color: var(--c-ink);
}
.lc-hours-note-small {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--c-ink-2);
    font-style: italic;
    font-family: var(--f-display);
}
.lc-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}
.lc-hours-list li {
    font-size: 14px;
    color: var(--c-ink);
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}
.lc-hours-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--c-cta);
}
.lc-hours-list li small {
    display: block;
    color: var(--c-ink-2);
    font-size: 11px;
    line-height: 1.35;
    margin-top: 2px;
}
.lc-hours-addr {
    font-style: normal;
    font-size: 14px;
    color: var(--c-ink);
    background: #fbfcfd;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.55;
}
.lc-hours-source {
    margin: auto 0 0;
    padding-top: var(--s-2);
    border-top: 1px solid var(--c-line);
    font-size: 12px;
    color: var(--c-ink-2);
    font-style: italic;
    font-family: var(--f-display);
}
.lc-hours-source a {
    color: var(--c-primary);
    text-decoration: underline;
}
.lc-hours-highlight {
    background: linear-gradient(135deg, #fff8e6 0%, #fef2d3 100%);
    border-left: 3px solid var(--c-accent);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--c-ink);
    line-height: 1.55;
    margin-top: auto;
}
.lc-hours-highlight strong {
    color: var(--c-cta-dk);
}

/* -------------------- Prose (for legal pages, tips etc) -------------------- */
.lc-prose { max-width: 800px; margin: 0 auto; }
.lc-prose h2 { margin-top: var(--s-5); }
.lc-prose h3 { margin-top: var(--s-4); }
.lc-prose ul, .lc-prose ol { padding-left: var(--s-3); }
.lc-prose li { margin-bottom: 6px; }

/* -------------------- Attraction long list -------------------- */
.lc-attr-list-h3 { color: var(--c-primary); margin-top: var(--s-4); }
.lc-attr-cols {
    columns: 2; column-gap: var(--s-4);
    background: #fff;
}
.lc-attr-cols li { margin-bottom: 6px; break-inside: avoid; }
.lc-note {
    color: var(--c-ink-2); font-size: 13px; margin-left: 8px;
    background: var(--c-secondary-lt); padding: 2px 6px; border-radius: 4px;
}
.lc-note-warn { background: #fce8e0; color: var(--c-cta-dk); }
.lc-note-free { background: #eaf2ea; color: #2b6b2b; }

/* -------------------- Deep attraction cards (attractions page) -------------------- */
.lc-attr-deep { display: flex; flex-direction: column; gap: var(--s-4); }
.lc-attr-deep-card {
    display: grid; grid-template-columns: 380px 1fr; gap: var(--s-3);
    background: #fff; border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--sh-1);
    color: var(--c-ink);
}
.lc-attr-deep-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-attr-deep-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: var(--s-3);
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 55%, #0d2a44 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lc-attr-deep-placeholder::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px 200px at 20% 20%, rgba(59, 160, 201, 0.35), transparent 60%);
}
.lc-attr-deep-placeholder-badge {
    position: relative;
    background: var(--c-accent); color: var(--c-ink);
    font-weight: 800; font-size: 13px; letter-spacing: 0.15em;
    padding: 4px 12px; border-radius: 999px;
    margin-bottom: var(--s-2);
}
.lc-attr-deep-placeholder-name {
    position: relative;
    font-size: 22px; font-weight: 700; line-height: 1.2;
    color: #fff;
    max-width: 280px;
}
.lc-attr-deep-card--noimg .lc-attr-deep-body { padding-left: var(--s-3); }
.lc-attr-deep-body { padding: var(--s-3) var(--s-3) var(--s-3) 0; }
.lc-attr-deep-body h3 { color: var(--c-primary); font-size: 22px; margin-bottom: var(--s-1); }
.lc-attr-deep-meta {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: var(--s-2);
}
.lc-attr-deep-time { color: var(--c-ink-2); font-size: 13px; }
.lc-attr-deep-desc { color: var(--c-ink); font-size: 15px; line-height: 1.65; margin-bottom: var(--s-2); }
.lc-attr-deep-info {
    border-top: 1px solid var(--c-line);
    padding-top: var(--s-2);
    color: var(--c-ink-2); font-size: 14px;
}
.lc-attr-deep-info > div { margin-bottom: 4px; }
.lc-note-save { background: #fce8e0; color: var(--c-cta-dk); }

/* -------------------- Compare table (public transport) -------------------- */
.lc-mode-table {
    width: 100%; max-width: 900px; margin: var(--s-3) auto 0;
    border-collapse: collapse; background: #fff;
    border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-1);
}
.lc-mode-table th, .lc-mode-table td { padding: 12px 14px; border-bottom: 1px solid var(--c-line); }
.lc-mode-table th { background: var(--c-primary); color: #fff; text-align: left; }
.lc-mode-table td { font-size: 15px; }

/* -------------------- Alternative-ticket product cards (reservation page) -------------------- */
.lc-alt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-top: var(--s-4); }
.lc-alt-card {
    background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
    padding: var(--s-3); color: var(--c-ink);
    display: flex; flex-direction: column; gap: var(--s-2);
}
.lc-alt-card-img {
    width: calc(100% + var(--s-3) * 2);
    margin: calc(var(--s-3) * -1) calc(var(--s-3) * -1) 0;
    height: 220px; object-fit: cover;
    border-radius: var(--r-md) var(--r-md) 0 0;
}
.lc-alt-card h3 { color: var(--c-primary); font-size: 20px; margin: 0; }
.lc-alt-card-meta { color: var(--c-ink-2); font-size: 14px; margin: 0; }
.lc-alt-card-price {
    font-size: 26px; font-weight: var(--fw-bold); color: var(--c-primary);
}
.lc-alt-card-price small { font-size: 14px; color: var(--c-ink-2); font-weight: normal; }
.lc-alt-card p { color: var(--c-ink); margin: 0; }
.lc-alt-card-stars { color: var(--c-accent); font-size: 15px; }
.lc-alt-card-stars .lc-rev-count { color: var(--c-ink-2); font-size: 13px; margin-left: 4px; }
.lc-alt-card-cta { margin-top: auto; }

/* -------------------- Small helpers -------------------- */
.lc-center { text-align: center; }
.lc-mb-2 { margin-bottom: var(--s-2); }
.lc-mb-3 { margin-bottom: var(--s-3); }
.lc-mb-4 { margin-bottom: var(--s-4); }

/* -------------------- Responsive -------------------- */
@media (max-width: 899px) {
    .lc-header-inner { padding: var(--s-2); gap: var(--s-1); }
    .lc-nav { display: none; }
    .lc-langs-list { display: none; }
    .lc-langs-select { display: block; }
    .lc-menu-toggle { display: flex; }
    .lc-logo-text { font-size: 17px; }
    .lc-section { padding: var(--s-4) var(--s-2); }
    .lc-hero { padding: var(--s-4) var(--s-2); }
    .lc-hero-inner { grid-template-columns: 1fr; gap: var(--s-3); }
    .lc-hero-text { text-align: center; }
    .lc-hero-badges { justify-content: center; }
    .lc-attr-grid { grid-template-columns: 1fr 1fr; }
    .lc-attr-grid--transport { grid-template-columns: 1fr 1fr; }
    .lc-hours-grid { grid-template-columns: 1fr; }
    .lc-hours-list { grid-template-columns: 1fr 1fr; }
    .lc-bonus-days { grid-template-columns: 1fr; }
    .lc-tip { padding: var(--s-3); }
    .lc-tip-figure { margin: var(--s-3) calc(var(--s-3) * -1) 0; }
    .lc-tip-figure img { height: 200px; }
    .lc-tip-figure figcaption { padding: 10px 16px; }
    .lc-tip-num { font-size: 26px; }
    .lc-tip-title { font-size: 19px; }
    .lc-tips-legend { gap: 6px; }
    .lc-tip-chip { font-size: 11px; padding: 4px 10px 4px 8px; letter-spacing: 0.04em; }
    .lc-inline-photo--right { float: none; margin: var(--s-2) 0; max-width: 100%; }
    .lc-inline-photo img, .lc-inline-photo--right img { height: 200px; }
    .lc-attr-deep-card { grid-template-columns: 1fr; }
    .lc-attr-deep-img img { aspect-ratio: 4/3; height: auto; }
    .lc-attr-deep-body { padding: 0 var(--s-3) var(--s-3); }
    .lc-incl { grid-template-columns: 1fr; }
    .lc-howit { grid-template-columns: 1fr; gap: var(--s-4); }
    .lc-scen { grid-template-columns: 1fr; }
    .lc-headsup { grid-template-columns: 1fr; gap: var(--s-3); }
    .lc-reviews { grid-template-columns: 1fr; }
    .lc-alt-grid { grid-template-columns: 1fr; }
    /* Mobile: full-width image → text under it centered, so nothing looks off-axis */
    .lc-alt-card { text-align: center; align-items: center; }
    .lc-alt-card-stars,
    .lc-alt-card-price { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; }
    .lc-alt-card-cta { width: 100%; }
    .lc-hero-overlay {
        background: linear-gradient(180deg,
            rgba(20, 63, 102, 0.85) 0%,
            rgba(20, 63, 102, 0.90) 60%,
            rgba(20, 63, 102, 0.90) 100%);
    }
    .lc-attr-cols { columns: 1; }
    .lc-trustbar-inner { gap: var(--s-2); font-size: 12px; }
    .lc-stickybar-text { font-size: 13px; }
    .lc-stickybar-btn { padding: 8px 14px; font-size: 14px; }

    /* Mobile: hide the desktop trustbar (rendered at top of body),
       show the mobile trustbar placed after the hero, and lay it out as 2×2. */
    .lc-trustbar--desktop { display: none; }
    .lc-trustbar--mobile { display: block; }
    .lc-trustbar--mobile .lc-trustbar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: var(--s-2);
        column-gap: var(--s-3);
        justify-items: start;
        align-items: center;
    }
    .lc-trustbar--mobile .lc-trust {
        font-size: 12px;
        line-height: 1.35;
    }
}
@media (max-width: 480px) {
    .lc-price-options { grid-template-columns: 1fr; }
    .lc-attr-grid { grid-template-columns: 1fr; }
    .lc-price-table th, .lc-price-table td { padding: 10px 12px; font-size: 14px; }
}
