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

:root {
    --navy: #0f194c;
    --navy-dark: #0f194c;
    --blue: #102d97;
    --heading-dark: #3d1f14;
    --link: #0095eb;
    --link-hover: #007cc3;
    --cream: #fffcc7;
    --cream-light: #fff7a4;
    --footer-bg: #292b33;
    --footer-dark: #292b33;
    --footer-home: #0d1644;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.95);
    --font-content: 'Roboto Condensed', sans-serif;
    --font-heading: 'Josefin Sans', sans-serif;
    --font-title: 'Sancreek', serif;
    --font-script: 'Yesteryear', cursive;
    --font-menu: 'Roboto Condensed', sans-serif;
    --header-height: 120px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-content);
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: var(--blue);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
}

h1, .h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--heading-dark);
}

h2, .h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 34px;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--blue);
}

h3, .h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--blue);
}

h4, .h4 {
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 25px;
    font-weight: 500;
    color: var(--blue);
}

h5, .h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    color: var(--blue);
}

h6, .h6 {
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: var(--heading-dark);
}

.page-title {
    font-family: var(--font-title);
    font-size: 30px;
    line-height: 35px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

blockquote {
    font-family: var(--font-title);
    color: #444444;
}

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

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

a:hover {
    opacity: 0.85;
}

.site-main a {
    color: var(--link);
}

.site-main a:hover {
    color: var(--link-hover);
    opacity: 1;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-main {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Header — 3 columns like original: left menu | wide hanging logo | right menu */
.header-placeholder {
    display: none;
}

.site-header {
    position: relative;
    z-index: 1000;
    overflow: visible;
    background: transparent;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.site-header.is-sticky .header-bar {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 500px) minmax(0, 1fr);
    align-items: start;
    width: 100%;
    min-height: 60px;
    padding: 0;
    background: var(--navy);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.header-logo {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 60px;
    min-height: 0;
    overflow: visible;
    text-align: center;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    margin: 0 auto;
    width: auto;
}

.logo-desktop {
    width: 500px;
    max-width: 100%;
    height: auto;
}

.logo-mobile {
    display: none;
}

.header-nav {
    position: relative;
    z-index: 6;
    padding: 0 8px;
}

.header-nav-left {
    padding-left: 20px;
    text-align: left;
}

.header-nav-right {
    padding-right: 12px;
    text-align: right;
}

.header-nav-right > ul {
    display: inline-block;
    max-width: none;
    white-space: nowrap;
    text-align: left;
    vertical-align: top;
}

.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav > ul > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.header-nav > ul > li > a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-menu);
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: normal;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
}

.header-nav > ul > li > a:hover {
    color: var(--white);
    opacity: 1;
}

.header-nav-right .has-dropdown .dropdown {
    left: 0;
    right: auto;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--navy);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: var(--transition);
    z-index: 100;
    text-align: left;
}

.dropdown li {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-menu);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cream);
    text-transform: uppercase;
}

.dropdown a:hover {
    color: var(--white);
    opacity: 1;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    z-index: 1200;
    overflow-y: auto;
    padding: 60px 24px 24px;
    transform: translateX(-100%);
    transition: transform var(--transition);
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a,
.mobile-nav .mobile-acc-toggle {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-menu);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.4px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.mobile-nav a:hover,
.mobile-nav .mobile-acc-toggle:hover {
    color: var(--white);
    opacity: 1;
}

.mobile-acc-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-left: 12px;
}

.mobile-acc-icon::before,
.mobile-acc-icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    transition: transform 0.2s ease;
}

.mobile-acc-icon::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 2px;
}

.mobile-acc-icon::after {
    top: 0;
    left: 5px;
    width: 2px;
    height: 12px;
}

.has-children.is-open .mobile-acc-icon::after,
.sitemap-group.is-open .mobile-acc-icon::after {
    transform: scaleY(0);
}

.mobile-acc-panel {
    display: none;
    padding: 0 0 10px 12px;
}

