:root {
  --bg: #f7f3ec;
  --paper: #fffdf8;
  --sand: #e8dccb;
  --clay: #b59b7e;
  --taupe: #7c6a58;
  --olive: #4c563f;
  --charcoal: #252620;
  --muted: #6f6a61;
  --line: rgba(76, 86, 63, 0.18);
  --shadow: 0 24px 60px rgba(37, 38, 32, 0.14);
  --shadow-soft: 0 14px 34px rgba(37, 38, 32, 0.1);
  --shadow-hover: 0 28px 70px rgba(37, 38, 32, 0.16);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(76, 86, 63, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  max-width: 100%;
  overflow: clip;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 8px 28px rgba(37, 38, 32, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1220px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-grid;
  gap: 0;
  letter-spacing: 0.16em;
  line-height: 1;
}

.logo span {
  font-family: var(--serif);
  font-size: 1.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.logo small {
  margin-top: 6px;
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero .logo,
.site-header:not(.scrolled) {
  color: var(--paper);
}

.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-panel {
  gap: 30px;
}

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

.nav-links a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--line);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.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;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(37, 38, 32, 0);
  transition: transform 0.32s var(--ease), background 0.32s var(--ease), border-color 0.32s var(--ease), color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(37, 38, 32, 0.14);
}

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

.btn-primary:hover {
  background: #3f4734;
}

.btn-light {
  background: var(--paper);
  color: var(--charcoal);
}

.btn-light:hover {
  background: #fff8ed;
}

.btn-outline {
  border-color: var(--line);
  color: var(--olive);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(76, 86, 63, 0.36);
  background: rgba(255, 253, 248, 0.56);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  color: var(--paper);
  isolation: isolate;
}

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

.hero-bg {
  background: url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=2800&q=90") center/cover no-repeat;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 25, 20, 0.66), rgba(24, 25, 20, 0.24) 58%, rgba(24, 25, 20, 0.42)), linear-gradient(180deg, rgba(24, 25, 20, 0.1), rgba(24, 25, 20, 0.55));
}

.hero-content {
  padding-top: 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.booking-cta h2,
.modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 9vw, 7.7rem);
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.72;
  color: rgba(255, 253, 248, 0.9);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.booking-strip {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(1040px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(18px);
}

.booking-strip.reveal {
  transform: translateX(-50%) translateY(24px);
}

.booking-strip.reveal.visible {
  transform: translateX(-50%) translateY(0);
}

.booking-strip span {
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.booking-strip span:last-child {
  border-right: 0;
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.section h2,
.booking-cta h2 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  color: var(--charcoal);
}

.section-copy p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
  letter-spacing: 0.003em;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.about-visual {
  position: relative;
}

.about-visual img,
.wide-image img {
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(0.98) brightness(1.01);
}

.highlight-card,
.highlight-grid > div {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.highlight-card:hover,
.highlight-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 86, 63, 0.28);
  box-shadow: var(--shadow-hover);
}

.highlight-card {
  position: absolute;
  left: -28px;
  bottom: 92px;
  width: 150px;
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  text-align: center;
}

.highlight-card strong,
.highlight-grid strong {
  display: block;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1;
}

.highlight-card span,
.highlight-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.highlight-grid {
  position: absolute;
  right: 22px;
  bottom: -24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: min(330px, 78%);
}

.highlight-grid > div {
  padding: 20px;
  border-radius: var(--radius);
}

.rooms,
.reviews {
  background: var(--paper);
}

.card-grid,
.feature-grid,
.experience-grid,
.review-grid {
  display: grid;
  gap: 22px;
}

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

.room-card,
.feature-card,
.experience-card,
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(37, 38, 32, 0.035);
  transition: transform 0.36s var(--ease), box-shadow 0.36s var(--ease), border-color 0.36s var(--ease), background 0.36s var(--ease);
}

.room-card:hover,
.feature-card:hover,
.experience-card:hover,
.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(76, 86, 63, 0.3);
  box-shadow: var(--shadow-hover);
}

.room-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.room-card:hover img,
.experience-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.02);
}

.card-body {
  padding: 26px;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.66rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
}

.card-body p,
.feature-card p,
.experience-card p,
.review-card p {
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.72;
}

dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

