:root {
  --peach: #f2c4a8;
  --peach-light: #f8ddd0;
  --peach-bg: #fae8dc;
  --warm-white: #fdf6f0;
  --paper: #fffaf6;
  --brown-dark: #3b2d28;
  --brown-mid: #6b5248;
  --brown-light: #a0877d;
  --brown-ghost: #c9b2aa;
  --sage: #5c6f45;
  --terracotta: #8f4f3f;
  --shadow: 0 24px 70px rgba(59, 45, 40, 0.18);
  --max: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--warm-white);
  color: var(--brown-dark);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 26px 56px;
  color: var(--warm-white);
  transition: background 0.28s ease, padding 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.site-header.scrolled,
.room-page .site-header {
  background: rgba(253, 246, 240, 0.96);
  color: var(--brown-dark);
  box-shadow: 0 1px 0 rgba(107, 82, 72, 0.12);
  backdrop-filter: blur(14px);
  padding-block: 16px;
}

.site-logo {
  text-decoration: none;
  min-width: 178px;
}

.logo-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-hotel {
  font: 300 9px "Barlow", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.72;
}

.logo-cheel {
  display: flex;
  font: 700 19px "Barlow Condensed", sans-serif;
  letter-spacing: 0.22em;
}

.logo-cheel span:nth-child(1) { color: #f2c4a8; }
.logo-cheel span:nth-child(2) { color: currentColor; }
.logo-cheel span:nth-child(3) { color: #c9b2aa; }
.logo-cheel span:nth-child(4) { color: #b09a92; }
.logo-cheel span:nth-child(5) { color: rgba(253, 246, 240, 0.7); }
.site-header.scrolled .logo-cheel span:nth-child(5),
.room-page .site-header .logo-cheel span:nth-child(5),
.site-footer .logo-cheel span:nth-child(5) { color: #8b7168; }

.logo-sub {
  font: 600 11px "Barlow Condensed", sans-serif;
  letter-spacing: 0.28em;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.lang-btn,
.nav-book {
  font: 600 12px "Barlow Condensed", sans-serif;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a {
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: var(--peach);
  opacity: 1;
}

.site-header.scrolled .site-nav a:hover,
.room-page .site-header .site-nav a:hover {
  color: var(--brown-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  padding: 4px 6px;
  opacity: 0.56;
  border-bottom: 1px solid transparent;
}

.lang-btn.active {
  color: var(--peach);
  opacity: 1;
  border-bottom-color: currentColor;
}

.site-header.scrolled .lang-btn.active,
.room-page .site-header .lang-btn.active {
  color: var(--brown-dark);
}

.nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(253, 246, 240, 0.45);
  border-radius: 999px;
}

.site-header.scrolled .nav-book,
.room-page .site-header .nav-book {
  border-color: rgba(107, 82, 72, 0.18);
  background: var(--brown-dark);
  color: var(--warm-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 10px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(59, 45, 40, 0.08), rgba(59, 45, 40, 0.66)), var(--hero-image) center / cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 56px 154px;
  color: var(--warm-white);
}

.eyebrow,
.section-label,
.price-label {
  font: 600 11px "Barlow Condensed", sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.hero .eyebrow {
  color: var(--peach-light);
}

.hero h1,
.page-title,
.section-title,
.room-title {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.96;
  margin: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 300;
  margin-top: 18px;
}

.hero h1 strong,
.section-title strong {
  font-weight: 700;
}

.hero h1 span {
  display: block;
  font-size: 0.48em;
  letter-spacing: 0.13em;
  opacity: 0.64;
  margin-top: 8px;
}

.lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 600px;
  color: rgba(253, 246, 240, 0.76);
}

.btn-primary,
.btn-secondary,
.btn-dark,
.contact-submit,
.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font: 600 12px "Barlow Condensed", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary,
.contact-submit {
  background: var(--peach);
  color: var(--brown-dark);
}

.btn-dark,
.book-btn {
  background: var(--brown-dark);
  color: var(--warm-white);
}

.btn-secondary {
  color: var(--warm-white);
  border: 1px solid rgba(253, 246, 240, 0.42);
}

.btn-primary:hover,
.btn-dark:hover,
.book-btn:hover,
.contact-submit:hover {
  transform: translateY(-1px);
}

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

.search-wrap {
  position: sticky;
  top: 88px;
  z-index: 90;
  margin-top: -42px;
  padding: 0 56px 48px;
}

.search-bar {
  width: min(100%, 1060px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(150px, 0.42fr) auto auto;
  align-items: stretch;
  background: rgba(253, 246, 240, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(59, 45, 40, 0.24);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.search-field,
.best-price-note {
  padding: 16px 22px;
  border-left: 1px solid rgba(107, 82, 72, 0.12);
}

.search-field:first-child {
  border-left: 0;
}

.search-field label {
  display: block;
  font: 600 9px "Barlow Condensed", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 6px;
}

.search-value,
.guest-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--brown-dark);
  font: 400 20px "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
}

.guest-field {
  position: relative;
}

.guest-dropdown,
.date-picker {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: var(--paper);
  border: 1px solid rgba(107, 82, 72, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.date-picker {
  width: min(720px, calc(100vw - 112px));
  padding: 22px;
}

.guest-dropdown {
  width: 250px;
  padding: 18px;
}

.guest-dropdown.open,
.date-picker.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.date-picker-head,
.guest-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.calendar-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.calendar-caption {
  font: 600 18px "Barlow Condensed", sans-serif;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-weekday {
  text-align: center;
  font: 600 10px "Barlow Condensed", sans-serif;
  color: var(--brown-light);
  text-transform: uppercase;
}

.calendar-day,
.cal-nav button,
.guest-stepper button {
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.calendar-day {
  height: 38px;
  border-radius: 999px;
  color: var(--brown-mid);
}

.calendar-day:hover,
.calendar-day.in-range {
  background: rgba(242, 196, 168, 0.35);
}

.calendar-day.selected {
  background: var(--brown-dark);
  color: var(--warm-white);
}

.calendar-day.disabled {
  color: rgba(107, 82, 72, 0.28);
  pointer-events: none;
}

.cal-nav button,
.guest-stepper button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm-white);
  border-color: rgba(107, 82, 72, 0.15);
}

.guest-count {
  min-width: 54px;
  text-align: center;
  font: 300 30px "Barlow Condensed", sans-serif;
}

.guest-helper {
  margin-top: 10px;
  color: var(--brown-light);
  font-size: 12px;
  line-height: 1.5;
}

.best-price-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 210px;
}

.best-price-note strong {
  font: 600 12px "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.best-price-note span {
  font-size: 12px;
  color: var(--brown-light);
}

.search-btn {
  margin: 8px;
  border: 0;
  border-radius: 24px;
  background: var(--brown-dark);
  color: var(--warm-white);
  padding: 0 28px;
  font: 600 12px "Barlow Condensed", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.section,
.rooms-section,
.contact-section,
.testimonials,
.avail-section {
  padding: 90px 56px;
}

.section-inner,
.rooms-inner,
.contact-inner,
.avail-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-title {
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  margin-top: 12px;
}

.section-title em {
  font-style: normal;
  color: var(--brown-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 590px;
}

.about-media {
  position: relative;
  overflow: hidden;
}

.about-media img,
.cta-section img,
.room-card img,
.gallery-strip img,
.room-gallery img,
.avail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy {
  background: var(--peach-bg);
  padding: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy p {
  color: var(--brown-mid);
  font-weight: 300;
  line-height: 1.9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.feature {
  border-top: 1px solid rgba(107, 82, 72, 0.14);
  padding-top: 16px;
}

.feature strong {
  display: block;
  font: 600 13px "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature span {
  color: var(--brown-light);
  font-size: 13px;
}

.rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 4px;
}

.room-card {
  position: relative;
  display: block;
  min-height: 315px;
  overflow: hidden;
  background: var(--brown-dark);
  color: var(--warm-white);
  text-decoration: none;
}

.room-card > img {
  position: absolute;
  inset: 0;
}

.room-card.featured {
  grid-row: span 2;
}

.room-card.featured {
  min-height: 634px;
}

.room-card img {
  opacity: 0.9;
  transition: transform 0.55s ease, opacity 0.35s ease;
}

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

.room-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(59, 45, 40, 0.94), transparent);
}

.room-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--peach);
  color: var(--brown-dark);
  padding: 6px 11px;
  font: 600 9px "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-name {
  font: 600 28px "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
}

.room-meta {
  margin-top: 4px;
  font: 500 11px "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-light);
}

.room-price {
  margin-top: 14px;
  color: rgba(253, 246, 240, 0.68);
}

.room-price strong {
  font: 300 34px "Barlow Condensed", sans-serif;
  color: var(--warm-white);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 330px;
  overflow: hidden;
}

.gallery-strip figure {
  margin: 0;
  overflow: hidden;
}

.gallery-strip img {
  filter: sepia(12%);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.gallery-strip figure:hover img {
  transform: scale(1.04);
  filter: none;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--brown-dark);
  color: var(--warm-white);
}

.location-copy {
  padding: 86px 56px;
  justify-self: end;
  width: min(100%, 610px);
}

.location-copy .section-label,
.location-copy .section-title em {
  color: var(--peach);
}

.loc-list {
  margin-top: 44px;
  display: grid;
  gap: 18px;
}

.loc-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.loc-item b {
  font: 300 42px "Barlow Condensed", sans-serif;
  color: var(--peach);
}

.loc-item strong {
  display: block;
  font: 600 13px "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loc-item span {
  color: rgba(253, 246, 240, 0.58);
  font-size: 13px;
}

.loc-map {
  min-height: 500px;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: sepia(18%) saturate(0.78) contrast(0.95);
}

.testimonials {
  background: var(--peach-bg);
}

.testimonials-grid {
  width: min(100%, var(--max));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.testi {
  background: var(--warm-white);
  padding: 42px 36px;
}

.stars {
  color: var(--peach);
  letter-spacing: 2px;
}

.testi p {
  line-height: 1.85;
  color: var(--brown-mid);
  font-weight: 300;
}

.contact-section {
  background: var(--warm-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1fr);
  gap: 70px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px;
  background: rgba(242, 196, 168, 0.15);
  border: 1px solid rgba(107, 82, 72, 0.12);
  border-radius: 22px;
}

.contact-form .full,
.contact-form .hp-field {
  grid-column: 1 / -1;
}

.contact-form .hp-field {
  display: none;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font: 600 10px "Barlow Condensed", sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 82, 72, 0.14);
  border-radius: 14px;
  background: rgba(253, 246, 240, 0.88);
  color: var(--brown-dark);
  font: 300 14px "Barlow", sans-serif;
  padding: 14px 15px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.7;
}

.contact-status {
  align-self: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--brown-mid);
}

.contact-status.ok { color: var(--sage); }
.contact-status.error { color: var(--terracotta); }

.cta-section {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--warm-white);
}

.cta-section img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.55);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 56px 24px;
}

.cta-content .section-title,
.cta-content .section-title em,
.cta-content .section-label {
  color: var(--warm-white);
}

.avail-section {
  display: none;
  padding-top: 20px;
}

.avail-section.open {
  display: block;
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
  margin-top: 28px;
}

.avail-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 174px;
  background: var(--paper);
  border: 1px solid rgba(107, 82, 72, 0.08);
}

.avail-card.unavail {
  opacity: 0.55;
}

.avail-body {
  padding: 18px;
}

.avail-name {
  font: 600 19px "Barlow Condensed", sans-serif;
}

.avail-meta,
.avail-sub {
  color: var(--brown-light);
  font-size: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(59, 45, 40, 0.86);
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  position: relative;
  width: min(900px, 100%);
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
}

.modal-media {
  min-height: 420px;
  background: var(--brown-dark);
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 44px;
}

.modal-price {
  margin: 8px 0 22px;
  font: 300 42px "Barlow Condensed", sans-serif;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--warm-white);
  cursor: pointer;
}

.site-footer {
  background: var(--brown-dark);
  color: rgba(253, 246, 240, 0.72);
  padding: 78px 56px 36px;
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p,
.footer-contact {
  line-height: 1.8;
  font-style: normal;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h2,
.footer-contact span {
  display: block;
  margin: 0 0 10px;
  color: var(--warm-white);
  font: 600 10px "Barlow Condensed", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-contact span {
  margin: 16px 0 2px;
  color: var(--peach);
}

.footer-col a,
.footer-contact a {
  color: rgba(253, 246, 240, 0.72);
  text-decoration: none;
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  color: rgba(253, 246, 240, 0.48);
  font-size: 12px;
}

.room-hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: var(--brown-dark);
  overflow: hidden;
}

.room-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59, 45, 40, 0.2), rgba(59, 45, 40, 0.82)), var(--hero-image) center / cover no-repeat;
}

