:root {
    --cst-ink: #1f1713;
    --cst-muted: #6a5f55;
    --cst-soft: #fff0dc;
    --cst-paper: #fff9f0;
    --cst-surface: #ffffff;
    --cst-line: #ead8bf;
    --cst-jade: #b83227;
    --cst-jade-dark: #301712;
    --cst-red: #d7352a;
    --cst-red-dark: #941f1c;
    --cst-gold: #d8a23a;
    --cst-gold-soft: #ffe1a6;
    --cst-sky: #fff4e5;
    --cst-shadow: 0 16px 38px rgba(48, 23, 18, 0.14);
    --cst-radius: 8px;
    --cst-container: 1180px;
    --cst-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Noto Sans SC", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.cst-site {
    margin: 0;
    color: var(--cst-ink);
    background: var(--cst-paper);
    font-family: var(--cst-font);
    font-size: 16px;
    line-height: 1.6;
}

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

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

a:hover {
    color: var(--cst-jade);
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.cst-skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 14px;
    color: #fff;
    background: var(--cst-jade-dark);
    border-radius: 6px;
}

.cst-skip-link:focus {
    top: 16px;
}

.cst-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cst-red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cst-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.cst-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    color: var(--cst-ink);
    background: var(--cst-surface);
    border: 1px solid var(--cst-line);
    border-radius: 6px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.cst-button:hover {
    transform: translateY(-1px);
    color: var(--cst-ink);
}

.cst-button--primary {
    color: #fff;
    background: var(--cst-red);
    border-color: var(--cst-red);
}

.cst-button--primary:hover {
    color: #fff;
    background: var(--cst-red-dark);
    border-color: var(--cst-red-dark);
}

.cst-button--light {
    color: var(--cst-ink);
    background: rgba(255, 255, 255, 0.92);
}

.cst-button--outline {
    color: var(--cst-jade-dark);
    background: transparent;
    border-color: rgba(184, 50, 39, 0.35);
}

.cst-button--small {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 0.92rem;
}

.cst-button--block {
    width: 100%;
}

.cst-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cst-jade);
    font-weight: 800;
}

.cst-text-link::after {
    content: ">";
    font-weight: 900;
}

.cst-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 249, 240, 0.96);
    border-bottom: 1px solid rgba(234, 216, 191, 0.88);
    backdrop-filter: blur(12px);
}

.cst-topbar {
    color: #fff;
    background: linear-gradient(90deg, var(--cst-red-dark), var(--cst-jade-dark));
    font-size: 0.9rem;
}

.cst-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    gap: 16px;
}

.cst-topbar__links {
    display: inline-flex;
    gap: 16px;
    white-space: nowrap;
}

.cst-topbar a {
    color: #fff;
}

.cst-nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 76px;
    gap: 24px;
}

.cst-brand {
    display: inline-flex;
    align-items: center;
    color: var(--cst-ink);
    min-width: 292px;
}

.cst-brand__logo {
    width: min(100%, 328px);
    height: auto;
}

.cst-brand--footer .cst-brand__logo {
    width: min(100%, 352px);
}

.cst-brand__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(148, 31, 28, 0.14);
}

.cst-brand__mark img {
    width: 100%;
    height: 100%;
}

.cst-brand__text {
    display: grid;
    line-height: 1.2;
}

.cst-brand strong {
    font-size: 1rem;
}

.cst-brand small {
    color: var(--cst-muted);
    font-size: 0.82rem;
}

.cst-brand-intro {
    background: linear-gradient(180deg, #fff, var(--cst-paper));
}

.cst-brand-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    gap: 48px;
    align-items: start;
}

.cst-brand-story h2 {
    margin: 10px 0 16px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
}

.cst-brand-story p {
    max-width: 720px;
    margin: 0 0 14px;
    color: var(--cst-muted);
    font-size: 1.05rem;
}

