/* ==========================================================================
   TAHTALI GÖL EVLERİ — STYLESHEET
   ========================================================================== */

/* ============ DESIGN TOKENS ============ */
:root {
  --ink: #152419;
  --pine: #1d3627;
  --pine-2: #25442f;
  --pine-3: #2e5038;
  --paper: #f3eee1;
  --cream: #e9e1cc;
  --cream-2: #e0d6bc;
  --clay: #bc5c2a;
  --clay-d: #9e4a1f;
  --gold: #c8973e;
  --mist: #9db3a0;
  --line: rgba(21, 36, 25, 0.16);
  --line-l: rgba(243, 238, 225, 0.18);
  --f-disp: 'Fraunces', Georgia, serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
  --head-h: 76px;
}

/* ============ BASE & RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--clay);
  color: var(--paper);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

section {
  scroll-margin-top: calc(var(--head-h) + 12px);
}

.wrap {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* ============ NOISE OVERLAY ============ */
.noise {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, -1px); }
  80% { transform: translate(2px, 2px); }
}

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--clay);
  word-break: break-word;
  max-width: 100%;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  flex-shrink: 0;
  background: currentColor;
}

.dark .eyebrow {
  color: var(--gold);
}

.h2 {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.h2 em {
  font-style: italic;
  color: var(--clay);
}

.dark .h2 em {
  color: var(--gold);
}

.lead {
  max-width: 56ch;
  color: rgba(21, 36, 25, 0.72);
  font-size: 1.02rem;
}

.dark .lead {
  color: rgba(243, 238, 225, 0.66);
}

/* Line-mask reveal animation */
.lm .lm-l {
  display: block;
  overflow: hidden;
}

.lm .lm-l i {
  display: block;
  font-style: inherit;
  transform: translateY(112%);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.15, 1);
}

.lm.in .lm-l:nth-child(2) i {
  transition-delay: 0.1s;
}

.lm.in .lm-l:nth-child(3) i {
  transition-delay: 0.2s;
}

.lm.in .lm-l i {
  transform: none;
}

/* Scroll reveal animation */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0s);
}

.rev.in {
  opacity: 1;
  transform: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--clay);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--clay-d);
  transform: translateY(-2px);
}

.btn .ar {
  transition: transform 0.3s;
}

.btn:hover .ar {
  transform: translateX(5px);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1.5px solid var(--ink);
  padding: 11px 22px;
  border-radius: 100px;
  transition: 0.3s;
}

.btn-line:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-line.light {
  border-color: var(--line-l);
}

.btn-line.light:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ============ HEADER & NAVIGATION ============ */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--head-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1360px, 94%);
}

.site-head.scrolled {
  background: rgba(243, 238, 225, 0.92);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(21, 36, 25, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  transition: color 0.35s;
}

.scrolled .brand {
  color: var(--ink);
}

.brand svg {
  flex: none;
}

.brand .bn {
  font-family: var(--f-disp);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand .bs {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--paper);
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
  transition: color 0.35s;
}

.scrolled .main-nav a {
  color: var(--ink);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--clay);
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

.head-tel {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--paper);
  opacity: 0.9;
  transition: color 0.35s;
}

.scrolled .head-tel {
  color: var(--ink);
}

.head-cta {
  margin-left: 6px;
}

.burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: 0.3s;
}

.scrolled .burger span {
  background: var(--ink);
}

.m-menu {
  position: fixed;
  inset: 0;
  background: var(--pine);
  z-index: 850;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 40px;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  overflow-y: auto;
}

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

.m-menu a {
  font-family: var(--f-disp);
  font-size: clamp(1.8rem, 7vw, 3rem);
  color: var(--paper);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-l);
}

.m-close {
  position: absolute;
  top: 24px;
  right: 6%;
  color: var(--paper);
  font-family: var(--f-mono);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--pine);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kb 28s ease-in-out infinite alternate;
  transform-origin: 60% 40%;
}

@keyframes kb {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(-2.2%, 1.8%); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 36, 25, 0.55) 0%,
    rgba(20, 36, 25, 0.12) 38%,
    rgba(20, 36, 25, 0.28) 62%,
    rgba(16, 30, 21, 0.88) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1360px, 94%);
  margin: 0 auto;
  padding: 0 0 168px;
}

.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--f-disp);
  font-weight: 340;
  font-size: clamp(2.9rem, 7.6vw, 6.6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 13ch;
}