.has-children.is-open .mobile-acc-panel {
    display: block;
}

.mobile-nav .mobile-acc-panel a {
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding: 8px 0;
    display: block;
    width: auto;
}

.mobile-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    background: #111;
}

.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1399 / 685;
    min-height: 280px;
    max-height: 70vh;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.is-active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
}

.carousel-title,
.banner-title {
    font-family: var(--font-script);
    font-size: clamp(28px, 5vw, 44px);
    color: var(--white);
    margin: 0 0 8px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.carousel-text,
.banner-text {
    font-family: var(--font-script);
    font-size: clamp(18px, 3vw, 30px);
    color: var(--text-light);
    margin: 12px 0 0;
    max-width: 700px;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.carousel-link,
.banner-link {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-top: 4px;
    letter-spacing: 1px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 28px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.35);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

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

.carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: #999;
    cursor: pointer;
    padding: 0;
}

.carousel-dots button.is-active {
    background: var(--white);
}

/* Chapslee Tale */
.chapslee-tale {
    padding: 40px 20px 50px;
    text-align: center;
    background: var(--white);
}

.chapslee-tale h2 {
    margin: 0 0 24px;
}

.tale-content p {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--blue);
    margin: 0 0 20px;
}

/* Content Banners */
.home-banners {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.content-banner {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.content-banner .banner-image {
    overflow: hidden;
}

.banner-image {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1399 / 685;
    min-height: 240px;
    max-height: 65vh;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.12);
}

/* Footer Contact */
.footer-contact {
    background: var(--cream);
    padding: 10px 0 28px;
}

.footer-ornament {
    text-align: center;
    margin-bottom: 18px;
}

.footer-ornament img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: start;
}

.footer-map iframe {
    width: 100%;
    max-width: 400px;
    height: 200px;
}

.footer-info h3,
.footer-links-block h3,
.footer-links-block h3 a {
    margin: 0 0 8px;
    text-align: center;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
}

.footer-links-block h3 a:hover {
    color: var(--blue);
    opacity: 1;
}

.footer-info p {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--blue);
    text-align: center;
    line-height: 1.45;
    margin: 0;
    font-weight: 400;
}

.footer-info a {
    color: var(--blue);
}

.rare-logo {
    display: block;
    margin: 16px auto 0;
}

.rare-logo img {
    margin: 0 auto;
}

.footer-links-block {
    text-align: center;
}

.footer-links-block p {
    margin: 0 0 12px;
}

.footer-links-block p a {
    color: var(--link);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0 16px;
    flex-wrap: wrap;
}

.social-icons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.btn {
    display: inline-block;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--navy-dark);
    color: #fff;
}

.btn-enquire {
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 24px;
    color: #fff;
}

.btn-enquire:hover {
    color: #fff;
    opacity: 0.92;
}

.footer-home-bar {
    background: var(--footer-home);
    text-align: center;
    padding: 10px 16px 12px;
}

.footer-home-bar a {
    color: #fff;
    font-family: var(--font-menu);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-home-bar a:hover {
    color: #fff;
    opacity: 1;
}

/* Footer Sitemap */
.footer-sitemap {
    background: var(--footer-bg);
    padding: 40px 0 24px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sitemap-col ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.sitemap-col ul:last-child {
    margin-bottom: 0;
}

.sitemap-col li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 0;
    line-height: 32px;
}

.sitemap-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #4aa3e8;
    box-sizing: border-box;
}

.sitemap-col a,
.sitemap-col span {
    color: var(--cream);
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 400;
}

.sitemap-acc-toggle {
    display: inline;
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    color: #fff;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: default;
}

.sitemap-acc-toggle .mobile-acc-icon {
    display: none;
}

.sitemap-col .is-heading a,
.sitemap-col .is-heading span {
    color: #fff;
    font-weight: 700;
}

.sitemap-col a:hover {
    color: #fff;
}

.sitemap-acc-toggle:hover {
    color: #fff;
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--footer-dark);
    padding: 16px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--link);
    font-weight: 400;
}

