@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --navy: #071f30;
    --gold: #c99a42;
    --goldDark: #b38331;
    --goldText: #936817;
    --cream: #f6f1e8;
    --paper: #ffffff;
    --soft: #f7f7f5;
    --line: #e3e1dc;
    --muted: #62686d;
    --text: #172533;
    --danger: #8a2f2f;
    --success: #276346;
    --contentWidth: 1300px;
    --shadow: 0 12px 30px rgba(10, 30, 45, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modalOpen,
body.galleryOpen {
    overflow: hidden;
}

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

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

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

button,
select,
input[type="date"] {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.16;
}

h1 {
    letter-spacing: -0.025em;
}

p:last-child {
    margin-bottom: 0;
}

.contentWidth {
    width: min(var(--contentWidth), calc(100% - 48px));
    margin-inline: auto;
}

.screenReader {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skipLink {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 9999;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 4px;
}

.skipLink:focus {
    top: 18px;
}

.siteHeader {
    position: relative;
    z-index: 40;
    width: 100%;
    background: var(--navy);
}

.homePage .siteHeader {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.headerInner {
    width: min(1400px, calc(100% - 64px));
    min-height: 118px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) 200px;
    align-items: center;
    gap: 28px;
}

.brandLink {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.brandLogo {
    width: 235px;
    height: auto;
}

.mainMenu {
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.menuLink {
    position: relative;
    padding: 12px 0;
    color: #fff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menuLink::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 160ms ease;
}

.menuLink:hover::after,
.menuLink:focus-visible::after,
.menuLink.isActive::after {
    width: 100%;
}

.phoneButton {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: end;
    color: #fff;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.phoneIcon {
    width: 23px;
    height: 23px;
    color: var(--gold);
}

.menuButton {
    display: none;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
}

.menuIcon {
    width: 38px;
    height: 38px;
}

.flashMessage {
    position: relative;
    z-index: 45;
    padding: 13px 0;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.flashSuccess {
    background: var(--success);
}

.flashError {
    background: var(--danger);
}

.heroSection {
    position: relative;
    min-height: 570px;
    color: #fff;
    background: var(--navy);
    overflow: hidden;
    background-repeat: no-repeat;
}

.heroBackgroundImage {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heroSection .heroBackgroundImage {
    object-position: center 54%;
}

.aboutHero .heroBackgroundImage,
.contactHero .heroBackgroundImage {
    object-position: center 34%;
}

.roomsHero .heroBackgroundImage,
.compactHero .heroBackgroundImage {
    object-position: center 52%;
}

.galleryHero .heroBackgroundImage {
    object-position: center 30%;
}

.servicesHero .heroBackgroundImage {
    object-position: center 48%;
}

.locationHero .heroBackgroundImage {
    object-position: center;
}

.heroOverlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 13, 20, 0.94) 0%, rgba(4, 13, 20, 0.78) 35%, rgba(4, 13, 20, 0.42) 66%, rgba(4, 13, 20, 0.2) 100%);
}

.heroContent {
    position: relative;
    z-index: 2;
    padding-top: 170px;
    padding-bottom: 105px;
}

.heroLabel {
    color: var(--gold);
}

.sectionLabel {
    color: var(--goldText);
}

.heroLabel,
.sectionLabel {
    margin-bottom: 18px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.sectionLabel::after {
    content: "";
    display: inline-block;
    width: 38px;
    height: 1px;
    margin: 0 0 4px 16px;
    background: currentColor;
}

.heroLabel::after {
    display: none;
}

.heroContent h1 {
    max-width: 650px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(46px, 4vw, 64px);
}

.heroText {
    max-width: 510px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 17px;
    line-height: 1.75;
}

.primaryButton,
.goldButton,
.darkButton,
.footerButton {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 5px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.primaryButton,
.goldButton {
    color: var(--navy);
    background: var(--gold);
}

.primaryButton:hover,
.goldButton:hover {
    color: var(--navy);
    background: var(--goldDark);
}

.darkButton,
.footerButton {
    color: #fff;
    background: var(--navy);
}

.darkButton:hover,
.footerButton:hover {
    background: #0d3047;
}

.buttonIcon {
    width: 17px;
    height: 17px;
}

.heroButton {
    min-width: 225px;
}

.bookingStrip {
    position: relative;
    z-index: 12;
    margin-top: -53px;
}

.bookingPanel {
    min-height: 108px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.8fr 0.8fr 1.2fr;
    align-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.bookingField {
    position: relative;
    min-height: 64px;
    padding: 4px 20px 4px 58px;
    display: grid;
    align-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.bookingIcon {
    position: absolute;
    left: 17px;
    top: 50%;
    width: 28px;
    height: 28px;
    color: var(--gold);
    transform: translateY(-50%);
}

.bookingField label {
    margin-bottom: 1px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    line-height: 1.35;
}

.bookingField input,
.bookingField select {
    width: 100%;
    min-width: 0;
    padding: 0 24px 0 0;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
}

.bookingField input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.9;
}

.bookingField select option {
    color: var(--text);
    background: #fff;
}

.bookingAction {
    padding-left: 28px;
    text-align: center;
}

.bookingAction .goldButton {
    width: 100%;
    min-height: 48px;
}

.bookingAction small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.45;
}

.featureSection {
    padding: 45px 0 40px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.featureGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.featureItem {
    min-height: 88px;
    padding: 4px 30px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    border-right: 1px solid var(--line);
}

.featureItem:last-child {
    border-right: 0;
}

.featureIcon {
    width: 52px;
    height: 52px;
    color: var(--gold);
}

.featureItem h2 {
    margin-bottom: 7px;
    font-size: 19px;
}

.featureItem p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.sectionSpace {
    padding: 82px 0;
}

.softSection {
    background: var(--soft);
}

.splitLayout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr);
    gap: 70px;
    align-items: center;
}

.reverseLayout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

/* Metinlerin yanında kullanılan büyük görseller */

.singleImage {
    display: block;
    width: 100%;
    max-width: 100%;
    height: clamp(480px, 48vw, 680px);
    object-fit: cover;
    object-position: center 45%;
    border-radius: 8px;
}

.sectionText {
    max-width: 560px;
}

.sectionText h2,
.sectionHeading h2 {
    margin-bottom: 24px;
    font-size: clamp(34px, 3vw, 48px);
}

.sectionText p,
.sectionHeading p {
    color: var(--muted);
}

.sectionText .darkButton,
.sectionText .goldButton {
    margin-top: 16px;
}

.aboutPreview {
    padding-top: 80px;
}

.mapEmbed {
    display: block;
    width: 100%;
    height: 650px;
    border: 0;
    border-radius: 8px;
    background: var(--soft);
}

.sectionHeading {
    max-width: 760px;
    margin-bottom: 46px;
}

.centerHeading {
    margin-inline: auto;
    text-align: center;
}

.centerHeading .sectionLabel::before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 1px;
    margin: 0 16px 4px 0;
    background: currentColor;
}

.cardGrid,
.roomGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roomCard {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(10, 30, 45, 0.06);
}

.roomCardBody {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.roomCardTop {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.roomCardTop h3 {
    margin-bottom: 12px;
    font-size: 25px;
}

.roomCardTop>span {
    color: var(--goldText);
    font-weight: 500;
    white-space: nowrap;
    font-size: 17px;
}

.roomCardTop small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.roomCardBody>p {
    color: var(--muted);
    font-size: 15px;
}

.roomMeta {
    margin: 18px 0;
    margin-top: auto;
    padding: 14px 0;
    display: flex;
    gap: 20px;
    list-style: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 15px;
}

.textButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.sectionAction {
    margin-top: 38px;
    text-align: center;
}

.miniFeatureGrid {
    margin: 24px 0 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
}

.miniFeatureGrid span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.miniIcon {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.locationCta,
.infoBand {
    padding: 58px 0;
    color: #fff;
    background: var(--navy);
}

.locationCtaInner,
.infoBandInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.locationCta h2,
.infoBand h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 35px;
}

.locationCta p,
.infoBand p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.pageHero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-color: var(--navy);
    background-repeat: no-repeat;
}

.pageHero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 20, 31, 0.88) 0%, rgba(4, 20, 31, 0.7) 58%, rgba(4, 20, 31, 0.52) 100%);
}

.pageHeroContent {
    position: relative;
    z-index: 2;
    padding: 58px 0;
}

.pageHeroContent h1 {
    max-width: 800px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(42px, 4.6vw, 62px);
}

.pageHeroContent>p:last-child {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.lightLabel {
    color: var(--gold);
}

.locationCta .sectionLabel,
.infoBand .sectionLabel,
.siteFooter .sectionLabel {
    color: var(--gold);
}

.valueGrid,
.serviceGrid,
.contactGrid,
.distanceGrid {
    display: grid;
    gap: 24px;
}

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

.valueCard,
.serviceCard,
.distanceGrid article {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
}

.contactCard {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
}

.valueCard>span {
    color: var(--goldText);
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.valueCard h2,
.serviceCard h2,
.contactCard h2,
.distanceGrid h2 {
    margin: 18px 0 10px;
    font-size: 25px;
}

.valueCard p,
.serviceCard p,
.contactCard p,
.distanceGrid p {
    color: var(--muted);
    font-size: 15px;
}

.roomList {
    display: grid;
    gap: 60px;
}

.roomDetail {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 55px;
    align-items: center;
}

.roomDetailBody>p {
    color: var(--muted);
}

.roomTitleRow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.roomTitleRow h2 {
    font-size: 40px;
}

.roomTitleRow>span {
    color: var(--goldText);
    font-size: 20px;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

.roomTitleRow small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.roomFacts {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.roomFacts div {
    padding: 16px 14px;
    border-right: 1px solid var(--line);
}

.roomFacts div:last-child {
    border-right: 0;
}

.roomFacts dt {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.roomFacts dd {
    margin: 4px 0 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45;
}

.checkList {
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 20px;
    list-style: none;
}

.checkList li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.checkIcon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 290px;
    gap: 18px;
}

.galleryItem {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 10px 26px rgba(7, 31, 48, 0.12);
}

.galleryItem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 220ms ease;
}

.galleryItem:hover img {
    transform: scale(1.025);
}

.galleryItem figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 46px 20px 17px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.galleryItem[data-gallery-open] {
    cursor: zoom-in;
}

.galleryItem[data-gallery-open]:focus-visible {
    outline: 3px solid rgba(201, 154, 66, 0.85);
    outline-offset: 4px;
}

.galleryLightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.galleryLightboxBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 14, 22, 0.94);
    cursor: zoom-out;
}

.galleryLightboxContent {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 100%);
}

.galleryLightboxFigure {
    margin: 0;
    text-align: center;
}

.galleryLightboxFigure img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 110px);
    margin-inline: auto;
    object-fit: contain;
    border-radius: 7px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.galleryLightboxFigure figcaption {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
}

