/* ===== MOTEL REICH — Stylesheet ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* --- Local fonts --- */
@font-face {
  font-family: 'TheSeasons';
  src: url('../fonts/Fontspring-DEMO-theseasons-bd.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TheSeasons';
  src: url('../fonts/Fontspring-DEMO-theseasons-reg.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TheSeasons';
  src: url('../fonts/Fontspring-DEMO-theseasons-lt.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}

/* --- Brand variables --- */
:root {
  --beige:      #DFBE99;
  --beige-lt:   #f0e2cc;
  --beige-dk:   #c9a37c;
  --teal:       #136F63;
  --teal-dk:    #0d5249;
  --terra:      #BC4A3C;
  --terra-dk:   #9e3c30;
  --black:      #141414;
  --white:      #ffffff;
  --cream:      #faf5ed;
  --light:      #f0e8d8;
  --mid:        #7a6450;
  --muted:      #a08c76;
  --shadow:     0 2px 20px rgba(20,20,20,0.09);
  --shadow-lg:  0 8px 40px rgba(20,20,20,0.14);
  --radius:     4px;
  --font-serif: 'Cormorant Garamond', 'TheSeasons', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--light); }

/* --- Header / Nav --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--beige); }
.lang-switcher { display: flex; gap: 4px; margin-left: 0.5rem; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  padding: 3px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--beige);
  border-color: var(--beige);
  color: var(--black);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--beige);
  font-size: 1.5rem;
  padding: 4px 8px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.38);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
  padding: 4rem 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; font-weight: 700; }
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.22s;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dk); border-color: var(--teal-dk); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: #2a2a2a; }
.btn-beige {
  background: var(--beige);
  color: var(--black);
  border-color: var(--beige);
}
.btn-beige:hover { background: var(--beige-dk); border-color: var(--beige-dk); }

/* --- Section titles --- */
.section-title { text-align: center; color: var(--black); margin-bottom: 0; }
.section-subtitle {
  text-align: center; color: var(--mid);
  max-width: 600px; margin: 0 auto 3rem;
  font-size: 1rem; font-weight: 300;
}
.section-divider {
  width: 48px; height: 2px;
  background: var(--beige);
  margin: 1rem auto 1.75rem;
}

/* --- Features strip --- */
.features-strip { background: var(--black); padding: 3.5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; text-align: center;
}
.feature-item { color: rgba(255,255,255,0.75); }
.feature-icon { margin-bottom: 0.75rem; display: flex; justify-content: center; }
.feature-icon svg { width: 30px; height: 30px; color: var(--beige); }
.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--beige);
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.feature-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* --- Rooms grid --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-card-img { width: 100%; height: 240px; object-fit: cover; }
.room-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.room-card-body h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem; color: var(--black);
  font-size: 1.4rem; font-weight: 600;
}
.room-card-body > p { color: var(--mid); font-size: 0.93rem; flex: 1; margin-bottom: 1.25rem; }
.room-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--terra);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.room-card-body .btn { width: 100%; justify-content: center; }

/* --- Room detail hero --- */
.room-detail-hero {
  height: 58vh; min-height: 380px;
  background-size: cover; background-position: center;
  position: relative;
}
.room-detail-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.1) 30%, rgba(20,20,20,0.6));
}
.room-detail-hero-text {
  position: absolute; bottom: 2.5rem; left: 0; right: 0;
  z-index: 1; padding: 0 1.5rem; max-width: 1100px; margin: 0 auto;
}
.room-detail-hero-text h1 { color: var(--white); }
.room-detail-hero-text .room-price { color: var(--beige); font-size: 1.2rem; }

/* --- Room detail layout --- */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.room-gallery img {
  width: 100%; height: 190px;
  object-fit: cover;
  transition: opacity 0.2s;
  cursor: pointer;
}
.room-gallery img:hover { opacity: 0.88; }
.room-gallery img:first-child { grid-column: 1 / -1; height: 300px; }

/* --- Room description block --- */
.room-description {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}
.room-description p {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.8;
  font-weight: 300;
}

/* --- Amenities --- */
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.amenities-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--mid);
}
.amenities-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Booking sidebar --- */
.booking-sidebar {
  position: sticky; top: 90px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--beige);
}
.booking-sidebar h3 { margin-bottom: 0.4rem; color: var(--black); font-size: 1.4rem; }
.booking-sidebar .room-price { margin-bottom: 1.5rem; color: var(--black); }

.platform-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--light);
  background: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  transition: all 0.2s;
}
.platform-btn:hover { border-color: var(--teal); color: var(--teal); }
.platform-btn img { height: 20px; width: auto; }

.platform-btn.direct {
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  font-size: 0.95rem;
  padding: 1.1rem;
  box-shadow: 0 4px 20px rgba(19,111,99,0.3);
}
.platform-btn.direct:hover { background: var(--teal-dk); }
.platform-btn.direct .direct-btn-main { display: flex; align-items: center; gap: 8px; }
.direct-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
}
.booking-embed-wrap { margin-top: 0.75rem; }
.booking-embed { min-height: 300px; }

