/* =====================================================
   OZONE CAVE — Single-page stylesheet
   ===================================================== */

:root {
  --c-stone:    #EFE8DC;
  --c-stone-2:  #F7F2E9;
  --c-wood:     #A87B4F;
  --c-wood-dk:  #6E4F32;
  --c-yellow:   #E6B935;
  --c-yellow-d: #C99C20;
  --c-forest:   #3F5D3D;
  --c-slate:    #2B2A28;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--c-slate);
  background: var(--c-stone-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(247, 242, 233, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.logo { display: flex; align-items: center; gap: 12px; color: #fff; transition: color .4s; }
.nav.scrolled .logo { color: var(--c-slate); }
.logo svg { display: block; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 16px; font-weight: 600; letter-spacing: 3px; }
.logo-tag { font-size: 9px; letter-spacing: 3px; opacity: .8; margin-top: 4px; }
.nav-menu {
  display: flex; gap: 38px; list-style: none;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; font-weight: 500; transition: color .4s;
}
.nav.scrolled .nav-menu { color: var(--c-slate); }
.nav-menu a {
  position: relative;
  padding-bottom: 4px;
  transition: color .25s;
}
.nav-menu a:hover { color: var(--c-yellow-d); }
.nav-menu a.active {
  color: var(--c-yellow);
}
.nav.scrolled .nav-menu a.active {
  color: var(--c-yellow-d);
}
.btn-book {
  background: var(--c-yellow); color: var(--c-slate);
  padding: 12px 26px; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  display: inline-block; text-decoration: none;
  transition: background .25s, transform .25s;
  font-family: var(--sans);
}
.btn-book:hover { background: var(--c-yellow-d); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid var(--c-slate);
  background: transparent;
  color: var(--c-slate);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--c-slate); color: var(--c-yellow); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  overflow: hidden; color: #fff;
}
.hero-media {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 35%, rgba(0,0,0,.65) 100%),
    url('cover.webp');
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns { to { transform: scale(1.12) translateY(-1.5%); } }
.hero-content {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 0 24px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--c-yellow); margin-bottom: 26px;
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(42px, 7vw, 96px); line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-title em { font-style: italic; color: var(--c-yellow); font-weight: 300; }
.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px); font-weight: 300;
  max-width: 540px; opacity: .92; margin-bottom: 60px;
}
.hero-sub em {
  font-style: italic;
  color: var(--c-yellow);
  opacity: 1;
}
.booking-widget {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  display: flex; border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  overflow: hidden; width: min(900px, calc(100% - 32px));
}
.bw-field {
  flex: 1; padding: 14px 22px 12px;
  border-right: 1px solid rgba(0,0,0,.08);
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer;
  transition: background .15s;
  position: relative;
}
.bw-field:hover { background: rgba(0,0,0,.02); }
.bw-field:last-of-type { border-right: none; }
.bw-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-wood); font-weight: 600;
  user-select: none;
  pointer-events: none;
}
.bw-field input,
.bw-field select {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-slate);
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bw-field input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  filter: invert(0);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.bw-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%232B2A28' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}
.bw-field input:focus,
.bw-field select:focus {
  outline: none;
  color: var(--c-wood-dk);
}
.bw-field input::selection,
.bw-field select::selection { background: var(--c-yellow); color: var(--c-slate); }
.bw-cta {
  background: var(--c-yellow); border: none; cursor: pointer;
  padding: 0 36px; font-size: 13px; letter-spacing: 3px;
  font-weight: 600; text-transform: uppercase; color: var(--c-slate);
  transition: background .25s;
}
.bw-cta:hover { background: var(--c-yellow-d); }

/* INTRO */
.intro { background: var(--c-stone-2); padding: 140px 48px 120px; text-align: center; }
.intro .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 22px;
}
.intro h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px); line-height: 1.2;
  max-width: 820px; margin: 0 auto 32px;
}
.intro h2 em { font-style: italic; color: var(--c-forest); }
.intro p {
  font-size: 17px; font-weight: 300; max-width: 620px;
  margin: 0 auto; line-height: 1.85; color: #4a4945;
}