.hero-title .it {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 24px;
  max-width: 46ch;
  color: rgba(243, 238, 225, 0.82);
  font-size: 1.04rem;
}

.hero-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 238, 225, 0.72);
}

.hero-meta b {
  color: var(--gold);
  font-weight: 500;
}

.coord-rail {
  position: absolute;
  z-index: 3;
  left: 26px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  color: rgba(243, 238, 225, 0.55);
  text-transform: uppercase;
}

.live-card {
  position: absolute;
  z-index: 3;
  top: calc(var(--head-h) + 26px);
  right: 4%;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(243, 238, 225, 0.9);
  border: 1px solid rgba(243, 238, 225, 0.28);
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(20, 36, 25, 0.32);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fc98a;
  box-shadow: 0 0 0 0 rgba(127, 201, 138, 0.6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(127, 201, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 201, 138, 0); }
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 190px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(243, 238, 225, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(rgba(243, 238, 225, 0.7), transparent);
  animation: drip 2.4s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.ripple {
  position: absolute;
  z-index: 2;
  bottom: 120px;
  right: 8%;
  width: 170px;
  height: 170px;
  pointer-events: none;
}

.ripple i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(243, 238, 225, 0.4);
  border-radius: 50%;
  animation: rip 5s ease-out infinite;
}

.ripple i:nth-child(2) { animation-delay: 1.6s; }
.ripple i:nth-child(3) { animation-delay: 3.2s; }

@keyframes rip {
  from { transform: scale(0.15); opacity: 1; }
  to { transform: scale(1.15); opacity: 0; }
}

/* ============ DOCK (QUICK BOOKING BAR) ============ */
.dock-wrap {
  position: relative;
  z-index: 20;
  margin-top: -104px;
}

.dock {
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 26, 18, 0.28);
  border: 1px solid rgba(21, 36, 25, 0.08);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr 1.1fr auto;
  gap: 0;
  align-items: stretch;
}

.dock-field {
  padding: 4px 22px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dock-field:first-of-type {
  border-left: none;
  padding-left: 0;
}

.dock label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.55);
}

.dock input,
.dock select {
  border: none;
  background: transparent;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  padding: 2px 0;
  cursor: pointer;
}

.dock input:focus,
.dock select:focus {
  color: var(--clay);
}

.dock .btn {
  align-self: center;
  margin-left: 22px;
  white-space: nowrap;
}

.dock-note {
  position: absolute;
  top: -15px;
  right: 34px;
  background: var(--pine);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
}

.dock-note b {
  color: var(--gold);
  font-weight: 500;
}

/* ============ TICKER / MARQUEE ============ */
.tickband {
  background: var(--pine);
  color: var(--paper);
  margin-top: 64px;
  overflow: hidden;
  border-block: 1px solid var(--pine-3);
}

.tick {
  display: flex;
  width: max-content;
  animation: mq 30s linear infinite;
}

.tick:hover {
  animation-play-state: paused;
}

.tick span {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.tick span::after {
  content: "✳";
  color: var(--gold);
  margin: 0 34px;
  font-size: 0.85rem;
}

@keyframes mq {
  to { transform: translateX(-50%); }
}

/* ============ STORY ============ */
.story {
  padding: 120px 0 110px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: 110px;
}

.story-sticky .h2 {
  margin: 20px 0 24px;
}

.story-sticky p {
  color: rgba(21, 36, 25, 0.75);
  margin-bottom: 18px;
  max-width: 44ch;
}

.story-quote {
  font-family: var(--f-disp);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--pine);
  border-left: 2px solid var(--clay);
  padding-left: 22px;
  margin: 32px 0;
}

