:root {
    --bg: #f4efe7;
    --bg-deep: #10242d;
    --paper: rgba(255, 255, 255, 0.82);
    --paper-solid: #ffffff;
    --ink: #12252f;
    --muted: #5f6f76;
    --accent: #ff7a45;
    --accent-strong: #ef5b22;
    --teal: #0b7b82;
    --sand: #f5d0a6;
    --line: rgba(18, 37, 47, 0.12);
    --shadow: 0 24px 60px rgba(16, 36, 45, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 69, 0.12), transparent 26%),
        radial-gradient(circle at 85% 10%, rgba(11, 123, 130, 0.16), transparent 22%),
        linear-gradient(180deg, #fffaf4 0%, var(--bg) 44%, #f7f3ee 100%);
}

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

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

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

.site-container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
}

.site-topbar {
    background: rgba(16, 36, 45, 0.9);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    backdrop-filter: blur(14px);
}

.site-topbar .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.topbar-note,
.topbar-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.site-nav-shell {
    background: rgba(255, 251, 245, 0.84);
    border-bottom: 1px solid rgba(18, 37, 47, 0.08);
    backdrop-filter: blur(18px);
}

.site-nav-shell .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.14) 0%, rgba(11, 123, 130, 0.12) 100%);
    box-shadow: 0 18px 35px rgba(16, 36, 45, 0.08);
    padding: 12px;
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-brand-copy strong,
.site-footer-brand strong {
    font-family: "Syne", sans-serif;
    font-size: 1.18rem;
    letter-spacing: -0.03em;
}

.site-brand-copy span {
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--muted);
    font-weight: 500;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.site-nav-list a:hover,
.site-nav-list a.is-active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-1px);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button,
.button-secondary,
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 16px 30px rgba(239, 91, 34, 0.28);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(18, 37, 47, 0.1);
}

.button:hover,
.button-primary:hover,
.button-secondary:hover,
.floating-dock a:hover,
.footer-cta-actions a:hover {
    transform: translateY(-3px);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 30px rgba(16, 36, 45, 0.08);
    color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    content: "";
}

.nav-toggle span {
    margin: 6px auto;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    background: rgba(255, 250, 244, 0.95);
    border-bottom: 1px solid rgba(18, 37, 47, 0.08);
}

.mobile-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.mobile-nav-list a {
    justify-content: center;
    background: rgba(255, 255, 255, 0.84);
}

.mobile-panel-actions {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.site-main {
    position: relative;
    z-index: 1;
}

.page-hero {
    position: relative;
    padding: 92px 0 52px;
}

.site-body.blog .page-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 430px);
    gap: 28px;
    align-items: center;
}

.hero-grid-solo {
    grid-template-columns: minmax(0, 1fr);
    max-width: 840px;
}

.hero-copy,
.hero-metrics {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--teal);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(16, 36, 45, 0.08);
}

.hero-copy h1,
.hero-panel h1,
.content-card h1,
.article-body h1,
.article-body h2,
.article-body h3,
.page-intro h2,
.section-title h2,
.detail-summary h2,
.route-card h3,
.stats-strip strong,
.faq-item h3,
.cta-panel h2 {
    font-family: "Syne", sans-serif;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.9rem);
    line-height: 0.96;
}

.hero-copy p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-metrics {
    display: grid;
    gap: 16px;
}

.metric-card,
.info-panel,
.content-card,
.aside-card,
.cta-panel,
.route-card,
.article-panel,
.faq-item,
.gallery-card {
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.metric-card {
    padding: 24px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}

.metric-label {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(14px);
}

.hero-orb-one {
    width: 280px;
    height: 280px;
    top: 34px;
    right: 12%;
    background: rgba(255, 122, 69, 0.18);
}

.hero-orb-two {
    width: 220px;
    height: 220px;
    bottom: 20px;
    left: 12%;
    background: rgba(11, 123, 130, 0.16);
}

.section-shell {
    padding: 32px 0 78px;
}

.section-title,
.page-intro {
    margin-bottom: 28px;
}

.section-title h2,
.page-intro h2 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.02;
}