.galleryLightboxClose {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 31, 48, 0.82);
    font-size: 30px;
    line-height: 1;
}

.galleryLightboxClose:hover {
    background: var(--goldDark);
}

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

.serviceCardIcon,
.contactIcon {
    width: 44px;
    height: 44px;
    color: var(--gold);
}

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

.distanceGrid article {
    text-align: center;
}

.distanceGrid strong {
    color: var(--goldText);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 600;
}

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

.contactCard a {
    margin-top: auto;
    padding-top: 12px;
    color: var(--goldText);
    font-weight: 500;
}

.smallNote {
    margin-top: 24px;
    font-size: 15px;
}

.bookingPageSection {
    background: #f6f6f4;
}

.bookingRequestForm {
    display: grid;
    gap: 24px;
}

.formSection,
.bookingSummary,
.errorBox,
.noticeBox {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.formSection {
    padding: 32px;
}

.formSectionHeading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.formSectionHeading>span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    font-weight: 600;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.formSectionHeading h2 {
    margin-bottom: 4px;
    font-size: 28px;
}

.formSectionHeading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.formGrid,
.selectRoomGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.formField {
    display: grid;
    gap: 7px;
}

.formField label {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

.formField input,
.formField select,
.formField textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--text);
    background: #fff;
    border: 1px solid #cfd3d5;
    border-radius: 4px;
    outline: none;
    font-weight: 400;
    font-size: 16px;
}