/* SECTION HEAD */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; border-bottom: 1px solid rgba(0,0,0,.1);
  padding-bottom: 24px;
}
.section-head .eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.1;
}
.section-head .right {
  max-width: 380px; font-weight: 300; color: #5a5852; font-size: 15px;
}

/* ROOMS */
.rooms { background: var(--c-stone-2); padding: 110px 48px 140px; }
.rooms-inner { max-width: 1280px; margin: 0 auto; }
.room-row {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,.08); align-items: center;
}
.room-row:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.room-row:nth-child(even) .room-img { order: 2; }
.room-img { height: 460px; overflow: hidden; border-radius: 3px; }
.room-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.room-row:hover .room-img img { transform: scale(1.04); }
.room-text .tag {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 12px;
}
.room-text h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.15;
  margin-bottom: 18px;
}
.room-text > p {
  font-weight: 300; font-size: 16px; line-height: 1.85;
  color: #4a4945; margin-bottom: 24px; max-width: 540px;
}
.room-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 28px; margin-bottom: 32px; max-width: 540px;
}
.room-feats span {
  font-size: 13px; color: #5a5852;
  padding-left: 22px; position: relative;
}
.room-feats span::before {
  content: '◇'; position: absolute; left: 0;
  color: var(--c-yellow-d); font-size: 11px;
}
.room-cta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.room-price { font-family: var(--serif); font-size: 22px; color: var(--c-wood-dk); }
.room-price small {
  font-size: 12px; color: #888; font-family: var(--sans);
  letter-spacing: 1px; text-transform: uppercase;
  display: block; margin-top: 2px;
}