.section-title p,
.page-intro p,
.content-card p,
.detail-summary p,
.article-panel p,
.aside-card p,
.info-panel p,
.faq-item p,
.html-content p,
.html-content li {
    color: var(--muted);
    line-height: 1.8;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px;
}

.stats-strip article {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 37, 47, 0.06);
    box-shadow: 0 16px 32px rgba(16, 36, 45, 0.08);
}

.stats-strip strong {
    display: block;
    font-size: 2rem;
}

.stats-strip span {
    color: var(--muted);
}

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

.card-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(16, 36, 45, 0.18);
}

.media-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.media-card-image img,
.gallery-grid img,
.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-card-image img,
.gallery-grid a:hover img,
.detail-hero-image:hover img {
    transform: scale(1.06);
}

.media-chip {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(18, 37, 47, 0.88);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.media-card-body {
    padding: 22px 22px 24px;
}

.media-meta {
    display: inline-flex;
    color: var(--teal);
    font-size: 0.92rem;
    font-weight: 600;
}

.media-card-body h3 {
    margin: 12px 0 10px;
    font-size: 1.42rem;
    line-height: 1.2;
}

.media-card-body p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600;
}

.text-link::after {
    content: "->";
    transition: transform 0.25s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.site-form {
    margin-top: 24px;
}

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

.field {
    display: grid;
    gap: 10px;
}

.field span {
    font-weight: 600;
    color: var(--ink);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid rgba(18, 37, 47, 0.12);
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(11, 123, 130, 0.45);
    box-shadow: 0 0 0 4px rgba(11, 123, 130, 0.08);
}

.field-full {
    grid-column: 1 / -1;
}

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

.info-panel {
    padding: 24px;
}

.info-panel strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

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

.route-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
}

.route-card::after {
    content: "";
    position: absolute;
    inset: auto -32px -42px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 122, 69, 0.18), transparent 70%);
}

.route-card h3 {
    margin: 10px 0;
    font-size: 1.46rem;
}

.route-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.route-card .eyebrow {
    padding: 8px 12px;
    font-size: 0.82rem;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 26px;
    align-items: stretch;
}

.detail-hero-image {
    min-height: 380px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-panel,
.detail-summary,
.content-card,
.aside-card,
.article-panel {
    padding: 30px;
}

.hero-panel h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.02;
}

.hero-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.detail-meta,
.meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.detail-meta span,
.meta-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 37, 47, 0.08);
    color: var(--ink);
    font-weight: 500;
}

.immersive-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 26px;
    align-items: stretch;
}

.immersive-hero-media {
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.immersive-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.immersive-hero:hover .immersive-hero-media img {
    transform: scale(1.04);
}

.immersive-hero-copy {
    padding: 30px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 122, 69, 0.1), transparent 34%),
        var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.immersive-hero-copy h1 {
    margin: 16px 0 16px;
    font-family: "Syne", sans-serif;
    font-size: clamp(2.25rem, 4.2vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.immersive-hero-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.immersive-hero-article .immersive-hero-media {
    min-height: 470px;
}

.detail-board {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    gap: 24px;
    align-items: start;
}

.detail-board-main {
    display: grid;
    gap: 22px;
}

.sticky-stack {
    position: sticky;
    top: 120px;
}

.feature-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.feature-chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(11, 123, 130, 0.08);
    color: var(--teal);
    font-weight: 600;
}

.package-option-grid {
    display: grid;
    gap: 18px;
}

.package-option-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.86fr) minmax(0, 1.14fr);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.package-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(16, 36, 45, 0.16);
}

.package-option-media {
    display: block;
    min-height: 100%;
    overflow: hidden;
}