.story-stats {
  display: flex;
  gap: 38px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.story-stats div b {
  font-family: var(--f-disp);
  font-size: 2.3rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.story-stats div span {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.55);
}

.story-flow {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.story-fig {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.story-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.story-fig:hover img {
  transform: scale(1.05);
}

.story-fig figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--paper);
  padding: 9px 18px 9px 16px;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0 6px 0 0;
}

.story-fig.tall { height: 520px; }
.story-fig.mid { height: 380px; width: 82%; align-self: flex-end; }
.story-fig.short { height: 300px; width: 74%; }

/* ============ ROOMS ============ */
.rooms {
  background: var(--cream);
  padding: 110px 0 120px;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.sec-head .h2 {
  margin-top: 18px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

.room-card {
  grid-column: span 6;
  background: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(21, 36, 25, 0.09);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(21, 36, 25, 0.14);
}

.room-card.feature {
  grid-column: span 12;
  flex-direction: row;
}

.room-card.feature .room-img {
  width: 56%;
  height: 460px;
}

.room-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.07);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
}

.room-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card.feature .room-body {
  width: 44%;
  padding: 40px 44px;
  justify-content: center;
}

.room-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.room-name {
  font-family: var(--f-disp);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.1;
}

.room-card.feature .room-name {
  font-size: 2.4rem;
}

.room-cap {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  white-space: nowrap;
  padding-top: 8px;
}

.room-desc {
  font-size: 0.92rem;
  color: rgba(21, 36, 25, 0.7);
  margin-top: 10px;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.room-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 12px;
  color: rgba(21, 36, 25, 0.75);
}

.room-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}

.room-price b {
  font-family: var(--f-disp);
  font-size: 1.55rem;
  font-weight: 500;
}

.room-price span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--pine);
  color: var(--paper);
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}

.gal-board {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 26px;
  justify-content: center;
  margin-top: 20px;
}

.pcard {
  background: var(--paper);
  padding: 10px 10px 40px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s;
  flex: none;
}

.pcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcard .cap {
  position: absolute;
  bottom: 11px;
  left: 14px;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.6);
}

.pcard:nth-child(6n+1) { width: 300px; height: 380px; transform: rotate(-3.5deg); }
.pcard:nth-child(6n+2) { width: 250px; height: 300px; transform: rotate(2.5deg) translateY(26px); }
.pcard:nth-child(6n+3) { width: 330px; height: 270px; transform: rotate(-1.5deg) translateY(-12px); }
.pcard:nth-child(6n+4) { width: 260px; height: 340px; transform: rotate(3.5deg); }
.pcard:nth-child(6n+5) { width: 300px; height: 250px; transform: rotate(-2.5deg) translateY(30px); }
.pcard:nth-child(6n+6) { width: 270px; height: 350px; transform: rotate(1.8deg); }

.pcard:hover {
  transform: rotate(0) scale(1.05);
  z-index: 5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

/* ============ LIGHTBOX ============ */
.lbox {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(13, 23, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.lbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lbox img {
  max-width: 86vw;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lbox .lcap {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.lbox .lcount {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: rgba(243, 238, 225, 0.5);
}

.lbtn {
  position: absolute;
  font-family: var(--f-mono);
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  border: 1px solid var(--line-l);
  border-radius: 100px;
  padding: 12px 22px;
  transition: 0.3s;
}

.lbtn:hover {
  background: var(--paper);
  color: var(--ink);
}

.l-prev { left: 4%; top: 50%; transform: translateY(-50%); }
.l-next { right: 4%; top: 50%; transform: translateY(-50%); }
.l-close { top: 28px; right: 4%; }

/* ============ AMENITIES ============ */
.amenities {
  padding: 120px 0;
}

.amen-list {
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
}

.amen-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 10px;
  border-top: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.3s;
  cursor: default;
}

.amen-row:hover {
  background: rgba(188, 92, 42, 0.06);
  padding-left: 24px;
}

.amen-num {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--clay);
}

.amen-name {
  font-family: var(--f-disp);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 400;
}

.amen-side {
  font-size: 0.84rem;
  color: rgba(21, 36, 25, 0.6);
  max-width: 34ch;
  text-align: right;
}

#amenPrev {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 230px;
  height: 160px;
  pointer-events: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(21, 36, 25, 0.3);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
}

#amenPrev.on {
  opacity: 1;
  transform: scale(1);
}

#amenPrev img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ DAY TIMELINE ============ */
.day {
  background: var(--pine-2);
  color: var(--paper);
  padding: 110px 0;
  position: relative;
}

.day-controls {
  display: flex;
  gap: 12px;
}

.day-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-l);
  border-radius: 50%;
  color: var(--paper);
  font-size: 1.1rem;
  transition: 0.3s;
  display: grid;
  place-items: center;
}

.day-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--pine);
}

.day-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 34px 4px 10px;
  scrollbar-width: none;
  cursor: grab;
}

.day-track::-webkit-scrollbar {
  display: none;
}

.day-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(243, 238, 225, 0.05);
  border: 1px solid var(--line-l);
  border-radius: 10px;
  padding: 24px;
  transition: background 0.3s, transform 0.3s;
}

