/* ═══════════════════════════════════════════════════════════
   Mount Fuji from Tokyo — Design System v3
   Aesthetic: Bold Japanese Modernism × Premium Travel
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Palette */
    --ai: #1b2d4f;
    --ai-deep: #0e1825;
    --ai-light: #2e4d78;
    --shu: #B73758;
    --shu-dark: #9a2b48;
    --shu-glow: rgba(183, 55, 88, .25);
    --sakura: #f0a0b5;
    --sakura-pale: #e0f2fe;
    --washi: #f0f7ff;
    --washi-deep: #e1effe;
    --sumi: #1a1a1a;
    --sumi-soft: #3d3a36;
    --stone: #8a8279;
    --kinu: #ffffff;
    --kin: #c4a24e;
    --kin-light: #dcc97a;

    /* Backward-compatible aliases */
    --indigo: var(--ai);
    --indigo-deep: var(--ai-deep);
    --vermillion: var(--shu);
    --vermillion-dark: var(--shu-dark);
    --washi-dark: var(--washi-deep);
    --ink: var(--sumi);
    --ink-soft: var(--sumi-soft);
    --snow: var(--kinu);
    --gold-leaf: var(--kin);
    --color-primary: var(--ai);
    --color-secondary: var(--shu);
    --color-bg: var(--washi);
    --color-white: var(--kinu);
    --color-text: var(--sumi);
    --color-text-light: var(--sumi-soft);

    /* Typography */
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Noto Sans', 'Helvetica Neue', sans-serif;

    /* Layout */
    --max-w: 1140px;
    --gutter: 24px;
    --r: 8px;
    --r-lg: 14px;
    --r-xl: 22px;

    /* Motion */
    --ease: cubic-bezier(.25, .46, .45, .94);
    --speed: .32s;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--sumi-soft);
    line-height: 1.78;
    background: var(--washi);
    font-size: 16px;
    letter-spacing: .01em;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--ai);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--speed) var(--ease);
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center !important;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes float-cloud-1 {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(30px) translateY(-12px);
    }
}

@keyframes float-cloud-2 {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-20px) translateY(-8px);
    }
}

@keyframes sunrise-pulse {
    0% {
        transform: translate(-50%, 20px) scale(1);
        opacity: .4;
    }

    100% {
        transform: translate(-50%, -30px) scale(1.25);
        opacity: .8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.fade-in-up {
    animation: fadeInUp .7s var(--ease) both;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .04em;
    text-align: center;
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--shu);
    color: var(--kinu);
    border-color: var(--shu);
    box-shadow: 0 4px 14px var(--shu-glow);
}

.btn-primary:hover {
    background: var(--shu-dark);
    /* Deeper Raspberry */
    border-color: var(--shu-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(183, 55, 88, .4);
}

.btn-outline {
    background: transparent;
    color: var(--kinu);
    border-color: rgba(255, 255, 255, .45);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--kinu);
    color: var(--ai);
    border-color: var(--kinu);
    box-shadow: 0 8px 25px rgba(255, 255, 255, .2);
}

.btn-lg {
    padding: 14px 42px;
    font-size: 1.02rem;
    letter-spacing: .05em;
}

.accent {
    color: var(--shu);
    font-weight: 600;
}

.accent:hover {
    color: var(--ai);
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   NAVBAR — Frosted washi glass
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(246, 242, 235, .88);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: padding var(--speed), box-shadow var(--speed), background var(--speed);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(246, 242, 235, .96);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 8px 40px rgba(0, 0, 0, .06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ai);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .accent {
    color: var(--shu);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-weight: 500;
    color: var(--sumi-soft);
    font-size: .88rem;
    letter-spacing: .03em;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--shu);
    transition: width var(--speed) var(--ease);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--ai);
}

.nav-cta {
    padding: 10px 24px !important;
    font-size: .84rem !important;
    color: var(--kinu) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ai);
    margin: 5px 0;
    transition: all var(--speed) var(--ease);
    border-radius: 1px;
}