.package-option-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-option-card:hover .package-option-media img {
    transform: scale(1.05);
}

.package-option-body {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
}

.package-option-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.package-option-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(11, 123, 130, 0.08);
    color: var(--teal);
    font-size: 0.92rem;
    font-weight: 600;
}

.package-option-body h3 {
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.package-option-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.78;
}

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

.gallery-showcase-tight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-shot {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 22px 44px rgba(16, 36, 45, 0.14);
    background: rgba(255, 255, 255, 0.84);
}

.gallery-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 36, 45, 0.02) 10%, rgba(16, 36, 45, 0.72) 100%);
}

.gallery-shot img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-shot:hover img {
    transform: scale(1.04);
}

.gallery-shot-copy {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(16, 36, 45, 0.7);
    backdrop-filter: blur(12px);
    color: #fff;
}

.gallery-shot-copy strong {
    font-family: "Syne", sans-serif;
    font-size: 1.12rem;
    letter-spacing: -0.03em;
}

.gallery-shot-copy span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

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

.testimonial-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow);
}

.testimonial-video {
    aspect-ratio: 16 / 9;
    background: #101010;
}

.testimonial-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.testimonial-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.testimonial-rating {
    color: #ffb02e;
    font-size: 0.96rem;
    letter-spacing: 0.18em;
}

.testimonial-body h3 {
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: 1.42rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.testimonial-author {
    display: grid;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--ink);
}

.testimonial-author span {
    color: var(--muted);
}

.article-panel-wide {
    overflow: hidden;
    padding: 0;
}

.article-body-spacious {
    display: grid;
    gap: 22px;
    padding: 32px;
}

.article-section-block {
    padding-top: 28px;
    border-top: 1px solid rgba(18, 37, 47, 0.08);
}

.article-section-block.is-first {
    padding-top: 0;
    border-top: 0;
}

.article-section-block h2 {
    margin: 12px 0 14px;
    font-size: clamp(1.55rem, 2.8vw, 2.28rem);
    line-height: 1.08;
}