.cst-brand-values {
    display: grid;
    gap: 14px;
}

.cst-brand-values div {
    display: grid;
    gap: 6px;
    padding: 20px;
    background: var(--cst-paper);
    border: 1px solid var(--cst-line);
    border-left: 5px solid var(--cst-gold);
    border-radius: var(--cst-radius);
}

.cst-brand-values strong {
    color: var(--cst-jade-dark);
    font-size: 1.05rem;
}

.cst-brand-values span {
    color: var(--cst-muted);
}

.cst-main-nav {
    justify-self: end;
}

.cst-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cst-menu a {
    color: var(--cst-ink);
    font-size: 0.96rem;
    font-weight: 700;
}

.cst-menu a:hover {
    color: var(--cst-jade);
}

.cst-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--cst-line);
    border-radius: 6px;
}

.cst-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--cst-ink);
}

.cst-nav-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.cst-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(560px, 72vh, 760px);
    color: var(--cst-ink);
    background-color: var(--cst-paper);
    background-position: center;
    background-size: cover;
}

.cst-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 249, 240, 0.98) 0%, rgba(255, 249, 240, 0.9) 38%, rgba(255, 249, 240, 0.26) 68%, rgba(255, 249, 240, 0.02) 100%),
        linear-gradient(0deg, rgba(255, 249, 240, 0.18), rgba(255, 249, 240, 0));
}

.cst-hero__content {
    position: relative;
    max-width: 650px;
    padding-block: 84px;
}

.cst-hero .cst-kicker {
    color: var(--cst-red);
}

.cst-hero h1,
.cst-page-hero h1 {
    max-width: 780px;
    margin: 12px 0 18px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.98;
}

.cst-hero p,
.cst-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

.cst-hero p {
    color: var(--cst-muted);
    max-width: 590px;
}

.cst-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cst-trip-strip {
    background: #fff;
    border-bottom: 1px solid var(--cst-line);
}

.cst-trip-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cst-trip-strip a {
    display: grid;
    min-height: 132px;
    padding: 24px;
    border-left: 1px solid var(--cst-line);
    align-content: start;
    gap: 6px;
}

.cst-trip-strip a:last-child {
    border-right: 1px solid var(--cst-line);
}

.cst-trip-strip strong {
    font-size: 1.05rem;
}

.cst-trip-strip span {
    color: var(--cst-muted);
    font-size: 0.94rem;
}

.cst-section {
    padding: 84px 0;
}

.cst-section--split {
    background: #fff;
}

.cst-section--form {
    background: var(--cst-sky);
}

.cst-section__heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.cst-section__heading h2,
.cst-band h2,
.cst-split h2,
.cst-footer-cta h2,
.cst-form-heading h2 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.cst-section__heading p,
.cst-band p,
.cst-split p,
.cst-footer-cta p,
.cst-form-heading p {
    margin: 0;
    color: var(--cst-muted);
    font-size: 1.05rem;
}

.cst-card-grid {
    display: grid;
    gap: 22px;
}

.cst-card-grid--packages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cst-card-grid--destinations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cst-tour-card,
.cst-destination-card,
.cst-post-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--cst-line);
    border-radius: var(--cst-radius);
    box-shadow: 0 8px 22px rgba(23, 35, 31, 0.06);
}

.cst-tour-card {
    display: grid;
    min-height: 100%;
}

.cst-tour-card__media,
.cst-destination-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.48 / 1;
    overflow: hidden;
    background: var(--cst-jade-dark);
}

.cst-tour-card__media img,
.cst-destination-card__media img,
.cst-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cst-tour-card__placeholder,
.cst-destination-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(8, 39, 34, 0.18), rgba(8, 39, 34, 0.02)), url("../images/route-hero.png");
    background-position: center;
    background-size: cover;
}

.cst-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    color: #fff;
    background: var(--cst-red);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 900;
}

