:root {
  --ink: #1c1c18;
  --ink-2: #292923;
  --sand: #d0ad7e;
  --sand-light: #e8d4b7;
  --cream: #f4efe7;
  --paper: #fbf8f2;
  --olive: #676957;
  --line: rgba(28, 28, 24, 0.15);
  --white: #fff;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.is-loading { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 64px), 900px); margin-inline: auto; }
.section { padding-block: 130px; }
.section-sm { padding-block: 90px; }
.dark-section { color: var(--white); background: var(--ink); }
.muted-section { background: var(--cream); }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--sand); outline-offset: 4px; }

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #181813;
  transition: opacity .65s var(--ease), visibility .65s;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-brand { display: grid; justify-items: center; gap: 18px; }
.loader-brand strong { font-family: var(--display); font-size: 34px; font-weight: 500; letter-spacing: .06em; }
.loader-line { position: relative; width: 140px; height: 1px; overflow: hidden; background: rgba(255,255,255,.2); }
.loader-line::after { position: absolute; inset: 0; content: ""; background: var(--sand); animation: loadingLine 1.4s var(--ease) infinite; transform-origin: left; }
@keyframes loadingLine { 0% { transform: scaleX(0); transform-origin: left; } 48% { transform: scaleX(1); transform-origin: left; } 52% { transform: scaleX(1); transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }
.scroll-progress { position: fixed; z-index: 101; top: 0; left: 0; width: 0; height: 2px; background: var(--sand); }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.15); transition: color .4s, background .4s, border-color .4s, transform .4s; }
.site-header.scrolled { color: var(--ink); background: rgba(251,248,242,.94); border-color: var(--line); backdrop-filter: blur(16px); }
.header-inner { display: grid; min-height: 92px; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: inline-flex; width: max-content; align-items: center; gap: 13px; }
.brand-mark { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--display); font-size: 19px; letter-spacing: -.08em; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: .02em; }
.brand-copy small { margin-top: 4px; opacity: .66; font-size: 8px; font-weight: 600; letter-spacing: .27em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding-block: 8px; opacity: .78; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { opacity: 1; }
.header-action { justify-self: end; display: inline-flex; min-height: 45px; padding: 0 20px; align-items: center; border: 1px solid rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: color .3s, background .3s, border-color .3s; }
.scrolled .header-action { border-color: var(--ink); }
.header-action:hover { color: var(--ink); background: var(--sand-light); border-color: var(--sand-light); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; color: currentColor; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s, opacity .3s; }
.mobile-menu { position: fixed; z-index: 99; inset: 0; display: grid; padding: 115px 32px 40px; color: var(--white); background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-20px); transition: opacity .4s, transform .4s, visibility .4s; }
.mobile-menu.open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu nav { display: grid; align-content: center; gap: 2px; }
.mobile-menu nav a { display: flex; padding: 8px 0; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--display); font-size: clamp(36px, 11vw, 54px); line-height: 1.2; }
.mobile-menu nav a span { color: var(--sand); font-family: var(--sans); font-size: 10px; letter-spacing: .12em; }
.mobile-menu-meta { align-self: end; display: flex; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.55); font-size: 11px; }