/* --- Calendar section --- */
.calendar-section { margin-top: 2.5rem; }
.calendar-section h3 { margin-bottom: 1rem; font-family: var(--font-serif); }

/* --- Back link --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--teal); }

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 440px; object-fit: cover; }
.about-text h2 { margin-bottom: 0; color: var(--black); }
.about-text p { color: var(--mid); font-weight: 300; line-height: 1.8; }
.signature { margin-top: 1.75rem; }
.signature img { height: 56px; opacity: 0.7; }
.signature small { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; letter-spacing: 0.04em; }

/* --- Cycling page --- */
.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border-left: 4px solid var(--beige);
}
.route-card h2 { color: var(--black); margin-bottom: 0.75rem; }
.route-card p { color: var(--mid); font-weight: 300; }
.route-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.25rem 0; }
.route-meta-item {
  background: var(--light);
  border-radius: 2px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem; color: var(--black);
}
.route-meta-item strong { color: var(--teal); }
.route-sections { margin-top: 1.75rem; }
.route-section-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.9rem;
}
.route-section-row:last-child { border-bottom: none; }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.equipment-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.1rem; text-align: center;
  box-shadow: var(--shadow); font-size: 0.88rem; color: var(--mid);
}
.equipment-item .eq-icon { margin-bottom: 0.5rem; display: flex; justify-content: center; }
.equipment-item .eq-icon svg { width: 26px; height: 26px; color: var(--teal); }

/* --- Gallery --- */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.gallery-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--black); border-color: var(--black); color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 6px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(20,20,20,0.95);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 2px; }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 1.75rem; color: var(--white); background: none; border: none; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: rgba(255,255,255,0.5);
  background: none; border: none; padding: 0.5rem 1rem; transition: color 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-icon { min-width: 2rem; margin-top: 0.1rem; display: flex; }
.contact-icon svg { width: 22px; height: 22px; color: var(--teal); }
.contact-item strong {
  display: block; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 0.25rem; font-weight: 600;
}
.contact-item a:hover { color: var(--teal); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* --- Footer --- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 34px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-brand p { font-size: 0.83rem; line-height: 1.8; }
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 0.9rem; color: var(--beige);
  margin-bottom: 1rem; font-weight: 600; letter-spacing: 0.03em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.83rem; opacity: 0.65; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 1; color: var(--beige); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem;
}
.footer-awards { display: flex; gap: 0.75rem; align-items: center; }
.footer-awards img { height: 34px; opacity: 0.55; filter: grayscale(1); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--beige); color: var(--beige); }

/* --- Cookie notice --- */
.cookie-notice {
  position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem;
  max-width: 540px; margin: 0 auto;
  background: var(--black);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
  border-top: 2px solid var(--beige);
  z-index: 500;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.cookie-notice.visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie-notice span { flex: 1; font-size: 0.85rem; line-height: 1.55; }
.cookie-notice a { color: var(--beige); text-decoration: underline; }
.cookie-notice-btns { display: flex; gap: 0.5rem; }
.cookie-accept, .cookie-decline {
  padding: 0.45rem 1.1rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600; border: none;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.cookie-accept { background: var(--teal); color: var(--white); }
.cookie-accept:hover { background: var(--teal-dk); }
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
}
.cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* --- Page hero (inner pages) --- */
.page-hero {
  background: var(--black);
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; font-weight: 300; }

/* --- Prose (legal pages) --- */
.prose { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.prose h2 { margin: 2.25rem 0 0.75rem; color: var(--black); font-size: 1.35rem; }
.prose h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.prose ul, .prose ol { margin: 0.5rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; color: var(--mid); }
.prose p { color: var(--mid); font-weight: 300; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.prose th, .prose td { padding: 0.65rem 0.75rem; border: 1px solid var(--light); font-size: 0.88rem; }
.prose th { background: var(--light); font-weight: 600; }
.prose .last-updated { color: var(--muted); font-size: 0.84rem; margin-bottom: 2rem; }
.prose hr { border: none; border-top: 1px solid var(--light); margin: 2.5rem 0; }
.prose code { background: var(--light); padding: 1px 5px; border-radius: 2px; font-size: 0.88em; }

/* --- 404 --- */
.not-found {
  min-height: 65vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
}
.not-found h1 { font-size: 8rem; color: var(--light); font-family: var(--font-serif); line-height: 1; }
.not-found h2 { margin-bottom: 1rem; }
.not-found p { color: var(--mid); margin-bottom: 2.5rem; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .room-detail-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .booking-sidebar { position: static; }
}
@media (max-width: 700px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black);
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.9rem; border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery img { height: 230px; }
  .room-gallery img:first-child { height: 270px; }
  .amenities-list { grid-template-columns: 1fr; }
  .route-section-row { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero { min-height: 75vh; }
  section { padding: 3.5rem 0; }
  .about-img img { height: 300px; }
}