.cst-tour-card__body,
.cst-destination-card__body {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.cst-tour-card__meta,
.cst-destination-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--cst-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.cst-tour-card__meta span,
.cst-destination-card__meta span {
    padding: 5px 8px;
    background: var(--cst-soft);
    border-radius: 6px;
}

.cst-tour-card h3,
.cst-destination-card h3 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.2;
}

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

.cst-tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.cst-tour-card__footer strong {
    color: var(--cst-jade-dark);
}

.cst-band {
    padding: 82px 0;
    color: #fff;
    background: var(--cst-jade-dark);
}

.cst-band .cst-kicker {
    color: var(--cst-gold);
}

.cst-band p {
    color: rgba(255, 255, 255, 0.78);
}

.cst-band__grid,
.cst-split {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 54px;
    align-items: start;
}

.cst-steps {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: cst-step;
}

.cst-steps li {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 20px 22px 20px 66px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--cst-radius);
}

.cst-steps li::before {
    position: absolute;
    left: 20px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--cst-jade-dark);
    background: var(--cst-gold);
    border-radius: 50%;
    content: counter(cst-step);
    counter-increment: cst-step;
    font-weight: 900;
}

.cst-steps span {
    color: rgba(255, 255, 255, 0.76);
}

.cst-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cst-proof-grid div {
    display: grid;
    gap: 6px;
    padding: 22px;
    background: var(--cst-paper);
    border: 1px solid var(--cst-line);
    border-radius: var(--cst-radius);
}

.cst-proof-grid span {
    color: var(--cst-muted);
}

.cst-page-hero {
    padding: 92px 0 76px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(77, 22, 16, 0.94), rgba(184, 50, 39, 0.86)),
        url("../images/route-hero.png");
    background-position: center;
    background-size: cover;
}

.cst-page-hero--compact {
    padding: 72px 0 58px;
}

.cst-page-hero--package {
    padding: 82px 0;
}

.cst-page-hero .cst-kicker {
    color: #f2c06a;
}

.cst-page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.cst-package-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 42px;
    align-items: center;
}

.cst-package-summary,
.cst-side-panel {
    background: #fff;
    border: 1px solid var(--cst-line);
    border-radius: var(--cst-radius);
    box-shadow: var(--cst-shadow);
}

.cst-package-summary {
    display: grid;
    gap: 1px;
    overflow: hidden;
}

.cst-package-summary div {
    display: grid;
    gap: 4px;
    padding: 18px;
    color: var(--cst-ink);
    background: var(--cst-paper);
}

.cst-package-summary span {
    color: var(--cst-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cst-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 42px;
    align-items: start;
}

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

.cst-content > *:first-child {
    margin-top: 0;
}

.cst-content h2,
.cst-detail-section h2 {
    margin: 0 0 16px;
    font-size: 1.8rem;
    line-height: 1.15;
}

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

.cst-featured-image {
    aspect-ratio: 1.72 / 1;
    overflow: hidden;
    margin: 0 0 32px;
    border-radius: var(--cst-radius);
}

.cst-detail-section {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--cst-line);
}

.cst-check-list,
.cst-minus-list,
.cst-itinerary-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cst-check-list li,
.cst-minus-list li,
.cst-itinerary-list li {
    position: relative;
    padding-left: 28px;
    color: var(--cst-muted);
}

.cst-check-list li::before,
.cst-itinerary-list li::before {
    position: absolute;
    left: 0;
    top: 0.15em;
    color: var(--cst-jade);
    content: "✓";
    font-weight: 900;
}

.cst-minus-list li::before {
    position: absolute;
    left: 0;
    top: 0.15em;
    color: var(--cst-red);
    content: "-";
    font-weight: 900;
}

.cst-itinerary-list li {
    padding: 12px 12px 12px 42px;
    background: #fff;
    border: 1px solid var(--cst-line);
    border-radius: var(--cst-radius);
}

.cst-itinerary-list li::before {
    left: 15px;
    top: 12px;
}

