:root {
    --navy: #08253e;
    --navy-soft: #123b52;
    --teal: #006b6f;
    --teal-dark: #00565a;
    --coral: #e56e45;
    --paper: #fbfcfb;
    --mist: #edf5f4;
    --sand: #f4eee7;
    --line: #d7e0df;
    --ink: #10283b;
    --muted: #5f6e76;
    --white: #ffffff;
    --shadow: 0 16px 45px rgba(10, 40, 57, 0.12);
    --radius: 12px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
}

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

button,
input,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 74px;
    padding: 0 max(24px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(100deg, #061e34 0%, var(--navy) 58%, #0b3049 100%);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 24px rgba(4, 23, 39, 0.19);
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #b9dfdc;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 19px;
    font-weight: 780;
    letter-spacing: -0.035em;
}

.brand-copy small {
    margin-top: 4px;
    color: #a9c1ce;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.site-navigation {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    font-weight: 620;
}

.site-navigation > .nav-direct-link,
.nav-item-label {
    min-height: 42px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    border-radius: 9px;
    transition: color 160ms ease, background 160ms ease;
}

.site-navigation > .nav-direct-link:hover,
.site-navigation > .nav-direct-link:focus-visible,
.nav-item:hover .nav-item-label,
.nav-item:focus-within .nav-item-label,
.nav-item.is-open .nav-item-label {
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

.site-navigation .is-current > .nav-item-label,
.site-navigation > .nav-direct-link.is-current {
    color: #d4f2ef;
    background: rgba(0, 107, 111, 0.28);
}

.nav-button {
    min-height: 42px;
    margin-left: 6px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9px;
    background: var(--coral);
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(118, 44, 22, 0.24);
    transition: transform 160ms ease, background 160ms ease;
}

.nav-button:hover,
.nav-button:focus-visible {
    background: #ee7b51;
    transform: translateY(-1px);
}

.nav-item {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.nav-item-label {
    gap: 3px;
}

.nav-item-label button {
    width: 24px;
    height: 32px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #b5d0db;
    background: transparent;
    border: 0;
    line-height: 1;
}

.nav-chevron {
    width: 10px;
    height: 7px;
    transition: transform 160ms ease;
}

.nav-item.is-open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 70;
    min-width: 292px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid #dce5e4;
    border-radius: 13px;
    box-shadow: 0 24px 60px rgba(3, 25, 40, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(7px);
    transform-origin: top center;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
}

.nav-dropdown-title {
    padding: 8px 10px 7px;
    color: #48616c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.nav-dropdown-list a,
.nav-dropdown-list p {
    margin: 0;
    padding: 10px;
    display: block;
    border-radius: 8px;
}

.nav-dropdown-list a:hover,
.nav-dropdown-list a:focus-visible {
    color: var(--navy);
    background: #edf5f4;
}

.nav-dropdown-list strong,
.nav-dropdown-list small {
    display: block;
}

.nav-dropdown-list small,
.nav-dropdown-list p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.42;
}

.nav-dropdown-list .nav-dropdown-footer {
    margin-top: 6px;
    padding-top: 11px;
    color: var(--teal-dark);
    border-top: 1px solid var(--line);
    border-radius: 0;
    font-size: 12px;
    font-weight: 750;
}

.compact-dropdown {
    right: 0;
    left: auto;
    min-width: 250px;
}

.nav-item-wide {
    position: static;
}

.destinations-dropdown {
    left: max(20px, calc((100vw - 1180px) / 2));
    width: min(920px, calc(100vw - 40px));
    padding: 20px;
}

.nav-dropdown-heading {
    margin-bottom: 16px;
    padding: 0 2px 14px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.nav-dropdown-heading strong,
.nav-dropdown-heading small {
    display: block;
}

.nav-dropdown-heading strong {
    color: var(--navy);
    font-size: 17px;
}

.nav-dropdown-heading small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.nav-dropdown-heading a {
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 700;
}

.destination-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 11px;
}

.country-menu-card {
    min-width: 0;
    padding: 13px;
    background: #f6f9f8;
    border: 1px solid #e1e8e7;
    border-radius: 10px;
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.country-menu-card:hover,
.country-menu-card:focus-within {
    border-color: #b5cfcd;
    box-shadow: 0 10px 24px rgba(10, 40, 57, 0.09);
    transform: translateY(-1px);
}

.country-menu-link {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
}

.country-menu-link > span {
    width: 28px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--teal-dark);
    background: #dceceb;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.country-menu-link strong {
    align-self: center;
    color: var(--navy);
    font-size: 14px;
}

.country-menu-link small {
    grid-column: 1 / -1;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.42;
}

.country-city-links {
    margin-top: 10px;
    padding-top: 7px;
    display: grid;
    border-top: 1px solid #dfe7e6;
}

.country-city-links a {
    position: relative;
    padding: 5px 6px;
    display: grid;
    border-radius: 6px;
}

.country-city-links a:hover,
.country-city-links a:focus-visible {
    background: var(--white);
}

.country-city-links strong {
    color: var(--navy);
    font-size: 12px;
}

.country-city-links small {
    position: absolute;
    top: calc(100% + 3px);
    left: 4px;
    z-index: 3;
    width: 190px;
    padding: 8px;
    color: var(--white);
    background: var(--navy);
    border-radius: 7px;
    font-size: 10px;
    line-height: 1.35;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(3px);
    transition: opacity 130ms ease, transform 130ms ease, visibility 130ms ease;
}

.country-city-links a:hover small,
.country-city-links a:focus-visible small {
    color: var(--white);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-guide-link {
    margin-top: 10px;
    padding-top: 8px;
    display: block;
    color: var(--teal-dark);
    border-top: 1px solid #dfe7e6;
    font-size: 11px;
    font-weight: 750;
}

.menu-button {
    display: none;
    padding: 8px 11px;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
}

.menu-icon {
    width: 16px;
    display: grid;
    gap: 3px;
}

.menu-icon span {
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 540px;
    background: url('../images/discover-europe-hero.png') center right / cover no-repeat;
    overflow: hidden;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(246, 251, 253, 0.96) 0%, rgba(244, 250, 252, 0.84) 30%, rgba(233, 245, 249, 0.24) 58%, rgba(5, 34, 55, 0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: #3b696c;
}

.hero h1 {
    max-width: 590px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 78px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-intro {
    max-width: 470px;
    margin: 20px 0 24px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.button {
    min-height: 44px;
    padding: 11px 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--navy);
    color: var(--white);
}

.button-light,
.button-outline {
    background: rgba(255, 255, 255, 0.86);
    color: var(--navy);
    border-color: #9db2c0;
}

.button-search {
    background: var(--teal);
    color: var(--white);
}

.full-width {
    width: 100%;
}

.tagline {
    margin-top: 28px;
    font-size: 14px;
}

.search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.search-panel,
.matcher-form,
.route-controls {
    padding: 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr auto;
    gap: 12px;
    align-items: end;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 6px;
}

label span {
    color: #344a58;
    font-size: 12px;
    font-weight: 750;
}

select,
input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 7px;
}

select:focus,
input:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(0, 107, 111, 0.25);
    outline-offset: 2px;
}

.form-status {
    min-height: 24px;
    margin: 8px 0 0;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 650;
}

.section {
    padding-block: 48px;
}

.section-compact {
    margin-block: 14px 42px;
    padding: 28px;
}

.section-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading h2,
.section > h2,
.season-panel h2,
.compare-card h2,
.services-panel h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.section-heading a,
.section-heading span {
    color: var(--navy-soft);
    font-size: 13px;
    font-weight: 700;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.destination-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 9px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(18, 51, 69, 0.12);
}

.country-visual {
    height: 142px;
    padding: 14px;
    display: flex;
    align-items: end;
    justify-content: end;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--serif);
    font-size: 36px;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.3);
}

.country-pt { background: linear-gradient(145deg, rgba(17, 81, 79, 0.2), rgba(14, 34, 51, 0.76)), radial-gradient(circle at 30% 40%, #f3c767 0 15%, transparent 16%), linear-gradient(135deg, #227486, #d6a14c); }
.country-hr { background: linear-gradient(145deg, rgba(19, 65, 94, 0.16), rgba(6, 42, 66, 0.68)), linear-gradient(135deg, #5ab4c6 0 45%, #d58667 46% 62%, #143b55 63%); }
.country-si { background: linear-gradient(145deg, rgba(10, 63, 79, 0.1), rgba(10, 43, 55, 0.55)), linear-gradient(160deg, #8fc4d5 0 38%, #89a86e 39% 62%, #2b745d 63%); }
.country-es { background: linear-gradient(145deg, rgba(40, 23, 18, 0.06), rgba(61, 36, 23, 0.55)), linear-gradient(135deg, #e5b65a 0 38%, #d6784b 39% 58%, #5b9b8c 59%); }
.country-at { background: linear-gradient(145deg, rgba(12, 44, 64, 0.08), rgba(21, 45, 50, 0.55)), linear-gradient(155deg, #a9d0de 0 35%, #7ba27b 36% 62%, #e8e0ca 63%); }

.destination-content {
    padding: 16px;
}

.destination-content h3 {
    margin: 0 0 5px;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
}

.destination-content p {
    min-height: 68px;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
}

.destination-content small {
    display: block;
    min-height: 42px;
    color: #52646e;
    font-size: 11px;
}

.destination-content a {
    display: inline-block;
    margin-top: 11px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 750;
}

.trip-matcher {
    background: linear-gradient(110deg, #edf4f1, #dfeff0);
    border: 1px solid #d2e1df;
    border-radius: var(--radius);
}

.matcher-heading {
    align-items: center;
}

.matcher-heading p:last-child {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.matcher-form {
    padding: 0;
    grid-template-columns: repeat(7, 1fr) auto;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.matcher-results {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.match-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #cadbd9;
    border-radius: 8px;
}

.match-card h3,
.match-card p {
    margin: 0 0 5px;
}

.match-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 12px;
}

.traveller-context {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.traveller-context > div {
    padding: 6px 20px;
}

.traveller-context > div + div {
    border-left: 1px solid var(--line);
}

.traveller-context h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
}

.traveller-context p:not(.eyebrow) {
    color: var(--muted);
}

.route-heading {
    align-items: center;
}

.route-controls {
    margin-bottom: 16px;
    grid-template-columns: 2fr 1fr 1.4fr auto;
    box-shadow: none;
}

.route-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
}

.route-map {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 70%, rgba(245, 224, 159, 0.8) 0 2%, transparent 2.5%),
        radial-gradient(circle at 55% 28%, rgba(255, 255, 255, 0.6) 0 2%, transparent 2.5%),
        linear-gradient(115deg, #aee0ed 0 34%, #e5dfbd 35% 61%, #d6d3a7 62% 100%);
    border: 1px solid #cbdada;
    border-radius: var(--radius);
}

.route-map::before,
.route-map::after {
    content: '';
    position: absolute;
    border-radius: 46% 54% 65% 35%;
    background: rgba(118, 153, 117, 0.25);
}

.route-map::before {
    width: 65%;
    height: 86%;
    right: -14%;
    top: 8%;
    transform: rotate(-10deg);
}

.route-map::after {
    width: 38%;
    height: 50%;
    right: 26%;
    bottom: -24%;
}

.map-label {
    position: absolute;
    z-index: 1;
    color: rgba(26, 77, 94, 0.74);
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.map-label-west { left: 8%; top: 48%; transform: rotate(-9deg); }
.map-label-east { right: 9%; top: 12%; }

.map-route-line {
    position: absolute;
    z-index: 2;
    left: 35%;
    top: 20%;
    width: 27%;
    height: 66%;
    border-left: 4px dotted var(--teal);
    border-bottom: 4px dotted var(--teal);
    border-radius: 0 0 0 45%;
    transform: rotate(-12deg);
}

.map-stop {
    position: absolute;
    z-index: 4;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    color: var(--navy);
    font-size: 12px;
}

.map-stop span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--teal-dark);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(5, 50, 65, 0.35);
}

.stop-1 { left: 30%; bottom: 12%; }
.stop-2 { left: 39%; bottom: 36%; }
.stop-3 { left: 46%; top: 29%; }
.stop-4 { left: 58%; top: 17%; }
.stop-5 { left: 64%; top: 9%; }

.map-legend {
    position: absolute;
    z-index: 5;
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 6px;
    font-size: 11px;
}

.route-card {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.route-card h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
}

.route-card-heading p {
    margin: 4px 0 10px;
    color: var(--muted);
    font-size: 13px;
}

.route-stop-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.route-stop-list li {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 30px 1fr 22px;
    gap: 10px;
    align-items: start;
    border-top: 1px solid #e6ebeb;
}

.stop-number {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 750;
}

.route-stop-list h4,
.route-stop-list p {
    margin: 0;
}

.route-stop-list h4 { font-size: 15px; }
.route-stop-list p { color: var(--muted); font-size: 12px; }
.route-stop-list small { color: var(--teal-dark); }
.drag-handle { color: #70828c; }

.two-column {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
}

.theme-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.theme-grid a {
    min-height: 190px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #f2f7f6, #ffffff);
    border: 1px solid var(--line);
    border-radius: 9px;
}

.theme-grid a:hover {
    border-color: #8cb6b5;
}

.theme-grid span {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    color: var(--teal-dark);
    background: var(--white);
    border: 1px solid #b9cfcd;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 24px;
}

.theme-grid strong { font-size: 13px; }
.theme-grid small { margin-top: 7px; color: var(--muted); font-size: 11px; }

.compare-card {
    padding: 22px;
    background: linear-gradient(145deg, #f8fbfb, #e8f0f3);
    border: 1px solid #d2dfe2;
    border-radius: var(--radius);
}

.compare-card > p {
    color: var(--muted);
    font-size: 13px;
}

.compare-card label {
    margin: 16px 0 10px;
}

.location-result {
    min-height: 24px;
    margin-top: 10px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 700;
}

.place-comparison-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.place-comparison-form label { margin: 0; }
.place-comparison-form button { grid-column: 1 / -1; }

#comparison-verdict {
    color: var(--muted);
    font-size: 12px;
}

.compare-card hr {
    margin: 22px 0 18px;
    border: 0;
    border-top: 1px solid #cedadc;
}

.compare-card h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
}

.compare-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.compare-card th,
.compare-card td {
    padding: 7px 5px;
    text-align: left;
    border-bottom: 1px solid #d9e2e3;
}

.seasonal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.season-panel,
.event-panel {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.season-tabs {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
}

.season-tabs button {
    padding: 10px 5px;
    background: #f7f9f9;
    border: 0;
    border-right: 1px solid var(--line);
    font-size: 12px;
}

.season-tabs button:last-child { border-right: 0; }
.season-tabs button[aria-selected='true'] { color: var(--white); background: var(--teal); }

.season-content {
    min-height: 155px;
    padding: 20px 4px 0;
}

.season-content h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.season-content p { margin: 0 0 8px; color: var(--muted); }
.season-content ul { margin: 0; padding-left: 20px; font-size: 13px; }

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

.event-grid article {
    padding: 14px;
    background: #f3f7f6;
    border-radius: 8px;
}

.event-grid h3 { margin: 5px 0; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.event-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.event-grid small { color: var(--teal-dark); }
.event-season { color: var(--teal-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }

.empty-state {
    min-height: 190px;
    padding: 28px;
    display: grid;
    align-content: center;
    background: #f5f7f5;
    border: 1px dashed #b9c7c4;
    border-radius: 9px;
}

.empty-state p {
    margin-bottom: 0;
    color: var(--muted);
}

.services-panel {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 0;
    background: var(--sand);
    border: 1px solid #e6dbce;
    border-radius: var(--radius);
}

.services-panel > div {
    padding: 8px 22px;
    border-right: 1px solid #ded2c6;
}

.services-panel > div:last-child {
    border-right: 0;
}

.services-panel strong { font-size: 13px; }
.services-panel p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.services-panel p span { margin-top: 5px; display: block; }

.trip-planner-panel {
    position: relative;
    z-index: 6;
    margin-top: -48px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trip-planner-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.trip-planner-heading h2,
.compare-intro h2,
.event-panel > h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(27px, 3vw, 36px);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.trip-planner-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.trip-planner-panel .search-panel {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.destination-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--mist);
}

.destination-image-link img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: cover;
    transition: transform 300ms ease;
}

.destination-card:hover .destination-image-link img {
    transform: scale(1.035);
}

.destination-image-link span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    min-width: 34px;
    padding: 5px 7px;
    color: var(--white);
    text-align: center;
    background: rgba(8, 37, 62, 0.84);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-route-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(10, 40, 57, 0.08);
}

.home-route-map {
    min-height: 440px;
    background: #dce8e5;
}

.home-route-summary {
    padding: 27px;
}

.route-kicker {
    margin: 0 0 7px;
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-route-summary h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.home-route-summary > p:not(.route-kicker) {
    margin: 7px 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.home-route-summary ol {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.home-route-summary li {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 10px;
    border-top: 1px solid #e5ebea;
}

.home-route-summary li > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--teal-dark);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.home-route-summary li strong,
.home-route-summary li small {
    display: block;
}

.home-route-summary li small {
    color: var(--muted);
}

.route-preview-notice {
    margin: 4px 0 18px;
    padding: 14px;
    background: var(--mist);
    border-radius: 7px;
}

.route-preview-notice a,
.match-card a {
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 750;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.experience-grid a {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 10px;
}

.experience-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 300ms ease, opacity 300ms ease;
}

.experience-grid a:hover img,
.experience-grid a:focus-visible img {
    transform: scale(1.04);
    opacity: 1;
}

.experience-grid a::after {
    content: '';
    position: absolute;
    inset: 32% 0 0;
    background: linear-gradient(transparent, rgba(5, 27, 44, 0.92));
}

.experience-grid span {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    color: var(--white);
}

.experience-grid strong,
.experience-grid small {
    display: block;
}

.experience-grid strong {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
}

.experience-grid small {
    margin-top: 4px;
    color: #d9e7ea;
    font-size: 11px;
}

.compare-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 22px;
    align-items: stretch;
}

.compare-intro {
    padding: 26px;
    background: var(--sand);
    border: 1px solid #e6dbce;
    border-radius: var(--radius);
}

.compare-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.compare-intro .place-comparison-form {
    margin-bottom: 18px;
}

.compare-section .compare-card {
    padding: 28px;
}

.compare-section .compare-card h3 {
    font-size: 28px;
}

.compare-section .compare-card table {
    font-size: 13px;
}

.compare-section .compare-card th,
.compare-section .compare-card td {
    padding: 10px 7px;
}

.season-destination-list {
    margin-top: 15px;
    display: grid;
    gap: 8px;
}

.season-destination-list a {
    padding: 12px 14px;
    display: grid;
    gap: 3px;
    background: #f3f7f6;
    border-radius: 7px;
}

.season-destination-list a:hover,
.season-destination-list a:focus-visible {
    background: #e8f1ef;
}

.season-destination-list span {
    color: var(--muted);
    font-size: 12px;
}

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

.legal-content > section {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.legal-content p {
    margin: 0;
    color: var(--muted);
}

.image-provider-section {
    max-width: 1100px;
}

.image-provider-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin: 18px 0 0;
    padding-left: 20px;
}

.image-provider-list a {
    color: var(--teal-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.country-guide-hero {
    padding-top: 54px;
    background: linear-gradient(145deg, #edf5f4 0%, #f8f5ef 68%, #efe5d8 100%);
    border-bottom: 1px solid var(--line);
}

.country-guide-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    align-items: center;
    gap: clamp(38px, 6vw, 82px);
}

.country-guide-hero-copy {
    padding-bottom: 54px;
}

.country-guide-hero-copy h1 {
    margin: 8px 0 16px;
    font-family: var(--serif);
    font-size: clamp(54px, 7vw, 92px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.country-guide-hero-copy > p:not(.eyebrow) {
    max-width: 550px;
    margin: 0 0 26px;
    color: #455762;
    font-size: 18px;
    line-height: 1.65;
}

.country-guide-hero-copy > small {
    margin: -12px 0 22px;
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.country-guide-image {
    align-self: end;
    margin: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(17, 46, 69, 0.12);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 24px 58px rgba(17, 46, 69, 0.14);
}

.country-guide-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    display: block;
    object-fit: cover;
}

.country-guide-image figcaption {
    padding: 9px 14px 11px;
    color: #6b7479;
    font-size: 11px;
    line-height: 1.45;
}

.country-guide-image figcaption a {
    color: var(--navy-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-entry-hero {
    padding: clamp(48px, 7vw, 88px) 0 clamp(42px, 6vw, 72px);
    background: linear-gradient(145deg, #edf5f4 0%, #f8f5ef 72%, #efe5d8 100%);
    border-bottom: 1px solid var(--line);
}

.content-entry-hero h1 {
    max-width: 900px;
    margin: 10px 0 18px;
    font-family: var(--serif);
    font-size: clamp(46px, 6.5vw, 82px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.content-entry-hero > .container > p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: #455762;
    font-size: 19px;
    line-height: 1.65;
}

.guide-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 13px;
}

.guide-breadcrumbs a {
    color: var(--navy-soft);
    text-decoration: none;
}

.content-entry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: clamp(38px, 7vw, 88px);
    padding-block: 68px 84px;
}

.content-entry-article {
    min-width: 0;
}

.content-entry-block {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.content-entry-block-notice {
    padding: 24px;
    background: var(--sand-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.content-entry-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.content-fact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.content-fact-list > div {
    padding: 16px;
    background: var(--sand-soft);
    border-radius: 10px;
}

.content-fact-list dt {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.content-fact-list dd {
    margin: 5px 0 0;
    color: var(--navy);
    font-weight: 700;
}

.comparison-destination-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.country-guide-layout {
    padding-block: 68px 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: clamp(44px, 7vw, 88px);
}

.country-guide-article {
    min-width: 0;
}

.country-guide-introduction {
    margin-bottom: 50px;
    color: #324752;
    font-size: 20px;
    line-height: 1.72;
}

.country-guide-introduction p {
    margin: 0 0 20px;
}

.country-guide-introduction p:first-child {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.35;
    letter-spacing: -0.018em;
}

.rich-content h2 {
    margin-top: 48px;
    padding-top: 44px;
    border-top: 1px solid var(--line);
}

.rich-content h3 {
    max-width: 720px;
    margin: 28px 0 9px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.25;
}

.rich-content ul,
.rich-content ol {
    max-width: 760px;
    margin: 0 0 24px;
    padding-left: 26px;
}

.rich-content li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.rich-content a,
.guide-sources a {
    color: var(--teal-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.guide-sources ul {
    margin: 0;
    padding-left: 20px;
}

.guide-sources li {
    margin: 9px 0;
    color: var(--muted);
    line-height: 1.55;
}

.country-guide-section {
    scroll-margin-top: 96px;
    margin-top: 48px;
    padding-top: 46px;
    border-top: 1px solid var(--line);
}

.country-guide-section > h2,
.rich-content h2 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.028em;
}

.country-guide-section > p:not(.eyebrow),
.rich-content p,
.rich-content li {
    max-width: 760px;
    margin: 0 0 18px;
    color: #465b66;
    font-size: 17px;
    line-height: 1.75;
}

.country-place-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.country-place-card {
    padding: 22px;
    background: #f6f2ec;
    border: 1px solid #e5ddd2;
    border-radius: 10px;
}

.country-place-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
}

.country-place-card p {
    margin: 0;
    color: #5c6b72;
    font-size: 14px;
    line-height: 1.62;
}

.guide-check-list {
    max-width: 720px;
    margin: 25px 0 0;
    padding: 22px 24px 22px 46px;
    color: #344a55;
    background: #eef5f4;
    border-radius: 10px;
}

.guide-check-list li {
    margin: 8px 0;
    padding-left: 4px;
    line-height: 1.55;
}

.country-guide-sidebar {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 16px;
}

.guide-sidebar-card {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 34px rgba(17, 46, 69, 0.06);
}

.guide-sidebar-card h2 {
    margin: 0 0 15px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
}

.guide-sidebar-card > a {
    padding: 8px 0;
    display: block;
    color: var(--navy-soft);
    border-top: 1px solid #edf0f0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.guide-sidebar-card > a:first-of-type {
    border-top: 0;
}

.guide-sidebar-card small {
    margin-top: 13px;
    display: block;
    color: #6a777d;
    line-height: 1.55;
}

.guide-facts {
    margin: 0;
}

.guide-facts div {
    padding: 12px 0;
    border-top: 1px solid #edf0f0;
}

.guide-facts div:first-child {
    padding-top: 0;
    border-top: 0;
}

.guide-facts div:last-child {
    padding-bottom: 0;
}

.guide-facts dt {
    margin-bottom: 3px;
    color: #758087;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.guide-facts dd {
    margin: 0;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.45;
}

.related-guide-section {
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.page-hero {
    padding-block: 70px 40px;
}

.page-hero h1 {
    max-width: 800px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-hero > p:not(.eyebrow) {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.content-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.content-card,
.prose-card,
.comparison-detail {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.content-card h2,
.content-card h3,
.prose-card h2,
.comparison-detail h2 {
    margin: 0 0 9px;
    font-family: var(--serif);
    font-weight: 500;
}

.content-card p,
.content-card small,
.prose-card,
.comparison-detail p {
    color: var(--muted);
}

.content-card small {
    display: block;
}

.text-link {
    margin-top: 16px;
    display: inline-block;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 750;
}

.section-heading-spaced {
    margin-top: 42px;
}

.narrow-content {
    max-width: 850px;
}

.itinerary-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.itinerary-timeline li {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    border-bottom: 1px solid var(--line);
}

.multi-city-planner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 18px;
}

.planner-controls,
.planner-map-column {
    min-width: 0;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.planner-intro {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.planner-intro h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
}

.planner-intro > p,
.map-note {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.planner-date {
    max-width: 230px;
    margin-bottom: 14px;
}

.planner-stop-list {
    display: grid;
    gap: 10px;
}

.planner-stop-row {
    padding: 12px;
    display: grid;
    grid-template-columns: 28px minmax(150px, 1.6fr) 74px minmax(110px, 0.9fr) auto;
    gap: 9px;
    align-items: end;
    background: #f4f8f7;
    border: 1px solid #d7e3e1;
    border-radius: 8px;
}

.planner-stop-number {
    width: 27px;
    height: 27px;
    margin-bottom: 8px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.planner-stop-actions {
    margin-bottom: 5px;
    display: flex;
    gap: 3px;
}

.planner-stop-actions button,
.planner-save-actions button {
    color: var(--navy);
    background: transparent;
    border: 1px solid #b9c9cc;
    border-radius: 5px;
}

.planner-stop-actions button {
    width: 28px;
    height: 30px;
}

.planner-stop-actions button:disabled {
    cursor: default;
    opacity: 0.35;
}

.planner-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.planner-status {
    min-height: 24px;
    margin: 13px 0 5px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 700;
}

.planner-save-actions {
    display: flex;
    gap: 7px;
}

.planner-save-actions button {
    padding: 6px 9px;
    font-size: 11px;
}

.leaflet-route-map {
    height: 510px;
    background: #dce8e5;
    border-radius: 9px;
}

.route-fallback {
    margin-top: 14px;
    padding: 12px 14px;
    background: #f4f8f7;
    border-radius: 7px;
    font-size: 12px;
}

.route-fallback ol {
    margin: 7px 0 0;
    padding-left: 20px;
}

.map-note {
    margin-top: 10px;
}

.ad-slot {
    margin-bottom: 22px;
    padding: 9px;
    color: #7b7d7b;
    text-align: center;
    background: #f3f0eb;
    border: 1px dashed #cec4b8;
    border-radius: 5px;
    font-size: 11px;
}

.site-footer {
    padding: 34px 0;
    color: #dce7ed;
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-grid strong {
    display: block;
    margin-bottom: 9px;
    color: var(--white);
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 4px 0;
    color: #b8c9d2;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .destination-grid { grid-template-columns: repeat(3, 1fr); }
    .search-panel { grid-template-columns: repeat(3, 1fr); }
    .search-panel .button { grid-column: span 3; }
    .matcher-form { grid-template-columns: repeat(3, 1fr); }
    .matcher-form .button { grid-column: span 3; }
    .site-navigation { gap: 1px; }
    .brand-copy small { display: none; }
    .site-navigation > .nav-direct-link,
    .nav-item-label { padding-inline: 7px; }
    .nav-button { padding-inline: 13px; }
    .theme-grid { grid-template-columns: repeat(3, 1fr); }
    .experience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
    .container { width: min(100% - 28px, 720px); }
    .site-header { min-height: 68px; }
    .brand-copy small { display: block; }
    .menu-button { display: flex; }
    .site-navigation {
        position: absolute;
        top: 68px;
        right: 14px;
        width: min(380px, calc(100% - 28px));
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        background: #092943;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-top: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 20px 45px rgba(2, 19, 31, 0.28);
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }
    .site-navigation.is-open { display: flex; }
    .nav-item { display: block; }
    .site-navigation > .nav-direct-link,
    .nav-item-label { min-height: 44px; padding: 0 10px; justify-content: space-between; }
    .nav-item-label > a { flex: 1; }
    .nav-item-label button { width: 40px; height: 40px; }
    .nav-button { margin: 7px 0 0; justify-content: center; }
    .nav-dropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 7px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border-radius: 9px;
    }
    .nav-item.is-open > .nav-dropdown { display: block; }
    .nav-dropdown::before { display: none; }
    .destinations-dropdown { width: 100%; }
    .nav-dropdown-heading { align-items: start; gap: 12px; }
    .nav-dropdown-heading small { display: none; }
    .destination-menu-grid { grid-template-columns: 1fr; }
    .country-menu-card { padding: 11px; }
    .country-menu-link small { display: none; }
    .country-city-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .country-city-links small { display: none; }
    .compact-dropdown { right: auto; }
    .hero { min-height: 530px; background-position: 60% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(242, 249, 251, 0.95), rgba(240, 248, 250, 0.68)); }
    .search-wrap { margin-top: -54px; }
    .search-panel { grid-template-columns: repeat(2, 1fr); }
    .search-panel .button { grid-column: span 2; }
    .trip-planner-heading { align-items: start; flex-direction: column; gap: 8px; }
    .home-route-preview,
    .compare-section { grid-template-columns: 1fr; }
    .home-route-map { min-height: 400px; }
    .route-layout,
    .two-column,
    .seasonal-layout { grid-template-columns: 1fr; }
    .route-map { min-height: 430px; }
    .services-panel { grid-template-columns: repeat(2, 1fr); }
    .services-panel > div:nth-child(2) { border-right: 0; }
    .services-panel > div { padding-block: 16px; border-bottom: 1px solid #ded2c6; }
    .content-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .country-guide-hero-grid { grid-template-columns: 1fr; gap: 4px; }
    .country-guide-hero-copy { padding-bottom: 30px; }
    .country-guide-image { width: 100%; }
    .country-guide-layout { grid-template-columns: 1fr; gap: 32px; padding-top: 50px; }
    .country-guide-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .country-guide-sidebar .guide-sidebar-card:last-child { grid-column: 1 / -1; }
    .content-entry-layout { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
    .content-entry-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .multi-city-planner { grid-template-columns: 1fr; }
    .traveller-context { grid-template-columns: 1fr; }
    .traveller-context > div + div { padding-top: 22px; border-top: 1px solid var(--line); border-left: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .site-header { padding-inline: 14px; gap: 10px; }
    .brand { gap: 7px; }
    .brand-mark { width: 30px; height: 30px; }
    .brand-copy strong { font-size: 17px; }
    .brand-copy small { display: none; }
    .menu-button { padding-inline: 9px; }
    .hero-content { padding-top: 54px; }
    .hero h1 { font-size: 48px; }
    .hero-actions { align-items: stretch; flex-direction: column; width: 220px; }
    .search-panel,
    .matcher-form,
    .route-controls,
    .place-comparison-form { grid-template-columns: 1fr; }
    .search-panel .button,
    .matcher-form .button { grid-column: auto; }
    .matcher-results { grid-template-columns: 1fr; }
    .destination-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(250px, 82%);
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .destination-card { scroll-snap-align: start; }
    .section-heading { align-items: start; flex-direction: column; }
    .section-compact { padding: 20px; }
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-grid a { min-height: 155px; }
    .trip-planner-panel { margin-top: -34px; padding: 19px; }
    .experience-grid { grid-template-columns: 1fr 1fr; }
    .experience-grid a { min-height: 210px; }
    .experience-grid a:last-child { grid-column: 1 / -1; }
    .home-route-map { min-height: 340px; }
    .home-route-summary { padding: 20px; }
    .route-map { min-height: 360px; }
    .map-stop b { display: none; }
    .services-panel,
    .footer-grid { grid-template-columns: 1fr; }
    .services-panel > div { border-right: 0; }
    .content-card-grid { grid-template-columns: 1fr; }
    .country-guide-hero { padding-top: 38px; }
    .country-guide-hero-copy h1 { font-size: 58px; }
    .country-guide-image { border-radius: 12px 12px 0 0; }
    .country-guide-layout { padding-top: 38px; }
    .country-guide-introduction { font-size: 18px; }
    .country-place-grid,
    .country-guide-sidebar { grid-template-columns: 1fr; }
    .country-guide-sidebar .guide-sidebar-card:last-child { grid-column: auto; }
    .content-entry-sidebar,
    .content-fact-list { grid-template-columns: 1fr; }
    .planner-controls,
    .planner-map-column { padding: 16px; }
    .planner-intro { grid-template-columns: 1fr; }
    .planner-stop-row {
        grid-template-columns: 28px minmax(0, 1fr) 70px;
    }
    .planner-place-field { grid-column: 2 / -1; }
    .planner-nights-field { grid-column: 2; }
    .planner-transport-field { grid-column: 3; }
    .planner-stop-actions { grid-column: 2 / -1; }
    .planner-actions { flex-direction: column; }
    .planner-actions .button { width: 100%; }
    .leaflet-route-map { height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