/* REVIEWS */
.reviews { background: var(--c-stone); padding: 130px 48px; }
.rev-head { text-align: center; max-width: 780px; margin: 0 auto 70px; }
.rev-head .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 22px;
}
.rev-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.15; margin-bottom: 36px;
}
.rev-head h2 em { font-style: italic; color: var(--c-yellow-d); }
.rev-score {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 16px 32px; background: #fff;
  border-radius: 4px; box-shadow: 0 6px 28px rgba(0,0,0,.06);
}
.rev-score-big {
  font-family: var(--serif); font-size: 52px; font-weight: 500;
  line-height: 1;
}
.rev-score-big sup { font-size: 22px; opacity: .55; font-weight: 400; }
.rev-score-meta { text-align: left; }
.rev-stars { color: var(--c-yellow-d); font-size: 14px; letter-spacing: 2px; }
.rev-score-label { font-size: 13px; color: #5a5852; margin-top: 4px; font-weight: 500; }
.rev-score-source {
  font-size: 11px; color: #888; margin-top: 2px;
  letter-spacing: 1px; text-transform: uppercase;
}
.rev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 50px;
}
.rev-card {
  background: #fff; padding: 32px;
  border-radius: 4px; border: 1px solid rgba(0,0,0,.05);
}
.rev-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-badge {
  background: var(--c-slate); color: #fff;
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.rev-name { font-weight: 600; font-size: 14px; }
.rev-meta { font-size: 11px; color: #888; margin-top: 2px; }
.rev-stars-sm {
  color: var(--c-yellow-d); font-size: 11px; letter-spacing: 1px;
  margin-bottom: 12px;
}
.rev-text { font-weight: 300; font-size: 15px; line-height: 1.75; color: #3d3c3a; }
.rev-cta { text-align: center; }
.rev-cta a {
  display: inline-block; padding: 14px 32px;
  background: #fff; border: 1px solid var(--c-slate);
  font-size: 12px; letter-spacing: 2px; font-weight: 600;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.rev-cta a:hover { background: var(--c-slate); color: var(--c-yellow); }
.rev-cta .booking-blue { color: #003580; font-weight: 700; }

/* STORY */
.story {
  background: var(--c-stone-2); padding: 140px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.story-img {
  position: relative; height: 620px;
  border-radius: 3px; overflow: hidden;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--c-yellow);
  border-left: 2px solid var(--c-yellow); z-index: 2;
}
.story-text .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 22px;
}
.story-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1.15;
  margin-bottom: 30px;
}
.story-text h2 em { font-style: italic; color: var(--c-forest); }
.story-text p {
  font-weight: 300; font-size: 16px; line-height: 1.9;
  margin-bottom: 18px; color: #4a4945;
}

/* CAFE */
.cafe {
  background: var(--c-stone); padding: 140px 48px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.cafe-text .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 22px;
}
.cafe-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1.15;
  margin-bottom: 28px;
}
.cafe-text h2 em { font-style: italic; color: var(--c-yellow-d); }
.cafe-text p {
  font-weight: 300; font-size: 16px; line-height: 1.85;
  color: #4a4945; margin-bottom: 16px;
}
.cafe-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 32px; margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.1);
}
.cafe-feat .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 4px;
}
.cafe-feat .value { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.cafe-img-wrap {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 320px 180px;
  gap: 12px;
}
.cafe-img-wrap > div {
  border-radius: 3px; overflow: hidden;
  background-size: cover; background-position: center;
}
.cafe-img-wrap > div:nth-child(1) {
  background-image: url('cafe/1.jpg');
}
.cafe-img-wrap > div:nth-child(2) {
  grid-row: span 2;
  background-image: url('cafe/2.jpg');
  background-position: center 35%;
}
.cafe-img-wrap > div:nth-child(3) {
  background-image: url('cafe/3.jpg');
}

/* EXPERIENCES */
.exp {
  background: var(--c-forest); color: #fff;
  padding: 140px 48px;
  position: relative; overflow: hidden;
}
.exp::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(230, 185, 53, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 80% 90%, rgba(230, 185, 53, 0.06) 0%, transparent 35%);
  pointer-events: none;
}
.exp > * { position: relative; }
.exp .section-head { border-bottom-color: rgba(255,255,255,.2); }
.exp .section-head .eyebrow { color: var(--c-yellow); }
.exp .section-head h2 { color: #fff; }
.exp .section-head .right { color: rgba(255,255,255,.75); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exp-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(135deg, #2a4128 0%, #1f2e1e 50%, #c99c20 200%);
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.exp-card:hover { transform: translateY(-4px); }
.exp-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.3,1);
}
.exp-card:hover .exp-card-img { transform: scale(1.08); }
.exp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.92) 100%);
  transition: background .4s;
}
.exp-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.95) 100%);
}
.exp-card-num {
  position: absolute;
  top: 24px; left: 26px;
  z-index: 3;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--c-yellow);
  letter-spacing: 2px;
}
.exp-card-num::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--c-yellow);
  vertical-align: middle;
  margin-right: 10px;
}
.exp-card-tag {
  position: absolute;
  top: 24px; right: 26px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  padding: 4px 10px;
  border-radius: 100px;
}
.exp-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 28px;
  z-index: 2;
}
.exp-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.exp-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  opacity: .92;
  margin-top: 4px;
  transition: opacity .25s;
}
.exp-card:hover .exp-info p { opacity: 1; }
.exp-info .arrow {
  display: inline-block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(230, 185, 53, 0.35);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-yellow);
  font-weight: 600;
  width: 100%;
  transition: border-color .25s;
}
.exp-card:hover .exp-info .arrow { border-color: var(--c-yellow); }
.exp-info .arrow::after {
  content: '→';
  margin-left: 6px;
  transition: margin-left .25s;
}
.exp-card:hover .exp-info .arrow::after { margin-left: 12px; }

/* GALLERY */
.gallery { background: var(--c-stone); padding: 110px 48px 140px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px 280px;
  gap: 12px;
  grid-template-areas:
    "a a b c"
    "a a d e"
    "f g g h";
}
.g-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--c-stone);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-item:nth-child(1) { grid-area: a; }
.g-item:nth-child(2) { grid-area: b; }
.g-item:nth-child(3) { grid-area: c; }
.g-item:nth-child(4) { grid-area: d; }
.g-item:nth-child(5) { grid-area: e; }
.g-item:nth-child(6) { grid-area: f; }
.g-item:nth-child(7) { grid-area: g; }
.g-item:nth-child(8) { grid-area: h; }