.day-card:hover {
  background: rgba(243, 238, 225, 0.1);
  transform: translateY(-4px);
}

.day-time {
  font-family: var(--f-mono);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.day-card h3 {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 10px 0 8px;
}

.day-card p {
  font-size: 0.86rem;
  color: rgba(243, 238, 225, 0.68);
}

.day-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  filter: saturate(0.9);
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 120px 0;
  background: var(--paper);
  overflow: hidden;
}

.rev-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 26px;
}

.rev-card {
  background: #fbf7ec;
  border: 1px solid var(--line);
  padding: 34px 30px 28px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 14px 34px rgba(21, 36, 25, 0.08);
  transition: transform 0.4s;
}

.rev-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 3px 6px rgba(21, 36, 25, 0.3);
}

.rev-card:nth-child(1) { transform: rotate(-2deg); }
.rev-card:nth-child(2) { transform: rotate(1.4deg) translateY(18px); }
.rev-card:nth-child(3) { transform: rotate(-1.2deg); }
.rev-card:hover { transform: rotate(0) translateY(-6px); }

.rev-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.85rem;
}

.rev-card blockquote {
  font-family: var(--f-disp);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.55;
  margin: 16px 0 20px;
  color: var(--pine);
}

.rev-who {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.55);
}

.rev-avg {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: rgba(21, 36, 25, 0.6);
}

.rev-avg b {
  font-family: var(--f-disp);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}

/* ============ LOCATION ============ */
.location {
  background: var(--cream);
  padding: 110px 0 120px;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
  margin-top: 10px;
}

.loc-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.loc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.loc-row span {
  font-weight: 600;
  font-size: 0.95rem;
}

.loc-row b {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--clay);
  font-weight: 500;
  white-space: nowrap;
}

.loc-note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: rgba(21, 36, 25, 0.65);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.loc-map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 24px 60px rgba(21, 36, 25, 0.18);
}

.loc-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-pin {
  position: absolute;
  top: 44%;
  left: 52%;
  transform: translate(-50%, -100%);
}

.loc-pin .pin-dot {
  width: 16px;
  height: 16px;
  background: var(--clay);
  border: 3px solid var(--paper);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.loc-pin .pin-wave {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--clay);
  border-radius: 50%;
  animation: rip 2.6s ease-out infinite;
}

.loc-pin .pin-wave:nth-child(3) {
  animation-delay: 1.3s;
}

.loc-coord {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(21, 36, 25, 0.85);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  padding: 9px 16px;
  border-radius: 6px;
}

/* ============ BOOKING ============ */
.booking {
  padding: 120px 0 130px;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(200, 151, 62, 0.14), transparent 60%),
    var(--paper);
}

.steps {
  display: flex;
  gap: 0;
  margin: 44px 0 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}

.steps div {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 26px;
  color: rgba(21, 36, 25, 0.55);
  border-left: 1px solid var(--line);
}

.steps div:first-child {
  border-left: none;
}

.steps div b {
  color: var(--clay);
  font-weight: 500;
  margin-right: 8px;
}

.avail-results {
  margin: 34px 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.avail-hint {
  grid-column: 1 / -1;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(21, 36, 25, 0.5);
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
}

.avail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
}

.avail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(21, 36, 25, 0.13);
}

.avail-card.sel {
  border: 2px solid var(--clay);
  box-shadow: 0 16px 40px rgba(188, 92, 42, 0.2);
}

.avail-card.out {
  opacity: 0.55;
  filter: grayscale(0.6);
}

.avail-card img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.avail-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.avail-status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: #3e7d4f;
  color: #fff;
}

.avail-status.no {
  background: #8a3b2a;
}

.avail-body h4 {
  font-family: var(--f-disp);
  font-weight: 500;
  font-size: 1.2rem;
}

.avail-fit {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.5);
}