/* ═══════════════════════════════════════════
   HERO — Dramatic Mt Fuji sunrise atmosphere
   with visible cloud shapes & warm light
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 96vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--kinu);
    overflow: hidden;
    /* Hero Image + Multi-layer gradient for atmosphere */
    background:
        radial-gradient(ellipse at 50% 110%, rgba(244, 180, 140, .35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 77, 120, .3) 0%, transparent 40%),
        linear-gradient(178deg,
            rgba(8, 14, 30, 0.7) 0%,
            rgba(14, 30, 56, 0.4) 30%,
            transparent 70%,
            rgba(240, 204, 170, 0.3) 100%),
        url('images/fujiSakura.webp') no-repeat center center / cover;
}

/* Sun glow — large, warm, visible */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at 50% 90%,
            rgba(255, 200, 120, .3) 0%,
            rgba(255, 180, 100, .15) 30%,
            transparent 65%);
    animation: sunrise-pulse 10s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Floating cloud shape — visible */
.hero::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 5%;
    width: 300px;
    height: 80px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    filter: blur(20px);
    animation: float-cloud-1 16s ease-in-out infinite;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Visible paper grain texture */
    background:
        linear-gradient(180deg,
            rgba(8, 14, 30, .25) 0%,
            rgba(8, 14, 30, .05) 50%,
            rgba(8, 14, 30, .2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 110px var(--gutter) 60px;
}

/* Subtitle — gold stamp treatment */
.hero-subtitle {
    display: inline-block;
    font-size: .76rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 26px;
    color: var(--kin-light);
    font-weight: 600;
    font-family: var(--font-body);
    padding: 8px 20px;
    border: 1.5px solid rgba(196, 162, 78, .35);
}

.hero-title {
    font-size: 4.2rem;
    margin-bottom: 26px;
    color: var(--kinu);
    text-shadow: 0 3px 40px rgba(0, 0, 0, .35), 0 1px 6px rgba(0, 0, 0, .2);
    line-height: 1.06;
}

.hero-text {
    font-size: 1.12rem;
    margin-bottom: 38px;
    opacity: .88;
    line-height: 1.85;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: .82rem;
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 500;
    transition: all var(--speed);
}

.badge:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-2px);
}

.stars {
    color: var(--kin-light);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ═══════════════════════════════════════════
   SECTIONS — Alternating backgrounds with
   visible Japanese geometric borders
   ═══════════════════════════════════════════ */
.section {
    padding: 100px 0;
    position: relative;
}

/* Asanoha (hemp leaf) pattern border between sections */
.section+.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--shu), transparent);
    border-radius: 2px;
}

.section-header {
    text-align: left;
    max-width: 680px;
    margin: 0 0 60px;
}

.section-header.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.section-title {
    font-size: 2.7rem;
    margin-bottom: 16px;
    color: var(--ai);
    position: relative;
    display: inline-block;
}

/* Brushstroke underline — thick, visible, gradient */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 20px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(90deg, var(--shu) 0%, var(--sakura) 70%, transparent 100%);
}

.section-header.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.06rem;
    color: var(--stone);
    line-height: 1.8;
}

.section-intro {
    max-width: 860px;
    margin: 24px auto 0;
    line-height: 1.85;
    color: var(--sumi-soft);
}

.section-intro p+p {
    margin-top: 18px;
}

/* ═══════════════════════════════════════════
   GRID
   ═══════════════════════════════════════════ */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

/* ═══════════════════════════════════════════
   COMPARISON TABLE — Bold header, warm rows
   ═══════════════════════════════════════════ */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--kinu);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 16px 56px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .04);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: left;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--ai) 0%, var(--ai-light) 100%);
    color: var(--kinu);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.comparison-table td {
    border-bottom: 1px solid var(--washi-deep);
    font-size: .94rem;
    color: var(--sumi-soft);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    transition: background var(--speed);
}

.comparison-table tbody tr:hover {
    background: var(--sakura-pale);
}

.comparison-table td strong {
    color: var(--ai);
}

/* ═══════════════════════════════════════════
   TOUR CARDS — Bold, with vermillion accent
   band and dramatic hover
   ═══════════════════════════════════════════ */