.article-section-block .html-content {
    display: grid;
    gap: 14px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.content-stack {
    display: grid;
    gap: 22px;
}

.content-card h2,
.content-card h3,
.aside-card h3,
.article-panel h2,
.article-panel h3 {
    margin: 0 0 14px;
    font-size: 1.58rem;
}

.content-card ul,
.article-body ul,
.content-card ol,
.article-body ol {
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.html-content p:first-child,
.article-body p:first-child {
    margin-top: 0;
}

.html-content p:last-child,
.article-body p:last-child {
    margin-bottom: 0;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(135deg, var(--bg-deep) 0%, #183643 100%);
    color: #fff;
}

.cta-panel p,
.cta-panel li {
    color: rgba(255, 255, 255, 0.74);
}

.cta-panel .button-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

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

.gallery-grid a,
.gallery-grid article {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 18px 40px rgba(16, 36, 45, 0.12);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 24px;
    align-items: start;
}

.article-cover {
    width: 100%;
    border-radius: 22px;
    margin-bottom: 22px;
    box-shadow: 0 22px 44px rgba(16, 36, 45, 0.14);
}

.article-header {
    margin-bottom: 22px;
}

.article-header h1 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.03;
}

.article-body p,
.article-body li {
    color: var(--muted);
    line-height: 1.85;
}

.article-body>*+* {
    margin-top: 16px;
}

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

.faq-item {
    padding: 22px 24px;
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.floating-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    gap: 12px;
}

.floating-dock a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 18px 30px rgba(16, 36, 45, 0.2);
    transition: transform 0.25s ease;
}

.floating-call {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #27d466 0%, #14b450 100%);
}

.scroll-top {
    background: linear-gradient(135deg, var(--teal) 0%, #085a60 100%);
}

.site-footer {
    /* padding: 28px 0 30px; */
}

.site-footer-shell {
    background: linear-gradient(135deg, rgba(16, 36, 45, 0.98) 0%, rgba(24, 54, 67, 0.98) 100%);
    color: #fff;
    padding: 34px;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
    margin: 0 0 10px;
    font-family: "Syne", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.04em;
}

.footer-cta p,
.site-footer-shell p,
.footer-links a,
.footer-contact a,
.footer-contact address {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
    gap: 24px;
}

.site-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.site-footer-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.footer-column h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact address {
    margin: 0;
    white-space: pre-line;
    font-style: normal;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.empty-state {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 37, 47, 0.08);
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1100px) {

    .hero-grid,
    .detail-hero,
    .immersive-hero,
    .detail-board,
    .two-column-layout,
    .article-layout,
    .footer-grid,
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .feature-grid,
    .route-grid,
    .quick-fact-grid,
    .gallery-showcase,
    .testimonial-grid,
    .gallery-grid,
    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-stack {
        position: static;
    }

    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.mobile-nav-open .mobile-panel {
        display: block;
    }
}

@media (max-width: 760px) {

    .site-topbar .site-container,
    .site-nav-shell .site-container,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav-actions {
        width: 100%;
        justify-content: space-between;
    }

    .site-nav-actions .button-secondary {
        display: none;
    }

    .card-grid,
    .feature-grid,
    .route-grid,
    .quick-fact-grid,
    .gallery-showcase,
    .testimonial-grid,
    .gallery-grid,
    .stats-strip,
    .card-grid.two-up,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .topbar-note {
        text-align: center;
        justify-content: center;
    }

    .immersive-hero,
    .detail-board,
    .package-option-card {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 72px;
    }

    .immersive-hero-media,
    .gallery-shot,
    .gallery-shot img {
        min-height: 220px;
    }

    .package-option-body,
    .article-body-spacious {
        padding: 22px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 11vw, 3.7rem);
    }

    .hero-panel,
    .detail-summary,
    .content-card,
    .aside-card,
    .article-panel,
    .site-footer-shell,
    .metric-card {
        padding: 22px;
    }

    .floating-dock {
        right: 14px;
        bottom: 14px;
    }
}

.desktop-only-action {
    display: inline-flex;
}

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

.section-actions,
.section-cta-inline {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.detail-hero {
    padding: 38px 0 18px;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.detail-hero-copy,
.detail-hero-visual {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 37, 47, 0.08);
    box-shadow: var(--shadow);
}

.detail-hero-copy {
    padding: 38px;
}

.detail-hero-copy h1 {
    font-family: "Syne", sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 0.98;
    margin: 10px 0 18px;
}

.detail-hero-copy p {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0;
}

.detail-hero-visual {
    overflow: hidden;
    min-height: 100%;
}

.detail-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.detail-layout-shell {
    padding-top: 18px;
}

.detail-layout-row {
    align-items: flex-start;
    row-gap: 24px;
}

.detail-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
    gap: 26px;
    align-items: start;
}

.detail-main-column,
.detail-side-column {
    display: grid;
    gap: 24px;
}

.detail-main-column,
.detail-side-column {
    min-width: 0;
}

.detail-main-column>*,
.detail-side-column>* {
    width: 100%;
    min-width: 0;
}

.detail-side-column {
    align-content: start;
}

.related-tour-grid {
    align-items: stretch;
}

.package-option-grid,
.stacked-sections,
.booking-facts-list {
    display: grid;
    gap: 16px;
}

.package-option-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 37, 47, 0.08);
}

.package-option-card.is-active {
    border-color: rgba(239, 91, 34, 0.42);
    box-shadow: 0 18px 32px rgba(239, 91, 34, 0.14);
}

.package-option-card img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 16px;
}

.package-option-copy p,
.booking-summary-card p,
.stacked-section-block p,
.detail-meta-strip span {
    color: var(--muted);
}

