:root {
    --bg: #f7f2ec;
    --bg-strong: #efe5da;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-solid: #ffffff;
    --ink: #271f1b;
    --muted: #6e6158;
    --accent: #7f464a;
    --accent-soft: #a96e72;
    --line: rgba(127, 70, 74, 0.18);
    --shadow: 0 16px 42px rgba(41, 28, 22, 0.12);
    --radius-xl: 1.5rem;
    --radius-lg: 1.15rem;
    --radius-md: 0.9rem;
    --container: min(1140px, calc(100vw - 2.4rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1000px 500px at 100% -10%, rgba(127, 70, 74, 0.1), transparent 62%),
        radial-gradient(760px 380px at -10% 10%, rgba(220, 188, 154, 0.28), transparent 62%),
        var(--bg);
    line-height: 1.62;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

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

h1,
h2,
h3 {
    font-family: "Lora", "Georgia", serif;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 0.7rem;
    color: #2c211d;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

h2 {
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

h3 {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

ul,
ol {
    margin: 0;
    padding: 0;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.narrow {
    max-width: 780px;
}

.section-padding {
    padding: clamp(2.2rem, 5vw, 4.7rem) 0;
}

.section-soft {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(237, 224, 211, 0.65));
    border-block: 1px solid rgba(127, 70, 74, 0.09);
}

.section-title {
    margin-bottom: 1.3rem;
}

.eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--ink);
    color: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    z-index: 1100;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(10px);
    background: rgba(247, 242, 236, 0.9);
    border-bottom: 1px solid rgba(127, 70, 74, 0.14);
    transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(26, 18, 14, 0.09);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 1rem;
    object-fit: cover;
    border: 1px solid rgba(127, 70, 74, 0.24);
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: "Lora", "Georgia", serif;
    font-size: 1.18rem;
    color: var(--ink);
}

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

.header-phone {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--accent);
    font-weight: 800;
    white-space: nowrap;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-booking-desktop {
    white-space: nowrap;
}

.site-nav {
    margin-left: 0.8rem;
    display: flex;
    align-items: center;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    list-style: none;
    flex-wrap: nowrap;
}

.site-nav a {
    text-decoration: none;
}

.site-nav ul a {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0.3rem 0.72rem;
    border-radius: 999px;
    font-weight: 700;
    color: #3f332d;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav ul a[aria-current="page"],
.site-nav ul a:hover {
    background: rgba(127, 70, 74, 0.13);
    color: var(--accent);
}

.site-nav-bottom,
.mobile-nav-title,
.nav-phone,
.nav-booking {
    display: none;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid rgba(127, 70, 74, 0.25);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.menu-backdrop {
    display: none;
}

.menu-toggle span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 0.26s ease, opacity 0.26s ease;
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1081px) {
    .brand {
        order: 1;
    }

    .site-nav {
        order: 2;
        margin-left: 1rem;
    }

    .header-actions {
        order: 3;
        margin-left: auto;
    }

    .site-nav ul a {
        padding: 0.28rem 0.64rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1080px) {
    body.menu-open {
        overflow: hidden;
    }

    .header-inner {
        min-height: 74px;
        gap: 0.7rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        z-index: 151;
    }

    .header-actions {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: 82px;
        right: 0.65rem;
        left: 0.65rem;
        bottom: auto;
        max-height: calc(100dvh - 98px);
        overflow: auto;
        z-index: 150;
        margin-left: 0;
        border: 1px solid var(--line);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(8px);
        box-shadow: 0 18px 30px rgba(40, 27, 22, 0.18);
        padding: 0.95rem;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.42rem;
        margin-top: 0;
    }

    .site-nav ul a {
        justify-content: flex-start;
        min-height: 2.95rem;
        border-radius: 0.8rem;
        padding-inline: 0.95rem;
        border: 1px solid rgba(127, 70, 74, 0.16);
        background: #fff;
        font-size: 0.98rem;
    }

    .mobile-nav-title {
        display: block;
        margin: 0;
        font-size: 0.76rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #77665d;
        font-weight: 800;
        padding: 0.2rem 0 0.7rem;
        border-bottom: 1px solid rgba(127, 70, 74, 0.12);
    }

    .site-nav-bottom {
        margin-top: 0.45rem;
        padding-top: 0.8rem;
        border-top: 1px solid rgba(127, 70, 74, 0.14);
        display: grid;
        gap: 0.5rem;
    }

    .nav-phone,
    .nav-booking {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    .nav-phone {
        font-size: 0.98rem;
        min-height: 2.75rem;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 149;
        background: rgba(23, 14, 10, 0.52);
        border: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
    }

    .menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.9rem;
    padding: 0.55rem 1.12rem;
    border-radius: 0.9rem;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-small {
    min-height: 2.4rem;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
}

.btn-solid {
    background: linear-gradient(120deg, var(--accent), #8f5558);
    color: #fff;
    box-shadow: 0 10px 26px rgba(127, 70, 74, 0.28);
}

.btn-solid:hover {
    box-shadow: 0 14px 30px rgba(127, 70, 74, 0.35);
}

.btn-ghost {
    border-color: rgba(127, 70, 74, 0.36);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.78);
}

.site-main {
    overflow: clip;
}

.hero-copy {
    max-width: 640px;
}

.hero-cover {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(420px, 62vh, 640px);
    padding-block: clamp(2.6rem, 6vw, 4.7rem);
}

.hero-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(700px 340px at 50% 15%, rgba(246, 202, 161, 0.18), transparent 70%),
        linear-gradient(112deg, rgba(22, 14, 12, 0.78) 0%, rgba(22, 14, 12, 0.68) 48%, rgba(22, 14, 12, 0.42) 100%);
}

.hero-cover-inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-copy-cover {
    max-width: min(760px, 100%);
    margin-inline: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(18, 12, 10, 0.24);
    box-shadow: 0 16px 36px rgba(14, 8, 7, 0.35);
    backdrop-filter: blur(3px);
    padding: clamp(1.2rem, 2.4vw, 1.9rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-copy-cover h1 {
    color: #fff;
}

.hero-copy-cover .eyebrow {
    color: #ffe9d9;
}

.hero-lead {
    font-size: clamp(1.02rem, 1.7vw, 1.16rem);
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.4rem 0;
}

.hero-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.56rem 1rem;
}

.hero-points li {
    position: relative;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #ffd7bf;
}

.hero-copy-cover .btn-ghost {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.booking-strip {
    padding-block: 0.2rem 2.2rem;
}

.booking-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: linear-gradient(130deg, rgba(127, 70, 74, 0.08), rgba(255, 255, 255, 0.94));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 30px rgba(76, 52, 44, 0.08);
}

.booking-strip-inner p {
    margin: 0;
    flex: 1 1 460px;
}

.benefits-head {
    max-width: 860px;
    margin: 0 auto 1.35rem;
    text-align: center;
}

.benefits-chips {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.benefits-chips li {
    border: 1px solid rgba(127, 70, 74, 0.2);
    background: #fff;
    border-radius: 999px;
    padding: 0.34rem 0.74rem;
    font-size: 0.84rem;
    color: #5d4f47;
    font-weight: 700;
}

.features-grid {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.feature-card {
    padding: 1.25rem 1.1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(127, 70, 74, 0.14);
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
    min-height: 100%;
    box-shadow: none;
}

.feature-card-highlight {
    border-color: rgba(127, 70, 74, 0.25);
}

.feature-card h3 {
    margin: 0;
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.58;
}

.feature-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.78rem;
    display: inline-grid;
    place-items: center;
    color: var(--accent);
    background: rgba(127, 70, 74, 0.1);
    margin-bottom: 0.25rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    min-height: 1.35rem;
    border-radius: 0.45rem;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent);
    border: 1px solid rgba(127, 70, 74, 0.25);
    background: #fff;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.link-arrow {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.link-arrow:hover {
    text-decoration: underline;
    text-underline-offset: 0.24rem;
}

.rooms-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.room-card {
    background: var(--surface-solid);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(72, 56, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(72, 56, 46, 0.12);
}

.room-card img {
    aspect-ratio: 16 / 10;
    width: 100%;
    height: clamp(190px, 20vw, 250px);
    object-fit: cover;
    object-position: center;
}

.room-card-body {
    padding: 1rem;
}

.room-card-body p {
    margin-bottom: 0;
}

.location-brief {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.location-brief-copy p {
    max-width: 60ch;
}

.location-brief-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.location-brief-list li {
    position: relative;
    padding-left: 1rem;
    color: #4f4139;
}

.location-brief-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--accent-soft);
}

.location-brief-side {
    border: 1px solid rgba(127, 70, 74, 0.14);
    border-radius: 0.95rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.86);
}

.location-brief-note {
    font-size: 0.95rem;
    color: #544740;
}

.location-brief-side .location-actions {
    margin-top: 0.85rem;
}

.location-actions,
.contacts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.home-map-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
    align-items: stretch;
}

.home-map-copy {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: 0 10px 28px rgba(77, 62, 50, 0.08);
}

.home-map-widget {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    min-height: 370px;
    background: #ddd;
}

.home-map-widget iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-wrap {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0.85rem 1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    color: #3d312c;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0.7rem 0 0;
}

.breadcrumbs {
    border-bottom: 1px solid rgba(127, 70, 74, 0.12);
    background: rgba(255, 255, 255, 0.58);
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    list-style: none;
    padding: 0.72rem 0;
    font-size: 0.9rem;
    color: #5a4e47;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: #b9a8a0;
}

.breadcrumbs a {
    text-decoration: none;
}

.page-intro h1 {
    margin-bottom: 0.9rem;
}

.gallery-wide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-wide-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(79, 59, 46, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-wide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(79, 59, 46, 0.12);
}

.gallery-open {
    width: 100%;
    border: 0;
    padding: 0;
    position: relative;
    cursor: zoom-in;
    background: transparent;
}

.gallery-open img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.gallery-open-wide img {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    object-position: center;
}

.gallery-open-wide {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.gallery-hint {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.82rem;
    background: rgba(36, 22, 18, 0.68);
    color: #fff;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.gallery-meta {
    padding: 0.95rem;
}

.gallery-meta h2 {
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

.gallery-meta p {
    margin: 0;
}

.service-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.service-hero-main,
.service-hero-facts,
.service-flow {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
}

.service-hero-main p:last-child,
.service-hero-facts p:last-child {
    margin-bottom: 0;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.service-facts-list {
    margin-top: 0.7rem;
    margin-bottom: 0;
}

.service-flow-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.75rem;
    color: #4f433c;
}

.service-flow-list li {
    padding-left: 0.2rem;
}

.service-grid,
.contacts-grid,
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.contact-card,
.attraction-card,
.location-card,
.contact-hero-card {
    background: var(--surface-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 10px 26px rgba(77, 62, 50, 0.08);
}

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

.attractions-intro-panel {
    max-width: 820px;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(127, 70, 74, 0.18);
    background: #fff;
    box-shadow: none;
}

.attractions-intro p {
    max-width: 70ch;
}

.attraction-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.attraction-tags li {
    padding: 0.3rem 0.6rem;
    border-radius: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #564841;
    background: #fff;
    border: 1px solid rgba(127, 70, 74, 0.16);
}

.attractions-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.route-board,
.city-tips,
.theme-card {
    background: var(--surface-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.15rem;
    box-shadow: none;
}

.section-head-tight {
    margin-bottom: 0.9rem;
}

.route-grid {
    display: grid;
    gap: 0.7rem;
}

.route-stop {
    border: 1px solid rgba(127, 70, 74, 0.18);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0.9rem;
}

.route-time {
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 800;
}

.route-stop h3 {
    margin-bottom: 0.45rem;
}

.route-stop p,
.city-tips p {
    margin: 0;
}

.city-tips-list {
    margin-top: 0.7rem;
}

.city-tips-list li {
    border: 1px solid rgba(127, 70, 74, 0.14);
    border-radius: 0.78rem;
    padding: 0.58rem 0.68rem 0.58rem 1.2rem;
    background: #fff;
}

.city-tips .btn {
    margin-top: 0.95rem;
}

.attraction-card {
    display: flex;
    flex-direction: column;
    gap: 0.56rem;
    padding: 1.15rem;
    background: #fff;
    transition: border-color 0.22s ease;
}

.attraction-card:hover {
    border-color: rgba(127, 70, 74, 0.28);
}

.attraction-card h2 {
    font-size: 1.16rem;
    margin: 0;
}

.attraction-card p {
    margin: 0;
}

.attraction-meta {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8d7470;
    font-weight: 800;
}

.attractions-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

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

.theme-card h3 {
    margin-bottom: 0.55rem;
}

.theme-card p {
    margin: 0;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.contact-link-big {
    font-size: clamp(1.28rem, 2vw, 1.6rem);
}

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

.amenities {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
}

.amenity-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.amenity-list li {
    position: relative;
    padding-left: 1rem;
    color: #4e4139;
}

.amenity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--accent);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.plain-list {
    list-style: none;
    display: grid;
    gap: 0.72rem;
    margin-bottom: 1.1rem;
}

.plain-list li {
    padding-left: 1rem;
    position: relative;
}

.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 999px;
    background: var(--accent-soft);
}

.location-map {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    min-height: 370px;
    background: #ddd;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.legal {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
}

.legal h2 {
    margin-top: 1.2rem;
    font-size: 1.28rem;
}

.legal-date {
    color: #8f7e73;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.legal-list {
    margin-bottom: 1.2rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.sitemap-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.1rem;
}

.sitemap-list {
    list-style: none;
    display: grid;
    gap: 0.58rem;
}

.sitemap-list a {
    text-decoration: none;
    color: #413530;
    font-weight: 700;
}

.sitemap-list a:hover {
    color: var(--accent);
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(127, 70, 74, 0.16);
    background: #f4ece4;
}

.footer-grid {
    padding: 2rem 0 1.2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.1rem;
}

.footer-col {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(127, 70, 74, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.footer-col-main {
    background: #fff;
}

.site-footer h2 {
    margin-bottom: 0.66rem;
    font-size: 1.08rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.52rem;
}

.footer-links a {
    color: #40332e;
    text-decoration: none;
}

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

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
}

.footer-booking {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(127, 70, 74, 0.16);
    padding: 0.95rem 0 1.3rem;
    display: grid;
    gap: 0.28rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #675951;
    font-size: 0.92rem;
}

.footer-legal {
    font-size: 0.9rem;
    color: #5f514a;
}

.footer-credit a {
    text-decoration: none;
}

.footer-aiwa {
    color: #d12b2b;
    font-weight: 800;
}

.cookie-banner {
    position: fixed;
    z-index: 160;
    right: 1rem;
    bottom: 1rem;
    width: min(540px, calc(100vw - 2rem));
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(35, 24, 19, 0.22);
    pointer-events: auto;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner .btn {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.cookie-banner a {
    color: var(--accent);
    font-weight: 800;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 10, 8, 0.8);
    backdrop-filter: blur(3px);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1060px, calc(100vw - 1.6rem));
    min-height: min(75vh, 690px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #15100d;
    color: #fff;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
}

.lightbox-figure {
    margin: 0;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

.lightbox-figure img {
    width: 100%;
    max-height: min(72vh, 680px);
    object-fit: contain;
}

.lightbox-figure figcaption {
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
}

.lightbox-nav,
.lightbox-close {
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.lightbox-nav {
    width: 100%;
    height: 100%;
    font-size: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.66rem;
    font-size: 1.5rem;
    line-height: 1;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1120px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 920px) {
    .hero-copy-cover {
        padding: 1rem;
    }

    .hero-cover {
        min-height: clamp(380px, 58vh, 560px);
    }

    .home-map-layout,
    .location-layout,
    .footer-grid,
    .service-hero,
    .service-grid,
    .contact-hero,
    .contacts-grid,
    .location-brief,
    .gallery-wide-grid,
    .sitemap-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .attractions-layout,
    .route-grid,
    .attractions-extra-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-points {
        flex-direction: column;
        align-items: center;
        gap: 0.42rem;
    }

    .benefits-chips {
        justify-content: flex-start;
    }

    .attractions-intro-panel {
        padding: 1rem;
    }

    .booking-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .header-inner {
        min-height: 74px;
        gap: 0.65rem;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand-copy {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .site-nav {
        top: 76px;
        right: 0.5rem;
        left: 0.5rem;
        bottom: auto;
        max-height: calc(100dvh - 86px);
        padding: 0.85rem;
    }

    .site-nav ul a {
        min-height: 2.75rem;
        font-size: 0.96rem;
    }

    .nav-phone {
        font-size: 0.9rem;
        min-height: 2.62rem;
    }

    .container {
        width: min(1140px, calc(100vw - 1.3rem));
    }

    .features-grid,
    .rooms-preview-grid,
    .attractions-grid,
    .attractions-extra-grid,
    .amenity-list,
    .contacts-grid-compact {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .benefits-chips li,
    .attraction-tags li {
        width: 100%;
        text-align: center;
    }

    .lightbox-dialog {
        grid-template-columns: 44px 1fr 44px;
        min-height: min(70vh, 620px);
    }

    .lightbox-close {
        top: 0.28rem;
        right: 0.28rem;
    }

    .cookie-banner {
        right: 0.6rem;
        bottom: 0.6rem;
        width: calc(100vw - 1.2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