.eyebrow { display: flex; margin: 0 0 22px; align-items: center; gap: 11px; color: var(--olive); font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
.eyebrow.light { color: var(--sand-light); }
.display-title { margin: 0; font-family: var(--display); font-size: clamp(52px, 6.3vw, 92px); font-weight: 500; letter-spacing: -.045em; line-height: .96; }
.display-title em { color: var(--sand); font-weight: 400; }
.section-title { margin: 0; font-family: var(--display); font-size: clamp(44px, 5vw, 70px); font-weight: 500; letter-spacing: -.04em; line-height: 1.04; }
.section-lead { max-width: 560px; margin: 25px 0 0; color: #6f7069; font-size: 16px; line-height: 1.9; }
.dark-section .section-lead { color: rgba(255,255,255,.62); }
.text-link { display: inline-flex; padding-bottom: 5px; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.text-link i { font-size: 17px; font-style: normal; transition: transform .25s; }
.text-link:hover i { transform: translateX(4px); }
.button { display: inline-flex; min-height: 54px; padding: 0 27px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .3s, background .3s, border-color .3s, transform .3s; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--cream); }
.button-dark { color: var(--white); background: var(--ink); }
.button-sand { color: var(--ink); background: var(--sand-light); }
.button-outline { color: inherit; border-color: currentColor; background: transparent; }
.button-full { width: 100%; }

.home-hero { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-media { position: absolute; inset: -7%; will-change: transform; }
.hero-media img { height: 114%; object-fit: cover; object-position: center; }
.home-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(9,12,14,.72) 0%, rgba(9,12,14,.26) 52%, rgba(9,12,14,.2) 100%), linear-gradient(0deg, rgba(9,12,14,.55), transparent 40%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 100svh; padding-top: 155px; padding-bottom: 170px; align-items: center; }
.hero-copy { max-width: 780px; }
.hero-copy .eyebrow { color: var(--sand-light); }
.hero-copy .display-title { font-size: clamp(66px, 8vw, 118px); }
.hero-copy > p:not(.eyebrow) { max-width: 530px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.hero-actions { display: flex; margin-top: 38px; flex-wrap: wrap; gap: 12px; }
.hero-vertical { position: absolute; z-index: 3; right: 33px; bottom: 144px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.62); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-vertical::after { width: 1px; height: 55px; content: ""; background: rgba(255,255,255,.45); animation: scrollPulse 1.8s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
.booking-strip { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; background: rgba(24,24,20,.88); border-top: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(14px); }
.booking-strip form { display: grid; min-height: 112px; grid-template-columns: repeat(4, 1fr) auto; align-items: center; }
.booking-field { display: grid; padding: 0 24px; gap: 4px; border-right: 1px solid rgba(255,255,255,.14); }
.booking-field label { color: rgba(255,255,255,.5); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.booking-field input, .booking-field select { width: 100%; padding: 0; color: var(--white); background: transparent; border: 0; outline: 0; font-family: var(--display); font-size: 20px; }
.booking-field select option { color: var(--ink); }
.booking-submit { height: 112px; padding: 0 35px; color: var(--ink); background: var(--sand-light); border: 0; cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.intro-grid { display: grid; grid-template-columns: .7fr 1fr; align-items: center; gap: 110px; }
.intro-collage { position: relative; min-height: 660px; }
.intro-collage .image-main { position: absolute; top: 0; left: 0; width: 75%; height: 82%; overflow: hidden; }
.intro-collage .image-main img, .intro-collage .image-small img { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.intro-collage:hover img { transform: scale(1.035); }
.intro-collage .image-small { position: absolute; right: 0; bottom: 0; width: 47%; height: 41%; overflow: hidden; border: 10px solid var(--paper); }
.floating-seal { position: absolute; z-index: 2; top: 37%; right: 7%; display: grid; width: 112px; height: 112px; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-family: var(--display); font-size: 18px; text-align: center; line-height: 1.05; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.intro-copy { max-width: 555px; }
.intro-copy .chapter { margin-bottom: 50px; color: var(--sand); font-family: var(--display); font-size: 90px; line-height: .7; }
.intro-copy .text-link { margin-top: 34px; }

.rooms-head { display: flex; margin-bottom: 56px; align-items: end; justify-content: space-between; gap: 35px; }
.slider-actions { display: flex; gap: 9px; }
.slider-button { display: grid; width: 49px; height: 49px; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: 20px; transition: color .25s, background .25s; }
.slider-button:hover { color: var(--white); background: var(--ink); }
.room-slider { display: grid; overflow-x: auto; grid-auto-columns: minmax(330px, 42%); grid-auto-flow: column; gap: 22px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.room-slider::-webkit-scrollbar { display: none; }
.room-card { position: relative; overflow: hidden; color: var(--white); background: var(--ink); scroll-snap-align: start; }
.room-card-image { height: 560px; overflow: hidden; }
.room-card-image img { height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.room-card:hover .room-card-image img { transform: scale(1.045); }
.room-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(10,10,8,.85), transparent 57%); pointer-events: none; }
.room-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 34px; }
.room-card-meta { display: flex; margin-bottom: 12px; gap: 18px; color: rgba(255,255,255,.65); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.room-card h3 { margin: 0; font-family: var(--display); font-size: 39px; font-weight: 500; }
.room-card-bottom { display: flex; margin-top: 16px; align-items: center; justify-content: space-between; gap: 20px; }
.room-card-bottom p { margin: 0; color: var(--sand-light); font-size: 12px; }
.room-card-bottom i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 17px; font-style: normal; transition: color .3s, background .3s; }
.room-card:hover .room-card-bottom i { color: var(--ink); background: var(--white); }

.signature-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.signature-image { position: relative; overflow: hidden; }
.signature-image img { position: absolute; width: 100%; height: 110%; object-fit: cover; }
.signature-copy { display: grid; padding: 95px max(48px, 9vw); align-content: center; background: var(--ink-2); }
.signature-copy blockquote { margin: 0; font-family: var(--display); font-size: clamp(44px, 5vw, 72px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.signature-copy blockquote em { color: var(--sand); }
.signature-copy p:not(.eyebrow) { max-width: 500px; margin: 32px 0 0; color: rgba(255,255,255,.62); }
.signature-copy .text-link { width: max-content; margin-top: 38px; }

.experiences-head { display: grid; margin-bottom: 55px; grid-template-columns: 1fr .65fr; align-items: end; gap: 70px; }
.experiences-head .section-lead { margin: 0; }
.experience-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 380px); gap: 20px; }
.experience-card { position: relative; overflow: hidden; color: var(--white); }
.experience-card:first-child { grid-row: 1 / 3; }
.experience-card img { height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.experience-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(10,10,8,.8), transparent 60%); }
.experience-card:hover img { transform: scale(1.04); }
.experience-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 32px; }
.experience-card-content span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.experience-card-content h3 { margin: 8px 0 0; font-family: var(--display); font-size: 36px; font-weight: 500; }

.quote-section { overflow: hidden; padding-block: 120px; color: var(--white); background: var(--olive); }
.quote-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.quote-track span { padding-right: 50px; font-family: var(--display); font-size: clamp(55px, 7vw, 100px); white-space: nowrap; opacity: .22; }
@keyframes marquee { to { transform: translateX(-50%); } }
.guest-quote { max-width: 870px; margin: 80px auto 0; padding-inline: 32px; text-align: center; }
.guest-quote .stars { color: var(--sand-light); font-size: 12px; letter-spacing: .45em; }
.guest-quote blockquote { margin: 26px 0 20px; font-family: var(--display); font-size: clamp(35px, 4.2vw, 54px); font-weight: 400; line-height: 1.2; }
.guest-quote cite { color: rgba(255,255,255,.64); font-size: 9px; font-style: normal; letter-spacing: .18em; text-transform: uppercase; }

.image-cta { position: relative; min-height: 640px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.image-cta > img { position: absolute; inset: -5%; width: 110%; height: 110%; object-fit: cover; }
.image-cta::after { position: absolute; inset: 0; content: ""; background: rgba(10,11,9,.54); }
.image-cta-content { position: relative; z-index: 2; max-width: 780px; padding: 80px 32px; }
.image-cta-content p:not(.eyebrow) { max-width: 500px; margin: 25px auto 34px; color: rgba(255,255,255,.72); }
.image-cta-content .eyebrow { justify-content: center; color: var(--sand-light); }

.page-hero { position: relative; display: grid; min-height: 70svh; place-items: end start; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero.compact { min-height: 54svh; }
.page-hero > img { position: absolute; inset: -5%; width: 110%; height: 110%; object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(10,10,8,.76), rgba(10,10,8,.12) 70%), linear-gradient(90deg, rgba(10,10,8,.4), transparent); }
.page-hero-content { position: relative; z-index: 2; padding-top: 170px; padding-bottom: 82px; }
.page-hero-content p:not(.eyebrow) { max-width: 580px; margin: 25px 0 0; color: rgba(255,255,255,.72); font-size: 16px; }
.breadcrumbs { display: flex; margin-bottom: 22px; gap: 9px; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.breadcrumbs span { color: var(--sand-light); }

.catalog-intro { display: grid; grid-template-columns: 1fr .6fr; align-items: end; gap: 80px; }
.catalog-intro .section-lead { margin: 0; }
.catalog-list { display: grid; margin-top: 80px; gap: 80px; }
.catalog-room { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.catalog-room:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.catalog-room:nth-child(even) .catalog-image { order: 2; }
.catalog-image { position: relative; height: 610px; overflow: hidden; }
.catalog-image img { height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.catalog-room:hover .catalog-image img { transform: scale(1.035); }
.room-badge { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 9px 13px; color: var(--ink); background: var(--cream); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.catalog-copy { padding: 20px; }
.catalog-copy .room-index { color: var(--sand); font-family: var(--display); font-size: 62px; line-height: 1; }
.catalog-copy h2 { margin: 10px 0 0; font-family: var(--display); font-size: clamp(43px, 4.5vw, 64px); font-weight: 500; line-height: 1; }
.catalog-copy > p { max-width: 500px; margin: 24px 0 0; color: #70716a; }
.amenities { display: grid; margin: 28px 0 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); gap: 12px; }
.amenities span { display: flex; align-items: center; gap: 9px; font-size: 11px; }
.amenities span::before { width: 5px; height: 5px; content: ""; background: var(--sand); border-radius: 50%; }
.catalog-bottom { display: flex; margin-top: 28px; align-items: center; justify-content: space-between; gap: 25px; }
.room-price small { display: block; color: #888981; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.room-price strong { font-family: var(--display); font-size: 29px; font-weight: 600; }

.compare-table { margin-top: 55px; overflow-x: auto; border: 1px solid var(--line); }
.compare-table table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 20px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { background: var(--cream); font-family: var(--display); font-size: 22px; font-weight: 600; }
.compare-table td { font-size: 12px; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }

.story-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.story-row + .story-row { margin-top: 120px; }
.story-row.reverse .story-media { order: 2; }
.story-media { position: relative; height: 650px; overflow: hidden; }
.story-media img { height: 100%; object-fit: cover; }
.story-copy { max-width: 560px; }
.story-copy > p:not(.eyebrow) { margin: 25px 0 0; color: #6e7068; }
.story-details { display: grid; margin-top: 32px; padding-top: 25px; border-top: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); gap: 25px; }
.story-details strong { display: block; font-family: var(--display); font-size: 31px; font-weight: 500; }
.story-details span { color: #85867e; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.experience-feature { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 680px; color: var(--white); background: var(--ink); }
.experience-feature.reverse { grid-template-columns: .85fr 1.15fr; }
.experience-feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; min-height: 620px; overflow: hidden; }
.feature-media img { position: absolute; width: 100%; height: 108%; object-fit: cover; }
.feature-copy { display: grid; padding: 80px max(45px, 7vw); align-content: center; }
.feature-copy > p:not(.eyebrow) { margin: 26px 0 0; color: rgba(255,255,255,.63); }
.feature-copy ul { display: grid; margin: 30px 0 0; padding: 0; gap: 11px; list-style: none; }
.feature-copy li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: 12px; }
.feature-copy li::before { width: 4px; height: 4px; content: ""; background: var(--sand); border-radius: 50%; }
.feature-copy .text-link { width: max-content; margin-top: 32px; }
.experience-feature.light { color: var(--ink); background: var(--cream); }
.experience-feature.light .feature-copy > p:not(.eyebrow), .experience-feature.light .feature-copy li { color: #666860; }

.values-grid { display: grid; margin-top: 55px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 290px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card span { color: var(--sand); font-family: var(--display); font-size: 44px; }
.value-card h3 { margin: 45px 0 10px; font-family: var(--display); font-size: 28px; font-weight: 600; }
.value-card p { margin: 0; color: #72736c; font-size: 13px; }
.timeline { display: grid; margin-top: 65px; grid-template-columns: repeat(4, 1fr); }
.timeline-item { position: relative; padding: 30px 25px 0 0; border-top: 1px solid rgba(255,255,255,.25); }
.timeline-item::before { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; content: ""; background: var(--sand); border-radius: 50%; }
.timeline-item strong { color: var(--sand-light); font-family: var(--display); font-size: 30px; font-weight: 500; }
.timeline-item p { max-width: 220px; margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: 11px; }

.reservation-layout { display: grid; grid-template-columns: 1.15fr .65fr; align-items: start; gap: 70px; }
.reservation-card { padding: 48px; background: var(--white); border: 1px solid var(--line); }
.form-heading { margin-bottom: 35px; }
.form-heading h2 { margin: 0; font-family: var(--display); font-size: 42px; font-weight: 500; }
.form-heading p { margin: 8px 0 0; color: #74766e; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 54px; padding: 13px 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 0; outline: 0; }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sand); box-shadow: 0 0 0 3px rgba(208,173,126,.15); }
.form-note { margin: 18px 0; color: #7b7d75; font-size: 10px; }
.reservation-summary { position: sticky; top: 120px; overflow: hidden; color: var(--white); background: var(--ink); }
.summary-image { height: 250px; }
.summary-image img { height: 100%; object-fit: cover; }
.summary-content { padding: 33px; }
.summary-content h3 { margin: 0; font-family: var(--display); font-size: 32px; font-weight: 500; }
.summary-list { display: grid; margin: 24px 0; padding: 20px 0; gap: 11px; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.summary-list div { display: flex; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.62); font-size: 11px; }
.summary-list strong { color: var(--white); font-weight: 500; }
.summary-total { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.summary-total span { color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.summary-total strong { font-family: var(--display); font-size: 33px; font-weight: 500; }
.demo-badge { display: inline-flex; margin-top: 22px; padding: 7px 10px; color: var(--sand-light); border: 1px solid rgba(255,255,255,.18); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.success-modal { position: fixed; z-index: 500; inset: 0; display: grid; padding: 24px; place-items: center; background: rgba(20,20,17,.75); visibility: hidden; opacity: 0; transition: .35s; }
.success-modal.open { visibility: visible; opacity: 1; }
.success-box { width: min(100%, 510px); padding: 48px; background: var(--paper); text-align: center; transform: translateY(20px); transition: transform .35s var(--ease); }
.success-modal.open .success-box { transform: translateY(0); }
.success-icon { display: grid; width: 70px; height: 70px; margin: 0 auto 22px; place-items: center; color: var(--white); background: var(--olive); border-radius: 50%; font-size: 25px; }
.success-box h3 { margin: 0; font-family: var(--display); font-size: 38px; font-weight: 500; }
.success-box p { margin: 14px 0 26px; color: #74766e; }

.contact-band { padding-block: 55px; color: var(--white); background: var(--olive); }
.contact-band-grid { display: grid; grid-template-columns: 1fr repeat(3, auto); align-items: center; gap: 55px; }
.contact-band h2 { margin: 0; font-family: var(--display); font-size: 37px; font-weight: 500; }
.contact-band a { display: grid; gap: 2px; }
.contact-band a span { color: rgba(255,255,255,.52); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.contact-band a strong { font-size: 12px; font-weight: 600; }

.site-footer { padding: 88px 0 28px; color: var(--white); background: #151511; }
.footer-top { display: grid; padding-bottom: 65px; grid-template-columns: 1.2fr .6fr .6fr .8fr; gap: 70px; }
.footer-about p { max-width: 360px; margin: 22px 0 0; color: rgba(255,255,255,.51); font-size: 12px; }
.footer-column h3 { margin: 0 0 20px; color: var(--sand-light); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.footer-column nav, .footer-column address { display: grid; gap: 10px; color: rgba(255,255,255,.62); font-size: 11px; }
.footer-column a:hover { color: var(--white); }
.footer-social { display: flex; margin-top: 22px; gap: 10px; }
.footer-social a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; font-size: 10px; }
.footer-bottom { display: flex; padding-top: 25px; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.11); font-size: 9px; }
.footer-bottom a { color: rgba(255,255,255,.68); }
.back-to-top { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.line-reveal { overflow: hidden; }
.line-reveal > span { display: block; transform: translateY(110%); transition: transform .9s var(--ease); }
.line-reveal.is-visible > span { transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .header-action { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .intro-grid { gap: 65px; }
  .room-slider { grid-auto-columns: minmax(320px, 57%); }
  .signature-grid { min-height: 680px; }
  .signature-copy { padding: 70px 55px; }
  .catalog-room, .catalog-room:nth-child(even) { gap: 40px; }
  .story-row { gap: 60px; }
  .reservation-layout { gap: 40px; }
  .footer-top { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2 / -1; }
  .contact-band-grid { grid-template-columns: 1fr repeat(2, auto); }
  .contact-band-grid a:last-child { display: none; }
}

@media (max-width: 800px) {
  .container, .narrow { width: min(calc(100% - 40px), var(--container)); }
  .section { padding-block: 95px; }
  .home-hero { min-height: 900px; }
  .hero-content { min-height: 788px; padding-top: 130px; padding-bottom: 100px; align-items: center; }
  .hero-vertical { display: none; }
  .booking-strip { position: relative; }
  .booking-strip form { grid-template-columns: repeat(2, 1fr); }
  .booking-field { min-height: 78px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .booking-submit { height: 72px; grid-column: 1 / -1; }
  .intro-grid, .catalog-intro { grid-template-columns: 1fr; gap: 55px; }
  .intro-copy { max-width: none; }
  .intro-collage { min-height: 600px; order: 2; }
  .intro-copy .chapter { display: none; }
  .room-slider { grid-auto-columns: minmax(300px, 82%); }
  .room-card-image { height: 500px; }
  .signature-grid { grid-template-columns: 1fr; }
  .signature-image { min-height: 620px; }
  .experiences-head { grid-template-columns: 1fr; gap: 25px; }
  .experience-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 520px 350px; }
  .experience-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .catalog-list { gap: 100px; }
  .catalog-room, .catalog-room:nth-child(even) { grid-template-columns: 1fr; gap: 30px; }
  .catalog-room:nth-child(even) .catalog-image { order: 0; }
  .catalog-image { height: 560px; }
  .story-row { grid-template-columns: 1fr; gap: 45px; }
  .story-row.reverse .story-media { order: 0; }
  .story-media { height: 600px; }
  .experience-feature, .experience-feature.reverse { grid-template-columns: 1fr; }
  .experience-feature.reverse .feature-media { order: 0; }
  .feature-media { min-height: 590px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .reservation-layout { grid-template-columns: 1fr; }
  .reservation-summary { position: static; }
  .contact-band-grid { grid-template-columns: 1fr 1fr; }
  .contact-band h2 { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 78px; }
  .header-inner { min-height: 76px; }
  .brand-mark { width: 38px; height: 38px; font-size: 17px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 7px; }
  .page-hero { min-height: 620px; }
  .page-hero.compact { min-height: 500px; }
  .page-hero-content { padding-top: 130px; padding-bottom: 55px; }
  .home-hero { min-height: auto; }
  .hero-content { min-height: 720px; padding-top: 125px; padding-bottom: 85px; }
  .hero-copy .display-title { font-size: clamp(58px, 18vw, 82px); }
  .display-title { font-size: 54px; }
  .section-title { font-size: 43px; }
  .hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .booking-strip form { grid-template-columns: 1fr 1fr; }
  .booking-field { padding: 0 15px; }
  .booking-field input, .booking-field select { font-size: 17px; }
  .intro-collage { min-height: 470px; }
  .intro-collage .image-main { width: 88%; height: 84%; }
  .intro-collage .image-small { width: 52%; height: 37%; border-width: 6px; }
  .floating-seal { top: 31%; right: 1%; width: 90px; height: 90px; font-size: 15px; }
  .rooms-head { align-items: start; flex-direction: column; }
  .room-slider { grid-auto-columns: 90%; }
  .room-card-image { height: 470px; }
  .room-card-content { padding: 25px; }
  .room-card h3 { font-size: 34px; }
  .signature-image { min-height: 480px; }
  .signature-copy { padding: 70px 28px; }
  .experience-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 410px); }
  .experience-card:first-child { grid-column: auto; }
  .quote-section { padding-block: 90px; }
  .guest-quote { margin-top: 55px; padding-inline: 20px; }
  .image-cta { min-height: 570px; }
  .catalog-image { height: 470px; }
  .catalog-copy { padding: 5px 0; }
  .catalog-copy h2 { font-size: 44px; }
  .amenities { grid-template-columns: 1fr; }
  .catalog-bottom { align-items: stretch; flex-direction: column; }
  .story-media { height: 490px; }
  .story-details { grid-template-columns: 1fr; }
  .feature-media { min-height: 460px; }
  .feature-copy { padding: 65px 27px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 240px; }
  .timeline { grid-template-columns: 1fr; gap: 45px; }
  .reservation-card { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .summary-content { padding: 28px 23px; }
  .contact-band-grid { grid-template-columns: 1fr; gap: 25px; }
  .contact-band h2 { grid-column: auto; }
  .contact-band-grid a:last-child { display: grid; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .success-box { padding: 38px 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .line-reveal > span { opacity: 1; transform: none; }
}


/* Supplied Liva Taş Evleri identity */
.loader-logo{display:block;width:210px;height:210px;object-fit:contain;border-radius:18px;box-shadow:0 18px 55px rgba(0,0,0,.28)}
.brand-logo-link{display:inline-flex;align-items:center;line-height:0}
.brand-logo{display:block;object-fit:contain}
.brand-logo-wordmark{width:178px;height:72px;border-radius:10px;box-shadow:0 8px 30px rgba(17,14,10,.12)}
.site-header:not(.scrolled) .brand-logo-wordmark{box-shadow:0 8px 30px rgba(0,0,0,.18)}
.footer-brand-logo{width:max-content}
.brand-logo-full{width:178px;height:178px;border-radius:16px;box-shadow:0 18px 48px rgba(0,0,0,.28)}
.footer-social a{transition:color .25s,border-color .25s,background .25s,transform .25s}
.footer-social a:hover{color:#151511;background:var(--sand-light);border-color:var(--sand-light);transform:translateY(-2px)}
.footer-social svg{width:17px;height:17px;display:block;fill:currentColor;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.footer-social svg path{stroke:none}
.footer-social svg .social-dot{fill:currentColor;stroke:none}
@media(max-width:560px){
  .brand-logo-wordmark{width:138px;height:58px;border-radius:8px}
  .loader-logo{width:180px;height:180px}
  .brand-logo-full{width:154px;height:154px}
}
.footer-social svg{fill:none;stroke:currentColor}
.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg{fill:currentColor;stroke:none}
.footer-social a:first-child svg .social-dot{fill:currentColor;stroke:none}


/* Floating contact and navigation controls */
.floating-actions {
  position: fixed;
  z-index: 96;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.floating-action {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(232,212,183,.62);
  border-radius: 50%;
  box-shadow: 0 15px 38px rgba(20,20,16,.2);
  cursor: pointer;
  transition: opacity .3s var(--ease), visibility .3s, transform .3s var(--ease), background .3s, border-color .3s;
}
.floating-action svg { display: block; width: 23px; height: 23px; }
.back-to-top { color: var(--sand-light); background: rgba(28,28,24,.94); visibility: hidden; opacity: 0; transform: translateY(10px) scale(.92); }
.back-to-top svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: translateY(0) scale(1); }
.whatsapp-action { color: #fff9ef; background: var(--olive); border-color: var(--sand); }
.whatsapp-action svg { width: 27px; height: 27px; fill: currentColor; }
@media (hover:hover) {
  .floating-action:hover { transform: translateY(-3px); }
  .back-to-top:hover { background: var(--ink-2); border-color: var(--sand-light); }
  .whatsapp-action:hover { background: #777963; border-color: var(--sand-light); }
}

/* Information pages */
.info-hero::after { background: linear-gradient(90deg, rgba(13,14,12,.78), rgba(13,14,12,.36)), linear-gradient(0deg, rgba(13,14,12,.48), transparent 52%); }
.info-hero > img { object-position: center 44%; filter: saturate(.75); }
.info-section { background: var(--paper); }
.info-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(55px, 8vw, 115px); align-items: start; }
.info-sidebar { position: sticky; top: 125px; padding: 28px 0 0; border-top: 1px solid var(--line); }
.info-sidebar > span { color: var(--olive); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.info-sidebar nav { display: grid; margin-top: 20px; }
.info-sidebar nav a { position: relative; padding: 13px 26px 13px 0; color: #77786f; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.info-sidebar nav a::after { position: absolute; top: 50%; right: 2px; content: '↗'; opacity: .35; transform: translateY(-50%); }
.info-sidebar nav a:hover, .info-sidebar nav a[aria-current="page"] { color: var(--ink); }
.info-sidebar nav a[aria-current="page"]::before { position: absolute; top: 50%; left: -17px; width: 8px; height: 1px; content: ''; background: var(--sand); }
.info-sidebar-note { margin-top: 34px; padding: 24px; color: var(--cream); background: var(--olive); }
.info-sidebar-note strong { font-family: var(--display); font-size: 24px; font-weight: 500; }
.info-sidebar-note p { margin: 10px 0 18px; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.75; }
.info-sidebar-note a { display: inline-flex; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.info-content { min-width: 0; max-width: 820px; }
.info-content > .section-lead { margin-bottom: 54px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; min-height: 82px; padding: 25px 54px 25px 0; align-items: center; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(24px, 3vw, 31px); font-weight: 500; line-height: 1.15; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; top: 50%; right: 5px; width: 18px; height: 1px; content: ''; background: var(--olive); transition: transform .25s; }
.faq-list summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; margin: -5px 0 28px; color: #6c6d65; font-size: 14px; line-height: 1.85; }
.transfer-grid, .terms-grid { display: grid; margin: 55px 0 65px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.transfer-card, .terms-grid article { min-height: 305px; padding: 31px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.transfer-card > span, .terms-grid article > span { color: var(--sand); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.transfer-card h3, .terms-grid h3 { margin: 52px 0 16px; font-family: var(--display); font-size: 30px; font-weight: 500; line-height: 1.02; }
.transfer-card p, .terms-grid p { margin: 0; color: #717269; font-size: 12px; }
.transfer-card strong { display: block; margin-top: 22px; color: var(--olive); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.policy-block { padding: 34px 0; border-top: 1px solid var(--line); }
.policy-block:last-of-type { border-bottom: 1px solid var(--line); }
.policy-block h3 { margin: 0 0 13px; font-family: var(--display); font-size: 32px; font-weight: 500; line-height: 1.15; }
.policy-block p { margin: 0; color: #686960; font-size: 14px; line-height: 1.9; }
.policy-content .section-lead { margin-bottom: 43px; }
.numbered-list { display: grid; margin: 28px 0 0; padding: 0; gap: 20px; list-style: none; counter-reset: steps; }
.numbered-list li { display: grid; padding-left: 48px; position: relative; gap: 2px; counter-increment: steps; }
.numbered-list li::before { position: absolute; top: 1px; left: 0; display: grid; width: 31px; height: 31px; place-items: center; content: counter(steps); color: var(--white); background: var(--olive); border-radius: 50%; font-size: 9px; }
.numbered-list strong { font-family: var(--display); font-size: 22px; font-weight: 500; }
.numbered-list span { color: #77786f; font-size: 12px; }
.info-callout { display: grid; margin-top: 38px; padding: 24px 28px; grid-template-columns: 95px 1fr; gap: 22px; color: var(--cream); background: var(--ink); }
.info-callout strong { color: var(--sand-light); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.info-callout p { margin: 0; color: rgba(255,255,255,.66); font-size: 12px; }
.info-callout a { color: var(--sand-light); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 800px) {
  .info-layout { grid-template-columns: 1fr; gap: 55px; }
  .info-sidebar { position: static; padding-top: 0; }
  .info-sidebar nav { grid-template-columns: 1fr 1fr; }
  .info-sidebar nav a:nth-child(odd) { border-right: 1px solid var(--line); }
  .info-sidebar nav a { padding-right: 30px; }
  .info-sidebar nav a[aria-current="page"]::before { display: none; }
  .info-sidebar-note { display: none; }
  .transfer-grid, .terms-grid { grid-template-columns: 1fr; }
  .transfer-card, .terms-grid article { min-height: auto; }
  .transfer-card h3, .terms-grid h3 { margin-top: 28px; }
}
@media (max-width: 560px) {
  .floating-actions { right: max(14px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); gap: 9px; }
  .floating-action { width: 49px; height: 49px; }
  .floating-action svg { width: 21px; height: 21px; }
  .whatsapp-action svg { width: 25px; height: 25px; }
  .info-sidebar nav { grid-template-columns: 1fr; }
  .info-sidebar nav a:nth-child(odd) { border-right: 0; }
  .faq-list summary { min-height: 74px; padding-right: 42px; font-size: 24px; }
  .info-callout { grid-template-columns: 1fr; gap: 8px; }
}

/* Refined transparent header identity */
.header-brand { min-width: 0; }
.header-logo-stack {
  position: relative;
  display: block;
  width: 184px;
  height: 76px;
  flex: 0 0 auto;
}
.brand-logo-header {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(-50%);
  transition: opacity .35s var(--ease), filter .35s var(--ease);
}
.brand-logo-light {
  opacity: 1;
  filter: drop-shadow(0 2px 7px rgba(0,0,0,.28));
}
.brand-logo-dark { opacity: 0; }
.site-header.scrolled .brand-logo-light { opacity: 0; }
.site-header.scrolled .brand-logo-dark { opacity: 1; }
@media (max-width: 560px) {
  .header-logo-stack { width: 146px; height: 62px; }
}

/* Animated, single-open FAQ accordion */
.faq-list details {
  overflow: hidden;
  will-change: height;
}
.faq-list details > p {
  transform-origin: top;
}
.faq-list summary {
  user-select: none;
}
.faq-list details.is-expanding > p {
  animation: faqContentIn .38s var(--ease) both;
}
.faq-list details.is-closing > p {
  animation: faqContentOut .26s ease both;
}
@keyframes faqContentIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes faqContentOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-6px); }
}

/* Final mobile and content refinements */
html, body { max-width: 100%; overflow-x: clip; }
img, svg, video { max-width: 100%; }
main, section, .container { min-width: 0; }

/* Rich animated mobile navigation */
.mobile-menu {
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(191,151,99,.22), transparent 31%),
    linear-gradient(145deg, #24251f 0%, #171813 70%);
  transform: translateY(-18px) scale(.985);
  transition: opacity .48s var(--ease), transform .48s var(--ease), visibility .48s;
}
.mobile-menu::before {
  position: absolute; right: -95px; bottom: -95px; width: 310px; height: 310px;
  content: ''; border: 1px solid rgba(232,212,183,.14); border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(232,212,183,.035), 0 0 0 78px rgba(232,212,183,.025);
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0) scale(1); }
.mobile-menu-intro { position: relative; z-index: 1; opacity: 0; transform: translateY(-10px); transition: .42s .08s var(--ease); }
.mobile-menu-intro span { color: var(--sand-light); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.mobile-menu-intro p { margin: 11px 0 0; color: rgba(255,255,255,.52); font-family: var(--display); font-size: 20px; line-height: 1.2; }
.mobile-menu nav { position: relative; z-index: 1; }
.mobile-menu nav a { opacity: 0; transform: translateX(-22px); transition: opacity .38s var(--ease), transform .38s var(--ease), color .25s, padding .25s; }
.mobile-menu nav a:hover { color: var(--sand-light); padding-left: 8px; }
.mobile-menu.open .mobile-menu-intro { opacity: 1; transform: none; }
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu.open nav a:nth-child(1){transition-delay:.10s}.mobile-menu.open nav a:nth-child(2){transition-delay:.15s}.mobile-menu.open nav a:nth-child(3){transition-delay:.20s}.mobile-menu.open nav a:nth-child(4){transition-delay:.25s}.mobile-menu.open nav a:nth-child(5){transition-delay:.30s}
.mobile-menu-reserve { position: relative; z-index: 1; display: flex; margin-top: 16px; padding: 15px 17px; align-items: center; justify-content: space-between; color: var(--ink); background: var(--sand-light); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(12px); transition: .4s .33s var(--ease); }
.mobile-menu.open .mobile-menu-reserve { opacity: 1; transform: none; }
.mobile-menu-meta { position: relative; z-index: 1; opacity: 0; transition: opacity .35s .38s; }
.mobile-menu.open .mobile-menu-meta { opacity: 1; }
.menu-toggle { position: relative; z-index: 101; }
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;transform:scaleX(0)}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Booking strip: comfortable mobile spacing */
@media (max-width: 800px) {
  .booking-strip { padding: 18px clamp(14px, 4vw, 28px) 22px; }
  .booking-strip form { width: 100%; padding: 0; gap: 10px; }
  .booking-field, .booking-submit { min-width: 0; border: 1px solid rgba(255,255,255,.14); }
  .booking-submit { min-height: 58px; }
}
@media (max-width: 560px) {
  .booking-strip { padding-left: 16px; padding-right: 16px; }
  .booking-strip form { grid-template-columns: 1fr 1fr; gap: 9px; }
  .booking-field { padding: 13px 12px; }
  .booking-field input, .booking-field select { width: 100%; min-width: 0; font-size: 12px; }
  .booking-submit { grid-column: 1 / -1; width: 100%; }
  .mobile-menu { padding: 96px 22px 24px; }
  .mobile-menu nav a { font-size: clamp(31px, 10vw, 44px); }
}

/* Information pages show only the selected page's content */
.info-layout { display: block; }
.info-content { width: 100%; max-width: 900px; margin-inline: auto; }

/* Non-scroll room comparison cards */
.room-compare-grid { display: grid; margin-top: 48px; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.room-compare-card { position: relative; padding: 30px; background: var(--white); border: 1px solid var(--line); }
.room-compare-card.featured { border-color: var(--sand); box-shadow: 0 22px 55px rgba(39,38,31,.09); }
.room-compare-label { position: absolute; top: 0; right: 0; padding: 7px 10px; color: var(--ink); background: var(--sand-light); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.room-compare-top > span { color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.room-compare-top h3 { margin: 12px 0 10px; font-family: var(--display); font-size: 34px; font-weight: 500; }
.room-compare-top strong { display: block; color: var(--olive); font-family: var(--display); font-size: 25px; }
.room-compare-top small { margin-left: 5px; color: #85867e; font-family: var(--sans); font-size: 9px; font-weight: 500; }
.room-compare-card ul { margin: 27px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.room-compare-card li { display: flex; padding: 13px 0; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); font-size: 11px; }
.room-compare-card li span { color: #85867e; }
.room-compare-card li b { text-align: right; font-weight: 600; }
@media(max-width:900px){.room-compare-grid{grid-template-columns:1fr}.room-compare-card{padding:26px}.room-compare-card.featured{order:-1}}

/* Guest review section */
.testimonials-section { background: #f1ede4; }
.testimonials-head { display: grid; margin-bottom: 45px; grid-template-columns: 1.1fr .75fr; align-items: end; gap: 60px; }
.testimonials-head .section-lead { margin: 0 0 8px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.testimonial-card { display: flex; min-height: 360px; padding: 32px; flex-direction: column; background: rgba(255,255,255,.72); border: 1px solid rgba(72,70,59,.12); }
.testimonial-stars { color: var(--sand); font-size: 12px; letter-spacing: .18em; }
.testimonial-card blockquote { margin: 48px 0 36px; font-family: var(--display); font-size: clamp(25px,2.4vw,32px); line-height: 1.16; }
.testimonial-author { display: flex; margin-top: auto; align-items: center; gap: 13px; }
.testimonial-author > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--cream); background: var(--olive); border-radius: 50%; font-size: 10px; font-weight: 700; }
.testimonial-author strong,.testimonial-author small { display:block; }
.testimonial-author strong { font-size: 11px; }
.testimonial-author small { margin-top: 3px; color:#85867e; font-size:9px; }
@media(max-width:900px){.testimonials-head{grid-template-columns:1fr;gap:20px}.testimonial-grid{grid-template-columns:1fr}.testimonial-card{min-height:300px}.testimonial-card blockquote{margin-top:32px}}

/* Lock the underlying page completely while the mobile menu is open. */
html.menu-open {
  height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
}
body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}
.mobile-menu { overscroll-behavior: contain; }

/* Vadi Suite multi-image gallery */
.catalog-gallery {
  display: grid;
  min-width: 0;
  gap: 10px;
}
.catalog-gallery-main {
  position: relative;
  height: 490px;
  overflow: hidden;
  background: #ded4c5;
}
.catalog-gallery-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .28s var(--ease), transform .65s var(--ease);
}
.catalog-gallery-main > img.is-changing {
  opacity: 0;
  transform: scale(1.018);
}
.gallery-counter {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(20,20,17,.68);
  backdrop-filter: blur(8px);
  font-size: 9px;
  letter-spacing: .14em;
}
.gallery-counter b { color: var(--sand-light); font-weight: 700; }
.gallery-arrows {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 6px;
}
.gallery-arrows button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(20,20,17,.68);
  border: 1px solid rgba(255,255,255,.32);
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: 0;
  transition: color .25s, background .25s;
}
.gallery-arrows button::before {
  width: 8px;
  height: 8px;
  content: '';
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(-135deg);
}
.gallery-arrows button:last-child::before { transform: rotate(45deg); }
.gallery-arrows button:hover,
.gallery-arrows button:focus-visible {
  color: var(--ink);
  background: var(--sand-light);
}
.gallery-thumbnails {
  display: grid;
  height: 110px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.gallery-thumbnail {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  cursor: pointer;
}
.gallery-thumbnail::after {
  position: absolute;
  inset: 0;
  content: '';
  border: 2px solid transparent;
  transition: border-color .25s;
}
.gallery-thumbnail.is-active::after { border-color: var(--sand-light); }
.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  transition: opacity .25s, transform .5s var(--ease);
}
.gallery-thumbnail:hover img,
.gallery-thumbnail.is-active img { opacity: 1; transform: scale(1.035); }
.gallery-thumbnail span {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 7px;
  left: 8px;
  overflow: hidden;
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.85);
}
@media (max-width: 800px) {
  .catalog-gallery-main { height: 500px; }
  .gallery-thumbnails { height: 100px; }
}
@media (max-width: 560px) {
  .catalog-gallery-main { height: 360px; }
  .gallery-thumbnails { height: 78px; gap: 6px; }
  .gallery-thumbnail span { right: 5px; bottom: 5px; left: 5px; font-size: 7px; letter-spacing: .04em; }
  .gallery-arrows { bottom: 14px; left: 14px; }
  .gallery-counter { right: 14px; bottom: 14px; }
}


/* Demo disclosure, placeholder contacts and mobile hero safety */
.yws-demo-notice{position:fixed;left:50%;bottom:18px;z-index:12000;display:flex;align-items:center;gap:12px;width:max-content;max-width:calc(100% - 28px);padding:8px 9px 8px 14px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:rgba(28,28,24,.95);color:#fff;box-shadow:0 18px 46px rgba(0,0,0,.28);backdrop-filter:blur(14px);transform:translateX(-50%);font:700 12px/1.2 var(--body)}
.yws-demo-notice a{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:0 13px;border-radius:999px;background:var(--sand-light);color:var(--ink);text-decoration:none;font-weight:800;white-space:nowrap}
.demo-placeholder-contact{color:inherit;text-decoration:none;cursor:default}
.demo-social-placeholder{display:inline-grid;place-items:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.18);border-radius:50%;opacity:.58;cursor:default}
.hero-copy,.hero-content{width:100%;min-width:0;box-sizing:border-box}
@media(max-width:560px){
  .hero-copy .display-title{font-size:clamp(48px,14.5vw,70px);overflow-wrap:anywhere}
  .hero-actions{width:100%;max-width:100%}
  .hero-actions .button{width:100%;max-width:100%;box-sizing:border-box}
  .yws-demo-notice{bottom:82px;gap:8px;padding-left:11px;font-size:10.5px}
  .yws-demo-notice a{min-height:32px;padding:0 10px;font-size:10.5px}
}