.avail-fit.ok { color: #3e7d4f; }
.avail-fit.no { color: #a4432c; }

.avail-price {
  margin-top: auto;
  padding-top: 12px;
}

.avail-price .old {
  font-size: 0.8rem;
  color: rgba(21, 36, 25, 0.45);
  text-decoration: line-through;
}

.avail-price .now {
  font-family: var(--f-disp);
  font-size: 1.45rem;
  font-weight: 500;
}

.avail-price .per {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

.avail-body .btn-line {
  justify-content: center;
  margin-top: 14px;
  font-size: 0.8rem;
  padding: 10px 16px;
}

.book-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.fgroup {
  margin-bottom: 26px;
}

.fgroup label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.6);
  margin-bottom: 8px;
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  font-family: var(--f-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.fgroup textarea {
  resize: vertical;
  min-height: 70px;
  font-weight: 500;
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--clay);
}

.fgroup.err input {
  border-color: #b3402a;
  animation: shake 0.4s;
}

@keyframes shake {
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.f-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.f-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

.extras {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  margin: 6px 0 28px;
}

.extras h4 {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(21, 36, 25, 0.6);
  margin-bottom: 16px;
}

.ex-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  cursor: pointer;
  border-top: 1px dashed var(--line);
}

.ex-item:first-of-type {
  border-top: none;
}

.ex-item input {
  display: none;
}

.ex-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  flex: none;
  display: grid;
  place-items: center;
  transition: 0.25s;
  font-size: 0.7rem;
  color: var(--paper);
}

.ex-item input:checked + .ex-box {
  background: var(--clay);
  border-color: var(--clay);
}

.ex-item input:checked + .ex-box::after {
  content: "✓";
}

.ex-label {
  font-weight: 600;
  font-size: 0.92rem;
  flex: 1;
}

.ex-price {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--clay);
}

/* ============ BOOKING SUMMARY ============ */
.summary {
  position: sticky;
  top: calc(var(--head-h) + 24px);
  background: var(--pine);
  color: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(21, 36, 25, 0.25);
}

.summary-img {
  height: 170px;
  overflow: hidden;
  position: relative;
}

.summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(29, 54, 39, 0.95));
}

.sum-house {
  position: absolute;
  bottom: 14px;
  left: 20px;
  z-index: 2;
  font-family: var(--f-disp);
  font-size: 1.5rem;
  font-weight: 500;
}

.summary-body {
  padding: 24px 26px 28px;
}

.sum-dates {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  margin-bottom: 18px;
}

.sum-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(243, 238, 225, 0.2);
}

.sum-line span:last-child {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  white-space: nowrap;
}

.sum-line.disc span {
  color: #9fd4a8;
}

.sum-line.old span {
  text-decoration: line-through;
  opacity: 0.5;
}

.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
}