.tour-card {
    background: var(--kinu);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05), 0 12px 40px rgba(0, 0, 0, .04);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .04);
    position: relative;
}

/* Top vermillion band — always visible */
.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--shu) 0%, var(--sakura) 100%);
    z-index: 2;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, .1),
        0 0 0 1px var(--shu-glow);
}

.tour-card-image {
    height: 230px;
    background-color: var(--washi-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: .86rem;
    overflow: hidden;
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.06);
}

.tour-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.32rem;
}

.tour-desc {
    color: var(--sumi-soft);
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: .92rem;
    line-height: 1.72;
}

.tour-card-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.tour-card-widget [data-gyg-widget="availability"] {
    display: block;
    width: 100%;
    max-width: 100%;
}

.tour-card-widget [data-gyg-widget="availability"][data-gyg-variant="vertical"] {
    min-width: 0;
}

.tour-price {
    font-size: 1.15rem;
    color: var(--shu);
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    width: fit-content;
    font-family: var(--font-body);
    /* Price chip styling */
    background: var(--sakura-pale);
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(240, 160, 181, .25);
}

.tour-desc {
    color: var(--sumi-soft);
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: .92rem;
    line-height: 1.72;
}

.tour-card .accent {
    font-weight: 600;
    font-size: .92rem;
}

.tour-card .accent:hover {
    color: var(--ai);
}

/* ═══════════════════════════════════════════
   FAQ — Clean accordion with vermillion active bar
   ═══════════════════════════════════════════ */
.faq-section {
    background: var(--washi-deep);
    /* Visible asanoha-inspired triangle pattern */
    background-image:
        linear-gradient(60deg, rgba(0, 0, 0, .012) 25%, transparent 25.5%),
        linear-gradient(-60deg, rgba(0, 0, 0, .012) 25%, transparent 25.5%),
        linear-gradient(60deg, transparent 74.5%, rgba(0, 0, 0, .012) 75%),
        linear-gradient(-60deg, transparent 74.5%, rgba(0, 0, 0, .012) 75%);
    background-size: 60px 104px;
    background-position: 0 0, 0 0, 30px 52px, 30px 52px;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    position: relative;
    transition: background var(--speed);
}

.faq-item:last-child {
    border-bottom: none;
}

/* Active state — left vermillion bar */
.faq-item.active {
    background: rgba(255, 255, 255, .5);
    border-left: 3px solid var(--shu);
    padding-left: 16px;
    margin-left: -16px;
    border-radius: 0 var(--r) var(--r) 0;
}

.faq-question {
    padding: 24px 4px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ai);
    transition: color var(--speed);
    font-size: 1.02rem;
    font-family: var(--font-body);
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--shu);
}

.faq-question span {
    font-size: 1.4rem;
    transition: transform var(--speed) var(--ease), color var(--speed);
    color: var(--stone);
    flex-shrink: 0;
    margin-left: 20px;
    font-weight: 300;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--shu);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 4px;
    color: var(--sumi-soft);
    line-height: 1.85;
    transition: max-height .45s var(--ease), padding .3s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 4px 28px;
}

/* ═══════════════════════════════════════════
   REVIEWS — Traveller testimonials
   ═══════════════════════════════════════════ */
.reviews-section {
    background: var(--washi-deep);
}

.review-card {
    background: var(--kinu);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: var(--sakura);
    font-family: var(--font-display);
    opacity: .35;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: .1em;
}

.review-text {
    color: var(--sumi-soft);
    font-size: .95rem;
    line-height: 1.8;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai) 0%, var(--ai-light) 100%);
    color: var(--kinu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    color: var(--ai);
    font-size: .95rem;
}

.review-origin {
    font-size: .8rem;
    color: var(--stone);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════
   RELATED SEARCHES — Pill tags
   ═══════════════════════════════════════════ */
.related-searches {
    background: var(--washi);
    padding: 60px 0;
    border-top: 1px solid var(--washi-deep);
}

.related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
}

.related-tag {
    background: var(--kinu);
    padding: 11px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, .07);
    font-size: .85rem;
    color: var(--sumi-soft);
    font-weight: 500;
    transition: all var(--speed) var(--ease);
}