.package-option-topline,
.booking-fact-row,
.detail-meta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.package-option-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(239, 91, 34, 0.12);
    color: var(--accent-strong);
    font-weight: 600;
    font-size: 0.92rem;
}

.detail-story-board,
.booking-summary-card {
    padding: 30px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(18, 37, 47, 0.08);
    box-shadow: var(--shadow);
}

.stacked-section-block {
    padding-top: 18px;
    border-top: 1px solid rgba(18, 37, 47, 0.08);
}

.stacked-section-block:first-child {
    padding-top: 0;
    border-top: 0;
}

.stacked-section-block h3 {
    margin-bottom: 12px;
}

.booking-fact-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(18, 37, 47, 0.08);
}

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

.hero-actions-stack {
    flex-direction: column;
    align-items: stretch;
}

.detail-hero-grid-article {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.detail-layout-grid-article .detail-main-column {
    gap: 22px;
}

.detail-meta-strip {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 37, 47, 0.08);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {

    .detail-hero-grid,
    .detail-layout-grid,
    .detail-hero-grid-article {
        grid-template-columns: 1fr;
    }

    .desktop-only-action {
        display: none;
    }
}

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

    .site-nav-shell .site-container {
        padding: 12px 0;
        gap: 12px;
    }

    .site-brand img {
        width: 54px;
        height: 54px;
        padding: 10px;
    }

    .detail-hero {
        padding-top: 22px;
    }

    .detail-hero-copy,
    .detail-story-board,
    .booking-summary-card,
    .content-card,
    .aside-card,
    .cta-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .package-option-card {
        grid-template-columns: 1fr;
    }

    .package-option-card img {
        height: 180px;
    }

    .hero-actions,
    .footer-cta-actions,
    .site-nav-actions {
        flex-wrap: wrap;
    }

    .button-primary,
    .button-secondary,
    .button {
        width: 100%;
    }

    .floating-dock {
        right: 12px;
        bottom: 12px;
    }
}

.section-shell-tight {
    padding-top: 18px;
    padding-bottom: 26px;
}

.slider-shell {
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
}

.slider-shell.swiper {
    width: 100%;
}

.slider-shell .swiper-wrapper {
    align-items: stretch;
}

.slider-shell .swiper-slide {
    height: auto;
}

.home-slider-section,
.package-gallery-section,
.article-hero-section {
    position: relative;
}

.package-gallery-section,
.article-hero-section {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-swiper,
.hero-swiper .swiper-slide,
.article-cover-hero-full {
    min-height: 100vh;
    min-height: 100svh;
}

.hero-swiper .hero-slide,
.hero-swiper .hero-slide-link {
    min-height: 100vh;
    min-height: 100svh;
}

.hero-slider-track,
.package-gallery-track,
.content-slider-track {
    align-items: stretch;
}

.hero-slide,
.article-cover-hero {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slide::after,
.article-cover-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 36, 45, 0.08) 0%, rgba(16, 36, 45, 0.66) 68%, rgba(16, 36, 45, 0.84) 100%);
    pointer-events: none;
}

.hero-slide-link {
    display: block;
    min-height: 100%;
    color: inherit;
}

.hero-slide img,
.hero-slide-link>img,
.article-cover-hero>img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.hero-slide-overlay,
.article-cover-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    max-width: 720px;
    color: #fff;
}

.hero-slide-overlay .eyebrow,
.article-cover-overlay .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    box-shadow: none;
}

.hero-slide-overlay h1,
.hero-slide-overlay h2,
.article-cover-overlay h1 {
    margin: 18px 0 14px;
    font-family: "Syne", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.hero-slide-overlay h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-slide-overlay p,
.article-cover-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.04rem;
    line-height: 1.8;
}

.hero-slide-overlay-compact {
    max-width: 560px;
}

.home-slider-section .hero-slide-overlay,
.package-gallery-shell .hero-slide-overlay {
    bottom: 112px;
}