.cst-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.cst-sidebar {
    position: sticky;
    top: 126px;
}

.cst-side-panel {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.cst-side-panel h2 {
    margin: 0;
    font-size: 1.35rem;
}

.cst-side-panel p {
    margin: 0;
    color: var(--cst-muted);
}

.cst-side-panel dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.cst-side-panel dl div {
    display: grid;
    gap: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cst-line);
}

.cst-side-panel dt {
    color: var(--cst-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cst-side-panel dd {
    margin: 0;
    font-weight: 800;
}

.cst-inquiry-form-wrap {
    padding: clamp(24px, 5vw, 46px);
    background: #fff;
    border: 1px solid var(--cst-line);
    border-radius: var(--cst-radius);
    box-shadow: var(--cst-shadow);
}

.cst-form-heading {
    max-width: 820px;
    margin-bottom: 28px;
}

.cst-form-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.cst-form-message--success {
    color: #103a2b;
    background: #dff4e8;
}

.cst-form-message--error {
    color: #7e2119;
    background: #ffe3de;
}

.cst-inquiry-form {
    display: grid;
    gap: 18px;
}

.cst-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cst-field {
    display: grid;
    gap: 7px;
    margin: 0;
}

.cst-field label,
.cst-consent {
    color: var(--cst-ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.cst-field label span {
    color: var(--cst-red);
}

.cst-field input,
.cst-field select,
.cst-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--cst-ink);
    background: var(--cst-paper);
    border: 1px solid var(--cst-line);
    border-radius: 6px;
    outline: none;
}

.cst-field textarea {
    resize: vertical;
}

.cst-field input:focus,
.cst-field select:focus,
.cst-field textarea:focus {
    border-color: var(--cst-jade);
    box-shadow: 0 0 0 3px rgba(184, 50, 39, 0.16);
}

.cst-field--trap {
    position: absolute;
    left: -9999px;
}

.cst-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--cst-muted);
}

.cst-consent input {
    margin-top: 4px;
    accent-color: var(--cst-jade);
}

.cst-contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.cst-post-list {
    display: grid;
    gap: 16px;
}

.cst-post-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
}

.cst-post-card h2 {
    margin: 2px 0 8px;
    font-size: 1.45rem;
}

.cst-post-card p {
    margin: 0;
    color: var(--cst-muted);
}

.cst-post-card__date {
    color: var(--cst-red);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cst-empty-state {
    padding: 22px;
    color: var(--cst-muted);
    background: #fff;
    border: 1px dashed var(--cst-line);
    border-radius: var(--cst-radius);
}

.cst-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #301712;
}

.cst-footer a {
    color: #fff;
}

.cst-footer-cta {
    padding: 54px 0;
    background: linear-gradient(90deg, var(--cst-red-dark), #3a1812);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cst-footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cst-footer-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.cst-footer-cta p {
    color: rgba(255, 255, 255, 0.76);
}

.cst-footer .cst-kicker {
    color: var(--cst-gold);
}

.cst-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 46px;
    padding: 54px 0 34px;
}

.cst-footer__brand p {
    max-width: 430px;
}

.cst-brand--footer small,
.cst-footer p {
    color: rgba(255, 255, 255, 0.68);
}

.cst-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
}