.footer-bottom a.footer-w3p {
    color: #4aa3e8;
}

.footer-bottom a:hover {
    color: #fff;
}

.back-to-top {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .header-nav-left,
    .header-nav-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 72px;
        padding: 10px 16px;
        overflow: hidden;
    }

    .header-logo {
        height: auto;
        overflow: hidden;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        height: 56px;
        max-height: 56px;
    }

    .site-header.is-sticky {
        position: sticky;
    }

    .header-placeholder {
        display: none !important;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-map iframe {
        margin: 0 auto;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sitemap-col ul {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sitemap-acc-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        padding: 6px 0;
    }

    .sitemap-acc-toggle .mobile-acc-icon {
        display: block;
    }

    .sitemap-group:not(.is-open) > li:not(.is-heading) {
        display: none;
    }
}

.inner-hero {
    position: relative;
    overflow: hidden;
    background: #111;
}

.inner-track {
    min-height: 320px;
    max-height: 62vh;
}

.inner-hero--plain {
    overflow: visible;
    background: #fff8e4;
}

.inner-hero--plain .carousel-track.inner-track {
    aspect-ratio: auto;
    min-height: 150px;
    max-height: 150px;
    height: 150px;
}

.inner-hero--plain + .inner-page {
    padding-top: 16px;
}

.inner-hero--plain .page-turn img {
    mix-blend-mode: multiply;
}

.inner-hero--plain .carousel-slide {
    background-color: #fff8e4;
    background-size: cover;
    background-position: center top;
}

.page-turn,
.site-main .page-turn,
.site-main a.page-turn {
    position: absolute;
    z-index: 6;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    display: block;
    color: inherit;
}

.page-turn img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 96px;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.28s ease;
}

.page-turn:hover,
.site-main a.page-turn:hover,
a.page-turn:hover {
    opacity: 1;
    background: none;
    color: inherit;
}

.page-turn:hover img,
.site-main a.page-turn:hover img,
a.page-turn:hover img {
    transform: scale(1.22);
}

.page-turn-prev {
    left: 18px;
}

.page-turn-next {
    right: 18px;
}

.inner-hero:not(.inner-hero--plain) .page-turn {
    bottom: 28px;
}

.inner-hero--plain .page-turn {
    top: 50%;
    transform: translateY(-50%);
}

.inner-page {
    padding: 40px 0 60px;
    background: var(--white);
}

.inner-content {
    max-width: 1140px;
}

.inner-flow {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.inner-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 0 0 12px;
}

.inner-wrap.span-2 {
    width: 50%;
    flex-direction: column;
    gap: 8px;
}

.inner-wrap.span-3 {
    width: 33.333%;
}

.inner-wrap.span-4 {
    width: 25%;
}

.inner-text {
    width: 100%;
}

.inner-text.align-center,
.inner-text.align-center h3,
.inner-text.align-center h4 {
    text-align: center;
}

.inner-text.align-justify h3,
.inner-text.align-justify h4,
.inner-text.align-justify p {
    text-align: justify;
}

.inner-content h3 {
    margin: 0 0 16px;
}

.inner-content h4 {
    margin: 0 0 12px;
}

.inner-content p,
.inner-content li {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 30px;
    color: var(--blue);
}

.inner-content ul,
.inner-content ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.inner-wrap figure {
    margin: 0;
    text-align: center;
}

.inner-wrap figure.span-1,
.inner-wrap.span-2 figure {
    width: 100%;
}

.inner-wrap figure.span-2 {
    width: calc(50% - 10px);
}

.inner-wrap figure.span-3 {
    width: calc(33.333% - 14px);
}

.inner-wrap figure.span-4 {
    width: calc(25% - 15px);
}

.inner-wrap figure.span-23 {
    width: calc(66.666% - 10px);
}

.inner-wrap figure img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.inner-wrap figcaption {
    margin-top: 8px;
    font-family: var(--font-content);
    font-size: 14px;
    color: var(--blue);
}

