@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --brand-primary: #0f172a;
    --color-primary: var(--brand-primary);
    --ink: var(--brand-primary);
    --muted: #5d6970;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --line: #e4e0d8;
    --hover-bg: rgba(15, 23, 42, 0.045);
    --hover-border: #cbd5e1;
    --hover-text: var(--brand-primary);
    --hover-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
    --transition-fast: 200ms ease;
    --teal: #0d5c63;
    --teal-dark: #083a40;
    --coral: #bf5b45;
    --gold: #d59d3b;
    --holiday: #d6342c;
    --shadow: 0 18px 50px rgba(23, 33, 38, 0.16);
    --radius: 8px;
    --hero-max: 980px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

.detail-page {
    min-height: 100vh;
    padding: 28px max(16px, calc((100vw - 1180px) / 2)) 80px;
}

.detail-page > .button {
    margin-bottom: 28px;
}

.guide-profile {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.guide-profile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.guide-profile h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 5vw, 60px);
}

.guide-profile p:last-child {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.guide-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.guide-details article {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.guide-details h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

.guide-details p,
.guide-details li {
    color: var(--muted);
}

.guide-details ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: #fff;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(8, 58, 64, 0.96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.topbar,
.navbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 42px;
    font-size: 14px;
}

.topbar a {
    opacity: 0.9;
}

.topbar__social {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 74px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.brand img {
    width: 132px;
    height: auto;
}

.navlinks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
}

.navlinks .navlinks__agent {
    display: none;
}

.navlinks a,
.agent-login,
.button {
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.navlinks a:hover,
.navlinks a[aria-current="page"],
.nav-item:hover > .nav-item__link {
    color: #ffd88a;
}

.nav-item {
    position: relative;
}

.nav-item__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 80;
    display: none;
    width: min(880px, calc(100vw - 48px));
    padding: 26px;
    color: #fff;
    background: rgba(8, 58, 64, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
    display: block;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.mega-menu h2 {
    margin: 0 0 12px;
    color: #ffd88a;
    font-size: 16px;
    line-height: 1.2;
}

.mega-menu section,
.mega-menu__grid {
    display: grid;
    gap: 10px;
}

.mega-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.25;
}

.mega-menu a:hover {
    color: #ffd88a;
}

.mega-menu a span {
    display: inline-flex;
    margin-left: 6px;
    padding: 2px 8px;
    color: var(--ink);
    background: #ffd88a;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.mega-menu--destinations {
    width: min(1040px, calc(100vw - 48px));
    min-height: 360px;
}

.mega-menu__rail {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
}

.destination-region {
    display: contents;
}

.destination-region > a {
    grid-column: 1;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.destination-region:hover > a,
.destination-region:focus-within > a {
    background: rgba(255, 216, 138, 0.18);
    color: #ffd88a;
}

.mega-menu__rail:not(:hover) .destination-region.is-featured > a,
.destination-region.is-featured:focus-within > a {
    background: rgba(255, 216, 138, 0.18);
    color: #ffd88a;
}

.destination-region__detail {
    grid-column: 2;
    grid-row: 1 / span 8;
    display: none;
    align-self: start;
    padding-top: 4px;
}

.destination-region:hover .destination-region__detail,
.destination-region:focus-within .destination-region__detail,
.mega-menu__rail:not(:hover) .destination-region.is-featured .destination-region__detail {
    display: block;
}

.destination-region__detail p {
    max-width: 720px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.45;
}

.destination-region__detail .mega-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 36px;
}

.mega-menu__all {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #ffd88a !important;
    font-weight: 900;
}

.mega-menu--guides,
.mega-menu--types {
    width: min(320px, calc(100vw - 48px));
}

.guide-menu-list {
    display: grid;
    gap: 8px;
}

.guide-menu-list a {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 900;
}

.availability-list {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.availability-list__head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 14px;
    padding: 18px 22px;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
}

.availability-list__empty {
    margin: 0;
    padding: 26px 22px;
    color: var(--muted);
}

.agent-login,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: var(--radius);
    font-weight: 800;
}

.agent-login {
    color: var(--ink);
    background: #fff;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius);
    color: #fff;
    background: transparent;
    font: inherit;
    font-weight: 800;
}

/* Shared hero shell — homepage styles in consolidated module below */
.hero {
    position: relative;
    display: block;
    color: #fff;
}

.hero__media-stack,
.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media-stack {
    z-index: 0;
    overflow: hidden;
}

.hero__media {
    object-fit: cover;
}

.hero__overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.38));
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-search {
    position: relative;
    width: min(100%, var(--hero-max));
    margin: 0 auto;
    color: var(--ink);
}

.tour-categories button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.hero-search__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 56px;
    align-items: center;
    min-height: 58px;
    padding: 6px;
    background: #f6f4f0;
    border-radius: 999px;
    box-shadow: 0 22px 60px rgba(8, 30, 35, 0.2);
}

.hero-search__window {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 46px;
    padding: 0 22px;
    border: 0;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease;
}

.hero-search__window:hover,
.hero-search__window.is-active {
    background: #fff;
    border-radius: 999px;
}

.hero-search__window i {
    flex: 0 0 auto;
    color: var(--brand-primary);
    font-size: 20px;
}

.hero-search__window span,
.hero-search__window input {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-search__window input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
}

.hero-search__window input::placeholder {
    color: var(--brand-primary);
    opacity: 1;
}

.hero-search__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--brand-primary);
    font-size: 20px;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-search__button:hover {
    transform: translateY(-1px);
    background: #1e293b;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.28);
}

.hero-search__button:focus-visible,
.hero-search__window:focus-visible,
.destination-group__toggle:focus-visible,
.destination-group__items button:focus-visible,
.date-calendar button:focus-visible,
.date-calendar input:focus-visible {
    outline: 3px solid rgba(15, 23, 42, 0.32);
    outline-offset: 2px;
}

.destination-panel,
.date-calendar {
    position: absolute;
    top: calc(100% + 0px);
    z-index: 30;
    color: var(--brand-primary);
    background: #f6f4f0;
    border: 2px solid var(--brand-primary);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(8, 30, 35, 0.2);
}

.destination-panel {
    left: 18px;
    width: min(430px, calc(100vw - 42px));
}

.destination-panel__header {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 22px;
    font-size: 19px;
    font-weight: 500;
}

.destination-panel__list {
    max-height: min(300px, 42vh);
    overflow-y: auto;
    padding: 8px 14px 14px;
    scrollbar-color: #777 #f6f4f0;
    scrollbar-width: auto;
}

.destination-group__toggle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.destination-group__toggle i {
    color: var(--coral);
    font-size: 20px;
    transition: transform 160ms ease;
}

.destination-group.is-open .destination-group__toggle i {
    transform: rotate(180deg);
}

.destination-group__items {
    display: grid;
    gap: 2px;
    padding: 0 10px 8px 24px;
}

.destination-group__items[hidden],
[hidden] {
    display: none !important;
}

.destination-group__items button {
    width: 100%;
    min-height: 30px;
    border: 0;
    color: #2d2d2d;
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.destination-group__items button:hover {
    color: var(--coral);
}

.date-calendar {
    right: 58px;
    width: min(430px, calc(100vw - 70px));
    max-height: min(500px, calc(100vh - 130px));
    overflow-y: auto;
    padding: 14px 16px 18px;
}

.date-calendar__range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.date-calendar__range label {
    display: grid;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
}

.date-calendar__range input {
    width: 100%;
    height: 30px;
    border: 2px solid rgba(191, 91, 69, 0.5);
    border-radius: 7px;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 0 10px;
}

.date-calendar__years {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.date-calendar__years label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.date-calendar__years input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: var(--coral);
}

.date-calendar__month-nav {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.date-calendar__month-nav > button:not(.date-calendar__month) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--coral);
    font-size: 17px;
    cursor: pointer;
}

.date-calendar__month-nav > button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.date-calendar__month {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 2px solid var(--coral);
    border-radius: 999px;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.date-calendar__month strong {
    font-size: 16px;
    font-weight: 900;
}

.date-calendar__month i {
    color: var(--coral);
    font-size: 19px;
}

.date-calendar__months {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: -2px 42px 8px;
}

.date-calendar__months button {
    min-height: 24px;
    border: 1px solid var(--coral);
    border-radius: 999px;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.date-calendar__months button:hover,
.date-calendar__months button.is-active {
    color: #fff;
    background: var(--coral);
}

.date-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    color: #a4a4a4;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.date-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 4px;
    margin-top: 6px;
}

.date-calendar__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    justify-self: center;
    border: 0;
    border-radius: 50%;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.date-calendar__day:hover:not(:disabled) {
    color: var(--coral);
    transform: translateY(-1px);
}

.date-calendar__day.is-today {
    color: var(--brand-primary);
}

.date-calendar__day.is-holiday {
    color: var(--holiday);
    box-shadow: inset 0 0 0 1px var(--holiday);
}

.date-calendar__day.is-selected,
.date-calendar__day.is-in-range {
    color: #fff;
    background: var(--coral);
    box-shadow: none;
}

.date-calendar__day:disabled {
    color: #c9c9c9;
    opacity: 0.48;
    cursor: not-allowed;
}

.date-calendar__day--empty {
    pointer-events: none;
}

.button--primary {
    color: #fff;
    background: var(--coral);
}

.button--secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.button:hover,
.agent-login:hover {
    transform: translateY(-2px);
}

.section-pad {
    padding: 96px max(16px, calc((100vw - 1180px) / 2));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.tour-console {
    background: var(--hero-surface-next, #f3f0e9);
}

.tour-console.section-pad {
    padding-top: 22px;
}

.tour-console + .split {
    padding-top: 72px;
}

.tour-console .section-heading p:not(.eyebrow) {
    color: var(--muted);
}

.tour-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.tour-categories button {
    display: grid;
    gap: 5px;
    min-height: 132px;
    padding: 22px;
    text-align: left;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(23, 33, 38, 0.08);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tour-categories button:hover,
.tour-categories button.is-active {
    transform: translateY(-2px);
    border-color: rgba(191, 91, 69, 0.45);
    box-shadow: 0 14px 34px rgba(23, 33, 38, 0.13);
}

.tour-categories span,
.tour-card__meta,
.tour-card__tag {
    color: var(--coral);
    font-size: 13px;
    font-weight: 900;
}

.tour-categories strong {
    font-size: 20px;
    line-height: 1.15;
}

.tour-categories small {
    color: var(--muted);
    font-weight: 800;
}

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

.tour-card {
    display: grid;
    overflow: hidden;
    min-height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(23, 33, 38, 0.09);
}

.tour-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tour-card__body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.tour-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}

.tour-card h3 {
    margin-bottom: 0;
    font-size: 22px;
}

.tour-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.tour-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 8px;
}

.tour-card__price strong {
    display: block;
    color: var(--teal);
    font-size: 26px;
    line-height: 1;
}

.tour-card__price span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.tour-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--teal);
    font-weight: 900;
}

.tour-empty {
    grid-column: 1 / -1;
    padding: 30px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.all-tours {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-areas:
        "content content"
        "filter results";
    align-items: start;
    column-gap: 30px;
    row-gap: 28px;
}

.tour-filter {
    grid-area: filter;
    align-self: start;
    display: grid;
    align-content: start;
    gap: 24px;
    height: fit-content;
}

.tour-filter__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-weight: 800;
}

.tour-filter__top button {
    border: 0;
    color: var(--muted);
    background: transparent;
    font: inherit;
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
}

.tour-filter__search input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cfd6d6;
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.tour-filter__group {
    display: grid;
    gap: 12px;
}

.tour-filter__group h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 18px;
}

.tour-filter__group h3::after,
.tour-filter__toggle::after {
    content: "-";
    color: var(--muted);
}

.tour-filter__group.is-collapsed .tour-filter__toggle::after {
    content: "+";
}

.tour-filter__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.tour-filter__options {
    display: grid;
    gap: 12px;
}

.tour-filter__group.is-collapsed .tour-filter__options {
    display: none !important;
}

.tour-filter__group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d4247;
    font-weight: 700;
    cursor: pointer;
}

.tour-filter__group input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #12aeb2;
}

.tour-filter__range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tour-filter__range label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
}

.tour-filter__range input,
.tour-filter__date {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    border: 1px solid #cfd6d6;
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 700;
}

.all-tours__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.all-tours__toolbar button {
    min-height: 42px;
    padding: 8px 18px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: #f5f7f8;
    font: inherit;
    font-weight: 800;
}

.all-tours__toolbar button.is-active {
    color: #fff;
    background: #12aeb2;
}

.tour-results--list {
    grid-area: results;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.tour-list-card {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 220px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce2e2;
    border-radius: 14px;
}

.tour-list-card > img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.tour-list-card__body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
}

.tour-list-card__place,
.tour-list-card__meta,
.tour-list-card__dates {
    color: #82919a;
    font-weight: 800;
}

.tour-list-card__place i,
.tour-list-card__meta i,
.tour-list-card__dates i,
.tour-list-card__icons i {
    color: #12aeb2;
}

.tour-list-card h3 {
    margin-bottom: 0;
    font-size: 24px;
}

.tour-list-card__icons {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    font-size: 28px;
}

.tour-list-card__price {
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 24px;
    border-left: 1px solid #dce2e2;
}

.tour-list-card__price span {
    font-size: 22px;
}

.tour-list-card__price strong {
    font-size: 34px;
    line-height: 1;
}

.tour-list-card__price small {
    color: var(--muted);
    font-size: 15px;
}

.tour-list-card__price a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 18px;
    border: 1px solid #12aeb2;
    border-radius: 999px;
    color: #12aeb2;
    font-weight: 900;
    text-transform: uppercase;
}

.split {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
    gap: 56px;
    align-items: center;
    background: #eef3f1;
}

.split__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split__content p {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--teal);
}

.destinations {
    background: var(--paper);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.destination-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 240ms ease, opacity 240ms ease;
}

.destination-card span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.destination-card:hover img {
    transform: scale(1.04);
    opacity: 0.95;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 72px max(16px, calc((100vw - 1180px) / 2));
    color: #fff;
    background: var(--teal);
}

.cta h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 36px;
    padding: 64px max(16px, calc((100vw - 1180px) / 2));
    color: rgba(255, 255, 255, 0.76);
    background: #0d1518;
}

.site-footer img {
    width: 150px;
    margin-bottom: 18px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
}

.site-footer a,
.site-footer p {
    display: block;
    margin-bottom: 8px;
}