/* LOCATION */
.location {
  background: var(--c-stone-2); padding: 140px 48px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.loc-text .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 20px;
}
.loc-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px); line-height: 1.15;
  margin-bottom: 24px;
}
.loc-text h2 em { font-style: italic; color: var(--c-yellow-d); }
.loc-text p { font-weight: 300; font-size: 16px; line-height: 1.9; margin-bottom: 14px; color: #4a4945; }
.loc-list { margin-top: 28px; list-style: none; }
.loc-list li {
  display: flex; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
}
.loc-list li span:last-child { font-family: var(--serif); font-weight: 500; color: var(--c-wood-dk); }
.loc-map {
  height: 540px; border-radius: 3px;
  position: relative;
  overflow: hidden;
  background: var(--c-stone);
  box-shadow: 0 6px 32px rgba(0,0,0,.06);
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.loc-map-link {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(43, 42, 40, 0.92);
  color: #fff;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background .25s, color .25s;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.loc-map-link:hover { background: var(--c-yellow); color: var(--c-slate); }

/* CONTACT */
.contact-body { background: var(--c-stone); padding: 130px 48px; }
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
}
.contact-info .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 16px;
}
.contact-info h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 3.4vw, 46px); line-height: 1.15; margin-bottom: 24px;
}
.contact-info > p { font-weight: 300; font-size: 16px; line-height: 1.9; color: #4a4945; margin-bottom: 36px; }
.contact-blocks { display: grid; gap: 28px; }
.contact-block .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 6px;
}
.contact-block .value { font-family: var(--serif); font-size: 20px; line-height: 1.4; }
.contact-block .value a:hover { color: var(--c-yellow-d); }
.contact-form {
  background: #fff; padding: 48px;
  border-radius: 4px; box-shadow: 0 8px 30px rgba(0,0,0,.05);
}
.contact-form h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--c-wood);
  margin-bottom: 8px; font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid rgba(0,0,0,.12);
  background: var(--c-stone-2);
  padding: 14px 16px; font-family: var(--sans); font-size: 14px;
  border-radius: 2px; color: var(--c-slate);
  transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-yellow-d); background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--c-yellow); color: var(--c-slate);
  border: none; cursor: pointer; padding: 16px 36px;
  font-size: 13px; letter-spacing: 2px; font-weight: 600;
  text-transform: uppercase; margin-top: 14px;
  transition: background .25s;
}
.form-submit:hover { background: var(--c-yellow-d); }
.form-submit:disabled { opacity: .55; cursor: not-allowed; }
.form-note { font-size: 11px; color: #888; margin-top: 16px; line-height: 1.6; }
.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: none;
  border-radius: 4px;
}
.form-status.show { display: block; padding: 14px 18px; }
.form-status.sending {
  background: rgba(168, 123, 79, 0.08);
  color: var(--c-wood-dk);
  border: 1px solid rgba(168, 123, 79, 0.2);
}

/* NOTIFICATION MODAL */
.notify-modal {
  position: fixed; inset: 0; z-index: 500;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(20, 18, 16, 0.6);
  backdrop-filter: blur(8px);
  animation: notifyFadeIn .25s ease;
}
.notify-modal.show { display: flex; }
@keyframes notifyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.notify-card {
  background: #fff;
  border-radius: 8px;
  max-width: 460px; width: 100%;
  padding: 48px 40px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  animation: notifyPop .35s cubic-bezier(.2,.7,.3,1);
}
@keyframes notifyPop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.notify-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 300;
}
.notify-modal.is-success .notify-icon {
  background: rgba(63, 93, 61, 0.12);
  color: var(--c-forest);
}
.notify-modal.is-error .notify-icon {
  background: rgba(199, 111, 74, 0.12);
  color: #a44a28;
}
.notify-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--c-slate);
  margin-bottom: 12px;
  line-height: 1.2;
}
.notify-message {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4945;
  font-weight: 300;
  margin-bottom: 28px;
}
.notify-message strong { color: var(--c-slate); font-weight: 600; }
.notify-close {
  background: var(--c-yellow);
  color: var(--c-slate);
  border: none;
  padding: 12px 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .25s;
}
.notify-close:hover { background: var(--c-yellow-d); }
.notify-x {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.notify-x:hover { background: rgba(0,0,0,.05); color: var(--c-slate); }

/* FAQ */
.faq { background: var(--c-stone-2); padding: 130px 48px; }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 60px; }
.faq-head .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-wood); margin-bottom: 16px;
}
.faq-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4vw, 52px); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.faq-item summary {
  list-style: none; padding: 24px 0; cursor: pointer;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--c-slate);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 28px; color: var(--c-yellow-d);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 24px; font-size: 15px; line-height: 1.85;
  color: #4a4945; font-weight: 300; max-width: 720px;
}

