:root {
  --color-bg: #f6f1ea;
  --color-surface: #ffffff;
  --color-surface-alt: #f8f2e9;
  --color-ink: #162033;
  --color-copy: #5f6876;
  --color-line: rgba(22, 32, 51, 0.12);
  --color-accent: #b78d52;
  --color-accent-dark: #8d6835;
  --color-brand: #102844;
  --color-brand-soft: #1b3653;
  --shadow-soft: 0 18px 45px rgba(19, 30, 49, 0.08);
  --shadow-card: 0 20px 50px rgba(19, 30, 49, 0.12);
  --radius-card: 24px;
  --radius-md: 12px;
  --container: 1320px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-copy);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--color-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--color-brand);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  color: var(--color-ink);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(19, 30, 49, 0.08);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-ink);
}

.nav-menu a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--color-accent);
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 40, 68, 0.14);
  background: var(--color-surface);
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-brand);
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 0;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--color-brand);
  box-shadow: 0 12px 24px rgba(16, 40, 68, 0.18);
}

.btn-primary:hover {
  background: var(--color-brand-soft);
}

.btn-secondary {
  color: var(--color-brand);
  background: #ecdfcb;
}

.btn-secondary:hover {
  background: #e5d5bc;
}

.btn-full {
  width: 100%;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 88px) 0 92px;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 23, 39, 0.86) 0%, rgba(10, 23, 39, 0.56) 44%, rgba(10, 23, 39, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 23, 39, 0.2) 0%, rgba(10, 23, 39, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(380px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
}

.hero-highlights div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 18px;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.booking-card,
.contact-form,
.contact-card,
.reservation-form {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.booking-card {
  padding: 32px;
  color: var(--color-copy);
  border-radius: var(--radius-card);
}

.booking-card-flip {
  position: relative;
  perspective: 1600px;
  padding: 0;
}

.booking-card-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.booking-card-flip.is-flipped .booking-card-inner {
  transform: rotateY(180deg);
}

.booking-card-face {
  grid-area: 1 / 1;
  padding: 32px;
  border-radius: var(--radius-card);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.booking-card-front {
  background: rgba(255, 255, 255, 0.96);
}

.booking-card-back {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(16, 40, 68, 0.96), rgba(24, 63, 94, 0.92)),
    #12324f;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  transform: rotateY(180deg);
}

.booking-success {
  max-width: 420px;
}

.booking-success .eyebrow {
  margin-bottom: 18px;
  color: rgba(232, 194, 138, 0.95);
}

.booking-success h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.booking-success p:last-child {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form-flip {
  position: relative;
  perspective: 1600px;
  padding: 0;
}

.contact-form-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.contact-form-flip.is-flipped .contact-form-inner {
  transform: rotateY(180deg);
}

.contact-form-face {
  grid-area: 1 / 1;
  padding: 32px;
  border-radius: var(--radius-card);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.contact-form-front {
  background: rgba(255, 255, 255, 0.96);
}

.contact-form-back {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(16, 40, 68, 0.96), rgba(24, 63, 94, 0.92)),
    #12324f;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  transform: rotateY(180deg);
}

.contact-success {
  max-width: 420px;
}

.contact-success .eyebrow {
  margin-bottom: 18px;
  color: rgba(232, 194, 138, 0.95);
}

.contact-success h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.contact-success p:last-child {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.booking-card .card-heading {
  margin-bottom: 8px;
}

.card-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.booking-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-card .booking-grid {
  gap: 12px 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-ink);
}

.booking-card label {
  gap: 6px;
}

label em {
  color: var(--color-copy);
  font-style: normal;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(22, 32, 51, 0.16);
  padding: 14px 16px;
  color: var(--color-ink);
  background: #fff;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 144px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(183, 141, 82, 0.13);
}

.widget-note,
.form-status {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.booking-card .btn-full {
  margin-top: 10px;
}

.booking-card input,
.booking-card select {
  min-height: 52px;
  padding: 12px 14px;
}

.booking-card textarea {
  min-height: 76px;
  padding: 12px 14px;
}

.booking-card .error-message {
  min-height: 12px;
}

.error-message {
  min-height: 16px;
  color: #aa463d;
  font-size: 0.76rem;
  font-weight: 700;
}

.input-error {
  border-color: #aa463d;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.section-heading p,
.about-copy p,
.details-copy p,
.contact-card p {
  font-size: 1rem;
}

.about-section {
  background: var(--color-surface);
}

.about-layout,
.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.about-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.78fr);
  gap: 20px;
  align-items: end;
}

.about-stack img:first-child {
  height: 560px;
}

.about-stack img:last-child {
  height: 380px;
}

.about-stack img,
.details-media img,
.contact-card-media img {
  width: 100%;
  object-fit: cover;
}

.about-badge,
.details-panel {
  margin-top: 22px;
  padding: 24px;
  background: var(--color-surface-alt);
  border-left: 4px solid var(--color-accent);
}

.about-badge strong,
.details-panel h3 {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 1.7rem;
}

.about-copy h2,
.details-copy h2,
.reservation-intro h2,
.contact-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.feature-points,
.details-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.feature-points article,
.details-specs div {
  padding: 20px;
  background: var(--color-surface-alt);
}

.feature-points h3,
.details-specs strong {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.details-specs span {
  display: block;
}

.rooms-section,
.gallery-section,
.news-section {
  background: var(--color-bg);
}

.room-grid,
.amenity-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

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

.room-card,
.amenity-card,
.news-card {
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-card);
}

.room-image {
  height: 300px;
  overflow: hidden;
}

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

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

.room-body,
.news-body {
  padding: 28px;
}

.room-meta,
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-card h3,
.amenity-card h3,
.news-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.feature-list {
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
}

.details-section {
  background: #f1e8dc;
}

.details-media {
  position: relative;
}

.details-media img {
  height: 620px;
}

.details-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 320px;
  box-shadow: var(--shadow-card);
}

.amenities-section {
  background: var(--color-surface);
}

.amenity-card {
  padding: 30px;
}

.amenity-card span {
  display: inline-flex;
  min-width: 62px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-brand);
  background: #f0e0c5;
  font-size: 1rem;
  font-weight: 800;
}

.control-btn,
.refresh-button {
  min-width: 52px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 141, 82, 0.25);
  background: var(--color-surface-alt);
  color: var(--color-brand);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--color-surface);
  border-radius: 20px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.news-body a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-brand);
  font-weight: 800;
}

