.page-wrap {
    /* Map the legacy Nemo component tokens to the current global design tokens. */
    --heading: var(--ink);
    --muted: var(--ink-soft);
    --text: var(--ink);
    --border: var(--line);
    --shadow: var(--shadow-soft);
    --radius: var(--radius-md);
    --soft-2: var(--surface-muted);
    --accent-dark: var(--accent-strong);
    max-width: 1180px;
    margin: 40px auto 48px;
    padding: 0 20px;
}

.inline-form {
    margin: 0;
}

.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 235, 0.96));
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0 0 10px;
    font-size: 3rem;
    line-height: 1.08;
    color: var(--heading);
    letter-spacing: -0.03em;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--soft-2);
    border: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--heading);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.hero-button,
.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-button {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(201, 143, 101, 0.24);
    border: 0;
    cursor: pointer;
}

.hero-button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.hero-link {
    background: #fff;
    color: var(--heading);
    border: 1px solid var(--border);
}

.hero-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: linear-gradient(180deg, #fff 0%, #f8f1e9 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    padding: 16px;
}

.hero-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
}

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

.section-card,
.mini-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-card {
    padding: 26px;
    margin-bottom: 24px;
}

.mini-card {
    padding: 22px;
}

.section-card h2 {
    margin: 0 0 16px;
    font-size: 1.55rem;
    color: var(--heading);
    letter-spacing: -0.02em;
}

.mini-card h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: var(--heading);
}

.section-card p,
.mini-card p {
    margin: 0 0 14px;
    line-height: 1.75;
    color: var(--muted);
}

.plain-list,
.route-list,
.amenities-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.route-list li,
.plain-list li,
.amenities-list li {
    margin-bottom: 8px;
}

.route-list-spaced {
    margin-top: 16px;
}

.paragraph-spaced {
    margin-top: 14px;
}

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

.detail-item {
    background: var(--soft-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
}

.detail-item strong {
    color: var(--heading);
}

.amenities-list {
    columns: 2;
    column-gap: 28px;
}

.amenities-list li {
    break-inside: avoid;
}

.note {
    margin-top: 14px;
    background: #fcf8f2;
    border: 1px solid #ecdcca;
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--text);
    line-height: 1.75;
}

.side-stack {
    display: grid;
    gap: 24px;
}

/* unified link-card style */
.card-list {
    display: grid;
    gap: 12px;
}

.card-list-spaced {
    margin-top: 14px;
}

.panel-link-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--soft-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.panel-link-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(36, 52, 71, 0.08);
    border-color: #dccbb8;
    background: #fff;
}

.panel-link-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 1.1rem;
    line-height: 1;
}

.panel-link-body {
    min-width: 0;
    flex: 1;
}

.panel-link-label {
    display: block;
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.panel-link-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--heading);
}

.panel-link-subtext {
    margin-top: 4px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
    align-items: start;
}

.photo-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(36, 52, 71, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(36, 52, 71, 0.14);
}

.photo-card img {
    width: 100%;
    height: auto;
    transition: transform 0.25s ease;
}

.photo-card:hover img {
    transform: scale(1.04);
}

.photo-card.landscape img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.photo-card.portrait img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.photo-caption {
    padding: 12px 14px;
    font-size: 0.95rem;
    color: var(--muted);
    background: #fff;
}

.video-wrap {
    position: relative;
    width: 100%;
    margin-top: 18px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(36, 52, 71, 0.12);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.88);
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 96vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 96vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    z-index: 2;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(0, 0, 0, 0.32);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.52);
}

.lightbox-close {
    top: 16px;
    right: 18px;
    font-size: 34px;
}

.lightbox-prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .amenities-list {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .page-wrap {
        margin-top: 24px;
        padding: 0 14px;
    }

    .hero,
    .section-card,
    .mini-card {
        padding: 20px;
        border-radius: 18px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

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

    .photo-card.landscape img,
    .photo-card.portrait img {
        aspect-ratio: auto;
        object-fit: contain;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}
.language-switcher{display:flex;justify-content:flex-end;align-items:center;gap:.55rem;max-width:1180px;margin:.75rem auto;padding:0 1rem;font-size:.92rem}.language-switcher a{padding:.35rem .6rem;border:1px solid #dbe2d9;border-radius:999px;text-decoration:none;color:inherit}.language-switcher a[aria-current="true"]{background:#13864a;color:#fff;border-color:#13864a;font-weight:700}@media(max-width:600px){.language-switcher{justify-content:center;flex-wrap:wrap}}
.hero-note{margin-top:1rem;padding:.75rem 1rem;border-left:4px solid #13864a;background:#f5f8f2;border-radius:8px;font-weight:600}