.cst-footer-menu {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cst-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 28px;
    color: rgba(255, 255, 255, 0.56);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.navigation.pagination {
    margin-top: 28px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.page-numbers {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid var(--cst-line);
    border-radius: 6px;
    font-weight: 800;
}

.page-numbers.current {
    color: #fff;
    background: var(--cst-jade);
    border-color: var(--cst-jade);
}

@media (max-width: 1080px) {
    .cst-nav-shell {
        grid-template-columns: auto auto auto;
    }

    .cst-main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 1px);
        display: none;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--cst-line);
        border-radius: 0 0 var(--cst-radius) var(--cst-radius);
        box-shadow: var(--cst-shadow);
    }

    .cst-main-nav.is-open {
        display: block;
    }

    .cst-menu {
        display: grid;
        justify-content: stretch;
        gap: 0;
    }

    .cst-menu a {
        display: block;
        padding: 12px 4px;
        border-bottom: 1px solid var(--cst-line);
    }

    .cst-menu li:last-child a {
        border-bottom: 0;
    }

    .cst-nav-toggle {
        display: block;
        justify-self: end;
    }

    .cst-nav-shell > .cst-button {
        justify-self: end;
    }

    .cst-trip-strip__grid,
    .cst-card-grid--destinations,
    .cst-card-grid--packages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cst-band__grid,
    .cst-split,
    .cst-brand-intro__grid,
    .cst-package-hero__grid,
    .cst-single-layout {
        grid-template-columns: 1fr;
    }

    .cst-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .cst-container {
        width: min(calc(100% - 28px), var(--cst-container));
    }

    .cst-topbar__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
        gap: 4px;
    }

    .cst-topbar__links {
        flex-wrap: wrap;
        white-space: normal;
    }

    .cst-nav-shell {
        min-height: 68px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .cst-nav-shell > .cst-button {
        grid-column: 1 / -1;
        justify-self: stretch;
        margin-bottom: 12px;
    }

    .cst-brand {
        min-width: 0;
    }

    .cst-brand__logo {
        width: min(100%, 210px);
    }

    .cst-brand__text small {
        display: none;
    }

    .cst-hero {
        min-height: 620px;
        background-position: 63% center;
    }

    .cst-hero__shade {
        background:
            linear-gradient(0deg, rgba(255, 249, 240, 0.98) 0%, rgba(255, 249, 240, 0.92) 45%, rgba(255, 249, 240, 0.18) 100%),
            linear-gradient(90deg, rgba(255, 249, 240, 0.74), rgba(255, 249, 240, 0.08));
    }

    .cst-hero__content {
        align-self: end;
        padding-block: 270px 44px;
    }

    .cst-hero h1,
    .cst-page-hero h1 {
        font-size: 2.55rem;
        line-height: 1;
    }

    .cst-hero p,
    .cst-page-hero p {
        font-size: 1rem;
    }

    .cst-hero__actions,
    .cst-footer-cta__inner,
    .cst-post-card {
        align-items: stretch;
        flex-direction: column;
    }

    .cst-hero__actions .cst-button,
    .cst-footer-cta .cst-button {
        width: 100%;
    }

    .cst-trip-strip__grid,
    .cst-card-grid--destinations,
    .cst-card-grid--packages,
    .cst-proof-grid,
    .cst-field-grid,
    .cst-two-columns,
    .cst-contact-grid,
    .cst-footer__grid {
        grid-template-columns: 1fr;
    }

    .cst-trip-strip a {
        min-height: auto;
        padding: 18px 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--cst-line);
    }

    .cst-trip-strip a:last-child {
        border-right: 0;
        border-bottom: 0;
    }

    .cst-section {
        padding: 58px 0;
    }

    .cst-band,
    .cst-page-hero {
        padding: 58px 0;
    }

    .cst-section__heading h2,
    .cst-band h2,
    .cst-split h2,
    .cst-footer-cta h2,
    .cst-form-heading h2 {
        font-size: 2rem;
    }

    .cst-inquiry-form-wrap {
        padding: 20px;
    }

    .cst-tour-card__footer,
    .cst-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .cst-brand__mark {
        width: 38px;
        height: 38px;
        font-size: 0.76rem;
    }

    .cst-brand__logo {
        width: min(100%, 184px);
    }

    .cst-brand strong {
        font-size: 0.94rem;
    }

    .cst-hero h1,
    .cst-page-hero h1 {
        font-size: 2.2rem;
    }

    .cst-button {
        padding-inline: 14px;
    }
}