@media (max-width: 980px) {
    .topbar {
        display: none;
    }

    .navbar {
        grid-template-columns: auto auto;
        min-height: 72px;
        border-top: 0;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .navlinks,
    .agent-login {
        display: none;
    }

    .navlinks.is-open {
        display: grid;
        grid-column: 1 / -1;
        gap: 0;
        padding: 12px 0 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .navlinks.is-open a {
        padding: 10px 0;
    }

    .navlinks.is-open {
        align-items: stretch;
    }

    .navlinks.is-open .nav-item {
        display: block;
    }

    .navlinks.is-open .nav-item__link {
        min-height: auto;
        padding: 10px 0;
    }

    .navlinks.is-open .mega-menu {
        display: none;
    }

    .navlinks.is-open .navlinks__agent {
        display: block;
    }

    .tour-results,
    .tour-categories,
    .all-tours {
        grid-template-columns: 1fr;
    }

    .all-tours {
        grid-template-areas:
            "content"
            "filter"
            "results";
    }

    .tour-list-card {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .tour-list-card__price {
        grid-column: 1 / -1;
        border-top: 1px solid #dce2e2;
        border-left: 0;
    }

    .hero-search__bar {
        grid-template-columns: 1fr 1fr 56px;
        min-height: 58px;
    }

    .hero-search__window {
        height: 46px;
        padding: 0 16px;
        font-size: 17px;
    }

    .hero-search__window i {
        font-size: 18px;
    }

    .hero-search__button {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .date-calendar {
        right: 0;
        width: min(430px, calc(100vw - 32px));
    }

    .destination-panel {
        left: 0;
    }

    .hero__facts,
    .card-grid,
    .split,
    .guide-profile,
    .guide-details,
    .site-footer {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-search__bar {
        grid-template-columns: 1fr;
        gap: 4px;
        min-height: 0;
        padding: 8px;
        border-radius: 20px;
    }

    .hero-search__window {
        height: 42px;
        padding: 0 14px;
        border-radius: 14px;
        font-size: 16px;
    }

    .hero-search__button {
        width: 100%;
        height: 42px;
        border-radius: 999px;
    }

    .destination-panel,
    .date-calendar {
        width: calc(100vw - 32px);
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .destination-panel__header {
        min-height: 44px;
        padding: 0 16px;
        font-size: 18px;
    }

    .destination-panel__list {
        max-height: 38vh;
        padding: 6px 10px 10px;
    }

    .destination-group__toggle {
        min-height: 38px;
        font-size: 16px;
    }

    .date-calendar {
        max-height: min(390px, calc(100vh - 135px));
        padding: 12px 12px 14px;
    }

    .date-calendar__range {
        grid-template-columns: 1fr 1fr;
    }

    .date-calendar__range label,
    .date-calendar__years label,
    .date-calendar__month strong {
        font-size: 13px;
    }

    .date-calendar__month-nav {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }

    .date-calendar__month-nav > button:not(.date-calendar__month) {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .date-calendar__month {
        min-height: 34px;
        padding: 0 12px;
    }

    .date-calendar__weekdays,
    .date-calendar__day {
        font-size: 12px;
    }

    .date-calendar__days {
        row-gap: 5px;
    }

    .section-pad {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .destination-card {
        min-height: 280px;
    }

    .button,
    .hero__actions {
        width: 100%;
    }

    .all-tours__toolbar {
        align-items: stretch;
        flex-direction: column;
    }

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

    .tour-list-card > img {
        min-height: 210px;
        aspect-ratio: 16 / 10;
    }
}

/* Premium typography refinement */
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.10;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.20;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p,
li,
.section-heading p,
.split__content p,
.tour-card p,
.tour-list-card__meta,
.tour-list-card__dates,
.guide-profile p:last-child,
.guide-details p,
.guide-details li,
.site-footer p,
.site-footer a {
    font-weight: 400;
    line-height: 1.70;
    letter-spacing: 0;
}

.hero__content > p:not(.eyebrow):not(.hero__lead) {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.70;
}

.navlinks,
.navlinks a,
.nav-item__link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.button,
.agent-login,
.tour-list-card__price a,
.all-tours__toolbar button,
.tour-filter__top button {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.button,
.agent-login,
.tour-list-card__price a {
    font-size: 16px;
}

.button--secondary,
.all-tours__toolbar button,
.tour-filter__top button {
    font-size: 15px;
}

input,
select,
textarea,
.hero-search__window input,
.tour-filter__search input,
.tour-filter__range input,
.tour-filter__date,
.date-calendar__range input {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

input::placeholder,
textarea::placeholder,
.hero-search__window input::placeholder {
    font-size: 15px;
    font-weight: 400;
}

label,
.tour-filter__group label,
.date-calendar__range label {
    font-size: 14px;
    font-weight: 500;
}

.eyebrow,
small,
.tour-card__price span,
.tour-filter__range label,
.tour-list-card__price small {
    font-size: 13px;
}

.breadcrumb,
.tour-list-card__place,
.tour-list-card__meta,
.mega-menu a {
    font-size: 15px;
}

.tour-filter__toggle,
.tour-filter__group h3 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
}

.tour-card h3,
.tour-list-card h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.20;
    letter-spacing: -0.01em;
}

.guide-profile h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.10;
    letter-spacing: -0.03em;
}

.guide-details h2,
.site-footer h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

@media (max-width: 980px) {
    h1,
    .guide-profile h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    h1,
    .guide-profile h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3,
    .tour-card h3,
    .tour-list-card h3 {
        font-size: 24px;
    }

    .navlinks,
    .navlinks a,
    .nav-item__link {
        font-size: 16px;
    }
}

/* Apple-level premium visual polish */
:root {
    --brand-primary: #0f172a;
    --color-primary: var(--brand-primary);
    --ink: var(--brand-primary);
    --muted: #6b7280;
    --paper: #f8f8f6;
    --surface: #ffffff;
    --line: #e5e7eb;
    --hover-bg: rgba(15, 23, 42, 0.045);
    --hover-border: #cbd5e1;
    --hover-text: var(--brand-primary);
    --hover-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
    --transition-fast: 200ms ease;
    --teal: var(--brand-primary);
    --teal-dark: var(--brand-primary);
    --coral: var(--brand-primary);
    --gold: #c8a96a;
    --hero-surface-next: #f3f0e9;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--brand-primary);
    background: var(--paper);
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 38px;
}

.site-header {
    transition: background 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(18px);
}

.navbar {
    gap: 30px;
    border-top-color: rgba(255, 255, 255, 0.12);
}

.brand img {
    width: 152px;
}

.navlinks {
    gap: 26px;
}

.navlinks a,
.nav-item__link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.navlinks a:hover,
.navlinks a[aria-current="page"],
.nav-item:hover > .nav-item__link {
    color: var(--gold);
}

.topbar a,
.navlinks a,
.nav-item__link {
    opacity: 0.92;
    transition: color 250ms ease, opacity 250ms ease, transform 250ms ease;
}

.topbar a:hover,
.navlinks a:hover,
.nav-item__link:hover {
    opacity: 1;
}

.agent-login,
.button,
.tour-card__link,
.tour-list-card__price a {
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.button--primary,
.tour-card__link {
    padding: 16px 32px;
    color: #ffffff;
    background: var(--brand-primary);
}

.button--primary:hover,
.tour-card__link:hover {
    background: #1e293b;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.agent-login {
    color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.agent-login:hover {
    color: var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.hero-search__bar {
    min-height: 64px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.hero-search__window {
    height: 52px;
    padding: 0 24px;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 400;
}

.hero-search__window:hover,
.hero-search__window.is-active {
    background: #f8f8f6;
}

.hero-search__window i,
.destination-panel__header i,
.tour-list-card__place i,
.tour-list-card__meta i,
.tour-list-card__dates i,
.tour-list-card__icons i {
    color: var(--brand-primary);
    font-size: 18px;
}

.hero-search__window input::placeholder {
    color: #6b7280;
}

.hero-search__button {
    width: 52px;
    height: 52px;
    color: #ffffff;
    background: var(--brand-primary);
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.hero-search__button:hover {
    background: #1e293b;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.destination-panel,
.date-calendar,
.mega-menu {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.destination-panel,
.date-calendar {
    color: var(--brand-primary);
}

.destination-panel__header {
    padding: 0 26px;
    color: var(--brand-primary);
    font-size: 18px;
}

.destination-panel__list {
    padding: 12px 18px 18px;
}

.destination-group__toggle {
    min-height: 52px;
    padding: 0 14px;
    font-size: 17px;
    font-weight: 600;
}

.destination-group__toggle i,
.date-calendar__month i {
    color: var(--brand-primary);
}

.destination-group__items {
    gap: 6px;
    padding: 2px 14px 14px 30px;
}

.destination-group__items button {
    min-height: 34px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 400;
}

.destination-group__items button:hover {
    color: var(--brand-primary);
}

.date-calendar {
    padding: 20px 22px 24px;
}

.date-calendar__range {
    gap: 14px;
    margin-bottom: 14px;
}

.date-calendar__range input,
.tour-filter__search input,
.tour-filter__range input,
.tour-filter__date {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
}

.date-calendar__range input:focus,
.tour-filter__search input:focus,
.tour-filter__range input:focus,
.tour-filter__date:focus {
    border-color: rgba(15, 23, 42, 0.34);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.06);
}

.date-calendar__month-nav > button:not(.date-calendar__month),
.date-calendar__day.is-selected,
.date-calendar__day.is-in-range,
.date-calendar__months button.is-active,
.date-calendar__months button:hover {
    color: #ffffff;
    background: var(--brand-primary);
}

.date-calendar__month {
    border-color: #e5e7eb;
}

.date-calendar__months button {
    border-color: #e5e7eb;
}

.date-calendar__years input,
.tour-filter__group input {
    accent-color: var(--brand-primary);
}

.date-calendar__day {
    color: var(--brand-primary);
}

.date-calendar__day:disabled {
    color: #9ca3af;
}

.date-calendar__day.is-holiday {
    color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(200, 169, 106, 0.62);
}

.section-pad {
    padding-top: 112px;
    padding-bottom: 112px;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading p,
.split__content p,
.tour-card p {
    color: #6b7280;
}

.eyebrow,
.tour-card__meta,
.tour-card__tag,
.tour-categories span {
    color: var(--gold);
    font-weight: 600;
}

.tour-filter {
    gap: 30px;
}

.tour-filter__top {
    color: #6b7280;
}

.tour-filter__group {
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
}

.tour-filter__group:last-child {
    border-bottom: 0;
}

.tour-filter__toggle,
.tour-filter__group h3 {
    font-size: 18px;
    font-weight: 600;
}

.tour-filter__options {
    gap: 16px;
    padding-top: 4px;
}

.tour-filter__group label {
    color: #374151;
    font-size: 15px;
    font-weight: 400;
}

.tour-filter__search input {
    height: 52px;
    padding: 0 18px;
}

.tour-filter__range {
    gap: 14px;
}

.tour-filter__range input,
.tour-filter__date {
    height: 48px;
    padding: 0 14px;
}

.tour-categories button,
.tour-card,
.tour-list-card,
.guide-profile,
.guide-details article,
.availability-list {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.tour-categories button:hover,
.tour-categories button.is-active,
.tour-card:hover,
.tour-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.tour-categories button {
    padding: 28px;
}

.tour-card {
    overflow: hidden;
}

.tour-card img,
.tour-list-card > img {
    filter: saturate(0.96) contrast(1.02);
}

.tour-card__body,
.tour-list-card__body {
    gap: 14px;
    padding: 30px;
}

.tour-card h3,
.tour-list-card h3 {
    color: var(--brand-primary);
}

.tour-card__footer {
    margin-top: 14px;
}

.tour-card__price strong {
    color: var(--brand-primary);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.tour-card__price span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.tour-list-card {
    border-radius: 24px;
}

.tour-list-card__price {
    border-left: 1px solid #e5e7eb;
}

.tour-list-card__price span {
    color: #6b7280;
    font-size: 18px;
    font-weight: 400;
}

.tour-list-card__price strong {
    color: var(--brand-primary);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.tour-list-card__price small {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.tour-list-card__price a {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    text-transform: none;
}

.tour-list-card__price a:hover {
    color: #ffffff;
    background: var(--brand-primary);
}

.all-tours__toolbar button {
    color: #6b7280;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.all-tours__toolbar button.is-active {
    color: #ffffff;
    background: var(--brand-primary);
}

.mega-menu {
    color: var(--brand-primary);
}

.mega-menu h2,
.mega-menu a:hover,
.mega-menu__all {
    color: var(--gold) !important;
}

.mega-menu a {
    color: #374151;
}

.destination-region > a {
    color: var(--brand-primary);
    font-weight: 600;
}

.destination-region:hover > a,
.destination-region:focus-within > a,
.mega-menu__rail:not(:hover) .destination-region.is-featured > a,
.destination-region.is-featured:focus-within > a {
    color: var(--brand-primary);
    background: rgba(200, 169, 106, 0.16);
}

.destination-region__detail p {
    color: #6b7280;
}

@media (max-width: 980px) {
    h1,
    .guide-profile h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }
}

@media (max-width: 620px) {
    .brand img {
        width: 132px;
    }

    h1,
    .guide-profile h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-search__bar {
        border-radius: 24px;
    }

    .hero-search__window {
        height: 46px;
    }

    .hero-search__button {
        height: 46px;
        width: 100%;
    }

    .section-pad {
        padding-top: 76px;
        padding-bottom: 76px;
    }
}

/* Stage 6: Header and navigation refinement */
.site-header {
    height: 80px;
    color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    backdrop-filter: blur(18px);
    transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: #e5e7eb;
    box-shadow: none;
}

.topbar {
    display: none;
}

.navbar {
    width: min(1440px, calc(100% - 48px));
    min-height: 80px;
    gap: 32px;
    border-top: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 152px;
    height: auto;
}

.navlinks {
    gap: 32px;
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.navlinks a,
.nav-item__link {
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 1;
    transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.navlinks a:hover,
.nav-item__link:hover,
.nav-item:hover > .nav-item__link {
    color: #c8a96a;
}

.navlinks a[aria-current="page"] {
    color: var(--brand-primary);
}

.navlinks a[aria-current="page"]::after,
.nav-item__link[aria-current="page"]::after {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    margin: 6px auto 0;
    background: #c8a96a;
    border-radius: 999px;
}

.nav-item__link {
    min-height: 44px;
}

.agent-login {
    min-height: 52px;
    padding: 14px 28px;
    color: #ffffff;
    background: var(--brand-primary);
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.agent-login:hover {
    color: #ffffff;
    background: #1e293b;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    transform: translateY(-1px);
}

.menu-toggle {
    color: var(--brand-primary);
    border-color: #e5e7eb;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 16px;
}

.menu-toggle:hover {
    color: var(--brand-primary);
    background: #f8f8f6;
}

.mega-menu {
    top: calc(100% + 8px);
    border-color: #e5e7eb;
}

@media (max-width: 980px) {
    .site-header {
        height: auto;
        min-height: 80px;
    }

    .navbar {
        width: min(100% - 32px, 960px);
        min-height: 80px;
        gap: 16px;
    }

    .brand img {
        width: 140px;
    }

    .navlinks.is-open {
        gap: 4px;
        padding: 18px 0 24px;
        border-top: 1px solid #e5e7eb;
    }

    .navlinks.is-open a,
    .navlinks.is-open .nav-item__link {
        padding: 14px 0;
        color: var(--brand-primary);
        font-size: 16px;
        font-weight: 500;
    }

    .navlinks.is-open a:hover,
    .navlinks.is-open .nav-item__link:hover {
        color: #c8a96a;
    }

    .navlinks.is-open .navlinks__agent {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        min-height: 48px;
        margin-top: 8px;
        padding: 12px 24px;
        color: #ffffff;
        background: var(--brand-primary);
        border-radius: 16px;
    }
}

@media (max-width: 620px) {
    .navbar {
        width: calc(100% - 32px);
    }

    .brand img {
        width: 132px;
    }
}

/* Agency application page */
.agency-apply-page {
    min-height: 100vh;
    padding: 104px 24px 80px;
    color: var(--brand-primary);
    background: #ffffff;
}

.agency-apply-hero,
.agency-benefits,
.agency-form-card {
    width: min(1120px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.agency-apply-hero {
    margin-bottom: 30px;
}

.agency-apply-eyebrow,
.agency-apply-hero .eyebrow {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.agency-apply-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--brand-primary);
    font-size: clamp(56px, 5vw, 64px);
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: 0;
}

.agency-apply-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #64748b;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.48;
}

.agency-benefits {
    display: block;
    margin-bottom: 30px;
}

.agency-benefits .section-heading {
    margin-bottom: 28px;
}

.agency-benefit-card,
.agency-benefits article {
    min-height: 144px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: none;
}

.agency-benefit-card h2,
.agency-benefits article h2,
.agency-benefits article h3 {
    margin: 0 0 12px;
    color: var(--brand-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
}

.agency-benefit-card p,
.agency-benefits article p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.45;
}

.agency-benefits article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    background: #f8f8f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.agency-form-card {
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: none;
}

.agency-form-card h2 {
    margin: 0;
    color: var(--brand-primary);
    font-size: 30px;
    font-weight: 620;
    line-height: 1.18;
    letter-spacing: 0;
}

.agency-form-card__heading span {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.agency-application-form {
    display: grid;
    gap: 34px;
    margin-top: 28px;
}

.agency-form-section,
.agency-application-form fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.agency-form-section legend,
.agency-application-form legend {
    margin-bottom: 18px;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
}

.agency-form-grid,
.agency-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.agency-field,
.agency-file-field,
.agency-application-form label {
    display: grid;
    gap: 8px;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
}

.agency-field--full,
.agency-form-grid__wide {
    grid-column: 1 / -1;
}

.agency-field input,
.agency-field textarea,
.agency-file-field input,
.agency-application-form input,
.agency-application-form textarea {
    width: 100%;
    color: var(--brand-primary);
    font: inherit;
    font-size: 14px;
    font-weight: 400;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.agency-field input,
.agency-application-form input:not([type="checkbox"]):not([type="file"]) {
    height: 48px;
    padding: 0 15px;
}

.agency-field textarea,
.agency-application-form textarea {
    min-height: 118px;
    padding: 14px 15px;
    resize: vertical;
}

.agency-file-field input,
.agency-application-form input[type="file"] {
    min-height: 48px;
    padding: 12px 15px;
}

.agency-field input:focus,
.agency-field textarea:focus,
.agency-file-field input:focus,
.agency-application-form input:focus,
.agency-application-form textarea:focus {
    border-color: var(--brand-primary);
    background: #fbfbfa;
}

.agency-field input[aria-invalid="true"],
.agency-field textarea[aria-invalid="true"],
.agency-file-field input[aria-invalid="true"],
.agency-application-form input[aria-invalid="true"],
.agency-application-form textarea[aria-invalid="true"] {
    border-color: #dc2626;
}

.agency-file-note,
.agency-form-help {
    color: #64748b;
    font-size: 12px;
    font-weight: 400;
}

.agency-user-list {
    display: grid;
    gap: 12px;
}

.agency-add-user {
    justify-self: start;
    min-height: 40px;
    padding: 0;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.agency-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.agency-kvkk input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--brand-primary);
}

.agency-form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.agency-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.agency-submit {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease;
}

.agency-submit:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.agency-submit:disabled {
    cursor: progress;
    opacity: 0.64;
}

.agency-form-status {
    min-height: 22px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.agency-form-status[data-state="success"] {
    max-width: 720px;
    padding: 16px 18px;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 16px;
}

.agency-form-status[data-state="error"] {
    max-width: 720px;
    padding: 16px 18px;
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 16px;
}

@media (max-width: 980px) {
    .agency-apply-page {
        padding-top: 100px;
    }

    .agency-apply-hero {
        margin-bottom: 28px;
    }

    .agency-apply-hero h1 {
        font-size: 46px;
        line-height: 1.04;
    }

    .agency-apply-hero p {
        font-size: 18px;
        line-height: 1.5;
    }

    .agency-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agency-benefits {
        margin-bottom: 28px;
    }
}

@media (max-width: 720px) {
    .agency-apply-page {
        padding: 94px 18px 64px;
    }

    .agency-apply-hero {
        margin-bottom: 24px;
    }

    .agency-apply-hero h1 {
        font-size: 36px;
        line-height: 1.06;
    }

    .agency-apply-hero p {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.48;
    }

    .agency-benefits__grid,
    .agency-form-grid,
    .agency-upload-grid {
        grid-template-columns: 1fr;
    }

    .agency-benefits {
        gap: 12px;
        margin-bottom: 24px;
    }

    .agency-benefits article {
        min-height: auto;
        padding: 16px;
    }

    .agency-benefits article h2 {
        font-size: 20px;
    }

    .agency-benefits article p {
        font-size: 16px;
    }

    .agency-form-card {
        padding: 24px 18px;
        border-radius: 22px;
    }
}

/* Stage 23.1: Photo / route toggle surfaces */
.photo-route-surface {
    position: relative;
}

.tour-list-card > .photo-route-surface--card {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
}

.photo-route-surface--card > img {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 24px 0 0 24px;
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1);
    transition: opacity 220ms ease, transform 200ms ease;
}

.tour-list-card:hover .photo-route-surface--card > img {
    transform: scale(1.025);
}

@media (max-width: 980px) {
    .tour-list-card > .photo-route-surface--card,
    .photo-route-surface--card > img {
        min-height: 180px;
        border-radius: 24px 24px 0 0;
    }
}

/* Stage 21.0: Premium guides page foundation */
.guides-page {
    min-height: 100vh;
    padding: 112px 24px 80px;
    color: var(--brand-primary);
    background: #ffffff;
}

.guides-dashboard {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.guides-back {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 28px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    transition: color 180ms ease;
}

.guides-back:hover {
    color: var(--brand-primary);
}

.guides-heading {
    margin-bottom: 32px;
}

.guides-heading h1 {
    margin: 0 0 10px;
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.guides-heading p {
    max-width: 680px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

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

.guide-card {
    display: grid;
    gap: 18px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: none;
    transition: border-color 180ms ease;
}

.guide-card:hover {
    border-color: #d1d5db;
}

.guide-card img {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    object-fit: cover;
}

.guide-card__body {
    display: grid;
    gap: 14px;
}

.guide-card h2 {
    margin: 0;
    color: var(--brand-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.guide-card p {
    margin: -8px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.guide-card__languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.guide-card__languages span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 11px;
    color: #64748b;
    background: #f8f8f6;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.guide-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 2px 0 0;
}

.guide-card__stats div {
    min-width: 0;
}

.guide-card__stats dt {
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.guide-card__stats dd {
    margin: 0;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.guide-card a {
    justify-self: start;
    margin-top: 2px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.guide-card a:hover {
    color: #334155;
}

@media (max-width: 980px) {
    .guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .guides-page {
        padding: 88px 16px 64px;
    }

    .guides-heading h1 {
        font-size: 34px;
    }

    .guides-heading p {
        font-size: 15px;
    }

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

/* Stage 20.0: Premium availability table foundation */
.availability-page {
    min-height: 100vh;
    padding: 112px 24px 80px;
    color: var(--brand-primary);
    background: #ffffff;
}

.availability-dashboard {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.availability-back {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 28px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    transition: color 180ms ease;
}

.availability-back:hover {
    color: var(--brand-primary);
}

.availability-heading {
    margin-bottom: 28px;
}

.availability-heading h1 {
    margin: 0 0 10px;
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.availability-heading p {
    max-width: 680px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.availability-controls {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(220px, 1fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 20px;
}

.availability-controls label {
    display: grid;
    gap: 7px;
    min-width: 0;
    font-size: inherit;
    font-weight: inherit;
}

.availability-controls label > span {
    display: block;
    color: #64748b;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
}

.availability-controls input,
.availability-controls select,
.availability-controls .availability-date-picker__trigger {
    box-sizing: border-box;
    width: 100%;
    height: 44px;
    min-width: 0;
    padding: 0 14px;
    color: var(--brand-primary);
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.availability-controls select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
}

.availability-controls input[type="search"] {
    appearance: none;
    -webkit-appearance: none;
}

.availability-controls input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.availability-controls input::placeholder {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
}

.availability-controls input:focus,
.availability-controls select:focus,
.availability-controls .availability-date-picker__trigger:focus {
    border-color: var(--brand-primary);
    outline: 0;
}

.availability-controls__reset {
    align-self: end;
    height: 44px;
    padding: 0 4px;
    color: #64748b;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

.availability-controls__reset:hover {
    color: var(--brand-primary);
    background: transparent;
    border-color: transparent;
}

.availability-date-field {
    position: relative;
    display: grid;
    gap: 7px;
    min-width: 0;
}

.availability-date-field > span {
    display: block;
    color: #64748b;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.availability-date-picker {
    position: relative;
}

.availability-date-picker__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease;
}

.availability-date-picker__trigger:hover,
.availability-date-picker.is-open .availability-date-picker__trigger {
    border-color: var(--brand-primary);
}

.availability-date-picker__trigger i {
    color: #64748b;
    font-size: 15px;
}

.availability-date-picker__backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(15, 23, 42, 0.28);
}

.date-calendar--availability {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    z-index: 50;
    width: min(560px, calc(100vw - 32px));
    max-height: min(680px, calc(100vh - 48px));
    padding: 22px 24px 20px;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.date-calendar--availability .date-calendar__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 14px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.date-calendar--availability .date-calendar__range-hint {
    margin: 0 0 12px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
}

.date-calendar--availability .date-calendar__legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.date-calendar__dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.date-calendar__dot--holiday {
    background: var(--holiday);
    box-shadow: inset 0 0 0 1px var(--holiday);
}

.date-calendar__dot--eve {
    background: #fef3c7;
    box-shadow: inset 0 0 0 1px #f59e0b;
}

.date-calendar__dot--today {
    background: var(--brand-primary);
}

.date-calendar--availability .date-calendar__years {
    margin-bottom: 12px;
}

.date-calendar--availability .date-calendar__month-nav {
    margin-bottom: 10px;
}

.date-calendar--availability .date-calendar__month-nav > button:not(.date-calendar__month) {
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.date-calendar--availability .date-calendar__month {
    min-height: 42px;
    padding: 0 16px;
    font-size: 18px;
}

.date-calendar--availability .date-calendar__weekdays {
    margin-top: 8px;
    font-size: 13px;
}

.date-calendar--availability .date-calendar__days {
    row-gap: 8px;
    margin-top: 10px;
}

.date-calendar--availability .date-calendar__day {
    width: 42px;
    height: 42px;
    font-size: 15px;
}

.date-calendar--availability .date-calendar__day.is-holiday-eve {
    color: #b45309;
    background: #fffbeb;
    box-shadow: inset 0 0 0 1px #f59e0b;
}

.date-calendar--availability .date-calendar__day.is-selected.is-holiday,
.date-calendar--availability .date-calendar__day.is-selected.is-holiday-eve {
    color: #fff;
    background: var(--coral);
    box-shadow: none;
}

.date-calendar--availability .date-calendar__holidays {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.date-calendar--availability .date-calendar__holidays div + div {
    margin-top: 6px;
}

.date-calendar--availability .date-calendar__holidays-empty {
    margin: 0;
    color: #94a3b8;
}

.date-calendar--availability .date-calendar__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.availability-date-picker__clear {
    min-height: 38px;
    padding: 0 16px;
    color: var(--brand-primary);
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.availability-date-picker__clear:hover {
    background: #f1f5f9;
}

.availability-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 18px 22px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

.availability-summary__stats {
    color: #475569;
    font-size: 14px;
}

.availability-summary__stats strong {
    color: var(--brand-primary);
    font-size: 18px;
    font-weight: 600;
}

.availability-summary__tours {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.availability-summary__chip {
    padding: 8px 14px;
    color: #475569;
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.availability-summary__chip:hover,
.availability-summary__chip.is-active {
    color: var(--brand-primary);
    background: #ffffff;
    border-color: var(--brand-primary);
}

.availability-list__loading,
.availability-list__empty {
    margin: 0;
    padding: 28px 24px;
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

.availability-page .availability-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: none;
    transition: none;
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.availability-table th,
.availability-table td {
    height: 64px;
    padding: 0 18px;
    overflow: hidden;
    color: #475569;
    border-bottom: 1px solid #eef2f6;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.availability-table th {
    height: 48px;
    color: #64748b;
    background: #f8f8f6;
    font-size: 12px;
    font-weight: 600;
}

.availability-table tbody tr {
    height: auto;
    transition: background 160ms ease;
}

.availability-table tbody tr:hover {
    background: #f8f8f6;
}

.availability-table tbody tr:last-child td {
    border-bottom: 0;
}

.availability-table td:first-child,
.availability-table th:first-child {
    width: 34%;
    padding-left: 24px;
}

.availability-table td:nth-child(2),
.availability-table th:nth-child(2) {
    width: 8%;
}

.availability-table td:nth-child(3),
.availability-table th:nth-child(3) {
    width: 13%;
}

.availability-table td:nth-child(4),
.availability-table th:nth-child(4) {
    width: 10%;
}

.availability-table td:nth-child(5),
.availability-table th:nth-child(5) {
    width: 12%;
}

.availability-table td:nth-child(6),
.availability-table th:nth-child(6) {
    width: 10%;
}

.availability-table td:last-child,
.availability-table th:last-child {
    width: 10%;
    padding-right: 24px;
}

.availability-table td.availability-table__tour {
    overflow: visible;
    height: auto;
    text-overflow: clip;
    vertical-align: top;
    white-space: normal;
}

.availability-table__tour {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    white-space: normal;
}

.availability-table__tour-title {
    display: block;
}

.availability-table__tour-title strong {
    display: block;
    overflow: visible;
    line-height: 1.35;
    text-overflow: unset;
    white-space: normal;
    word-break: break-word;
}

.availability-table__tour-meta {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

.availability-table__concept {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 4px 10px;
    color: #475569;
    background: #f1f5f9;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.availability-table__date {
    font-weight: 500;
}

.availability-table__action .availability-table__concept-label {
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 600;
}

.availability-table strong {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
}

.availability-table__price {
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
}

.availability-table__guide--unassigned {
    color: #94a3b8;
    font-weight: 500;
}

.availability-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 30px;
    padding: 0 14px;
    border: 1px solid;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.availability-status--available {
    color: #ffffff;
    background: #16a34a;
    border-color: transparent;
}

.availability-status--limited {
    color: #b45309;
    background: #fef3c7;
    border-color: #f59e0b;
}

.availability-status--sold-out {
    color: #ffffff;
    background: #dc2626;
    border-color: transparent;
}

@media (max-width: 1040px) {
    .availability-page,
    .availability-dashboard {
        min-width: 0;
        max-width: 100%;
    }

    .availability-page {
        overflow-x: hidden;
    }

    .availability-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .availability-controls__reset {
        justify-self: start;
    }

    .availability-page .availability-list {
        width: 100%;
        max-width: 100%;
        contain: inline-size paint;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .availability-table {
        min-width: 920px;
    }
}

@media (max-width: 620px) {
    .availability-page {
        padding: 88px 16px 64px;
    }

    .availability-heading h1 {
        font-size: 34px;
    }

    .availability-heading p {
        font-size: 15px;
    }

    .availability-controls {
        grid-template-columns: 1fr;
    }
}

/* Stage 12.0: Premium tour detail information architecture */
.tour-detail-page {
    color: var(--brand-primary);
    background: #ffffff;
}

.tour-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 71%) minmax(280px, 29%);
    gap: 32px;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 24px 0 64px;
}

.tour-detail-content {
    min-width: 0;
}

.tour-detail-heading {
    margin-bottom: 18px;
}

.tour-detail-heading span {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.tour-detail-heading h1 {
    max-width: 820px;
    margin: 0;
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(32px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.tour-detail-page.is-not-found {
    min-height: 62vh;
    background: #ffffff;
}

.tour-not-found {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    padding: 112px 0 96px;
}

.tour-not-found span {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.tour-not-found h1 {
    margin: 0 0 14px;
    color: var(--brand-primary);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
}

.tour-not-found p {
    max-width: 520px;
    margin: 0 0 22px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.tour-not-found a {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.tour-metadata-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    min-height: 0;
    margin-bottom: 0;
    padding: 12px 0;
    overflow: visible;
    background: transparent;
    border-bottom: 1px solid #ececec;
    scrollbar-width: none;
}

.tour-metadata-strip::-webkit-scrollbar {
    display: none;
}

.tour-metadata-strip div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    padding: 0 20px 0 0;
    color: var(--brand-primary);
    white-space: nowrap;
    border-right: 1px solid #ececec;
}

.tour-metadata-strip div:first-child {
    padding-left: 0;
}

.tour-metadata-strip div:last-child {
    padding-right: 0;
    border-right: 0;
}

.tour-metadata-strip i {
    width: 14px;
    color: var(--brand-primary);
    font-size: 13px;
    text-align: center;
}

.tour-metadata-strip span {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.tour-metadata-strip strong {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 1240px) and (min-width: 761px) {
    .tour-metadata-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 20px;
    }

    .tour-metadata-strip div {
        align-items: flex-start;
        min-width: 0;
        white-space: normal;
    }

    .tour-metadata-strip strong {
        overflow: visible;
        text-overflow: clip;
    }
}

.tour-guide-line {
    margin: 8px 0 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    overflow: visible;
    white-space: normal;
}

.tour-guide-line strong {
    color: #64748b;
    font-weight: 500;
}

.tour-guide-line__unassigned {
    color: #94a3b8;
    font-weight: 500;
}

.tour-detail-section {
    margin-bottom: 56px;
}

.tour-departures-section {
    margin-top: 0;
    margin-bottom: 56px;
}

.tour-program-section {
    margin-top: 0;
    margin-bottom: 56px;
}

.tour-services-section {
    margin-bottom: 56px;
}

.tour-hotels-section {
    margin-bottom: 56px;
}

.tour-detail-content > .tour-detail-section:last-of-type {
    margin-bottom: 0;
}

.tour-detail-section h2,
.service-card h2 {
    margin: 0 0 14px;
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.tour-detail-section p {
    max-width: 760px;
    margin: 0;
    color: #475569;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.tour-detail-section .tour-section-subtitle {
    margin: -6px 0 14px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.tour-program-route {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.tour-program-notes ul {
    margin: 0;
    padding-left: 18px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
}

.tour-program-notes li + li {
    margin-top: 8px;
}

.departure-list {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
}

.departure-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto minmax(120px, 0.5fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 60px;
    padding: 12px 18px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #eef2f6;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 200ms ease, box-shadow 200ms ease;
}

.departure-row:last-child {
    border-bottom: 0;
}

.departure-row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: transparent;
    transition: background 200ms ease;
}

.departure-row:not(.is-disabled):hover {
    background: #fafaf8;
}

.departure-row.is-selected {
    background: #f8f8f6;
}

.departure-row.is-selected::before {
    background: var(--brand-primary);
}

.departure-row.is-disabled,
.departure-row:disabled {
    opacity: 0.48;
    cursor: not-allowed;
}

.departure-row.is-disabled:hover,
.departure-row:disabled:hover {
    background: #ffffff;
}

.departure-row__date {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.departure-row__date strong {
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.departure-row__date small {
    color: #64748b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.departure-row__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 24px;
    padding: 0 12px;
    border: 1px solid;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.departure-row__status--available {
    color: #ffffff;
    background: #16a34a;
    border-color: transparent;
}

.departure-row__status--limited {
    color: #b45309;
    background: #fef3c7;
    border-color: #f59e0b;
}

.departure-row__status--sold-out {
    color: #ffffff;
    background: #dc2626;
    border-color: transparent;
}

.departure-row__price {
    color: var(--brand-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.departure-row.is-hidden-by-limit {
    display: none;
}

.departure-list__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 0;
    color: var(--brand-primary);
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 200ms ease;
}

.departure-list__toggle:hover {
    color: #1e293b;
}

.day-timeline {
    position: relative;
    display: grid;
    gap: 0;
    padding: 16px 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

.day-timeline::before {
    display: none;
}

.day-timeline article,
.day-timeline__item {
    display: grid;
    grid-template-columns: minmax(52px, auto) minmax(0, 1fr);
    column-gap: 16px;
    position: relative;
    overflow: visible;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eef2f6;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 0;
    transition: none;
}

.day-timeline__label,
.day-timeline h3 span {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 28px;
    color: var(--brand-primary);
    background: #f8f8f6;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.day-timeline__content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.day-timeline__content strong,
.day-timeline h3 strong {
    color: var(--brand-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.22;
}

.day-timeline__content p,
.day-timeline p {
    grid-column: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.day-timeline__empty {
    margin: 0;
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.day-timeline article::before,
.day-timeline__item::before {
    display: none;
}

.day-timeline article:first-child,
.day-timeline__item:first-child {
    padding-top: 0;
}

.day-timeline article:last-child,
.day-timeline__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.day-timeline h3 {
    display: contents;
}

.day-timeline h3 strong {
    grid-column: 2;
}

.tour-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.03);
}

.service-card h2 {
    font-size: 23px;
}

.service-card--included {
    background: #ffffff;
    border-color: #e5e7eb;
}

.service-card--excluded {
    background: #ffffff;
}

.service-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: #475569;
    font-size: 13.5px;
    line-height: 1.7;
    list-style: none;
    text-align: justify;
    text-justify: inter-word;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    text-align: justify;
    text-justify: inter-word;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--brand-primary);
    border-radius: 999px;
}

.service-card--excluded li::before {
    background: #94a3b8;
}

.hotel-grid,
.document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hotel-grid article,
.document-grid a {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: none;
}

.hotel-grid article {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px;
    transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.hotel-grid article.hotel-card--program {
    display: block;
    padding: 20px;
}

.hotel-card__list {
    display: grid;
    gap: 0;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.hotel-card__list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 9px 0;
    border-bottom: 1px solid #eef0f3;
}

.hotel-card__list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hotel-card__list strong {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.hotel-card__list .hotel-card__stars {
    white-space: nowrap;
    line-height: 1.35;
}

.hotel-grid article:hover {
    border-color: #dfe3ea;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    transform: translateY(-3px);
}

.hotel-card__media {
    width: 100px;
    height: 78px;
    overflow: hidden;
    border-radius: 16px;
}

.hotel-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 350ms ease;
}

.hotel-grid article:hover img {
    transform: scale(1.04);
}

.hotel-grid h3 {
    margin: 0 0 7px;
    color: var(--brand-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.hotel-grid span {
    display: block;
    color: #64748b;
    font-size: 13px;
}

.hotel-grid span b {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.hotel-grid p {
    display: inline-flex;
    width: max-content;
    margin: 9px 0 0;
    padding: 5px 10px;
    color: var(--brand-primary);
    background: #f8f8f6;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.document-grid a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 18px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.document-grid a:hover {
    border-color: rgba(15, 23, 42, 0.22);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.document-grid i {
    color: #64748b;
    font-size: 20px;
}

.tour-detail-sidebar {
    position: relative;
    align-self: start;
}

.tour-booking-card {
    position: static;
    display: grid;
    gap: 10px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) {
    .tour-detail-sidebar {
        align-self: stretch;
    }

    .tour-booking-card {
        position: sticky;
        top: 110px;
    }
}

.tour-booking-card > span,
.tour-booking-card dt {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.tour-booking-card strong {
    color: var(--brand-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.tour-booking-card p {
    margin: -8px 0 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.tour-booking-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 12px 0 10px;
    border-top: 1px solid #eceff3;
    border-bottom: 1px solid #eceff3;
}

.tour-booking-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.tour-booking-card dd {
    margin: 0;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

.tour-booking-card .tour-booking-card__note {
    max-width: 220px;
    margin: 2px auto 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}

.tour-booking-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0;
    color: var(--brand-primary);
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.tour-booking-card__link i {
    font-size: 20px;
}

.tour-booking-card__link:hover {
    color: #1e293b;
}

@media (max-width: 1023px) {
    .tour-detail-shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tour-booking-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .tour-detail-shell {
        width: calc(100% - 32px);
        padding: 28px 0 72px;
    }

    .tour-detail-heading h1 {
        font-size: 30px;
    }

    .tour-service-grid,
    .hotel-grid,
    .document-grid {
        grid-template-columns: 1fr;
    }

    .tour-detail-section {
        margin-bottom: 48px;
    }

    .tour-departures-section,
    .tour-program-section,
    .tour-services-section {
        margin-bottom: 48px;
    }

    .tour-hotels-section {
        margin-bottom: 48px;
    }

    .tour-metadata-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
        margin-bottom: 0;
    }

    .tour-metadata-strip div {
        align-items: flex-start;
        min-width: 0;
        padding-right: 0;
        border-right: 0;
        white-space: normal;
    }

    .tour-metadata-strip strong {
        overflow: visible;
        text-overflow: clip;
    }

    .day-timeline {
        padding: 18px;
    }

    .departure-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px 16px;
        min-height: 0;
        padding: 16px 18px 16px 22px;
    }

    .departure-row__status {
        justify-self: end;
    }

    .departure-row__price {
        grid-column: 1 / -1;
        text-align: left;
        font-size: 18px;
    }

    .day-timeline article::before {
        left: -22px;
    }

    .day-timeline h3 {
        align-items: flex-start;
        gap: 12px;
    }

    .day-timeline h3 strong {
        font-size: 16px;
    }

    .day-timeline p {
        padding-left: 0;
    }

    .hotel-grid article {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .hotel-card__media {
        width: 100px;
        height: 78px;
    }

}

/* Stage 12.1: Premium tour detail hero gallery */
.tour-detail-hero {
    padding: 112px 24px 40px;
    background: #ffffff;
}

.tour-detail-gallery {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 70%) minmax(0, 30%);
    gap: 16px;
    width: min(100%, 1320px);
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: #f8f8f6;
}

.tour-detail-gallery--single {
    grid-template-columns: minmax(0, 1fr);
}

.tour-detail-gallery--single .tour-detail-gallery__side {
    display: none;
}

.tour-detail-gallery__main,
.tour-detail-gallery__side {
    min-width: 0;
    min-height: 0;
}

.tour-detail-gallery__main {
    position: relative;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
}

.tour-detail-gallery--single .tour-detail-gallery__main {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.tour-detail-gallery__side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tour-detail-gallery__item {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.tour-detail-gallery__side .tour-detail-gallery__item:first-child {
    border-radius: 0 24px 0 0;
}

.tour-detail-gallery__side .tour-detail-gallery__item:last-child {
    border-radius: 0 0 24px 0;
}

.tour-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.tour-detail-gallery__main::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.16) 100%);
}

.tour-detail-gallery__button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 16px;
    color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.tour-detail-gallery__button:hover {
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    transform: translateY(-1px);
}

.tour-detail-gallery__button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.tour-detail-gallery__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f1f5f9;
    color: #94a3b8;
    text-align: center;
}

.tour-detail-gallery__placeholder i {
    font-size: 42px;
    line-height: 1;
}

.tour-detail-gallery__placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.tour-detail-gallery--placeholder .tour-detail-gallery__main::after {
    opacity: 0.15;
}

.tour-detail-gallery__main img,
.tour-detail-gallery__side img {
    cursor: pointer;
}

body.tour-gallery-lightbox-open {
    overflow: hidden;
}

.tour-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 40px);
    box-sizing: border-box;
}

.tour-gallery-lightbox[hidden] {
    display: none !important;
}

.tour-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
}

.tour-gallery-lightbox__panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
}

.tour-gallery-lightbox__figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    margin: 0;
}

.tour-gallery-lightbox__image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(1120px, calc(100vw - 48px));
    max-height: calc(100vh - 96px);
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.tour-gallery-lightbox__counter {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
}

.tour-gallery-lightbox__close,
.tour-gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    box-shadow: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 180ms ease, transform 180ms ease;
}

.tour-gallery-lightbox__close:hover,
.tour-gallery-lightbox__nav:hover {
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
}

.tour-gallery-lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1201;
}

.tour-gallery-lightbox__nav--prev {
    left: -56px;
    top: 50%;
    transform: translateY(-50%);
}

.tour-gallery-lightbox__nav--next {
    right: -56px;
    top: 50%;
    transform: translateY(-50%);
}

.tour-gallery-lightbox__nav--prev:hover,
.tour-gallery-lightbox__nav--next:hover {
    transform: translateY(calc(-50% - 1px));
}

@media (max-width: 980px) {
    .tour-gallery-lightbox__close {
        top: 16px;
        right: 16px;
    }

    .tour-gallery-lightbox__nav--prev {
        left: 8px;
    }

    .tour-gallery-lightbox__nav--next {
        right: 8px;
    }

    .tour-gallery-lightbox__image {
        max-height: calc(100vh - 80px);
        border-radius: 12px;
    }
}

@media (max-width: 980px) {
    .tour-detail-hero {
        padding: 104px 20px 40px;
    }

    .tour-detail-gallery {
        grid-template-columns: minmax(0, 1fr);
        height: 320px;
        border-radius: 22px;
    }

    .tour-detail-gallery__main,
    .tour-detail-gallery--single .tour-detail-gallery__main {
        width: 100%;
        height: 100%;
        border-radius: 22px;
    }

    .tour-detail-gallery__side {
        display: none;
    }

    .tour-detail-gallery__button {
        right: 16px;
        bottom: 16px;
        min-height: 40px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Stage 7A: Tour card premium refinement */
.tour-results--list {
    gap: 24px;
}

.tour-list-card {
    display: grid;
    grid-template-columns: minmax(260px, 30%) minmax(0, 1fr) minmax(190px, 20%);
    min-height: 270px;
    max-height: 280px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.tour-list-card:hover {
    transform: translateY(-4px);
    border-color: #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.tour-list-card > img {
    width: 100%;
    height: 280px;
    min-height: 0;
    max-height: 280px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 24px 0 0 24px;
    transform: scale(1);
    transition: transform 200ms ease;
}

.tour-list-card:hover > img {
    transform: scale(1.03);
}

.tour-list-card__body {
    display: grid;
    align-content: center;
    gap: 14px;
    min-width: 0;
    padding: 30px 32px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tour-list-card__place,
.tour-list-card__meta,
.tour-list-card__dates {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}

.tour-list-card__place {
    font-weight: 600;
}

.tour-list-card__place i,
.tour-list-card__meta i,
.tour-list-card__dates i,
.tour-list-card__icons i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    color: #64748b;
    font-size: 16px;
    line-height: 1;
}

.tour-list-card h3 {
    max-width: 720px;
    margin: 0;
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.tour-list-card__dates {
    width: max-content;
    color: #64748b;
    text-decoration: none;
    transition: color 250ms ease;
}

.tour-list-card__dates:hover {
    color: var(--brand-primary);
}

.tour-list-card__icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    color: #64748b;
    font-size: 18px;
}

.tour-list-card__price {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 30px 28px;
    border-left: 1px solid #e5e7eb;
}

.tour-list-card__price span {
    color: #64748b;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
}

.tour-list-card__price strong {
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.tour-list-card__price small {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.tour-list-card__price a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    margin-top: 14px;
    padding: 0 28px;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 16px;
    background: transparent;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-transform: none;
    transition: background 250ms ease, color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.tour-list-card__price a:hover {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .tour-list-card {
        grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
        max-height: none;
    }

    .tour-list-card > img {
        height: 280px;
        border-radius: 24px 0 0 24px;
    }

    .tour-list-card__price {
        grid-column: 1 / -1;
        border-top: 1px solid #e5e7eb;
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .tour-list-card {
        grid-template-columns: 1fr;
        min-height: 0;
        max-height: none;
    }

    .tour-list-card > img {
        width: 100%;
        height: min(280px, 62vw);
        max-height: 280px;
        aspect-ratio: 4 / 3;
        border-radius: 24px 24px 0 0;
    }

    .tour-list-card__body {
        gap: 14px;
        padding: 26px 24px;
    }

    .tour-list-card h3 {
        font-size: 26px;
    }

    .tour-list-card__price {
        gap: 8px;
        padding: 0 24px 26px;
        border-top: 0;
        border-left: 0;
    }

    .tour-list-card__price strong {
        font-size: 42px;
    }

    .tour-list-card__price a {
        width: 100%;
    }
}

/* Stage 7A.1: Compact premium tour card */
.tour-results--list {
    gap: 24px;
}

.tour-list-card {
    grid-template-columns: minmax(230px, 27%) minmax(0, 1fr) minmax(184px, 21%);
    min-height: 220px;
    max-height: 240px;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.tour-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.tour-list-card > img {
    height: 235px;
    max-height: 240px;
    border-radius: 22px 0 0 22px;
    object-fit: cover;
}

.tour-list-card__body {
    gap: 10px;
    padding: 22px 28px;
}

.tour-list-card__place,
.tour-list-card__meta,
.tour-list-card__dates {
    gap: 7px;
    font-size: 14px;
    line-height: 1.38;
}

.tour-list-card__place {
    font-weight: 600;
}

.tour-list-card__place i,
.tour-list-card__meta i,
.tour-list-card__dates i,
.tour-list-card__icons i {
    width: 16px;
    min-width: 16px;
    font-size: 14px;
}

.tour-list-card h3 {
    font-size: 27px;
    font-weight: 600;
    line-height: 1.12;
}

.tour-list-card__icons {
    gap: 12px;
    margin-top: 2px;
    font-size: 16px;
}

.tour-list-card__price {
    gap: 5px;
    padding: 22px 24px;
}

.tour-list-card__price span {
    font-size: 16px;
    line-height: 1.2;
}

.tour-list-card__price strong {
    font-size: 40px;
    line-height: 0.95;
}

.tour-list-card__price small {
    font-size: 13px;
    line-height: 1.35;
}

.tour-list-card__price a {
    height: 46px;
    min-height: 46px;
    margin-top: 10px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 14px;
}

@media (max-width: 980px) {
    .tour-list-card {
        grid-template-columns: minmax(210px, 32%) minmax(0, 1fr);
        min-height: 0;
        max-height: none;
    }

    .tour-list-card > img {
        height: 240px;
        max-height: 240px;
        border-radius: 22px 0 0 22px;
    }

    .tour-list-card__price {
        grid-column: 1 / -1;
        padding: 20px 28px 24px;
    }
}

@media (max-width: 620px) {
    .tour-list-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .tour-list-card > img {
        height: min(240px, 58vw);
        max-height: 240px;
        border-radius: 22px 22px 0 0;
    }

    .tour-list-card__body {
        padding: 22px 22px 18px;
    }

    .tour-list-card h3 {
        font-size: 24px;
    }

    .tour-list-card__price {
        padding: 0 22px 22px;
    }

    .tour-list-card__price strong {
        font-size: 38px;
    }

    .tour-list-card__price a {
        width: 100%;
    }
}

/* Stage 7B: Tour card visual hierarchy refinement */
.tour-list-card {
    grid-template-columns: minmax(210px, 25%) minmax(0, 1fr) minmax(176px, 20%);
    min-height: 210px;
    max-height: 220px;
    border-radius: 22px;
}

.tour-list-card > img {
    height: 210px;
    max-height: 210px;
    border-radius: 22px 0 0 22px;
}

.tour-list-card__body {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 18px 26px;
}

.tour-list-card h3 {
    order: 1;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--brand-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tour-list-card__place {
    order: 2;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.tour-list-card__meta {
    order: 3;
}

.tour-list-card__dates {
    order: 4;
}

.tour-list-card__icons {
    order: 5;
}

.tour-list-card__place,
.tour-list-card__meta,
.tour-list-card__dates {
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.tour-list-card__place i,
.tour-list-card__meta i,
.tour-list-card__dates i,
.tour-list-card__icons i {
    width: 14px;
    min-width: 14px;
    color: #64748b;
    font-size: 13px;
    opacity: 0.82;
}

.tour-list-card__icons {
    gap: 10px;
    margin-top: 0;
    color: #64748b;
    opacity: 0.58;
}

.tour-list-card__price {
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 20px 24px;
}

.tour-list-card__price strong {
    order: 1;
    color: var(--brand-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 0.95;
}

.tour-list-card__price span {
    order: 2;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
}

.tour-list-card__price small {
    order: 3;
    color: #64748b;
    font-size: 13px;
    line-height: 1.35;
}

.tour-list-card__price a {
    order: 4;
    height: 42px;
    min-height: 42px;
    margin-top: 12px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 980px) {
    .tour-list-card {
        grid-template-columns: minmax(190px, 30%) minmax(0, 1fr);
        max-height: none;
    }

    .tour-list-card > img {
        height: 220px;
        max-height: 220px;
    }
}

@media (max-width: 620px) {
    .tour-list-card {
        grid-template-columns: 1fr;
    }

    .tour-list-card > img {
        height: min(220px, 54vw);
        max-height: 220px;
        border-radius: 22px 22px 0 0;
    }

    .tour-list-card__body {
        padding: 22px 22px 16px;
    }

    .tour-list-card h3 {
        font-size: 24px;
    }

    .tour-list-card__price {
        padding: 0 22px 22px;
    }

    .tour-list-card__price strong {
        font-size: 36px;
    }
}

/* Stage 7C: Editorial tour card layout */
.tour-list-card {
    grid-template-columns: minmax(210px, 25%) minmax(0, 1fr) minmax(172px, 20%);
    min-height: 210px;
    max-height: 220px;
    background: #ffffff;
}

.tour-list-card > img {
    height: 210px;
    max-height: 210px;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.tour-list-card__body {
    align-content: center;
    gap: 9px;
    padding: 20px 34px;
}

.tour-list-card h3 {
    order: 1;
    max-width: 760px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tour-list-card__place {
    order: 2;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.tour-list-card__meta {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 2px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.tour-list-card__meta span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.tour-list-card__dates {
    order: 4;
    width: max-content;
    margin-top: 2px;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.tour-list-card__dates:hover {
    color: var(--brand-primary);
}

.tour-list-card__icons {
    display: none;
}

.tour-list-card__price {
    align-content: center;
    gap: 8px;
    padding: 22px 30px 22px 20px;
    border-left: 0;
}

.tour-list-card__price strong {
    order: 1;
    white-space: nowrap;
    color: var(--brand-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.tour-list-card__price span {
    order: 2;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
}

.tour-list-card__price small {
    order: 3;
    color: #64748b;
    font-size: 13px;
}

.tour-list-card__price a {
    position: relative;
    order: 4;
    display: inline-flex;
    align-items: center;
    width: max-content;
    height: auto;
    min-height: 0;
    margin-top: 12px;
    padding: 0 0 3px;
    color: var(--brand-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    box-shadow: none;
}

.tour-list-card__price a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.18;
    transform: scaleX(0.42);
    transform-origin: left;
    transition: transform 250ms ease, opacity 250ms ease;
}

.tour-list-card__price a::after {
    content: "→";
    margin-left: 8px;
    transition: transform 250ms ease;
}

.tour-list-card__price a:hover {
    color: var(--brand-primary);
    background: transparent;
    border-color: transparent;
    transform: none;
}

.tour-list-card__price a:hover::before {
    opacity: 0.42;
    transform: scaleX(1);
}

.tour-list-card__price a:hover::after {
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .tour-list-card {
        grid-template-columns: minmax(190px, 30%) minmax(0, 1fr);
        max-height: none;
    }

    .tour-list-card__price {
        grid-column: 1 / -1;
        padding: 0 34px 24px;
        border-top: 0;
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .tour-list-card {
        grid-template-columns: 1fr;
    }

    .tour-list-card > img {
        height: min(220px, 54vw);
        border-radius: 22px 22px 0 0;
    }

    .tour-list-card__body {
        padding: 22px 22px 14px;
    }

    .tour-list-card__meta {
        gap: 7px 14px;
    }

    .tour-list-card__price {
        padding: 0 22px 22px;
    }

    .tour-list-card__price a {
        width: max-content;
    }
}

/* Stage 7C final: Signature GlobDMC tour card */
.tour-list-card {
    grid-template-columns: minmax(200px, 24%) minmax(0, 1fr) minmax(168px, 20%);
    height: 212px;
    min-height: 200px;
    max-height: 215px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.tour-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
}

.tour-list-card > img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 24px 0 0 24px;
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1);
    transition: transform 200ms ease;
}

.tour-list-card:hover > img {
    transform: scale(1.025);
}

.tour-list-card__body {
    display: grid;
    align-content: center;
    gap: 8px;
    min-width: 0;
    padding: 24px 28px;
}

.tour-list-card__place {
    order: 1;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
}

.tour-list-card h3 {
    order: 2;
    display: -webkit-box;
    overflow: hidden;
    max-width: 760px;
    margin: 0;
    color: var(--brand-primary);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tour-list-card__meta {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 1px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.tour-list-card__meta span + span::before {
    content: "·";
    margin-right: 18px;
    color: #94a3b8;
}

.tour-list-card__dates {
    order: 4;
    width: max-content;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
    transition: color 250ms ease;
}

.tour-list-card__dates:hover {
    color: var(--brand-primary);
}

.tour-list-card__icons {
    order: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
    color: #64748b;
    opacity: 0.62;
}

.tour-list-card__icons i,
.tour-list-card__place i,
.tour-list-card__meta i,
.tour-list-card__dates i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    min-width: 16px;
    color: #64748b;
    font-size: 16px;
    line-height: 1;
}

.tour-list-card__price {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px 28px 24px 8px;
    border-top: 0;
    border-left: 0;
}

.tour-list-card__price strong {
    order: 1;
    white-space: nowrap;
    color: var(--brand-primary);
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.tour-list-card__price span {
    order: 2;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}

.tour-list-card__price small {
    order: 3;
    color: #64748b;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.tour-list-card__price a {
    position: relative;
    order: 4;
    display: inline-flex;
    align-items: center;
    width: max-content;
    height: auto;
    min-height: 0;
    margin-top: 10px;
    padding: 0 0 3px;
    color: var(--brand-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: color 250ms ease;
}

.tour-list-card__price a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.16;
    transform: scaleX(0.36);
    transform-origin: left;
    transition: transform 250ms ease, opacity 250ms ease;
}

.tour-list-card__price a::after {
    content: "→";
    margin-left: 8px;
    transition: transform 250ms ease;
}

.tour-list-card__price a:hover {
    color: var(--brand-primary);
    background: transparent;
    border: 0;
    transform: none;
}

.tour-list-card__price a:hover::before {
    opacity: 0.42;
    transform: scaleX(1);
}

.tour-list-card__price a:hover::after {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .tour-list-card {
        grid-template-columns: minmax(190px, 30%) minmax(0, 1fr);
        height: auto;
        max-height: none;
    }

    .tour-list-card > img {
        height: 220px;
        border-radius: 24px 0 0 24px;
    }

    .tour-list-card__price {
        grid-column: 1 / -1;
        padding: 0 28px 24px;
    }
}

@media (max-width: 620px) {
    .tour-list-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tour-list-card > img {
        height: min(220px, 54vw);
        border-radius: 24px 24px 0 0;
    }

    .tour-list-card__body {
        padding: 20px 20px 14px;
    }

    .tour-list-card h3 {
        font-size: 22px;
    }

    .tour-list-card__meta {
        gap: 6px 14px;
    }

    .tour-list-card__meta span + span::before {
        margin-right: 14px;
    }

    .tour-list-card__price {
        padding: 0 20px 20px;
    }

    .tour-list-card__price strong {
        font-size: 34px;
    }

    .tour-list-card__price a {
        width: max-content;
    }
}

/* Stage 7.1: Signature tour card wireframe */
.tour-list-card {
    display: grid;
    grid-template-columns: 18% minmax(0, 82%);
    height: 190px;
    min-height: 190px;
    max-height: 190px;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.tour-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
}

.tour-list-card > img {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 24px 0 0 24px;
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1);
    transition: transform 200ms ease;
}

.tour-list-card:hover > img {
    transform: scale(1.025);
}

.tour-list-card__right {
    display: grid;
    grid-template-columns: minmax(0, 75%) minmax(160px, 25%);
    gap: 24px;
    min-width: 0;
    padding: 24px;
}

.tour-list-card__body {
    display: grid;
    align-content: center;
    gap: 8px;
    min-width: 0;
    padding: 0;
}

.tour-list-card__place {
    order: 1;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.tour-list-card h3 {
    order: 2;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--brand-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tour-list-card__meta {
    order: 3;
    display: block;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.tour-list-card__meta span,
.tour-list-card__dates,
.tour-list-card__icons,
.tour-list-card__price small,
.tour-list-card__price a {
    display: none;
}

.tour-list-card__action {
    position: relative;
    order: 5;
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 16px;
    padding: 0 0 3px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: color 250ms ease;
}

.tour-list-card__action::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0.16;
    transform: scaleX(0.36);
    transform-origin: left;
    transition: transform 250ms ease, opacity 250ms ease;
}

.tour-list-card__action::after {
    content: "→";
    margin-left: 8px;
    transition: transform 250ms ease;
}

.tour-list-card__action:hover {
    color: var(--brand-primary);
}

.tour-list-card__action:hover::before {
    opacity: 0.42;
    transform: scaleX(1);
}

.tour-list-card__action:hover::after {
    transform: translateX(3px);
}

.tour-list-card__price {
    display: grid;
    align-content: start;
    gap: 16px;
    min-width: 0;
    padding: 0;
    border: 0;
}

.tour-list-card__price strong {
    display: block;
    order: 1;
    white-space: nowrap;
    color: var(--brand-primary);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.tour-list-card__price span {
    display: block;
    order: 2;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

@media (max-width: 980px) {
    .tour-list-card {
        grid-template-columns: 28% minmax(0, 72%);
        height: auto;
        min-height: 190px;
        max-height: none;
    }

    .tour-list-card__right {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tour-list-card > img {
        min-height: 220px;
        border-radius: 24px 0 0 24px;
    }

    .tour-list-card__price {
        align-content: start;
        gap: 8px;
    }
}

@media (max-width: 620px) {
    .tour-list-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tour-list-card > img {
        height: min(220px, 54vw);
        min-height: 0;
        border-radius: 24px 24px 0 0;
    }

    .tour-list-card__right {
        padding: 20px;
    }

    .tour-list-card h3 {
        font-size: 22px;
    }

    .tour-list-card__price strong {
        font-size: 34px;
    }
}

/* Stage 7.2: Signature tour card polish */
.tour-list-card {
    height: 184px;
    min-height: 180px;
    max-height: 190px;
}

.tour-list-card__right {
    gap: 22px;
    padding: 22px 24px;
}

.tour-list-card__body {
    gap: 7px;
}

.tour-list-card__place {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.tour-list-card h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.12;
}

.tour-list-card__meta {
    overflow: hidden;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-list-card__action {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
}

.tour-list-card__price {
    gap: 12px;
}

.tour-list-card__price strong {
    overflow: visible;
    max-width: 100%;
    color: var(--brand-primary);
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    text-overflow: clip;
    white-space: nowrap;
}

.tour-list-card__price span {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 1180px) {
    .tour-list-card__price strong {
        font-size: 32px;
    }
}

@media (max-width: 980px) {
    .tour-list-card {
        height: auto;
        min-height: 180px;
        max-height: none;
    }

    .tour-list-card__right {
        padding: 22px 24px;
    }
}

@media (max-width: 620px) {
    .tour-list-card__right {
        padding: 20px;
    }

    .tour-list-card h3 {
        font-size: 22px;
    }

    .tour-list-card__price strong {
        font-size: 32px;
    }
}

/* Premium tour card price stack */
.tour-list-card__price {
    align-content: center;
    gap: 7px;
}

.tour-list-card__price strong {
    margin-bottom: 1px;
}

.tour-list-card__price-note {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.tour-list-card__airline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    min-width: 0;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.tour-list-card__airline i {
    color: var(--brand-primary);
    font-size: 14px;
}

.tour-list-card__airline img {
    width: auto;
    max-width: 72px;
    height: 22px;
    object-fit: contain;
}

.tour-list-card__airline span {
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .tour-list-card__price {
        align-content: start;
    }
}

/* Premium tour card CTA */
.tour-list-card__action {
    position: relative;
    order: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 42px;
    margin-top: 14px;
    padding: 10px 20px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, color 200ms ease;
}

.tour-list-card__action::before,
.tour-list-card__action::after {
    display: none;
    content: none;
}

.tour-list-card__action:hover {
    color: var(--brand-primary);
    background: #f8f8f6;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

/* Wider tour card image without changing card height */
@media (min-width: 981px) {
    .tour-list-card {
        grid-template-columns: minmax(0, 22.5%) minmax(0, 77.5%);
    }

    .tour-list-card__right {
        grid-template-columns: minmax(0, 1fr) 176px;
    }
}

.all-tours__toolbar button.is-active {
    color: var(--brand-primary);
    font-weight: 700;
}

.tour-results__load-more {
    grid-column: 2;
    justify-self: center;
    min-width: 190px;
    margin: 10px auto 0;
    padding: 13px 24px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.tour-results__load-more:hover {
    background: #f8f8f6;
    border-color: #b8c3d1;
}

.tour-results__load-more[hidden] {
    display: none;
}

.tour-detail-page.is-loading-program,
.tour-detail-page.is-program-error {
    position: relative;
    min-height: 72vh;
}

.tour-detail-page.is-loading-program > *,
.tour-detail-page.is-program-error > * {
    visibility: hidden;
}

.tour-detail-page.is-loading-program::before,
.tour-detail-page.is-program-error::before {
    position: absolute;
    top: 140px;
    right: 24px;
    left: 24px;
    z-index: 5;
    visibility: visible;
    color: var(--brand-primary);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.tour-detail-page.is-loading-program::before {
    content: "Tur programı yükleniyor…";
}

.tour-detail-page.is-program-error::before {
    content: "Tur programı şu anda yüklenemedi. Lütfen biraz sonra tekrar deneyin.";
}

.booking-card__date-select {
    width: 100%;
    min-height: 40px;
    padding: 8px 34px 8px 10px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.booking-card__date-select:focus {
    border-color: #94a3b8;
    outline: 2px solid rgba(148, 163, 184, 0.22);
    outline-offset: 1px;
}

@media (max-width: 980px) {
    .tour-results__load-more {
        grid-column: 1;
    }
}

/* Travel concepts — Faz 3 premium showcase */
.travel-concepts {
    background: var(--paper);
}

.travel-concepts .section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.travel-concepts .section-heading .eyebrow {
    color: var(--gold);
}

.travel-concepts .section-heading h2 {
    color: var(--brand-primary);
    letter-spacing: -0.02em;
}

.travel-concepts .section-heading p:not(.eyebrow) {
    color: #64748b;
    font-size: 17px;
    line-height: 1.65;
}

.travel-concepts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.travel-concept-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.travel-concept-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.travel-concept-card__media-wrap {
    position: relative;
    overflow: hidden;
}

.travel-concept-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 320ms ease;
}

.travel-concept-card:hover .travel-concept-card__media {
    transform: scale(1.04);
}

.travel-concept-card__media-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, 0.42) 100%);
    pointer-events: none;
}

.travel-concept-card__brand {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;
    padding: 7px 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
}

.travel-concept-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding: 22px 22px 24px;
}

.travel-concept-card h3 {
    margin: 0;
    color: var(--brand-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.travel-concept-card__lead {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.travel-concept-card__highlights {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.travel-concept-card__highlights li {
    position: relative;
    padding-left: 18px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.travel-concept-card__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

.travel-concept-card__actions {
    margin-top: auto;
    padding-top: 22px;
}

.travel-concept-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    color: #ffffff;
    background: var(--brand-primary);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 200ms ease, box-shadow 200ms ease;
}

.travel-concept-card__cta:hover {
    color: #ffffff;
    background: #1e293b;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.travel-concept-card--comfort-plus .travel-concept-card__brand {
    background: rgba(200, 169, 106, 0.92);
    border-color: rgba(255, 255, 255, 0.4);
    color: #0f172a;
}

.travel-concepts__footnote {
    margin: 28px 0 0;
    text-align: center;
}

.travel-concepts__footnote a {
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
    transition: border-color 200ms ease;
}

.travel-concepts__footnote a:hover {
    border-bottom-color: currentColor;
}

@media (max-width: 980px) {
    .travel-concepts__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .travel-concept-card__body {
        padding: 20px;
    }
}

@media (max-width: 620px) {
    .travel-concepts .section-heading {
        margin-bottom: 28px;
    }

    .travel-concept-card__cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Stage 8.0: Premium search experience */
.hero-search__bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr) 48px;
    min-height: 60px;
    padding: 4px 6px 4px 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.hero-search__bar:hover {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.075);
}

.hero-search__bar:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08), 0 0 0 4px rgba(15, 23, 42, 0.045);
}

.hero-search__window {
    height: 50px;
    gap: 10px;
    padding: 0 20px;
    color: var(--brand-primary);
    background: transparent;
    border-radius: 14px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: background 250ms ease, color 250ms ease;
}

.hero-search__window:hover,
.hero-search__window.is-active {
    background: #f8f8f6;
    border-radius: 14px;
}

.hero-search__window i {
    width: 18px;
    min-width: 18px;
    color: #64748b;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}

.hero-search__window input {
    color: var(--brand-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.hero-search__window input::placeholder {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
}

.hero-search__window span {
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 400;
}

.hero-search__button {
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--brand-primary);
    border-radius: 14px;
    box-shadow: none;
    font-size: 17px;
    transition: background 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.hero-search__button i {
    font-size: 17px;
}

.hero-search__button:hover {
    background: #1e293b;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
    transform: translateY(-1px);
}

.hero-search__button:focus-visible,
.hero-search__window:focus-visible {
    outline: 0;
}

.tour-filter__search input {
    height: 52px;
    padding: 0 20px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 250ms ease, box-shadow 250ms ease;
}

.tour-filter__search input::placeholder {
    color: #94a3b8;
}

.tour-filter__search input:hover {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.tour-filter__search input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07), 0 0 0 4px rgba(15, 23, 42, 0.045);
}

@media (max-width: 980px) {
    .hero-search__bar {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr) 46px;
        min-height: 56px;
    }

    .hero-search__window {
        height: 46px;
    }

    .hero-search__button {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 620px) {
    .hero-search__bar {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 6px;
        border-radius: 18px;
    }

    .hero-search__window {
        height: 52px;
        padding: 0 16px;
    }

    .hero-search__button {
        width: 100%;
        height: 52px;
        border-radius: 14px;
    }
}

/* Stage 9: Tours page hierarchy and sorting controls */
.all-tours__content {
    grid-area: content;
    min-width: 0;
}

.all-tours__content .breadcrumb {
    margin-bottom: 14px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.all-tours__content .breadcrumb a,
.all-tours__content .breadcrumb span {
    color: inherit;
    font-weight: inherit;
}

.all-tours__content .section-heading {
    margin-bottom: 22px;
}

.all-tours__content .all-tours__heading {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
    gap: 34px;
    align-items: center;
    max-width: none;
}

.all-tours__content .section-heading h2 {
    margin-bottom: 6px;
    color: var(--brand-primary);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.all-tours__content .section-heading p {
    max-width: none;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.tour-satisfaction {
    display: grid;
    gap: 10px;
    justify-self: end;
    width: min(100%, 280px);
    max-width: 280px;
    padding: 0;
    color: var(--brand-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tour-satisfaction__metric {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

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

.tour-satisfaction__label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-satisfaction__value {
    color: var(--brand-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.tour-satisfaction__scale {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}

.all-tours__controls {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px 30px;
    max-width: none;
    margin-bottom: 0;
}

.all-tours__controls .tour-filter__search {
    display: block;
    grid-column: 1 / -1;
}

.all-tours__utility {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

.all-tours__filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
}

.all-tours__filter-heading h3 {
    margin: 0 0 3px;
    color: var(--brand-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.all-tours__filter-heading span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.all-tours__filter-heading .tour-filter__clear {
    justify-self: auto;
    margin-top: 0;
    padding: 6px 0;
}

.all-tours__toolbar {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    width: auto;
    max-width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 4px;
    gap: 0;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.all-tours__toolbar button {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 18px 2px;
    color: #64748b;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.all-tours__toolbar button i {
    color: currentColor;
    font-size: 12px;
    line-height: 1;
}

.all-tours__toolbar button::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 5px;
    left: 18px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.7);
    transition: opacity 200ms ease, transform 200ms ease;
}

.all-tours__toolbar button:hover {
    color: var(--brand-primary);
    background: #f8f8f6;
    border-color: transparent;
}

.all-tours__toolbar button.is-active {
    color: var(--brand-primary);
    background: transparent;
    border-color: transparent;
}

.all-tours__toolbar button.is-active::after {
    opacity: 0.42;
    transform: scaleX(1);
}

@media (max-width: 980px) {
    .tour-console.section-pad {
        padding-top: 20px;
    }

    .all-tours__content .all-tours__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .tour-satisfaction {
        justify-self: stretch;
        max-width: none;
    }

    .all-tours__controls {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .all-tours__utility {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .all-tours__toolbar {
        justify-self: stretch;
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .all-tours__content .section-heading h2 {
        font-size: 34px;
    }

    .tour-satisfaction {
        justify-self: stretch;
        max-width: none;
        width: 100%;
    }

    .tour-satisfaction__value {
        font-size: 20px;
    }

    .all-tours__toolbar {
        width: 100%;
    }

    .all-tours__toolbar button {
        flex: 1 0 auto;
        padding: 0 16px;
        font-size: 14px;
    }
}

/* Stage 10.0: Premium filter experience */
.tour-filter {
    grid-area: filter;
    align-self: start;
    gap: 28px;
    height: fit-content;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.tour-filter__top {
    display: block;
    color: var(--brand-primary);
}

.tour-filter__top h2 {
    margin: 0 0 4px;
    color: var(--brand-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.tour-filter__top span {
    display: block;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.tour-filter__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -12px;
}

.tour-filter__chips[hidden] {
    display: none !important;
}

.tour-filter__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    color: var(--brand-primary);
    background: #f8f8f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.tour-filter__group {
    gap: 12px;
    padding: 0;
    border-bottom: 0;
}

.tour-filter__toggle {
    min-height: 24px;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.tour-filter__toggle::after,
.tour-filter__group h3::after {
    content: "\f107";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #64748b;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    transform: rotate(180deg);
    transition: transform 200ms ease, color 200ms ease;
}

.tour-filter__group.is-collapsed .tour-filter__toggle::after {
    content: "\f107";
    transform: rotate(0deg);
}

.tour-filter__toggle:hover::after {
    color: var(--brand-primary);
}

.tour-filter__options {
    gap: 10px;
    padding-top: 2px;
    animation: filterReveal 200ms ease;
}

@keyframes filterReveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-filter__group label {
    gap: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.tour-filter__group input[type="radio"] {
    appearance: none;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.tour-filter__group input[type="radio"]::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: #ffffff;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 200ms ease, transform 200ms ease;
}

.tour-filter__group input[type="radio"]:checked {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
}

.tour-filter__group input[type="radio"]:checked::after {
    opacity: 1;
    transform: scale(1);
}

.tour-filter__range {
    gap: 12px;
}

.tour-filter__range label {
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.tour-filter__range input,
.tour-filter__date {
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: none;
}

.tour-filter__clear {
    justify-self: start;
    margin-top: 2px;
    padding: 0;
    color: #64748b;
    background: transparent;
    border: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 200ms ease;
}

.tour-filter__clear:hover {
    color: var(--brand-primary);
}

.tour-filter__search input {
    height: 48px;
    border-radius: 16px;
}

/* Stage 11.0: Premium header navigation */
.site-header {
    position: fixed;
    top: 0;
    height: 80px;
    z-index: 1000;
    color: var(--brand-primary);
    background: #ffffff;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: height 220ms ease-out, background 220ms ease-out, border-color 220ms ease-out, backdrop-filter 220ms ease-out;
}

.site-header.is-scrolled {
    height: 68px;
    background: rgba(255, 255, 255, 0.82);
    border-bottom-color: #ececec;
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.site-header.is-open {
    background: #ffffff;
    border-bottom-color: #ececec;
    box-shadow: none;
}

.topbar,
.navbar {
    width: min(1440px, calc(100% - 64px));
}

.topbar {
    display: flex;
    overflow: hidden;
    min-height: 24px;
    gap: 20px;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    transition: min-height 220ms ease-out, opacity 180ms ease-out;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    opacity: 1;
    transition: color 220ms ease;
}

.topbar a:hover {
    color: var(--brand-primary);
}

.topbar a i {
    color: currentColor;
    font-size: 13px;
}

.topbar__social {
    gap: 14px;
}

.topbar__social a {
    color: #64748b;
}

.topbar__social a i {
    font-size: 16px;
}

.navbar {
    min-height: 56px;
    gap: 36px;
    border-top: 0;
    transition: min-height 220ms ease-out;
}

.site-header.is-scrolled .topbar {
    min-height: 0;
    opacity: 0;
    pointer-events: none;
}

.site-header.is-scrolled .navbar {
    min-height: 68px;
}

.brand {
    padding-right: 8px;
}

.brand img {
    width: 148px;
    height: auto;
    transform-origin: left center;
    transition: transform 220ms ease-out;
}

.site-header.is-scrolled .brand img {
    transform: scale(0.94);
}

.navlinks {
    align-items: center;
    gap: 36px;
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
}

.navlinks > .nav-item {
    display: flex;
    align-items: center;
    min-height: 40px;
    position: relative;
}

.navlinks > a,
.nav-item > .nav-item__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    opacity: 1;
    transition: color 220ms ease;
}

.navlinks > a::after,
.nav-item > .nav-item__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    margin: 0;
    background: var(--brand-primary);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease, opacity 180ms ease;
}

.navlinks > a:hover,
.nav-item:hover > .nav-item__link,
.navlinks > a[aria-current="page"] {
    color: var(--brand-primary);
}

.navlinks > a:hover::after,
.nav-item:hover > .nav-item__link::after {
    opacity: 0.35;
    transform: scaleX(1);
}

.navlinks > a[aria-current="page"]::after {
    bottom: 6px;
    width: auto;
    height: 1px;
    margin: 0;
    background: var(--brand-primary);
    opacity: 0.22;
    transform: scaleX(1);
}

.nav-item > .nav-item__link[aria-current="page"] {
    color: var(--brand-primary);
}

.nav-item > .nav-item__link[aria-current="page"]::after {
    bottom: 6px;
    width: auto;
    height: 1px;
    margin: 0;
    background: var(--brand-primary);
    opacity: 0.22;
    transform: scaleX(1);
}

.nav-preview {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 80;
    width: 290px;
    padding: 18px;
    color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.nav-preview::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
}

.nav-preview p {
    margin: 0 0 14px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.nav-preview a,
.nav-preview span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.nav-preview a {
    color: var(--brand-primary);
    text-decoration: none;
}

.nav-preview span + span {
    margin-top: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .nav-item:hover > .nav-preview,
    .nav-item:focus-within > .nav-preview {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
}

.agent-login {
    min-height: 44px;
    padding: 0 24px;
    color: #ffffff;
    background: var(--brand-primary);
    border: 0;
    border-radius: 14px;
    box-shadow: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    transition: background 250ms ease, color 250ms ease;
}

.agent-login:hover {
    color: #ffffff;
    background: #1e293b;
    box-shadow: none;
    transform: none;
}

.menu-toggle {
    color: var(--brand-primary);
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.menu-toggle:hover {
    background: #f8f8f6;
}

/* Global interaction standard */
:is(a, button, input, select, textarea, [role="button"]) {
    transition-duration: var(--transition-fast);
    transition-timing-function: ease;
}

:is(
    .navlinks > a,
    .nav-item > .nav-item__link,
    .topbar a,
    .site-footer a,
    .mega-menu a,
    .footer-widget__explore-list a,
    .footer-widget__categories_list a,
    .footer-widget_newsletter_address a,
    .availability-back,
    .guides-back,
    .agency-add-user,
    .tour-filter__clear
) {
    background-image: linear-gradient(var(--hover-text), var(--hover-text));
    background-position: 0 calc(100% - 1px);
    background-repeat: no-repeat;
    background-size: 0 2px;
    transition: color var(--transition-fast), background-size var(--transition-fast), opacity var(--transition-fast);
}

:is(
    .navlinks > a,
    .nav-item > .nav-item__link,
    .topbar a,
    .site-footer a,
    .mega-menu a,
    .footer-widget__explore-list a,
    .footer-widget__categories_list a,
    .footer-widget_newsletter_address a,
    .availability-back,
    .guides-back,
    .agency-add-user,
    .tour-filter__clear
):hover {
    color: var(--hover-text);
    background-size: 100% 2px;
}

:is(
    .button,
    .agent-login,
    .navlinks__agent,
    .menu-toggle,
    .hero-search__button,
    .tour-list-card__action,
    .tour-booking-card__link,
    .tour-detail-gallery__button,
    .agency-submit,
    .all-tours__toolbar button,
    .destination-group__items button,
    .date-calendar__months button,
    .date-calendar__day,
    .tour-filter__toggle,
    .document-grid a
) {
    color: var(--brand-primary);
    background-color: var(--surface);
    border-style: solid;
    border-width: 1px;
    border-color: var(--line);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
}

:is(
    .button,
    .agent-login,
    .navlinks__agent,
    .menu-toggle,
    .hero-search__button,
    .tour-list-card__action,
    .tour-booking-card__link,
    .tour-detail-gallery__button,
    .agency-submit,
    .all-tours__toolbar button,
    .destination-group__items button,
    .date-calendar__months button,
    .date-calendar__day,
    .tour-filter__toggle,
    .document-grid a
):hover {
    color: var(--hover-text);
    background-color: var(--hover-bg);
    border-color: var(--hover-border);
}

.tour-filter__group label {
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.tour-filter__group label:hover {
    color: var(--hover-text);
    background-color: transparent;
}

:is(
    .tour-list-card,
    .tour-card,
    .guide-card,
    .about-card,
    .agency-benefits article,
    .hotel-grid article,
    .document-grid a,
    .travel-concept-card,
    .destination-card,
    .service-card,
    .availability-list,
    .agency-form-card
):hover {
    border-color: var(--hover-border);
    box-shadow: var(--hover-shadow);
    transform: translateY(-2px);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

:is(i, svg, .topbar__social a, .site-footer__social a):hover {
    color: var(--hover-text);
    opacity: 1;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

/* Brand typography color system */
:is(
    h1,
    h2,
    h3,
    .section-heading h2,
    .navlinks > a,
    .nav-item > .nav-item__link,
    .nav-preview p,
    .mega-menu h2,
    .site-footer h2,
    .tour-card h3,
    .tour-list-card h3,
    .tour-list-card__price strong,
    .tour-list-card__action,
    .tour-booking-card strong,
    .tour-detail-heading h1,
    .tour-detail-section h2,
    .service-card h2,
    .hotel-grid h3,
    .departure-row__price,
    .guide-card h2,
    .guides-heading h1,
    .availability-heading h1,
    .availability-table strong,
    .availability-table__price,
    .about-hero h1,
    .about-section h2,
    .about-card h3,
    .agency-apply-hero h1,
    .agency-benefits article h2,
    .agency-form-card h2,
    .agency-application-form legend,
    .travel-concept-card h3,
    .all-tours__filter-heading h3,
    .tour-filter__toggle,
    .tour-filter__top h2,
    .cta h2
) {
    color: var(--brand-primary);
}

:is(
    .button:not(.button--primary),
    .tour-list-card__action,
    .tour-booking-card__link,
    .agency-add-user,
    .mega-menu__all,
    .travel-concept-card,
    .availability-back,
    .guides-back
) {
    color: var(--brand-primary);
}

/* Borderless premium navbar */
.navlinks > a,
.nav-item > .nav-item__link,
.agent-login,
.navlinks__agent {
    background-image: none;
}

.navlinks > a:hover,
.nav-item > .nav-item__link:hover,
.nav-item:hover > .nav-item__link {
    background-image: none;
    background-size: 0;
}

.navlinks > a::after,
.nav-item > .nav-item__link::after,
.navlinks > a:hover::after,
.nav-item:hover > .nav-item__link::after,
.navlinks > a[aria-current="page"]::after,
.nav-item > .nav-item__link[aria-current="page"]::after {
    display: none;
}

.agent-login,
.agent-login:hover,
.navlinks__agent,
.navlinks__agent:hover {
    color: var(--brand-primary);
    background: transparent;
    background-color: transparent !important;
    border: 0 !important;
    border-color: transparent !important;
    box-shadow: none;
    opacity: 1;
    filter: none;
    transform: none;
}

.agent-login {
    min-height: 40px;
    padding: 0;
    border-radius: 0;
}

/* Tour card full departure date preview */
.tour-list-card {
    position: relative;
    align-items: stretch;
    height: 184px;
    min-height: 184px;
    max-height: 184px;
    overflow: visible;
}

.tour-list-card > .photo-route-surface--card,
.tour-list-card > .photo-route-surface--card > img {
    display: block;
    height: 100%;
    min-height: 0;
    max-height: 184px;
}

.tour-list-card__right {
    height: 100%;
    min-height: 0;
    align-self: stretch;
    overflow: visible;
    border-radius: 0 24px 24px 0;
}

.tour-list-card:hover,
.tour-list-card:focus-within {
    z-index: 90;
}

.tour-list-card__meta {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 0;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-list-card__date-menu {
    order: 4;
    position: relative;
    width: max-content;
    min-width: 0;
    z-index: 80;
}

.tour-list-card__date-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    color: #64748b;
    background: transparent;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    appearance: none;
}

.tour-list-card__date-toggle:hover {
    color: var(--brand-primary);
    background: transparent;
    border-color: transparent !important;
    box-shadow: none;
}

.tour-list-card__date-label {
    display: inline-flex !important;
    overflow: visible;
    white-space: nowrap;
}

.tour-list-card__date-toggle i {
    flex: 0 0 auto;
    color: currentColor;
    font-size: 10px;
    opacity: 0.78;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.tour-list-card__date-panel {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    display: grid;
    gap: 6px;
    width: max-content;
    min-width: 220px;
    max-width: 300px;
    padding: 12px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.tour-list-card__date-panel span {
    display: block !important;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
}

.tour-list-card__date-panel a {
    display: inline-flex;
    width: max-content;
    margin-top: 3px;
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.tour-list-card__date-panel a:hover {
    color: var(--brand-primary);
    background: transparent;
}

.tour-list-card__date-menu:hover .tour-list-card__date-panel,
.tour-list-card__date-menu.is-open .tour-list-card__date-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.tour-list-card__date-menu:hover .tour-list-card__date-toggle i,
.tour-list-card__date-menu.is-open .tour-list-card__date-toggle i {
    opacity: 1;
    transform: rotate(180deg);
}

.tour-list-card__body {
    gap: 5px;
}

.tour-list-card__action {
    margin-top: 6px;
}

/* Live program titles: keep long names and CTA inside the card. */
@media (min-width: 981px) {
    .tour-list-card {
        height: 220px;
        min-height: 220px;
        max-height: none;
        overflow: visible;
    }

    .tour-list-card > .photo-route-surface--card,
    .tour-list-card > .photo-route-surface--card > img {
        max-height: 220px;
    }

    .tour-list-card__right {
        overflow: visible;
    }

    .tour-list-card__body {
        position: relative;
        padding-bottom: 0;
    }

    .tour-list-card h3 {
        font-size: 20px;
        line-height: 1.18;
        -webkit-line-clamp: 3;
    }

    .tour-list-card__action {
        position: absolute;
        bottom: 5px;
        left: 32px;
        margin: 0;
        transform: none;
    }

    .tour-list-card__action:hover {
        transform: translateY(-1px);
    }
}

.tour-list-card__title-link {
    color: inherit;
    text-decoration: none;
}

.tour-list-card__title-link:hover,
.tour-list-card__title-link:focus-visible {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* Text-based tour filter and sorting controls */
.all-tours__toolbar {
    padding: 0;
    gap: 26px;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.all-tours__toolbar button,
.tour-filter__toggle {
    min-height: auto;
    padding: 0 0 4px;
    color: #64748b;
    background: transparent;
    border: 0 !important;
    border-color: transparent !important;
    outline: 0;
    border-radius: 0;
    box-shadow: none;
    appearance: none;
}

.all-tours__toolbar button:hover,
.tour-filter__toggle:hover {
    color: var(--hover-text);
    background: transparent;
    border-color: transparent !important;
    box-shadow: none;
}

.all-tours__toolbar button::after {
    right: 0;
    bottom: 0;
    left: 0;
}

.all-tours__toolbar button.is-active {
    color: var(--hover-text);
    background: transparent;
    border: 0;
}

.all-tours__toolbar button.is-active::after {
    opacity: 0.42;
}

.tour-filter__toggle::after,
.tour-filter__group h3::after {
    background: transparent;
    border: 0 !important;
}

.tour-filter__month-list {
    display: grid;
    gap: 6px;
}

.tour-filter__month-option {
    display: block;
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    color: #334155;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.tour-filter__month-option:hover,
.tour-filter__month-option.is-selected {
    color: var(--brand-primary);
    background: #f4f7fb;
    border-color: #dbe3ef;
}

.tour-filter__month-option.is-holiday {
    color: #334155;
    background: transparent;
}

.tour-filter__month-option.is-holiday.is-selected {
    color: var(--brand-primary);
    border-color: #dbe3ef;
    background: #f4f7fb;
}

.tour-filter__month-option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tour-filter__month-option small {
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
}

.tour-filter__holiday-detail {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(-3px);
    transition: max-height 200ms ease, margin-top 200ms ease, opacity 160ms ease, transform 200ms ease;
}

.tour-filter__month-option.is-holiday:hover .tour-filter__holiday-detail,
.tour-filter__month-option.is-holiday:focus-visible .tour-filter__holiday-detail {
    max-height: 90px;
    margin-top: 6px;
    opacity: 1;
    transform: translateY(0);
}

/* B2B agency assistant */
.agency-assistant {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.agency-assistant__launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--brand-primary);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    font-size: 14px;
    font-weight: 600;
}

.agency-assistant__launcher:hover {
    color: #ffffff;
    background: #1e293b;
}

.agency-assistant__panel {
    position: absolute;
    right: 0;
    bottom: 62px;
    display: grid;
    grid-template-rows: auto minmax(210px, 1fr) auto auto;
    width: min(390px, calc(100vw - 32px));
    max-height: min(620px, calc(100vh - 120px));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.agency-assistant__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #eef2f6;
}

.agency-assistant__header strong,
.agency-assistant__header span {
    display: block;
}

.agency-assistant__header strong {
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 700;
}

.agency-assistant__header span {
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.agency-assistant__header button {
    width: 34px;
    height: 34px;
    color: var(--brand-primary);
    background: #f8f8f6;
    border: 0;
    border-radius: 999px;
}

.agency-assistant__messages {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 0;
    padding: 16px;
    overflow-y: auto;
    background: #fbfbfa;
}

.agency-assistant__message {
    max-width: 88%;
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.agency-assistant__message--bot {
    justify-self: start;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.agency-assistant__message--user {
    justify-self: end;
    color: #ffffff;
    background: var(--brand-primary);
}

.agency-assistant__message--typing {
    min-width: 58px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.agency-assistant__typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 10px;
}

.agency-assistant__typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #94a3b8;
    animation: agency-assistant-typing 1.15s infinite ease-in-out;
}

.agency-assistant__typing-dots span:nth-child(2) {
    animation-delay: 0.16s;
}

.agency-assistant__typing-dots span:nth-child(3) {
    animation-delay: 0.32s;
}

.agency-assistant__message--revealing {
    animation: agency-assistant-fade-in 0.38s ease forwards;
}

.agency-assistant.is-busy .agency-assistant__form input,
.agency-assistant.is-busy .agency-assistant__form button,
.agency-assistant.is-busy .agency-assistant__quick button {
    cursor: wait;
}

@keyframes agency-assistant-typing {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

@keyframes agency-assistant-fade-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agency-assistant__message--bot .assistant-welcome-list,
.agency-assistant__message--bot .assistant-welcome-examples {
    margin: 8px 0 10px;
    padding-left: 0;
    list-style: none;
}

.agency-assistant__message--bot .assistant-welcome-list li,
.agency-assistant__message--bot .assistant-welcome-examples li {
    margin: 4px 0;
    font-size: 13px;
    line-height: 1.45;
}

.agency-assistant__message--bot .assistant-welcome-examples li::before {
    content: "• ";
    color: #64748b;
}

.agency-assistant__message--bot .assistant-lead {
    margin: 0 0 8px;
    font-weight: 600;
    color: #1e293b;
}

.agency-assistant__message--bot .assistant-subtitle {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agency-assistant__message--bot .assistant-footnote {
    margin: 10px 0 0;
    font-size: 12px;
    color: #64748b;
}

.agency-assistant__message--bot .assistant-result {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.agency-assistant__message--bot .assistant-result__title {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.35;
    color: #0f172a;
}

.agency-assistant__message--bot .assistant-result__row {
    font-size: 12px;
    line-height: 1.5;
    color: #334155;
}

.agency-assistant__message--bot .assistant-result__row span {
    color: #64748b;
    font-weight: 600;
}

.agency-assistant__message--bot .assistant-result__meta {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.agency-assistant__message--bot .assistant-alt-list {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.5;
    color: #334155;
}

.agency-assistant__message--bot .assistant-alt-list li + li {
    margin-top: 6px;
}

.agency-assistant__quick {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    overflow-x: auto;
    border-top: 1px solid #eef2f6;
}

.agency-assistant__quick button {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.agency-assistant__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 0 14px 14px;
}

.agency-assistant__form input {
    min-width: 0;
    height: 42px;
    padding: 0 13px;
    color: var(--brand-primary);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: 13px;
}

.agency-assistant__form input:focus {
    border-color: var(--brand-primary);
    outline: 0;
}

.agency-assistant__form button {
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: var(--brand-primary);
    border: 0;
    border-radius: 14px;
}

@media (max-width: 620px) {
    .agency-assistant {
        right: 16px;
        bottom: 16px;
    }

    .agency-assistant__launcher span {
        display: none;
    }

    .agency-assistant__launcher {
        width: 50px;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 980px) {
    .site-header {
        height: auto;
        min-height: 80px;
    }

    .topbar {
        display: none;
    }

    .navbar {
        width: min(100% - 32px, 960px);
        min-height: 80px;
    }

    .brand img {
        width: 140px;
    }

    .navlinks.is-open {
        gap: 8px;
        padding: 18px 0 24px;
        border-top: 1px solid #ececec;
    }

    .navlinks.is-open a,
    .navlinks.is-open .nav-item__link {
        min-height: 44px;
        padding: 12px 0;
        color: var(--brand-primary);
        font-size: 16px;
        font-weight: 500;
    }

    .navlinks.is-open a::after,
    .navlinks.is-open .nav-item__link::after {
        display: none;
    }

    .nav-preview {
        display: none;
    }

    .navlinks.is-open .navlinks__agent {
        min-height: 44px;
        padding: 0 24px;
        color: #ffffff;
        background: var(--brand-primary);
        border-radius: 14px;
    }
}

@media (max-width: 620px) {
    .navbar {
        width: calc(100% - 32px);
    }

    .brand img {
        width: 132px;
    }
}

/* Homepage Hero — consolidated module (index.html) — Faz 2 */

/* Scoped color system */
.hero {
    --hero-surface-next: #f3f0e9;
    --hero-text: #ffffff;
    --hero-text-soft: rgba(255, 255, 255, 0.9);
    --hero-eyebrow: rgba(255, 255, 255, 0.78);
    --hero-accent: var(--brand-primary);
    --hero-accent-hover: #1e293b;
    --hero-shadow: rgba(15, 23, 42, 0.24);
    --hero-focus: rgba(15, 23, 42, 0.32);
    display: block;
    position: relative;
    isolation: isolate;
    min-height: clamp(520px, 68vh, 720px);
    max-height: none;
    padding-top: 0;
    padding-bottom: clamp(20px, 3vw, 32px);
    overflow: hidden;
    color: var(--hero-text);
}

/* Overlay & media polish */
.hero__media-stack .hero__media {
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.03);
    filter: saturate(0.94) contrast(1.04);
    opacity: 0;
    transition: opacity 900ms ease;
    will-change: opacity;
}

.hero__media-stack .hero__media.is-active {
    opacity: 1;
}

.hero__media {
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.03);
    filter: saturate(0.94) contrast(1.04);
}

.hero__overlay {
    background: linear-gradient(
        118deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.58) 48%,
        rgba(15, 23, 42, 0.32) 100%
    );
    z-index: 1;
}

/* Soft handoff into #programlar */
.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 2;
    height: clamp(56px, 9vw, 96px);
    background: linear-gradient(
        180deg,
        rgba(243, 240, 233, 0) 0%,
        rgba(243, 240, 233, 0.55) 52%,
        var(--hero-surface-next) 100%
    );
    pointer-events: none;
}

/* Layout & typography */

.hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    padding-top: calc(80px + 44px);
    padding-bottom: clamp(28px, 4vw, 40px);
    text-align: left;
}

.hero__content .eyebrow {
    margin-bottom: 14px;
    color: var(--hero-eyebrow);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.hero__content > h1 {
    max-width: 820px;
    margin-bottom: 16px;
    color: var(--hero-text);
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-align: left;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}

.hero__lead {
    max-width: 600px;
    margin: 0;
    color: var(--hero-text-soft);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.35vw, 18px);
    font-weight: 400;
    line-height: 1.6;
}

.hero__actions {
    justify-content: flex-start;
    margin-top: 20px;
}

/* CTAs */
.hero__actions .button {
    min-height: 48px;
    padding: 14px 24px;
    border: 1px solid transparent;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.hero__actions .hero__cta-primary {
    color: var(--hero-text);
    background: var(--hero-accent);
    border-color: var(--hero-accent);
    box-shadow: 0 12px 32px var(--hero-shadow);
}

.hero__actions .hero__cta-primary:hover {
    color: var(--hero-text);
    background: var(--hero-accent-hover);
    border-color: var(--hero-accent-hover);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.28);
}

.hero__actions .button--secondary {
    color: var(--hero-text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.hero__actions .button--secondary:hover {
    color: var(--hero-text);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.88);
}

/* Trust band — below CTAs */
.hero__content .hero__facts {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: var(--hero-max);
    margin: 28px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.hero__content .hero__facts div {
    padding: 14px 18px;
}

.hero__content .hero__facts strong,
.hero__content .hero__facts span {
    display: block;
}

.hero__content .hero__facts strong {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 600;
    line-height: 1;
    color: var(--hero-accent);
    letter-spacing: -0.02em;
}

.hero__content .hero__facts span {
    margin-top: 6px;
    color: #64748b;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Hero → Tüm Turlar transition */
#programlar.tour-console.section-pad {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: clamp(12px, 2vw, 20px);
    background: var(--hero-surface-next, #f3f0e9);
}

#programlar.tour-console.section-pad::before {
    content: "";
    display: block;
    width: min(1180px, calc(100% - 32px));
    height: 1px;
    margin: 0 auto clamp(16px, 2.5vw, 24px);
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.1) 18%,
        rgba(15, 23, 42, 0.1) 82%,
        rgba(15, 23, 42, 0) 100%
    );
}

#programlar .all-tours__content .section-heading {
    margin-bottom: 12px;
}

#programlar .all-tours__content .section-heading h2 {
    margin-bottom: 8px;
    font-size: 34px;
    color: var(--brand-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

#programlar .tour-console__intro {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

/* Hero-scoped search (future / shared component) */
.hero .hero-search__button {
    background: var(--hero-accent);
}

.hero .hero-search__button:hover {
    background: var(--hero-accent-hover);
}

.hero .hero-search__button:focus-visible,
.hero .hero-search__window:focus-visible,
.hero .destination-panel button:focus-visible,
.hero .date-calendar button:focus-visible {
    outline: 3px solid var(--hero-focus);
    outline-offset: 2px;
}

.hero .destination-group__toggle i,
.hero .date-calendar__day.is-selected,
.hero .date-calendar__day.is-range {
    color: var(--hero-accent);
}

.hero .date-calendar__day.is-selected,
.hero .date-calendar__day.is-range {
    background: var(--hero-accent);
    color: var(--hero-text);
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero__content {
        padding-top: calc(80px + 40px);
    }

    .hero__content > h1 {
        max-width: 100%;
        font-size: clamp(34px, 5.5vw, 48px);
    }

    .hero__lead {
        max-width: 100%;
    }

    .hero__content .hero__facts {
        margin-top: 24px;
    }

    #programlar.tour-console.section-pad {
        padding-top: 10px;
    }

    #programlar.tour-console.section-pad::before {
        margin-bottom: 14px;
    }

    #programlar .tour-console__intro {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__media-stack .hero__media {
        transition: none;
    }
}

@media (max-width: 620px) {
    .hero {
        padding-bottom: 0;
    }

    .hero__media-stack .hero__media,
    .hero__media {
        object-position: center 28%;
        transform: scale(1.05);
    }

    .hero::after {
        height: clamp(44px, 12vw, 72px);
    }

    .hero__content {
        width: calc(100% - 32px);
        padding-top: max(108px, calc(env(safe-area-inset-top, 0px) + 88px));
    }

    .hero__content > h1 {
        font-size: clamp(28px, 7.8vw, 36px);
        line-height: 1.14;
        letter-spacing: -0.01em;
    }

    .hero__content .hero__lead {
        font-size: 16px;
        line-height: 1.62;
    }

    .hero__actions {
        width: auto;
        flex-direction: column;
        align-items: stretch;
        margin-top: 24px;
        gap: 10px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__content .hero__facts {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

    .hero__content .hero__facts div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 20px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero__content .hero__facts div:last-child {
        border-bottom: 0;
    }

    .hero__content .hero__facts strong {
        font-size: 26px;
    }

    .hero__content .hero__facts span {
        margin-top: 0;
        font-size: 13px;
        letter-spacing: 0.04em;
        text-align: right;
    }
}

/* Agency landing page — consolidated module (acentemiz-olun/) */

.agency-apply-page {
    min-height: auto;
    padding: 0;
    color: var(--brand-primary);
    background: #ffffff;
    scroll-behavior: smooth;
}

#basvuru {
    scroll-margin-top: 104px;
}

/* Hero */
.agency-hero {
    position: relative;
    display: block;
    min-height: auto;
    padding-bottom: 32px;
    overflow: hidden;
    color: #ffffff;
}

.agency-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
}

.agency-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.48) 52%, rgba(15, 23, 42, 0.28) 100%);
}

.agency-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    padding-top: calc(80px + 44px);
    padding-bottom: 0;
}

.agency-hero__content .eyebrow {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.agency-hero__content > h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.agency-hero__lead {
    max-width: 640px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.55;
}

.agency-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.agency-hero__cta-primary {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.24);
}

.agency-hero__cta-primary:hover {
    color: #ffffff;
    background: #1e293b;
    border-color: #1e293b;
}

.agency-hero__actions .button--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.agency-hero__actions .button--secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.88);
}

.agency-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 720px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
    color: var(--brand-primary);
}

.agency-hero__facts div {
    padding: 14px 18px;
    border-right: 1px solid var(--line);
}

.agency-hero__facts div:last-child {
    border-right: 0;
}

.agency-hero__facts strong,
.agency-hero__facts span {
    display: block;
}

.agency-hero__facts strong {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.agency-hero__facts span {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Trust strip */
.agency-trust {
    padding-top: 28px;
    padding-bottom: 28px;
    background: #f8f8f6;
    border-block: 1px solid #e5e7eb;
}

.agency-trust__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.agency-trust__item i {
    flex-shrink: 0;
    color: #64748b;
    font-size: 18px;
}

/* Value pillars */
.agency-value {
    background: #ffffff;
}

.agency-value__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-value-card {
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

.agency-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--brand-primary);
    background: #f8f8f6;
    border-radius: 12px;
}

.agency-value-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.agency-value-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

/* Social proof stats */
.agency-proof {
    background: #ffffff;
}

.agency-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-proof-stat {
    padding: 24px 20px;
    text-align: center;
    background: #f8f8f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

.agency-proof-stat strong {
    display: block;
    color: var(--brand-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.agency-proof-stat span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.agency-apply-page .section-heading {
    width: min(760px, calc(100% - 32px));
    margin-inline: auto;
    margin-bottom: 32px;
}

.agency-apply-page .section-heading--center {
    text-align: center;
}

.agency-apply-page .section-heading h2 {
    margin-bottom: 10px;
    color: var(--brand-primary);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.12;
}

.agency-apply-page .section-heading p {
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

/* Platform preview */
.agency-platform {
    background: #f8f8f6;
}

.agency-platform__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-platform-card {
    display: grid;
    gap: 10px;
    padding: 24px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.agency-platform-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.agency-platform-card__label {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.agency-platform-card h3 {
    margin: 0;
    color: var(--brand-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.agency-platform-card p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.48;
}

.agency-platform-card__link {
    margin-top: 4px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
}

/* Process steps */
.agency-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.agency-process-step {
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

.agency-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 700;
    background: #f8f8f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.agency-process-step h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.agency-process-step p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.48;
}

/* Benefits grid (landing) */
.agency-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-benefits__grid article h3 {
    margin: 0 0 12px;
    color: var(--brand-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

/* Form layout */
.agency-form-wrap {
    background: #f8f8f6;
}

.agency-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 24px;
    align-items: start;
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-form-aside {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 104px;
}

.agency-form-aside__card {
    padding: 22px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

.agency-form-aside__card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.agency-form-aside__card p {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

.agency-form-aside__card a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.agency-form-aside__card a:hover {
    text-decoration: underline;
}

.agency-form-aside__note {
    margin-top: 12px;
    margin-bottom: 0;
    color: #94a3b8;
    font-size: 12px;
}

.agency-form-aside .check-list {
    margin: 0;
}

/* Multi-step form */
.agency-form-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.agency-form-steps li {
    padding: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    background: #f8f8f6;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.agency-form-steps li button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    color: inherit;
    font: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.agency-form-steps li button:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.agency-form-steps li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.agency-form-steps li.is-active {
    color: var(--brand-primary);
    background: #ffffff;
    border-color: var(--brand-primary);
}

.agency-form-steps li.is-active span {
    color: #ffffff;
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.agency-form-steps li.is-complete {
    color: var(--brand-primary);
}

.agency-form-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.agency-form-nav__prev {
    min-height: 48px;
    padding: 0 20px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    cursor: pointer;
}

.agency-form-nav__next {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease;
}

.agency-form-nav__next:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.agency-kvkk a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* FAQ */
.agency-faq__list {
    display: grid;
    gap: 10px;
    width: min(760px, calc(100% - 32px));
    margin-inline: auto;
}

.agency-faq-item {
    padding: 0 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.agency-faq-item summary {
    padding: 18px 0;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.agency-faq-item summary::-webkit-details-marker {
    display: none;
}

.agency-faq-item summary::after {
    content: "+";
    float: right;
    color: #64748b;
    font-size: 20px;
    font-weight: 400;
}

.agency-faq-item[open] summary::after {
    content: "−";
}

.agency-faq-item p {
    margin: 0 0 18px;
    padding-bottom: 4px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.agency-faq-item a {
    color: var(--brand-primary);
    font-weight: 600;
}

/* Contact CTA band */
.agency-contact-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 56px max(16px, calc((100vw - 1180px) / 2));
    color: #ffffff;
    background: var(--brand-primary);
}

.agency-contact-cta .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.agency-contact-cta h2 {
    max-width: 640px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.2;
}

.agency-contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.agency-contact-cta__secondary {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.agency-contact-cta__secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 980px) {
    .agency-trust__inner,
    .agency-value__grid,
    .agency-proof__grid,
    .agency-platform__grid,
    .agency-process__steps,
    .agency-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agency-form-layout {
        grid-template-columns: 1fr;
    }

    .agency-form-aside {
        position: static;
        order: -1;
    }

    .agency-hero__facts {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .agency-hero__content {
        padding-top: calc(80px + 36px);
    }

    .agency-hero__content > h1 {
        font-size: clamp(32px, 8vw, 40px);
    }

    .agency-hero__actions {
        flex-direction: column;
    }

    .agency-hero__actions .button {
        width: 100%;
        justify-content: center;
    }

    .agency-hero__facts {
        grid-template-columns: 1fr;
    }

    .agency-hero__facts div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .agency-hero__facts div:last-child {
        border-bottom: 0;
    }

    .agency-trust__inner,
    .agency-value__grid,
    .agency-proof__grid,
    .agency-platform__grid,
    .agency-process__steps,
    .agency-benefits__grid {
        grid-template-columns: 1fr;
    }

    .agency-form-steps {
        grid-template-columns: 1fr;
    }

    .agency-form-steps li {
        font-size: 12px;
    }

    .agency-form-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .agency-form-nav__prev,
    .agency-form-nav__next,
    .agency-submit {
        width: 100%;
    }

    .agency-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .agency-contact-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .agency-contact-cta__actions .button {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Destination region pages — consolidated module
   ========================================================================== */

.destination-region-page {
    min-height: 100vh;
    padding-top: 112px;
    color: #111111;
    background: #ffffff;
}

.destination-region-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(220px, 32vw, 360px);
    background: #0f172a center / cover no-repeat;
    background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.78) 100%),
        var(--hero-image);
}

.destination-region-hero__inner {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0 56px;
}

.destination-region-hero .eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destination-region-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.destination-region-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 54px 0 72px;
}

.destination-region-intro {
    max-width: 820px;
    margin-bottom: 48px;
}

.destination-region-intro p {
    margin: 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.destination-region-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 56px;
}

.destination-region-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
}

.destination-region-programs h2 {
    margin: 0 0 20px;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.destination-region-programs ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.destination-region-programs li {
    padding: 18px 22px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.destination-region-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #f3f4f6;
}

.destination-region-switcher a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.destination-region-switcher a:hover {
    color: #0f172a;
    border-color: #cbd5e1;
}

.destination-region-switcher a[aria-current="page"] {
    color: #ffffff;
    background: #111111;
    border-color: #111111;
}

@media (max-width: 900px) {
    .destination-region-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .destination-region-page {
        padding-top: 96px;
    }

    .destination-region-shell {
        width: min(1320px, calc(100% - 32px));
        padding-bottom: 56px;
    }

    .destination-region-intro p {
        font-size: 17px;
    }
}

/* ==========================================================================
   Legacy content pages — consolidated module (motivasyon, iletisim)
   ========================================================================== */

.legacy-content-page,
.contact-page {
    min-height: 100vh;
    padding-top: 112px;
    color: #111111;
    background: #ffffff;
}

.legacy-content-hero,
.contact-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(220px, 32vw, 360px);
    background: #0f172a center / cover no-repeat;
    background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.78) 100%),
        var(--hero-image);
}

.legacy-content-hero__inner,
.contact-hero__inner {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0 56px;
}

.legacy-content-hero .eyebrow,
.contact-hero .eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legacy-content-hero h1,
.contact-hero h1 {
    margin: 0;
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.legacy-content-shell,
.contact-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 54px 0 72px;
}

.legacy-content-intro {
    max-width: 820px;
    margin-bottom: 48px;
}

.legacy-content-intro h2 {
    margin: 0 0 16px;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.legacy-content-intro h3 {
    margin: 0 0 18px;
    color: #334155;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
}

.legacy-content-intro p {
    margin: 0 0 18px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.legacy-content-intro p:last-child {
    margin-bottom: 0;
}

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

.legacy-content-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.contact-card {
    display: grid;
    gap: 14px;
    padding: 28px 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #111111;
    font-size: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.contact-card h2 {
    margin: 0;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-card p,
.contact-card a {
    margin: 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.65;
    text-decoration: none;
}

.contact-card a:hover {
    color: #111111;
}

.contact-page__cta {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-map {
    width: 100%;
    height: clamp(320px, 42vw, 435px);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
}

.contact-map__canvas,
.contact-map .googleHarita {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .legacy-content-gallery,
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .legacy-content-page,
    .contact-page {
        padding-top: 96px;
    }

    .legacy-content-shell,
    .contact-shell {
        width: min(1320px, calc(100% - 32px));
        padding-bottom: 56px;
    }

    .legacy-content-intro p {
        font-size: 17px;
    }
}

/* ==========================================================================
   Legal pages — consolidated module
   ========================================================================== */

.legal-page {
    min-height: 100vh;
    padding-top: 112px;
    color: #111111;
    background: #ffffff;
}

.legal-shell {
    width: min(820px, calc(100% - 48px));
    margin: 0 auto;
    padding: 64px 0 80px;
}

.legal-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.legal-header .eyebrow {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-header h1 {
    margin: 0 0 12px;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.legal-header p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.legal-body {
    display: grid;
    gap: 28px;
}

.legal-body section h2 {
    margin: 0 0 12px;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.legal-body section p,
.legal-body section li {
    margin: 0 0 12px;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.legal-body section ul {
    margin: 0;
    padding-left: 20px;
}

.legal-body section li:last-child,
.legal-body section p:last-child {
    margin-bottom: 0;
}

.legal-body a {
    color: #111111;
    font-weight: 500;
}

@media (max-width: 640px) {
    .legal-page {
        padding-top: 96px;
    }

    .legal-shell {
        width: min(820px, calc(100% - 32px));
        padding-bottom: 56px;
    }
}

/* ==========================================================================
   Content hub pages — consolidated module
   ========================================================================== */

.content-hub-page {
    min-height: 100vh;
    padding-top: 112px;
    background: #ffffff;
}

.content-hub-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.content-hub-note {
    margin: 32px auto 0;
    max-width: 640px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}

.content-hub-note a {
    color: #111111;
    font-weight: 500;
}

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

.product-card {
    display: grid;
    gap: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
}

.product-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.product-card > div {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.product-card span {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h2 {
    margin: 0;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.product-card p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

/* ==========================================================================
   Form success page — consolidated module
   ========================================================================== */

.form-success-page {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 112px);
    padding: 112px 24px 80px;
    background: #ffffff;
}

.form-success-card {
    width: min(560px, 100%);
    padding: 40px 32px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
}

.form-success-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    color: #111111;
    font-size: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

.form-success-card h1 {
    margin: 0 0 12px;
    color: #111111;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.form-success-card p {
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.form-success-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 640px) {
    .content-hub-page {
        padding-top: 96px;
    }

    .content-hub-shell {
        width: min(1320px, calc(100% - 32px));
    }

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

    .form-success-page {
        padding-top: 96px;
    }

    .form-success-card__actions {
        flex-direction: column;
    }

    .form-success-card__actions .button {
        width: 100%;
        justify-content: center;
    }
}