dd {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.text-btn {
  border: 0;
  background: transparent;
  color: var(--olive);
  padding: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.text-btn:hover {
  color: #323a2a;
  transform: translateX(3px);
}

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

.feature-card {
  padding: 30px;
}

.feature-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive);
  font-size: 1.2rem;
  transition: background 0.32s var(--ease), color 0.32s var(--ease), transform 0.32s var(--ease);
}

.feature-card:hover span {
  background: var(--olive);
  color: var(--paper);
  transform: rotate(-4deg) scale(1.04);
}

.wellness {
  background: linear-gradient(180deg, var(--bg), #efe7dc);
}

.menu-preview {
  margin-top: 28px;
  max-width: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 4px;
}

.menu-title {
  margin: 0 0 8px;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-highlights {
  display: grid;
  gap: 0;
}

.menu-highlights span {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(76, 86, 63, 0.12);
  padding: 13px 0;
  color: var(--charcoal);
  background: transparent;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0.005em;
}

.menu-highlights span:last-child {
  border-bottom: 0;
}

.menu-highlights small {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.experience-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.experience-card h3,
.experience-card p {
  padding: 0 20px;
}

.experience-card h3 {
  padding-top: 20px;
}

.experience-card p {
  padding-bottom: 22px;
}

.gallery {
  background: var(--paper);
}

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

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.93) contrast(0.99);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: brightness(0.94) saturate(0.98);
}

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

.review-card {
  padding: 32px;
}

.review-card div {
  color: var(--clay);
  letter-spacing: 0.1em;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.review-card p {
  font-family: var(--serif);
  font-size: 1.26rem;
  line-height: 1.55;
  color: var(--charcoal);
}

.review-card h3 {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(76, 86, 63, 0.28);
  box-shadow: var(--shadow-soft);
}

.faq-item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  color: var(--charcoal);
  text-align: left;
  font-weight: 800;
  letter-spacing: 0.005em;
}

.faq-item button span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--olive);
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

address {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  font-style: normal;
}

address a,
address span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.map-card {
  min-height: 470px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 470px;
  min-height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(0.98);
}

.booking-cta {
  padding: 105px 0;
  background: linear-gradient(rgba(41, 45, 33, 0.76), rgba(41, 45, 33, 0.76)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=90") center/cover;
  color: var(--paper);
  text-align: center;
}

.booking-cta h2 {
  color: var(--paper);
}

.booking-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 28px;
  color: rgba(255, 253, 248, 0.86);
}