.sum-total span {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.sum-total b {
  font-family: var(--f-disp);
  font-size: 2.1rem;
  font-weight: 400;
}

.sum-kapora {
  font-size: 0.76rem;
  color: rgba(243, 238, 225, 0.6);
  margin-top: 12px;
}

.sum-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(243, 238, 225, 0.65);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

/* ============ SUCCESS RECEIPT ============ */
.success {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success.show {
  display: block;
  animation: pop 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

@keyframes pop {
  from { transform: scale(0.92); opacity: 0; }
}

.succ-ring {
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
}

.succ-ring circle {
  fill: none;
  stroke: var(--clay);
  stroke-width: 2;
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: draw 1s 0.2s forwards;
}

.succ-ring path {
  fill: none;
  stroke: #3e7d4f;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw 0.6s 0.9s forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.success h3 {
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.succ-ref {
  font-family: var(--f-mono);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  background: var(--cream);
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  margin: 10px 0 22px;
}

.succ-details {
  max-width: 420px;
  margin: 0 auto 24px;
  font-size: 0.92rem;
  color: rgba(21, 36, 25, 0.7);
}

.succ-details div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}

/* ============ FAQ ============ */
.faq {
  background: var(--cream);
  padding: 110px 0 120px;
}

.faq-list {
  max-width: 820px;
  margin-top: 14px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--f-disp);
  font-size: 1.25rem;
  font-weight: 400;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--clay);
}

.faq-q .plus {
  font-family: var(--f-mono);
  font-size: 1.3rem;
  color: var(--clay);
  transition: transform 0.4s;
  flex: none;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-a p {
  padding: 0 4px 26px;
  color: rgba(21, 36, 25, 0.72);
  max-width: 64ch;
  font-size: 0.95rem;
}

/* ============ FOOTER ============ */
footer {
  background: var(--pine);
  color: var(--paper);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 50px;
}

.foot-brand .bn {
  font-family: var(--f-disp);
  font-size: 2.4rem;
  line-height: 1.05;
  font-weight: 400;
}

.foot-brand p {
  color: rgba(243, 238, 225, 0.6);
  font-size: 0.9rem;
  margin-top: 18px;
  max-width: 30ch;
}

.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.foot-col a,
.foot-col p {
  display: block;
  color: rgba(243, 238, 225, 0.78);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.25s;
}

.foot-col a:hover {
  color: var(--gold);
}

.foot-col .big-tel {
  font-family: var(--f-disp);
  font-size: 1.5rem;
  color: var(--paper);
}

.foot-wave {
  margin-top: 70px;
}

.foot-wave svg {
  display: block;
  width: 100%;
}

.foot-bottom {
  border-top: 1px solid var(--line-l);
  padding: 24px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(243, 238, 225, 0.6);
}

.foot-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-tag {
  background: rgba(200, 151, 62, 0.16);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
}

.foot-credit {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-credit b {
  color: var(--paper);
  font-weight: 600;
}

/* ============ TOAST NOTIFICATION ============ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 80px);
  z-index: 990;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  transform: translate(-50%, 0);
}

.toast b {
  color: var(--gold);
}

/* ============ RESPONSIVE MEDIA QUERIES ============ */
@media (max-width: 1080px) {
  .dock {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .dock-field {
    border-left: none;
    padding: 0;
  }
  .dock .btn {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    justify-content: center;
    width: 100%;
  }
  .avail-results {
    grid-template-columns: repeat(2, 1fr);
  }
  .book-grid {
    grid-template-columns: 1fr;
  }
  .summary {
    position: static;
  }
  .room-card.feature {
    flex-direction: column;
  }
  .room-card.feature .room-img {
    width: 100%;
    height: 320px;
  }
  .room-card.feature .room-body {
    width: 100%;
    padding: 28px;
  }
  .loc-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-sticky {
    position: static;
  }
  .rev-board {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  /* Layout & Spacing */
  .wrap {
    width: 90%;
  }
  section,
  .story,
  .rooms,
  .gallery,
  .amenities,
  .day,
  .reviews,
  .location,
  .booking,
  .faq {
    padding: 70px 0;
  }
  .h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem);
  }
  .lead {
    font-size: 0.94rem;
  }
  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    gap: 8px;
  }
  .eyebrow::before {
    width: 20px;
  }

  /* Header */
  .site-head .wrap {
    width: 92%;
    justify-content: space-between;
    gap: 14px;
  }
  .main-nav,
  .head-tel,
  .head-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .brand {
    gap: 10px;
  }
  .brand .bn {
    font-size: 1.05rem;
  }
  .brand .bs {
    font-size: 0.52rem;
    letter-spacing: 0.18em;
  }

  /* Hero */
  .hero-inner {
    width: 90%;
    padding: 0 0 120px;
  }
  .hero-title {
    font-size: clamp(1.95rem, 8vw, 3.2rem);
    max-width: 100%;
    word-break: break-word;
  }
  .hero-sub {
    font-size: 0.94rem;
    margin-top: 16px;
    max-width: 100%;
  }
  .hero-meta {
    gap: 8px 16px;
    font-size: 0.68rem;
    margin-top: 20px;
  }
  .coord-rail,
  .scroll-hint,
  .live-card,
  .ripple {
    display: none;
  }

  /* Booking Dock */
  .dock-wrap {
    margin-top: -65px;
  }
  .dock {
    padding: 20px 18px;
    gap: 14px;
  }
  .dock-note {
    display: none;
  }

  /* Story */
  .story-fig.tall {
    height: 300px;
  }
  .story-fig.mid {
    height: 230px;
    width: 100%;
    align-self: stretch;
  }
  .story-fig.short {
    height: 190px;
    width: 100%;
  }
  .story-quote {
    font-size: 1.1rem;
    margin: 20px 0;
    padding-left: 14px;
  }
  .story-stats {
    gap: 18px 24px;
    margin-top: 22px;
  }
  .story-stats div b {
    font-size: 1.8rem;
  }

  /* Rooms */
  .rooms-grid .room-card {
    grid-column: span 12;
  }
  .room-img {
    height: 220px;
  }
  .room-body {
    padding: 20px 18px;
  }
  .room-name {
    font-size: 1.35rem;
  }
  .room-card.feature .room-name {
    font-size: 1.5rem;
  }
  .room-foot {
    flex-wrap: wrap;
    gap: 14px;
  }
  .room-foot .btn-line {
    width: 100%;
    justify-content: center;
  }

  /* Gallery */
  .gal-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    margin-top: 16px;
  }
  .pcard {
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    padding: 8px 8px 30px !important;
    margin: 0 !important;
  }
  .pcard img {
    height: 140px !important;
    width: 100%;
    object-fit: cover;
  }
  .pcard .cap {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    left: 8px;
    right: 8px;
    bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Lightbox */
  .lbox {
    padding: 16px;
  }
  .lbox img {
    max-width: 92vw;
    max-height: 55vh;
  }
  .l-prev,
  .l-next {
    top: auto;
    bottom: 20px;
    transform: none;
    padding: 9px 16px;
    font-size: 0.72rem;
  }
  .l-prev {
    left: 16px;
  }
  .l-next {
    right: 16px;
  }
  .l-close {
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  /* Amenities */
  .amen-row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 16px 4px;
  }
  .amen-num {
    font-size: 0.72rem;
  }
  .amen-name {
    font-size: 1.15rem;
  }
  .amen-side {
    display: none;
  }
  #amenPrev {
    display: none !important;
  }

  /* Day Timeline */
  .day-track {
    padding: 14px 0 10px;
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }
  .day-card {
    flex: 0 0 240px;
    padding: 18px;
  }
  .day-card h3 {
    font-size: 1.15rem;
  }

  /* Reviews - Reset Card Rotations */
  .reviews {
    overflow: hidden;
  }
  .rev-board {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 22px;
    margin-top: 18px;
  }
  .rev-card {
    transform: none !important;
    padding: 26px 20px 22px;
    width: 100%;
    margin: 0 auto;
  }
  .rev-card:hover {
    transform: translateY(-4px) !important;
  }
  .rev-card blockquote {
    font-size: 1.02rem;
  }
  .rev-avg {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    word-break: break-word;
    margin-top: 26px;
  }
  .rev-avg b {
    font-size: 1.6rem;
  }

  /* Location */
  .loc-map {
    height: 280px;
  }
  .loc-row {
    padding: 12px 0;
    gap: 10px;
  }
  .loc-row span {
    font-size: 0.88rem;
  }
  .loc-row b {
    font-size: 0.72rem;
  }
  .loc-coord {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    padding: 7px 10px;
    text-align: center;
    word-break: break-word;
  }

  /* Booking & Form */
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 24px 0 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .steps div {
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 9px 6px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .steps div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .steps div:nth-child(3),
  .steps div:nth-child(4) {
    border-bottom: none;
  }
  .avail-results {
    grid-template-columns: 1fr;
    margin: 20px 0 32px;
    gap: 14px;
  }
  .f-2,
  .f-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .extras {
    padding: 16px 14px;
    margin: 0 0 20px;
  }
  .ex-item {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 10px 0;
  }
  .ex-label {
    font-size: 0.84rem;
    min-width: 170px;
  }
  .ex-price {
    font-size: 0.68rem;
    margin-left: auto;
  }
  .summary-body {
    padding: 18px 16px 20px;
  }
  .sum-total b {
    font-size: 1.8rem;
  }
  .success {
    padding: 34px 18px;
  }
  .success h3 {
    font-size: 1.5rem;
  }
  .succ-ref {
    font-size: 0.88rem;
    padding: 8px 14px;
  }
  .succ-details {
    font-size: 0.82rem;
  }

  /* FAQ */
  .faq-q {
    font-size: 1.05rem;
    padding: 18px 0;
    gap: 12px;
  }
  .faq-a p {
    font-size: 0.86rem;
    padding: 0 0 18px;
  }

  /* Footer */
  footer {
    padding: 60px 0 0;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .foot-brand .bn {
    font-size: 1.85rem;
  }
  .foot-wave {
    margin-top: 32px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    word-break: break-word;
    padding: 18px 0 24px;
  }
  .foot-notice,
  .foot-credit {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .dock {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    gap: 12px;
  }
  .dock-field {
    border-bottom: 1px solid var(--line);
    padding: 0 0 10px;
  }
  .dock-field:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .dock .btn {
    width: 100%;
    margin: 6px 0 0;
    justify-content: center;
  }
  .gal-board {
    grid-template-columns: 1fr;
  }
  .pcard img {
    height: 180px !important;
  }
  .toast {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    font-size: 0.8rem;
    padding: 12px 16px;
    border-radius: 12px;
  }
}

/* ============ REDUCED MOTION ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rev,
  .lm .lm-l i {
    opacity: 1 !important;
    transform: none !important;
  }
  .tick {
    animation: none;
    flex-wrap: wrap;
  }
}