.formField textarea {
    resize: vertical;
}

.formField input:focus,
.formField select:focus,
.formField textarea:focus {
    border-color: var(--goldDark);
    box-shadow: 0 0 0 3px rgba(201, 154, 66, 0.14);
}

.formFull {
    grid-column: 1 / -1;
}

.optionalText {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.childPolicyBox {
    margin-top: 22px;
    padding: 16px 18px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.childPolicyBox strong {
    display: block;
    margin-bottom: 3px;
}

.childPolicyBox p {
    margin: 0;
    color: #50565a;
    font-size: 15px;
}

.selectRoomCard {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    cursor: pointer;
}

.selectRoomCard:hover,
.selectRoomCard.isSelected {
    border-color: var(--gold);
}

.selectRoomCard.isSelected {
    box-shadow: 0 0 0 2px rgba(201, 154, 66, 0.18);
}

.selectRoomCard>input {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
    accent-color: var(--goldDark);
    z-index: 2;
}

.selectRoomCard>img {
    width: 180px;
    height: 100%;
    min-height: 185px;
    object-fit: cover;
    object-position: center 45%;
}

.selectRoomBody {
    padding: 22px 48px 20px 22px;
    display: grid;
    align-content: center;
    gap: 7px;
}

.selectRoomBody>strong {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.selectRoomBody>span {
    color: var(--muted);
    font-size: 15px;
}

.selectRoomMeta {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.selectRoomBody>.selectRoomPrice {
    color: var(--goldText);
    font-size: 18px;
    font-weight: 500;
}

.selectRoomPrice small {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.noticeBox,
.errorBox {
    padding: 20px 24px;
}

.noticeBox {
    margin-top: 20px;
    color: #6e5323;
    background: #fff7e8;
    border-color: #ecd6a9;
}

.errorBox {
    margin-bottom: 22px;
    color: #6d2929;
    background: #fff5f5;
    border-color: #e5bcbc;
}

.errorBox h2 {
    margin-bottom: 10px;
    color: inherit;
    font-size: 24px;
}

.errorBox ul {
    margin: 0;
    padding-left: 20px;
}

.bookingSummary {
    padding: 30px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 290px;
    gap: 34px;
    align-items: center;
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.summaryLabel {
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.bookingSummary>div>strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 600;
}

.bookingSummary p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
}

.paymentNotice {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.paymentNotice h2 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 22px;
}

.largeButton {
    width: 100%;
    min-height: 54px;
}

.trapField {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.feedbackButton {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(7, 31, 48, 0.2);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.feedbackIcon {
    width: 21px;
    height: 21px;
    color: var(--gold);
}

.modalLayer {
    position: fixed;
    inset: 0;
    z-index: 100;
    padding: 24px;
    display: grid;
    place-items: center;
    background: rgba(4, 15, 23, 0.7);
    overflow-y: auto;
}

.modalCard {
    position: relative;
    width: min(680px, 100%);
    max-height: calc(100vh - 48px);
    padding: 34px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.modalCard h2 {
    margin-bottom: 12px;
    font-size: 35px;
}

.modalIntro {
    color: var(--muted);
    font-size: 15px;
}

.modalClose {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: #f1f2f2;
    border: 0;
    border-radius: 50%;
}

.closeIcon {
    width: 20px;
    height: 20px;
}

.feedbackForm {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.siteFooter {
    color: rgba(255, 255, 255, 0.75);
    background: #061a28;
}

.footerGrid {
    padding: 64px 0 48px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.15fr;
    gap: 50px;
}

.footerBrand img {
    width: 235px;
    margin-bottom: 0;
}

.footerBrand p,
.siteFooter p {
    font-size: 14px;
    line-height: 1.7;
}

.footerTitle {
    margin-bottom: 20px;
    color: #fff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.siteFooter a:not(.footerButton) {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.siteFooter a:hover {
    color: #fff;
}

.footerButton {
    margin-top: 10px;
}

.footerBottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerBottomInner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    line-height: 1.55;
}

/* Ana sayfa görsel düzeni */

.splitLayout.homeAboutLayout,
.splitLayout.homeServiceLayout {
    align-items: center;
    gap: 48px;
}

.splitLayout.homeAboutLayout {
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
}

.splitLayout.homeServiceLayout {
    grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.2fr);
}

.homeAboutLayout>*,
.homeServiceLayout>* {
    min-width: 0;
}

.homeAboutLayout .sectionText,
.homeServiceLayout .sectionText {
    width: 100%;
    max-width: none;
}

.homePhotoGrid {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 190px);
    gap: 12px;
}

.homePhotoGrid img {
    width: 100%;
    min-width: 0;
    height: 190px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
}

/* Oda fotoğraf galerileri */

.roomMediaSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e9e7e1;
    isolation: isolate;
}

.roomCardGallery {
    height: 245px;
}

.roomDetailGallery {
    height: 430px;
    border-radius: 8px;
}

.roomMediaTrack {
    position: relative;
    width: 100%;
    height: 100%;
}

.roomMediaSlide {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center 45%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.roomMediaSlide.isActive {
    opacity: 1;
    visibility: visible;
}

.roomMediaButton {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(7, 30, 47, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    font-size: 31px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.roomMediaButton:hover {
    background: rgba(7, 30, 47, 0.96);
}

.roomMediaButton:active {
    transform: translateY(-50%) scale(0.94);
}

.roomMediaPrevious {
    left: 12px;
}

.roomMediaNext {
    right: 12px;
}

.roomPhotoCounter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    min-width: 45px;
    padding: 5px 9px;
    color: #fff;
    background: rgba(7, 30, 47, 0.76);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.roomMediaDots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 4;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(7, 30, 47, 0.7);
    border-radius: 20px;
    transform: translateX(-50%);
}

.roomMediaDot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    border-radius: 20px;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.roomMediaDot.isActive {
    width: 21px;
    background: #fff;
}

.roomMediaSlider:focus-visible {
    outline: 3px solid rgba(201, 154, 66, 0.85);
    outline-offset: 4px;
}

.roomDetailReverse>.roomDetailGallery {
    order: 2;
}

.roomFeatureTitle {
    margin: 0 0 14px;
    font-size: 21px;
}

.buttonRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.capacityNotice {
    font-size: 15px;
}

.siteFooter a.footerLogoLink {
    display: inline-block;
    margin-bottom: 20px;
}

.siteFooter p.footerBrandMeta {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.footerBrandMeta span {
    margin-inline: 5px;
    color: var(--gold);
}

.siteFooter a.footerPhoneLink {
    margin-top: 14px;
    color: #e0b35e;
    font-weight: 600;
}

.formField small {
    font-size: 13px;
    line-height: 1.45;
}

:is(a, button, input, select, textarea):focus-visible {
    outline: 3px solid rgba(201, 154, 66, 0.7);
    outline-offset: 3px;
}

.primaryButton:focus-visible,
.goldButton:focus-visible {
    outline-color: #fff;
}

@media (max-width: 1180px) {
    .headerInner {
        width: min(100% - 36px, 1100px);
        grid-template-columns: 220px 1fr 56px;
    }

    .brandLogo {
        width: 210px;
    }

    .mainMenu {
        gap: 16px;
    }

    .menuLink {
        font-size: 12px;
    }

    .phoneButton {
        width: 50px;
        padding: 0;
    }

    .phoneText {
        display: none;
    }

    .bookingPanel {
        grid-template-columns: 1fr 1fr 0.75fr 0.75fr 1.15fr;
    }

    .bookingField {
        padding-left: 52px;
        padding-right: 12px;
    }

    .featureItem {
        padding-inline: 18px;
    }

    .splitLayout {
        gap: 45px;
    }

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

    .bookingSummary .largeButton {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {

    .splitLayout.homeAboutLayout,
    .splitLayout.homeServiceLayout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .homePhotoGrid {
        grid-template-rows: repeat(2, 220px);
    }

    .homePhotoGrid img {
        height: 220px;
    }

    .homeServiceLayout .homePhotoGrid {
        order: 1;
    }

    .homeServiceLayout .sectionText {
        order: 2;
    }
}

@media (max-width: 900px) {
    .contentWidth {
        width: min(100% - 36px, 760px);
    }

    .siteHeader,
    .homePage .siteHeader {
        position: absolute;
        top: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 62%, transparent 100%);
    }

    .innerPage .siteHeader {
        position: relative;
        background: var(--navy);
    }

    .headerInner {
        position: relative;
        width: calc(100% - 36px);
        min-height: 126px;
        display: flex;
        justify-content: center;
    }

    .brandLink {
        justify-self: center;
    }

    .brandLogo {
        width: min(245px, 55vw);
    }

    .menuButton,
    .phoneButton {
        position: absolute;
        top: 32px;
        width: 56px;
        height: 56px;
        display: grid;
        place-items: center;
    }

    .menuButton {
        left: 0;
    }

    .phoneButton {
        right: 0;
        min-height: 56px;
        padding: 0;
        border-color: rgba(255, 255, 255, 0.5);
        border-radius: 9px;
    }

    .phoneIcon {
        width: 27px;
        height: 27px;
    }

    .mainMenu {
        position: absolute;
        top: 105px;
        left: 0;
        right: 0;
        padding: 18px;
        display: none;
        background: var(--navy);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        box-shadow: var(--shadow);
    }

    .mainMenu.isOpen {
        display: grid;
    }

    .menuLink {
        padding: 12px 8px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menuLink:last-child {
        border-bottom: 0;
    }

    .menuLink::after {
        display: none;
    }

    .heroSection {
        min-height: 655px;
        background-position: 58% center;
    }

    .heroContent {
        padding-top: 175px;
        padding-bottom: 105px;
    }

    .heroContent h1 {
        max-width: 620px;
        font-size: clamp(43px, 7vw, 56px);
    }

    .heroText {
        max-width: 480px;
        font-size: 18px;
    }

    .bookingStrip {
        margin-top: -82px;
    }

    .bookingPanel {
        min-height: 370px;
        padding: 28px 34px 24px;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-radius: 12px;
    }

    .bookingField {
        min-height: 105px;
        padding-left: 68px;
        padding-right: 22px;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .bookingField:nth-of-type(2),
    .bookingField:nth-of-type(4) {
        border-right: 0;
    }

    .bookingField:nth-of-type(3),
    .bookingField:nth-of-type(4) {
        border-bottom: 0;
    }

    .bookingIcon {
        left: 20px;
        width: 34px;
        height: 34px;
    }

    .bookingField label {
        font-size: 13px;
    }

    .bookingField input,
    .bookingField select {
        font-size: 18px;
    }

    .bookingAction {
        grid-column: 1 / -1;
        padding: 24px 0 0;
    }

    .bookingAction .goldButton {
        min-height: 60px;
        font-size: 18px;
    }

    .bookingAction small {
        font-size: 13px;
    }

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

    .featureItem {
        min-height: 145px;
        padding: 28px 18px;
        border-bottom: 1px solid var(--line);
    }

    .featureItem:nth-child(2) {
        border-right: 0;
    }

    .featureItem:nth-child(3),
    .featureItem:nth-child(4) {
        border-bottom: 0;
    }

    .splitLayout,
    .reverseLayout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 38px;
    }

    .roomDetail {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mapEmbed {
        height: 390px;
    }

    .singleImage {
        width: 100%;
        height: 460px;
        object-fit: cover;
        border-radius: 8px;
    }

    .cardGrid,
    .roomGrid,
    .serviceGrid,
    .contactGrid,
    .valueGrid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    body {
        font-size: 16px;
    }

    .footerBrand p,
    .siteFooter p,
    .siteFooter a:not(.footerButton) {
        font-size: 14px;
    }

    .roomDetailGallery {
        height: 390px;
    }

    .roomDetailReverse>.roomDetailGallery {
        order: 0;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    .contentWidth {
        width: calc(100% - 40px);
    }

    .headerInner {
        width: calc(100% - 40px);
        min-height: 126px;
    }

    .menuButton,
    .phoneButton {
        top: 30px;
        width: 52px;
        height: 52px;
    }

    .menuIcon {
        width: 34px;
        height: 34px;
    }

    .brandLogo {
        width: 230px;
    }

    .heroSection {
        min-height: 653px;
        background-position: 57% center;
        border-radius: 0 0 0 0;
    }

    .heroContent {
        padding-top: 174px;
        padding-bottom: 112px;
    }

    .heroLabel {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .heroContent h1 {
        margin-bottom: 22px;
        font-size: clamp(40px, 11vw, 49px);
        line-height: 1.2;
    }

    .heroText {
        max-width: 360px;
        margin-bottom: 28px;
        font-size: 17px;
        line-height: 1.85;
    }

    .heroButton {
        min-width: 0;
        min-height: 58px;
        padding-inline: 24px;
        font-size: 15px;
    }

    .bookingStrip {
        margin-top: -80px;
    }

    .bookingPanel {
        width: calc(100% - 38px);
        min-height: 378px;
        margin-inline: auto;
        padding: 26px 36px 23px;
        border-radius: 13px;
    }

    .bookingField {
        min-height: 103px;
        padding: 8px 16px 8px 66px;
    }

    .bookingIcon {
        left: 18px;
        width: 33px;
        height: 33px;
    }

    .bookingField label {
        font-size: 13px;
    }

    .bookingField input,
    .bookingField select {
        font-size: 17px;
    }

    .bookingAction {
        padding-top: 22px;
    }

    .bookingAction .goldButton {
        min-height: 60px;
        font-size: 17px;
    }

    .featureSection {
        padding: 38px 0 26px;
    }

    .featureItem {
        min-height: 152px;
        padding: 26px 10px;
        grid-template-columns: 64px 1fr;
        gap: 12px;
    }

    .featureIcon {
        width: 52px;
        height: 52px;
    }

    .featureItem h2 {
        font-size: 18px;
    }

    .featureItem p {
        font-size: 13px;
    }

    .sectionSpace {
        padding: 62px 0;
    }

    .splitLayout,
    .reverseLayout,
    .roomDetail {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .aboutPreview {
        padding-top: 55px;
        border-radius: 0 0 24px 24px;
    }

    .sectionText h2,
    .sectionHeading h2 {
        font-size: 37px;
    }

    .sectionText .darkButton,
    .sectionText .goldButton {
        width: 100%;
        min-height: 57px;
    }

    .singleImage,
    .mapEmbed {
        height: 340px;
    }

    .cardGrid,
    .roomGrid,
    .serviceGrid,
    .contactGrid,
    .valueGrid,
    .distanceGrid {
        grid-template-columns: 1fr;
    }

    .locationCtaInner,
    .infoBandInner,
    .footerBottomInner {
        align-items: flex-start;
        flex-direction: column;
    }

    .locationCtaInner .goldButton,
    .infoBandInner .goldButton,
    .infoBandInner .darkButton {
        width: 100%;
    }

    .pageHero {
        min-height: 330px;
    }

    .pageHeroContent {
        padding: 64px 0 50px;
    }

    .pageHeroContent h1 {
        font-size: 42px;
    }

    .roomTitleRow {
        display: block;
    }

    .roomTitleRow>span {
        display: inline-block;
        margin-bottom: 18px;
        text-align: left;
    }

    .roomFacts,
    .checkList {
        grid-template-columns: 1fr;
    }

    .roomFacts div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .roomFacts div:last-child {
        border-bottom: 0;
    }

    .galleryGrid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .formSection {
        padding: 24px 20px;
    }

    .formGrid,
    .stayGrid,
    .feedbackForm {
        grid-template-columns: 1fr;
    }

    .formFull {
        grid-column: 1;
    }

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

    .selectRoomCard>img {
        width: 100%;
        height: 210px;
        min-height: 0;
    }

    .selectRoomBody {
        padding: 20px 44px 22px 20px;
    }

    .bookingSummary {
        padding: 26px 22px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bookingSummary .largeButton {
        grid-column: 1;
    }

    .paymentNotice {
        padding: 22px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .feedbackButton {
        right: 14px;
        bottom: 14px;
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .feedbackButton span {
        display: none;
    }

    .modalLayer {
        padding: 12px;
    }

    .modalCard {
        padding: 28px 20px;
        max-height: calc(100vh - 24px);
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .heroLabel,
    .sectionLabel {
        font-size: 14px;
    }

    .bookingAction small {
        font-size: 12px;
    }

    .featureItem p,
    .roomCardBody>p,
    .roomMeta,
    .valueCard p,
    .serviceCard p,
    .contactCard p,
    .distanceGrid p,
    .galleryItem figcaption,
    .smallNote {
        font-size: 14px;
    }

    .buttonRow {
        align-items: stretch;
        flex-direction: column;
    }

    .buttonRow .primaryButton,
    .buttonRow .goldButton,
    .buttonRow .darkButton {
        width: 100%;
    }

    .homePhotoGrid {
        grid-template-rows: repeat(2, 140px);
        gap: 8px;
    }

    .homePhotoGrid img {
        height: 140px;
    }

    .roomCardGallery {
        height: 230px;
    }

    .roomDetailGallery {
        height: 340px;
    }

    .roomMediaButton {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .roomMediaPrevious {
        left: 8px;
    }

    .roomMediaNext {
        right: 8px;
    }

    .roomPhotoCounter {
        top: 8px;
        right: 8px;
    }

    .roomMediaDots {
        bottom: 8px;
    }
}

@media (max-width: 460px) {
    .contentWidth {
        width: calc(100% - 32px);
    }

    .headerInner {
        width: calc(100% - 32px);
    }

    .brandLogo {
        width: min(205px, 52vw);
    }

    .menuButton,
    .phoneButton {
        width: 48px;
        height: 48px;
    }

    .heroContent h1 {
        font-size: clamp(38px, 11vw, 46px);
    }

    .bookingPanel {
        width: calc(100% - 28px);
        padding: 24px 18px 22px;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .bookingField,
    .bookingField:nth-of-type(2),
    .bookingField:nth-of-type(3),
    .bookingField:nth-of-type(4) {
        padding: 10px 10px 10px 54px;
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .bookingField:nth-of-type(4) {
        border-bottom: 0;
    }

    .bookingIcon {
        left: 10px;
        width: 28px;
        height: 28px;
    }

    .bookingField label {
        font-size: 12px;
        letter-spacing: 0.04em;
    }

    .bookingField input,
    .bookingField select {
        padding-right: 22px;
        font-size: 16px;
        letter-spacing: 0;
    }

    .bookingField input::-webkit-calendar-picker-indicator {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .featureItem {
        min-height: 164px;
        padding-inline: 8px;
        grid-template-columns: 50px 1fr;
        gap: 8px;
    }

    .featureIcon {
        width: 44px;
        height: 44px;
    }

    .bookingAction {
        grid-column: 1;
    }

    .galleryGrid {
        grid-auto-rows: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}