.site-footer {
  padding: 82px 0 26px;
  background: #292a24;
  color: rgba(255, 253, 248, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 48px;
}

.footer-logo {
  color: var(--paper);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
  line-height: 1.58;
  transition: color 0.24s ease, transform 0.24s ease;
}

.site-footer a:hover {
  color: var(--paper);
  transform: translateX(2px);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.socials a:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--olive);
  transform: translateY(-3px);
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials path {
  fill: currentColor;
  stroke: none;
}

.copyright {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 0.92rem;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.modal.active,
.lightbox.active {
  display: grid;
}

.modal {
  place-items: center;
  padding: 20px;
}

.modal-backdrop,
.lightbox {
  background: rgba(18, 19, 16, 0.72);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.room-modal-dialog {
  width: min(1020px, calc(100% - 40px));
  max-height: 85vh;
  padding: 0;
  overflow: auto;
  background: #fffbf4;
  box-shadow: 0 34px 90px rgba(18, 19, 16, 0.26);
}

.room-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  min-height: min(660px, 85vh);
}

.room-modal-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.room-modal-content {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 54px 56px 46px;
}

.room-modal-content .eyebrow {
  margin-bottom: -10px;
}

.room-modal-content h2 {
  font-size: clamp(2.45rem, 4vw, 3.8rem);
  line-height: 0.98;
  color: var(--charcoal);
}

.room-modal-description {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.room-modal-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 4px 0 2px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.room-modal-meta div {
  display: block;
  min-width: 0;
  padding: 18px 18px 17px;
  border-left: 1px solid var(--line);
}

.room-modal-meta div:first-child {
  border-left: 0;
}

.room-modal-meta dt {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.room-modal-meta dd {
  display: block;
  margin: 0;
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
}

.room-modal-features h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 600;
}

.room-modal-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-modal-features li {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

.room-modal-features li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.7;
}

.room-modal [data-room-modal-book] {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  box-shadow: 0 14px 28px rgba(76, 86, 63, 0.18);
}

.room-modal [data-room-modal-book]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(76, 86, 63, 0.22);
}

.room-modal .modal-backdrop {
  background: rgba(18, 19, 16, 0.76);
  backdrop-filter: blur(10px);
}

.room-modal .modal-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(76, 86, 63, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(37, 38, 32, 0.08);
}

.room-modal .modal-close:hover {
  background: #fff8ed;
  border-color: rgba(76, 86, 63, 0.32);
  transform: translateY(-1px);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  z-index: 2;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.modal-close:hover,
.lightbox-close:hover {
  background: #fff8ed;
  transform: rotate(90deg);
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--charcoal);
  padding: 12px 13px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(76, 86, 63, 0.42);
  box-shadow: 0 0 0 4px rgba(76, 86, 63, 0.08);
}

textarea {
  resize: vertical;
}

.form-error,
.form-success {
  min-height: 24px;
  margin: 0;
  font-weight: 650;
}

.form-error {
  color: #9d3f35;
}

.form-success {
  color: var(--olive);
}

.lightbox {
  place-items: center;
  padding: 70px 22px 22px;
}

.lightbox img {
  width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--olive);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head.reveal,
.booking-cta .reveal {
  transform: translateY(18px);
}

.split .wide-image.reveal,
.split .about-visual.reveal,
.map-card.reveal {
  transform: translateY(22px);
}

.split .wide-image.reveal.visible,
.split .about-visual.reveal.visible,
.map-card.reveal.visible {
  transform: translateY(0);
}

.room-card.reveal,
.feature-card.reveal,
.experience-card.reveal,
.review-card.reveal {
  transition: opacity 0.8s var(--ease), transform 0.36s var(--ease), box-shadow 0.36s var(--ease), border-color 0.36s var(--ease), background 0.36s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 253, 248, 0.96);
    color: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 16px;
  }

  .split,
  .split-reverse,
  .rooms-grid,
  .feature-grid,
  .experience-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split-reverse {
    align-items: start;
  }

  .rooms-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .about-visual img,
  .wide-image img {
    height: 480px;
  }

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

  .room-modal-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .room-modal-image {
    height: 320px;
    min-height: 0;
    max-height: none;
  }

  .room-modal-content {
    padding: 42px 38px 34px;
  }
}

@media (max-width: 768px) {
  .highlight-card {
    position: static;
    width: 100%;
    height: 128px;
    min-height: 128px;
    margin-top: 12px;
  }

  .highlight-grid {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
  }

  .highlight-card,
  .highlight-grid > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    height: 128px;
    padding: 20px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    width: calc(100% - 28px);
    height: 72px;
  }

  .logo span {
    font-size: 1.28rem;
  }

  .logo small {
    font-size: 0.54rem;
  }

  .nav-panel {
    inset: 74px 14px auto;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 130px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.55rem);
  }

  .hero-actions,
  .booking-cta .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .booking-cta .btn,
  .modal .btn {
    width: 100%;
  }

  .booking-strip {
    bottom: 14px;
    grid-template-columns: repeat(2, 1fr);
    font-size: 0.9rem;
  }

  .booking-strip span {
    padding: 12px 10px;
  }

  .booking-strip span:nth-child(2) {
    border-right: 0;
  }

  .booking-strip span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section {
    padding: 76px 0;
  }

  .split,
  .split-reverse,
  .feature-grid,
  .experience-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-visual img,
  .wide-image img {
    height: 390px;
  }

  .highlight-card {
    left: 14px;
    bottom: 80px;
  }

  .highlight-grid {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .modal-dialog {
    padding: 26px 18px;
  }

  .room-modal-dialog {
    width: calc(100% - 24px);
    max-height: 86vh;
    padding: 0;
  }

  .room-modal-content {
    gap: 20px;
    padding: 34px 20px 24px;
  }

  .room-modal-content h2 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .room-modal-description {
    font-size: 0.98rem;
  }

  .room-modal-features ul {
    grid-template-columns: 1fr;
  }

  .room-modal-meta {
    grid-template-columns: 1fr;
  }

  .room-modal-meta div {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .room-modal-meta div:first-child {
    border-top: 0;
  }

  .room-modal-image {
    height: clamp(220px, 44vh, 260px);
    min-height: 0;
    max-height: none;
  }

  .room-modal .modal-close {
    top: 12px;
    right: 12px;
  }
}