/* CTA */
.cta-strip {
  background: var(--c-slate); color: #fff;
  text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url('cta.jpg');
  background-size: cover; background-position: center;
  opacity: .35;
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px); line-height: 1.1;
  margin-bottom: 20px;
}
.cta-strip h2 em { font-style: italic; color: var(--c-yellow); }
.cta-strip p { font-weight: 300; font-size: 17px; opacity: .85; max-width: 540px; margin: 0 auto 40px; }
.btn-big {
  background: var(--c-yellow); color: var(--c-slate);
  padding: 18px 44px; font-size: 13px; letter-spacing: 3px;
  font-weight: 600; text-transform: uppercase;
  border: none; cursor: pointer; display: inline-block;
  text-decoration: none;
  transition: background .25s, transform .25s;
}
.btn-big:hover { background: var(--c-yellow-d); transform: translateY(-2px); }

/* FOOTER */
footer { background: #1A1918; color: #c8c5be; padding: 80px 48px 30px; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-grid h4 { font-family: var(--serif); color: #fff; font-size: 18px; font-weight: 500; margin-bottom: 20px; }
.foot-logo { display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 20px; }
.foot-logo .logo-name { font-size: 18px; }
.foot-logo .logo-tag { font-size: 10px; opacity: .7; }
.foot-grid p { font-size: 13px; font-weight: 300; line-height: 1.8; opacity: .75; }
.foot-grid ul { list-style: none; }
.foot-grid li { font-size: 13px; padding: 6px 0; opacity: .75; }
.foot-grid a:hover { color: var(--c-yellow); }
.social { display: flex; gap: 14px; margin-top: 20px; }
.social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: border-color .25s, color .25s;
}
.social a:hover { border-color: var(--c-yellow); color: var(--c-yellow); }
.foot-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px; font-size: 12px; opacity: .5;
}

/* MOBILE FLOATING ACTIONS — Book FAB + Scroll-to-top */
.fab-book,
.fab-top {
  display: none; /* mobile-only — shown via @media below */
  position: fixed;
  right: 20px;
  z-index: 99;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
}

.fab-book {
  bottom: 20px;
  padding: 14px 22px;
  border-radius: 2px; /* match site's editorial button style */
  background: var(--c-yellow);
  color: var(--c-slate);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0.82; /* default: semi-transparent so content shows through */
  box-shadow:
    0 6px 18px rgba(230, 185, 53, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.10);
  transition: opacity .25s, transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, padding .25s;
}
.fab-book:hover,
.fab-book:active,
.fab-book:focus-visible {
  opacity: 1; /* full opacity on interaction */
  background: var(--c-yellow-d);
  padding-right: 26px;
  box-shadow:
    0 10px 28px rgba(230, 185, 53, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.15);
}
.fab-book-text { line-height: 1; }
.fab-book-arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform .25s;
}
.fab-book:hover .fab-book-arrow,
.fab-book:active .fab-book-arrow {
  transform: translateX(2px);
}