.room-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 56px 86px;
  color: var(--warm-white);
}

.room-title {
  font-size: clamp(54px, 8vw, 106px);
  font-weight: 600;
}

.room-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 78px 56px 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.room-gallery img {
  aspect-ratio: 4 / 3;
  background: var(--peach-bg);
}

.room-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  background: var(--paper);
  border: 1px solid rgba(107, 82, 72, 0.12);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(59, 45, 40, 0.08);
}

.room-panel .price {
  margin: 8px 0 24px;
  font: 300 48px "Barlow Condensed", sans-serif;
}

.fact {
  border-top: 1px solid rgba(107, 82, 72, 0.13);
  padding: 15px 0;
}

.fact span {
  display: block;
  color: var(--brown-light);
  font: 600 10px "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
}

.amenities li {
  list-style: none;
  background: var(--peach-bg);
  color: var(--brown-mid);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 18px 24px;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open {
    background: var(--warm-white);
    color: var(--brown-dark);
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
    gap: 18px;
  }

  .site-header.nav-open .nav-actions {
    justify-content: space-between;
    padding-top: 18px;
  }

  .nav-book {
    color: var(--brown-dark);
    border-color: rgba(107, 82, 72, 0.2);
  }

  .hero-content,
  .room-hero-content {
    padding: 132px 24px 128px;
  }

  .hero {
    overflow: hidden;
  }

  .search-wrap {
    position: relative;
    top: auto;
    padding: 0 16px 48px;
    margin-top: -104px;
  }

  .search-bar {
    grid-template-columns: 1fr;
    border-radius: 24px;
    width: min(100%, var(--max));
    box-shadow: var(--shadow);
  }

  .search-field,
  .best-price-note {
    border-left: 0;
    border-top: 1px solid rgba(107, 82, 72, 0.12);
  }

  .search-field:first-child {
    border-top: 0;
  }

  .date-picker,
  .guest-dropdown {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    width: auto;
    max-height: calc(100vh - 112px);
    overflow: auto;
  }

  .calendar-months,
  .about-grid,
  .location-section,
  .contact-inner,
  .room-main,
  .modal {
    grid-template-columns: 1fr;
  }

  .section,
  .rooms-section,
  .contact-section,
  .testimonials,
  .avail-section {
    padding: 64px 24px;
  }

  .about-copy,
  .location-copy {
    padding: 56px 24px;
    width: 100%;
  }

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

  .room-card,
  .room-card.featured {
    min-height: 280px;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .gallery-strip figure {
    min-height: 190px;
  }

  .room-main {
    padding: 56px 24px 72px;
  }

  .room-panel {
    position: static;
  }

  .site-footer {
    padding: 58px 24px 30px;
  }
}

@media (max-width: 620px) {
  .hero h1,
  .room-title {
    font-size: 54px;
  }

  .feature-grid,
  .room-gallery,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .avail-card {
    grid-template-columns: 1fr;
  }

  .avail-card img {
    height: 220px;
  }
}