.article-cover-hero-full {
    border-radius: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.slider-controls-floating {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    width: min(420px, calc(100% - 32px));
    transform: translateX(-50%);
    margin-top: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(16, 36, 45, 0.32);
    backdrop-filter: blur(18px);
}

.slider-controls-inline {
    margin-top: 22px;
}

.slider-button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(18, 37, 47, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-size: 1.15rem;
    box-shadow: 0 16px 30px rgba(16, 36, 45, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(16, 36, 45, 0.12);
}

.slider-button.swiper-button-disabled {
    opacity: 0.4;
    transform: none;
    box-shadow: none;
    cursor: default;
}

.slider-shell .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    position: static;
}

.slider-shell .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(18, 37, 47, 0.18);
    opacity: 1;
    transition: width 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.slider-shell .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--accent);
}

.slider-controls-floating .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.42);
}

.slider-controls-floating .swiper-pagination-bullet-active {
    background: #fff;
}

.content-slider-shell {
    background: transparent;
}

.compact-package-card {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.compact-package-card.is-active {
    border-color: rgba(239, 91, 34, 0.42);
    box-shadow: 0 18px 38px rgba(239, 91, 34, 0.14);
}

.compact-package-card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.compact-package-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.compact-package-card:hover .compact-package-card-media img {
    transform: scale(1.04);
}

.compact-package-card-body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.compact-package-card-body h3 {
    margin: 0;
    font-size: 1.35rem;
}

.compact-package-card-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.text-link-muted {
    opacity: 0.72;
}

.detail-summary-card,
.detail-content-card {
    padding: 32px;
}

.detail-summary-card h1,
.detail-content-card h2 {
    margin: 12px 0 12px;
    font-family: "Syne", sans-serif;
    letter-spacing: -0.04em;
}

.detail-summary-card h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.98;
}

.detail-summary-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.82;
}

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

.dual-info-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(18, 37, 47, 0.08);
}

.dual-info-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.package-accordion {
    display: grid;
    gap: 16px;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid rgba(18, 37, 47, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: none;
}

.accordion-header {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border-bottom: 0;
}

.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    border-radius: 0;
    box-shadow: none;
}

.accordion-button:hover,
.accordion-button:focus {
    color: var(--ink);
    text-decoration: none;
    box-shadow: none;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(239, 91, 34, 0.12);
    color: var(--accent-strong);
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
    background: rgba(11, 123, 130, 0.12);
}

.accordion-panel-inner {
    padding: 0 24px 24px;
}

.article-cover-hero:not(.article-cover-hero-full) {
    min-height: clamp(360px, 52vw, 560px);
}

.article-cover-overlay h1 {
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.article-meta-strip {
    margin-top: 0;
    padding: 20px 28px 0;
}

.hero-actions-tight {
    margin-top: 22px;
}

.booking-form-card h3 {
    margin: 12px 0 0;
}

.compact-blog-card .compact-package-card-media {
    aspect-ratio: 16 / 10;
}

@media (max-width: 1024px) {

    .detail-dual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-slide-overlay,
    .article-cover-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .home-slider-section .hero-slide-overlay,
    .package-gallery-shell .hero-slide-overlay {
        bottom: 92px;
    }

    .hero-slide-overlay h1,
    .hero-slide-overlay h2,
    .article-cover-overlay h1 {
        font-size: clamp(1.9rem, 9vw, 3rem);
    }

    .slider-controls {
        flex-wrap: wrap;
    }

    .slider-controls-floating {
        bottom: 18px;
        width: calc(100% - 24px);
    }

    .detail-summary-card,
    .detail-content-card,
    .dual-info-card {
        padding: 22px;
    }

    .accordion-button,
    .accordion-panel-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .accordion-panel-inner {
        padding-bottom: 20px;
    }

    .article-meta-strip {
        padding-left: 0;
        padding-right: 0;
    }
}