.related-tag:hover {
    background: var(--ai);
    color: var(--kinu);
    border-color: var(--ai);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27, 45, 79, .25);
}

/* ═══════════════════════════════════════════
   FOOTER — Deep indigo with visible Seigaiha
   wave pattern
   ═══════════════════════════════════════════ */
.footer {
    background: var(--ai-deep);
    color: rgba(255, 255, 255, .5);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Seigaiha (blue ocean wave) pattern — visible */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='50'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Ccircle cx='0' cy='50' r='40' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Ccircle cx='0' cy='50' r='30' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Ccircle cx='100' cy='50' r='40' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Ccircle cx='100' cy='50' r='30' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 50px;
    pointer-events: none;
}

/* Gold accent line at top of footer */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, var(--kin) 30%, var(--kin) 70%, transparent 90%);
    opacity: .4;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
}

.footer-brand h3 {
    color: var(--kinu);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.footer-brand .accent {
    color: var(--sakura);
}

.footer-brand p {
    font-size: .9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: .87rem;
    transition: color var(--speed);
}

.footer-links a:hover {
    color: var(--kinu);
}

.copyright {
    text-align: center;
    font-size: .8rem;
    letter-spacing: .03em;
    position: relative;
}

/* ═══════════════════════════════════════════
   PAGE HEADER — Subpages: dramatic indigo
   with visible cloud shapes
   ═══════════════════════════════════════════ */
.page-header {
    background: linear-gradient(160deg, var(--ai-deep) 0%, var(--ai) 40%, var(--ai-light) 100%);
    color: var(--kinu);
    padding: 160px 0 95px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Large decorative cloud — right side */
.page-header::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, .05) 0%, transparent 60%);
    border-radius: 50%;
    animation: float-cloud-2 20s ease-in-out infinite;
    pointer-events: none;
}

/* Bottom wave transition */
.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--washi);
    clip-path: ellipse(56% 100% at 50% 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 14px;
    color: var(--kinu);
    text-shadow: 0 3px 16px rgba(0, 0, 0, .2);
}

.page-subtitle {
    display: inline-block;
    font-size: .76rem;
    color: var(--kin-light);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1.5px solid rgba(196, 162, 78, .3);
}

/* ═══════════════════════════════════════════
   ARTICLE CONTENT — Premium reading experience
   with visible vermillion accent markers
   ═══════════════════════════════════════════ */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 70px 24px 100px;
}

.article-content h2 {
    font-size: 1.95rem;
    margin: 65px 0 22px;
    color: var(--ai);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--washi-deep);
    position: relative;
}

/* Vermillion accent bar at left of h2 */
.article-content h2::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 4px;
    height: 28px;
    background: var(--shu);
    border-radius: 2px;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.38rem;
    margin: 42px 0 14px;
    color: var(--ai);
}

/* Small diamond before h3 */
.article-content h3::before {
    content: '◇ ';
    color: var(--shu);
    font-size: .7rem;
}

.article-content p {
    margin-bottom: 22px;
    line-height: 1.9;
    color: var(--sumi-soft);
}

.article-content p a {
    color: var(--shu);
    font-weight: 500;
    border-bottom: 1px solid rgba(194, 53, 42, .3);
    transition: all var(--speed);
}

.article-content p a:hover {
    color: var(--ai);
    border-color: var(--ai);
}

.article-content ul,
.article-content ol {
    margin-bottom: 22px;
    padding-left: 24px;
    list-style: disc;
}

.article-content li {
    margin-bottom: 11px;
    line-height: 1.78;
}

.article-content ol {
    list-style: decimal;
}

/* Check List — diamond markers */
.check-list {
    list-style: none;
    padding-left: 0;
}

.article-content ul.check-list {
    list-style: none;
    padding-left: 0;
}

.article-content ul.check-list li::marker {
    content: '';
}

.check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.68;
}

.check-list li::before {
    content: '◆';
    position: absolute;
    left: 6px;
    top: 2px;
    color: var(--shu);
    font-size: .55rem;
}