.fab-top {
  bottom: 80px; /* above fab-book pill (46 + 14 gap + 20 inset) */
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(43, 42, 40, 0.85);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.fab-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.fab-top:hover { background: rgba(43, 42, 40, 1); }
.fab-top svg { display: block; }

/* ROOM MODAL — full-screen takeover */
.room-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  background: var(--c-stone-2);
  overflow-y: auto;
  animation: modalIn .35s cubic-bezier(.2,.7,.3,1);
}
.room-modal.show { display: block; }
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.room-modal-card {
  width: 100%;
  background: var(--c-stone-2);
}
.room-modal-bg { display: none; } /* hidden in fullscreen mode */
.room-modal-close {
  position: fixed; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--c-slate);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  z-index: 320;
  transition: background .25s, transform .25s;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.room-modal-close:hover { background: var(--c-yellow); color: var(--c-slate); transform: rotate(90deg); }

.room-modal-hero {
  height: 70vh; min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100vw;
}
.room-modal-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, transparent 35%, rgba(0,0,0,.75) 100%);
}
.room-modal-back {
  position: absolute; top: 24px; left: 32px;
  z-index: 5;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff; opacity: .85;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  transition: background .2s, opacity .2s;
}
.room-modal-back:hover { opacity: 1; background: rgba(0,0,0,.5); }
.room-modal-hero-text {
  position: relative;
  z-index: 2; color: #fff;
  padding: 0 60px 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.room-modal-tag {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 12px;
}
.room-modal-hero-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.room-modal-body {
  padding: 70px 60px 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.room-modal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.room-modal-stats > div .label {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-wood);
  margin-bottom: 8px; font-weight: 600;
}
.room-modal-stats > div .value {
  font-family: var(--serif);
  font-size: 22px; color: var(--c-slate);
  font-weight: 500; line-height: 1.3;
}
.room-modal-desc {
  font-size: 17px;
  line-height: 1.85;
  color: #3d3c3a;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 820px;
}
.room-modal-rating {
  background: #fff;
  border-radius: 4px;
  padding: 20px 24px;
  margin: 0 0 50px;
  display: inline-flex; align-items: center; gap: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.room-modal-rating .num {
  background: #003580;
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.room-modal-rating .text {
  font-size: 13px; color: #4a4945; line-height: 1.5;
}
.room-modal-rating .text strong { color: var(--c-slate); font-weight: 600; }

.room-modal-section {
  margin-bottom: 44px;
}
.room-modal-section h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--c-slate);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-yellow);
  display: inline-block;
}
.room-modal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
  list-style: none;
  padding: 0;
}
.room-modal-list li {
  font-size: 14.5px;
  color: #4a4945;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.room-modal-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--c-yellow-d);
  font-weight: 700;
  font-size: 14px;
}
.room-modal-cta {
  display: flex; gap: 14px;
  flex-wrap: nowrap;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.room-modal-cta .btn-book,
.room-modal-cta .btn-outline {
  flex: 1 1 0;
  padding: 16px 22px;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
}

/* Room gallery inside modal */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.room-gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-stone);
  cursor: pointer;
}
.room-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.room-gallery-item:hover img { transform: scale(1.06); }
.room-gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,.15));
  pointer-events: none;
}

/* Lightbox for gallery click */
.gallery-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center; justify-content: center;
  z-index: 400;
  cursor: pointer;
  padding: 40px;
}
.gallery-lightbox.show { display: flex; }
.gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.gallery-lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none; border-radius: 50%;
  font-size: 24px; cursor: pointer;
  z-index: 5;
  transition: background .25s;
}
.gallery-lightbox-close:hover { background: var(--c-yellow); color: var(--c-slate); }

@media (max-width: 1024px) {
  .room-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .room-gallery-item { height: 220px; }
}
@media (max-width: 640px) {
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery-item { height: 240px; }
}

/* COOKIE */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 540px; margin: 0 auto;
  background: rgba(110, 79, 50, 0.78);
  color: #fff;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 18px 22px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; line-height: 1.5; z-index: 200;
  box-shadow: 0 16px 48px rgba(110, 79, 50, 0.25);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.cookie-banner.show { transform: none; }