.reservation-section {
  background:
    linear-gradient(rgba(15, 39, 63, 0.88), rgba(15, 39, 63, 0.88)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.reservation-shell {
  display: grid;
  gap: 44px;
}

.reservation-intro {
  max-width: 760px;
}

.reservation-intro h2,
.reservation-intro p,
.reservation-intro .eyebrow {
  color: #fff;
}

.reservation-form,
.contact-form,
.contact-card {
  padding: 34px;
  border-radius: var(--radius-card);
}

.reservation-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.reservation-heading h3,
.contact-form h3 {
  margin-bottom: 0;
  font-size: 2.3rem;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(380px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.reservation-main {
  display: grid;
  gap: 24px;
}

.wide-field {
  grid-column: 1 / -1;
}

.booking-summary {
  padding: 22px;
  background: var(--color-surface-alt);
  border-radius: 10px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.booking-summary h4 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-line);
}

.summary-line:last-child {
  border-bottom: 0;
  font-weight: 800;
  color: var(--color-ink);
}

.contact-section {
  background: var(--color-surface);
}

.blackout-section {
  background: var(--color-surface);
}

.blackout-frame-shell {
  overflow: hidden;
  border: 1px solid rgba(16, 40, 68, 0.1);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.blackout-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.inquiries-section {
  background: var(--color-bg);
}

.inquiries-shell {
  display: grid;
  gap: 30px;
}

.inquiries-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.inquiries-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.inquiries-toolbar h3 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.inquiries-note {
  margin: 0;
  font-size: 0.95rem;
}

.inquiries-list {
  display: grid;
  gap: 18px;
}

.inquiry-card {
  padding: 24px;
  background: var(--color-surface-alt);
  border-radius: 18px;
  border: 1px solid rgba(16, 40, 68, 0.08);
}

.inquiry-card h4 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.inquiry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.inquiry-card p {
  margin-bottom: 0;
}

.inquiry-empty {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  height: 100%;
}

.contact-card {
  display: flex;
  flex-direction: column;
}

address {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  font-style: normal;
  color: var(--color-copy);
  font-weight: 600;
}

address a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card-media {
  position: relative;
  margin-top: auto;
  overflow: hidden;
  border-radius: 20px;
}

.contact-card-media img {
  height: 340px;
}

.map-pin {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.map-pin strong,
.map-pin span {
  display: block;
}

.map-pin strong {
  color: var(--color-ink);
}

.site-footer {
  background: #101726;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding: 78px 0 52px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  height: 72px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.3rem;
}

.site-footer a:not(.btn) {
  display: table;
  min-height: 32px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  padding: 22px 0 28px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 14, 23, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  .nav-shell {
    gap: 18px;
  }

  .hero-content,
  .about-layout,
  .details-layout,
  .contact-grid,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-copy,
  .reservation-intro,
  .contact-card,
  .contact-form {
    max-width: 100%;
  }

  .room-grid,
  .amenity-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .details-panel {
    position: static;
    max-width: none;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 80px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - var(--header-height) - 28px);
    overflow-y: auto;
    padding: 18px;
    background: rgba(250, 246, 240, 0.98);
    box-shadow: var(--shadow-card);
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-cta {
    display: none;
  }

  .nav-menu a {
    min-height: 52px;
    padding: 0 10px;
    border-radius: 12px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(16, 40, 68, 0.06);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 72px;
  }

  .hero-highlights,
  .feature-points,
  .details-specs,
  .booking-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .room-grid,
  .amenity-grid,
  .news-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .brand-logo {
    height: 54px;
  }

  .site-header .brand-logo,
  .footer-brand .brand-logo {
    height: 54px;
  }

  .about-stack {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .about-stack img:first-child,
  .about-stack img:last-child,
  .details-media img {
    height: 420px;
  }

  .details-layout,
  .contact-grid,
  .reservation-shell {
    gap: 28px;
  }

  .inquiries-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-shell {
    gap: 12px;
  }

  .hero-copy h1,
  .section-heading h2,
  .about-copy h2,
  .details-copy h2,
  .reservation-intro h2,
  .contact-card h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .reservation-form,
  .contact-form,
  .contact-card,
  .inquiries-panel,
  .booking-card {
    padding: 24px;
  }

  .hero-actions,
  .hero-highlights,
  .details-specs,
  .feature-points {
    gap: 12px;
  }

  .hero-actions .btn,
  .room-body .btn,
  .news-body a,
  .footer-grid .btn {
    width: 100%;
  }

  .hero-highlights div,
  .feature-points article,
  .details-specs div,
  .amenity-card,
  .room-body,
  .news-body {
    padding: 20px;
  }

  .room-meta,
  .summary-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 14px;
  }

  .contact-card-media img,
  .details-media img {
    height: 260px;
  }

  .about-stack {
    grid-template-columns: 1fr;
  }

  .about-stack img:first-child,
  .about-stack img:last-child {
    height: 240px;
  }

  .reservation-heading h3,
  .contact-form h3,
  .booking-summary h4,
  .inquiries-toolbar h3 {
    font-size: 1.9rem;
  }

  .footer-grid {
    gap: 28px;
    padding: 60px 0 42px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 22px, var(--container));
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .hero-lede,
  .section-heading p,
  .about-copy p,
  .details-copy p,
  .contact-card p {
    font-size: 0.98rem;
  }

  .hero-highlights strong {
    font-size: 1.45rem;
  }

  .gallery-grid {
    grid-auto-rows: 160px;
  }

  .map-pin {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .inquiry-card {
    padding: 20px;
  }
}