.check-list li strong {
    color: var(--ai);
}

/* ═══════════════════════════════════════════
   TIMELINE / ITINERARY
   ═══════════════════════════════════════════ */
.timeline {
    margin-top: 38px;
}

.timeline-item {
    margin-bottom: 50px;
    padding-left: 32px;
    border-left: 2px solid var(--washi-deep);
    position: relative;
    transition: border-color var(--speed);
}

.timeline-item:hover {
    border-left-color: var(--sakura);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--shu);
    border-radius: 50%;
    border: 3px solid var(--washi);
    box-shadow: 0 0 0 2px var(--shu-glow);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content h3 {
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    font-size: 1.2rem !important;
}

.timeline-content h3::before {
    display: none;
}

.timeline-content p {
    margin-top: 0;
}

.time {
    display: block;
    font-size: .8rem;
    color: var(--shu);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

/* ═══════════════════════════════════════════
   CTA SECTION — Indigo with gold accents
   ═══════════════════════════════════════════ */
.cta-section {
    margin: 75px 0;
    background: linear-gradient(160deg, var(--ai) 0%, var(--ai-deep) 100%);
    color: var(--kinu);
    padding: 75px;
    border-radius: var(--r-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Visible gold border accent */
    border: 1px solid rgba(196, 162, 78, .15);
}

/* Gold corner flourishes */
.cta-section::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 100px;
    height: 100px;
    border-top: 2px solid rgba(196, 162, 78, .25);
    border-right: 2px solid rgba(196, 162, 78, .25);
    border-radius: 0 var(--r-xl) 0 0;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid rgba(196, 162, 78, .25);
    border-left: 2px solid rgba(196, 162, 78, .25);
    border-radius: 0 0 0 var(--r-xl);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--kinu) !important;
    margin-bottom: 18px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.cta-section h2::before {
    display: none;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 580px;
    opacity: .88;
}

.cta-section .price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--kin-light);
    font-family: var(--font-display);
}

/* ═══════════════════════════════════════════
   INFO GRID — Stat cards
   ═══════════════════════════════════════════ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.info-card {
    background: var(--kinu);
    padding: 30px;
    border-radius: var(--r);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    transition: transform var(--speed), box-shadow var(--speed);
}

/* Top accent line */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--kin), transparent);
    opacity: .5;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.info-card .label {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--stone);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card .value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ai);
    font-family: var(--font-display);
}

/* ═══════════════════════════════════════════
   PLACEHOLDER IMAGES
   ═══════════════════════════════════════════ */
.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════════
   SLIDER
   ═══════════════════════════════════════════ */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 0 44px 0;
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .07);
}

.slider-track {
    display: flex;
    transition: transform .5s var(--ease);
}

.slide {
    min-width: 100%;
    height: 440px;
    position: relative;
}

.slide img,
.slide .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ai);
    transition: all var(--speed) var(--ease);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.slider-btn:hover {
    background: var(--kinu);
    color: var(--shu);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .14);
}

.prev-btn {
    left: 18px;
}

.next-btn {
    right: 18px;
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all var(--speed);
}

.dot.active {
    background: var(--kinu);
    transform: scale(1.5);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--kinu);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 14px 45px rgba(0, 0, 0, .1);
        gap: 16px;
        border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 82vh;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .page-header {
        padding: 130px 0 70px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .article-content {
        padding: 48px 20px 70px;
    }

    .article-content h2 {
        font-size: 1.55rem;
    }

    .article-content h2::before {
        left: -20px;
        width: 3px;
        height: 22px;
    }

    .cta-section {
        padding: 46px 24px;
        margin: 48px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: .7rem;
        letter-spacing: 3px;
        padding: 6px 14px;
    }

    .badge {
        font-size: .76rem;
        padding: 6px 14px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .page-title {
        font-size: 1.65rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-content h2::before {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */
@media print {

    .navbar,
    .hero::before,
    .hero::after,
    .footer::before,
    .footer::after,
    .mobile-menu-btn,
    .btn,
    .hero-actions,
    .footer {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
    }

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