.cookie-banner p { flex: 1; font-weight: 300; opacity: .98; }
.cookie-banner a { color: var(--c-yellow); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner button {
  background: var(--c-yellow); color: var(--c-slate);
  border: none; padding: 10px 22px; cursor: pointer;
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600; border-radius: 2px;
  white-space: nowrap; transition: background .25s;
}
.cookie-banner button:hover { background: var(--c-yellow-d); }

/* SKIP LINK */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  background: var(--c-slate); color: var(--c-yellow);
  padding: 10px 16px; border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
}
.skip-link:focus { left: 16px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(.2,.7,.3,1); }
.reveal.show { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  /* Mobile/tablet: navbar always solid (like scrolled state) for legibility */
  .nav {
    padding: 14px 24px;
    background: rgba(247, 242, 233, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,.05);
  }
  .nav.scrolled { padding: 14px 24px; }
  .nav .logo,
  .nav.scrolled .logo { color: var(--c-slate); }
  .nav .nav-menu,
  .nav.scrolled .nav-menu { color: var(--c-slate); }
  .nav .nav-menu a.active,
  .nav.scrolled .nav-menu a.active { color: var(--c-yellow-d); }
  .nav-menu { display: none; }
  /* Mobile: use mobile-optimized hero cover image */
  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 35%, rgba(0,0,0,.65) 100%),
      url('cover-mobile.webp');
  }
  .booking-widget { flex-wrap: wrap; }
  .bw-field { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .bw-cta { flex-basis: 100%; padding: 18px; }
  .room-row, .room-row:nth-child(even) { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .room-row:nth-child(even) .room-img { order: 0; }
  .room-img { height: 320px; }
  .story, .location, .cafe { grid-template-columns: 1fr; gap: 40px; padding: 90px 24px; }
  .story-img { height: 420px; }
  .cafe-img-wrap {
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: 240px 140px;
  }
  .rev-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews { padding: 90px 24px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .exp-card { height: 420px; }
  .exp-info h3 { font-size: 24px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 200px 200px 200px 200px;
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f g"
      "h h";
  }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav, .nav.scrolled { padding: 14px 18px; }
  .logo-name { font-size: 14px; letter-spacing: 2px; }
  .logo-tag { font-size: 8px; letter-spacing: 2px; }
  .btn-book { padding: 9px 16px; font-size: 11px; letter-spacing: 1.5px; }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 14px; }
  .booking-widget { bottom: 88px; width: calc(100% - 24px); }
  .intro, .rooms, .gallery, .exp, .cafe, .faq, .reviews, .contact-body { padding: 80px 20px; }
  .cafe-feats { grid-template-columns: 1fr; gap: 14px; }
  .cafe-img-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .cafe-img-wrap > div:nth-child(1) { grid-column: span 2; }
  .cafe-img-wrap > div:nth-child(2) { grid-row: auto; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { height: 420px; }
  .room-feats { grid-template-columns: 1fr; }
  .room-cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
  }
  .room-cta .room-price { flex-basis: 100%; }
  .room-cta .btn-outline,
  .room-cta .btn-book {
    flex: 1 1 0;
    text-align: center;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 220px);
    grid-template-areas: "a" "b" "c" "d" "e" "f" "g" "h";
  }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .fab-book, .fab-top { display: flex; }
  footer { padding-bottom: 110px; } /* room for fab so it doesn't cover footer links */
  .cta-strip { padding: 70px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .contact-form { padding: 28px; }
  .room-modal-hero { height: 50vh; min-height: 320px; }
  .room-modal-hero-text { padding: 0 28px 36px; }
  .room-modal-body { padding: 50px 28px 70px; }
  .room-modal-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .room-modal-list { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .room-modal-back { left: 16px; top: 16px; padding: 8px 14px; font-size: 11px; }
  .room-modal-close { top: 16px; right: 16px; width: 42px; height: 42px; }
  .room-modal-cta { gap: 10px; }
  .room-modal-cta .btn-book,
  .room-modal-cta .btn-outline { padding: 14px 12px; font-size: 11px; letter-spacing: 1.5px; }
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 80px; }
  .cookie-banner button { width: 100%; padding: 12px; }
}
