@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ========================================
   RESET & BASE
   ======================================== */

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

:root {
  --terracotta: #B85C38;
  --terracotta-light: #D4805E;
  --sand: #F5E6D3;
  --sand-light: #FAF6F1;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2E2E2E;
  --teal: #1B6B6D;
  --teal-light: #238B8E;
  --cream: #FDF9F4;
  --warm-gray: #8A7E76;
  --warm-gray-light: #B5ADA6;
  --gold-muted: #C9A96E;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Karla', -apple-system, sans-serif;

  --nav-height: 72px;
  --section-pad: clamp(60px, 10vw, 120px);
  --side-pad: clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--terracotta);
  color: var(--white);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(253, 249, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.nav--scrolled .nav__logo {
  color: var(--charcoal);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav--scrolled .nav__link {
  color: var(--charcoal-soft);
}

.nav--scrolled .nav__link:hover {
  color: var(--terracotta);
}

.nav__cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s ease, transform 0.3s ease;
}

.nav--scrolled .nav__toggle span {
  background: var(--charcoal);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--side-pad);
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.75) 0%,
    rgba(20, 18, 15, 0.3) 40%,
    rgba(20, 18, 15, 0.15) 100%
  );
}

.hero__content {
  max-width: 720px;
  color: var(--white);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 92, 56, 0.3);
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 107, 109, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--terracotta);
  padding: 14px 0;
  letter-spacing: 0.1em;
}

.btn--ghost::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.btn--ghost:hover::after {
  width: 35px;
}

/* ========================================
   SECTIONS — GENERAL
   ======================================== */

.section {
  padding: var(--section-pad) var(--side-pad);
}

.section--sand {
  background: var(--sand);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section--charcoal .section-label {
  color: var(--gold-muted);
}

.section__header {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section__header h2 {
  margin-bottom: 1rem;
}

.section__header p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

.section--charcoal .section__header p {
  color: var(--warm-gray-light);
}

/* ========================================
   INTRO / ABOUT
   ======================================== */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro__text p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.intro__text p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
}

.intro__image {
  position: relative;
}

.intro__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--terracotta);
  opacity: 0.3;
  z-index: -1;
}

/* ========================================
   ROOMS PREVIEW
   ======================================== */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 40px);
  transition: background 0.4s ease;
}

.room-card:hover .room-card__overlay {
  background: linear-gradient(to top, rgba(20,18,15,0.8) 0%, rgba(20,18,15,0.1) 60%);
}

.room-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 0.3rem;
}

.room-card__detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* ========================================
   AMENITIES
   ======================================== */

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4vw, 50px);
  max-width: 1200px;
  margin: 0 auto;
}

.amenity {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.amenity__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold-muted);
  font-family: var(--font-display);
  font-weight: 300;
}

.amenity h4 {
  margin-bottom: 0.6rem;
  color: var(--white);
}

.amenity p {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  line-height: 1.7;
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 1000px;
  margin: 0 auto;
}

.review {
  padding: clamp(28px, 3vw, 40px);
  background: var(--white);
  border-left: 3px solid var(--terracotta);
  position: relative;
}

.review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.review__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.3;
  display: block;
  line-height: 0.6;
  margin-bottom: 0.5rem;
}

.review__author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.review__source {
  font-size: 0.72rem;
  color: var(--warm-gray-light);
  margin-top: 2px;
}

/* ========================================
   LOCATION
   ======================================== */

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 500px;
}

.location__map {
  position: relative;
  min-height: 400px;
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.8) contrast(1.05);
}

.location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px);
  background: var(--sand);
}

.location__info h2 {
  margin-bottom: 1.5rem;
}

.location__distances {
  margin: 2rem 0;
}

.location__distance {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.location__distance span:last-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
  margin-left: 1rem;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-mosaic__item {
  overflow: hidden;
  position: relative;
}

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-mosaic__item:hover img {
  transform: scale(1.04);
}

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

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

/* ========================================
   NEIGHBORHOOD / EXPLORE
   ======================================== */

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.explore-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.explore-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(to top, rgba(20,18,15,0.75) 0%, transparent 55%);
}

.explore-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  margin-bottom: 0.3rem;
}

.explore-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ========================================
   CONTACT / CTA SECTION
   ======================================== */

.cta-section {
  text-align: center;
  padding: var(--section-pad) var(--side-pad);
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(184,92,56,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  color: var(--warm-gray-light);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info__item {
  margin-bottom: 2rem;
}

.contact-info__item h4 {
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
}

.contact-info__item a:hover {
  color: var(--terracotta);
}

.contact-form-wrapper iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 2px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: clamp(40px, 5vw, 60px) var(--side-pad);
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--white);
}

.footer__credit {
  font-size: 0.72rem;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}

.footer__credit a {
  color: var(--terracotta-light);
  transition: color 0.3s ease;
}

.footer__credit a:hover {
  color: var(--terracotta);
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */

.lang-toggle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav--scrolled .lang-toggle {
  color: var(--warm-gray);
}

.lang-toggle a {
  transition: color 0.3s ease;
}

.lang-toggle a:hover,
.lang-toggle a.active {
  color: var(--white);
}

.nav--scrolled .lang-toggle a:hover,
.nav--scrolled .lang-toggle a.active {
  color: var(--terracotta);
}

/* ========================================
   PAGE HERO (subpages)
   ======================================== */

.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--side-pad);
  padding-bottom: clamp(40px, 6vh, 70px);
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.7) 0%,
    rgba(20, 18, 15, 0.2) 60%,
    rgba(20, 18, 15, 0.1) 100%
  );
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.75);
}

/* ========================================
   ROOMS PAGE
   ======================================== */

.room-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 500px;
}

.room-detail:nth-child(even) {
  direction: rtl;
}

.room-detail:nth-child(even) > * {
  direction: ltr;
}

.room-detail__image {
  overflow: hidden;
}

.room-detail__image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.room-detail__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 70px);
  background: var(--sand-light);
}

.room-detail:nth-child(even) .room-detail__info {
  background: var(--sand);
}

.room-detail__info h3 {
  margin-bottom: 1rem;
}

.room-detail__info p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.room-feature {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 14px;
  border: 1px solid rgba(27, 107, 109, 0.25);
  border-radius: 1px;
}

/* ========================================
   PRACTICAL INFO
   ======================================== */

.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.practical-item {
  text-align: center;
  padding: 2rem;
}

.practical-item h4 {
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}

.practical-item p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--terracotta);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__image {
    order: -1;
  }

  .intro__image img {
    height: 350px;
  }

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

  .location-split {
    grid-template-columns: 1fr;
  }

  .location__map {
    min-height: 350px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

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

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

  .room-detail:nth-child(even) {
    direction: ltr;
  }

  .room-detail__image img {
    min-height: 300px;
    max-height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-mosaic__item--tall {
    grid-row: span 1;
  }

  .gallery-mosaic__item--wide {
    grid-column: span 1;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .explore-card {
    aspect-ratio: 16/10;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero {
    height: 45vh;
    min-height: 320px;
  }

  .section__header {
    text-align: center;
  }

  .section-label {
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --side-pad: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }

  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