.inner-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    margin: 8px 0 24px;
}

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

.inner-gallery img {
    width: 100%;
    height: auto;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background: var(--white);
}

.awards-block {
    width: 100%;
    margin: 40px 0 10px;
}

.awards-row {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
}

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

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

.award-col {
    text-align: center;
}

.award-col img {
    margin: 12px auto 0;
    max-width: 100%;
}

.reserve-notice {
    max-width: 760px;
    margin: 0 auto 16px;
    text-align: center;
    color: var(--blue);
}

.reserve-notice.is-ok {
    color: #1a7a3a;
}

.reserve-form {
    max-width: 760px;
    margin: 8px auto 0;
    padding: 22px 22px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    background: #efefef;
    box-sizing: border-box;
    border-radius: 12px;
}

.reserve-form .reserve-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.reserve-form .reserve-full,
.reserve-form textarea {
    grid-column: 1 / -1;
}

.reserve-field {
    position: relative;
    display: block;
    min-width: 0;
}

.reserve-field.is-required::after {
    content: '*';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.reserve-form input,
.reserve-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-content);
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    box-shadow: none;
    outline: none;
}

.reserve-field.is-required input {
    padding-right: 28px;
}

.reserve-form textarea {
    min-height: 140px;
    resize: vertical;
}

.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
    color: #b3b3b3;
    opacity: 1;
}

.reserve-form input[type="date"] {
    min-height: 42px;
    color-scheme: light;
    cursor: pointer;
}

.reserve-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.75;
    width: 18px;
    height: 18px;
}

.reserve-date-label {
    display: block;
    margin: 0 0 5px 2px;
    font-family: var(--font-content);
    font-size: 12px;
    line-height: 1.2;
    color: #666;
}

.reserve-form input:focus,
.reserve-form textarea:focus {
    border-color: #3bb8b5;
}

.reserve-form button {
    grid-column: 1;
    justify-self: start;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 8px 18px;
    font-family: var(--font-menu);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: none;
    cursor: pointer;
}

.reserve-form button:hover {
    opacity: 0.92;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 80px;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-image {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    width: auto;
    height: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next,
.lightbox-close {
    position: absolute;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    z-index: 5;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 72px;
    line-height: 1;
    padding: 0 12px;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

.lightbox-close {
    top: 16px;
    right: 24px;
    font-size: 42px;
}

.lightbox-counter {
    position: absolute;
    right: 28px;
    bottom: 18px;
    color: #fff;
    font-family: var(--font-content);
    font-size: 14px;
}

@media (max-width: 992px) {
    .inner-page {
        padding: 28px 0 40px;
    }

    .inner-wrap.span-2,
    .inner-wrap.span-3,
    .inner-wrap.span-4,
    .inner-wrap figure.span-3,
    .inner-wrap figure.span-4,
    .inner-wrap figure.span-23 {
        width: 50%;
    }

    .inner-gallery,
    .inner-gallery.cols-3,
    .awards-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-turn img {
        height: 26px;
        max-width: 80px;
    }

    .page-turn-prev {
        left: 8px;
    }

    .page-turn-next {
        right: 8px;
    }

    .inner-hero--plain .inner-track {
        min-height: 120px;
        max-height: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .inner-wrap.span-2,
    .inner-wrap.span-3,
    .inner-wrap.span-4,
    .inner-wrap figure.span-2,
    .inner-wrap figure.span-3,
    .inner-wrap figure.span-4,
    .inner-wrap figure.span-23 {
        width: 100%;
    }

    .inner-gallery,
    .inner-gallery.cols-3,
    .awards-row-3,
    .awards-row-2 {
        grid-template-columns: 1fr;
    }

    .lightbox {
        padding: 50px 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 42px;
    }

    .reserve-form {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 12px;
    }

    .reserve-form button {
        width: auto;
    }
}

@media (max-width: 576px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .chapslee-tale {
        padding: 30px 16px 40px;
    }
}
