/* ==========================================================================
   Donna Maria Rooms & Suites — Design System
   Palette: sabbia/beige, blu notte, ottone/oro caldo — eleganza boutique
   ========================================================================== */

:root {
  --color-sand-50: #faf7f2;
  --color-sand-100: #f4eee3;
  --color-sand-200: #e9dfcc;
  --color-sand-300: #d8c9ac;
  --color-navy-900: #10233a;
  --color-navy-800: #17324f;
  --color-navy-700: #203f61;
  --color-navy-600: #2b4f75;
  --color-brass-400: #c9a462;
  --color-brass-500: #b8924a;
  --color-brass-600: #a17e3b;
  --color-ink: #2a2620;
  --color-ink-soft: #5c554a;
  --color-white: #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 60px -20px rgba(16, 35, 58, 0.25);
  --shadow-card: 0 12px 30px -12px rgba(16, 35, 58, 0.18);
  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-sand-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-navy-900);
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-navy-900);
  color: var(--color-white);
}
.btn--primary:hover { background: var(--color-navy-700); transform: translateY(-2px); }
.btn--brass {
  background: var(--color-brass-500);
  color: var(--color-white);
}
.btn--brass:hover { background: var(--color-brass-600); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--color-navy-900);
  border-color: var(--color-navy-900);
}
.btn--outline:hover { background: var(--color-navy-900); color: var(--color-white); }
.btn--light {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}
.btn--light:hover { background: rgba(255,255,255,0.22); }
.btn--small { padding: 10px 22px; font-size: 0.85rem; }
.btn--nav { flex-shrink: 0; }
.btn--full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.brand__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-navy-900);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.brand__text small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brass-600);
  font-weight: 500;
}

.main-nav__list {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav__list a {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.main-nav__list a:hover,
.main-nav__list a.is-active {
  color: var(--color-navy-900);
}
.main-nav__list a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--color-brass-500);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-navy-900);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,35,58,0.55) 0%, rgba(16,35,58,0.72) 55%, rgba(16,35,58,0.92) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 24px 90px;
}
.hero--page { min-height: 55vh; }
.hero--page .hero__content { padding: 110px 24px 70px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-400);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--color-brass-400);
}
.eyebrow--dark { color: var(--color-brass-600); }

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--sand { background: var(--color-sand-100); }
.section--navy {
  background: var(--color-navy-900);
  color: rgba(255,255,255,0.85);
}
.section--navy h2 { color: var(--color-white); }
.section--navy .eyebrow { color: var(--color-brass-400); }

.section__head {
  max-width: 680px;
  margin: 0 0 52px;
}
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.section__head p {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}
.section--navy .section__head p { color: rgba(255,255,255,0.72); }

/* ---------- Welcome / two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col__text p { color: var(--color-ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.two-col__media { position: relative; }
.two-col__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.two-col__media-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-white);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.two-col__media-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-navy-900);
}
.two-col__media-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brass-600);
}

/* ---------- Feature grid (Plus / punti di forza) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-sand-100);
  color: var(--color-brass-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

/* ---------- Services (Home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}
.service-item:hover { transform: translateY(-4px); }
.service-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-sand-100);
  color: var(--color-brass-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.service-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-navy-900);
}

/* ---------- Services strip (Rooms list page) ---------- */
.services-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.services-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-sand-200);
  color: var(--color-navy-800);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.services-strip__badge i { color: var(--color-brass-600); }

/* ---------- Rooms grid ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.room-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-sand-200);
}
.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-sand-200), var(--color-sand-300));
  color: var(--color-navy-800);
}
.room-card__placeholder i { font-size: 2rem; opacity: 0.6; }
.room-card__placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.room-card__beds {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16, 35, 58, 0.85);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.room-card__body p {
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  margin-bottom: 16px;
}
.room-card__amenities {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  flex: 1;
}
.room-card__amenities li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
}
.room-card__amenities i {
  color: var(--color-brass-600);
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
}
.room-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-navy-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.room-card__link i { transition: transform 0.2s ease; font-size: 0.78rem; }
.room-card:hover .room-card__link i { transform: translateX(4px); }

/* ---------- Room detail page ---------- */
.room-hero {
  padding: 130px 0 40px;
  background: var(--color-sand-100);
}
.room-hero__crumb {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.room-hero__crumb a { color: var(--color-navy-700); font-weight: 500; }
.room-hero__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.room-hero__title h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.room-hero__beds {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
}

.room-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  padding: 56px 0 96px;
}
.room-detail__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.room-detail__placeholder {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--color-sand-200), var(--color-navy-800));
  color: var(--color-white);
  text-align: center;
  padding: 30px;
}
.room-detail__placeholder i { font-size: 2.6rem; color: var(--color-brass-400); }
.room-detail__placeholder p { font-size: 0.95rem; opacity: 0.85; max-width: 320px; }
.room-detail__amenities {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.room-detail__amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--color-ink);
}
.room-detail__amenities i {
  color: var(--color-brass-600);
  font-size: 0.9rem;
}
.room-detail__text p {
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.room-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--color-sand-200);
}
.room-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--color-navy-800);
}

/* ---------- Style / experience gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid img {
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid .gallery-item--tall { grid-row: span 2; }
.gallery-grid .gallery-item--tall img { aspect-ratio: auto; height: 100%; }
.room-gallery { margin-bottom: 40px; }

/* ---------- Location ---------- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
}
.info-list i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-sand-100);
  color: var(--color-brass-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-list strong { display: block; color: var(--color-navy-900); }
.info-list span { color: var(--color-ink-soft); font-size: 0.92rem; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: none;
  width: 100%;
  height: 440px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
  padding: 72px 60px;
  text-align: center;
  color: var(--color-white);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,164,98,0.18), transparent 55%);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
}
.cta-banner__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.contact-card .info-list { margin-top: 0; }

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.form-card h3 { margin-bottom: 10px; }
.form-card__hint {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-navy-900);
}
.form-field input,
.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--color-sand-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--color-sand-50);
  color: var(--color-ink);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-brass-500);
}
.form-privacy {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  margin-top: 18px;
  margin-bottom: 22px;
}
.form-note {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-sand-100);
  color: var(--color-navy-800);
  font-size: 0.9rem;
}
.form-note.is-visible { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-900);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 80px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer__logo {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}
.site-footer__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 280px;
}
.site-footer__col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__col ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}
.site-footer__col ul a:hover { color: var(--color-brass-400); }
.site-footer__plain {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__plain li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.site-footer__plain i {
  color: var(--color-brass-400);
  margin-top: 3px;
}
.site-footer__col .btn { margin-top: 18px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- WhatsApp bubble ---------- */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-brass-500);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
.whatsapp-bubble:hover {
  background: var(--color-brass-600);
  transform: translateY(-3px) scale(1.05);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: var(--shadow-soft), 0 0 0 0 rgba(184, 146, 74, 0.45); }
  50% { box-shadow: var(--shadow-soft), 0 0 0 10px rgba(184, 146, 74, 0); }
}
@media (max-width: 760px) {
  .whatsapp-bubble {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col__media { order: -1; }
  .room-detail { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item--tall { grid-row: auto; }
  .gallery-grid .gallery-item--tall img { aspect-ratio: 1/1; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .main-nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-sand-50);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
    box-shadow: var(--shadow-card);
    display: none;
  }
  .main-nav__list.is-open { display: flex; }
  .nav-toggle { display: block; }
  .btn--nav {
    padding: 9px 16px;
    font-size: 0.85rem;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .hero__content { padding: 120px 20px 70px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 64px 0; }
  .cta-banner { padding: 48px 26px; }
  .room-hero__title { flex-direction: column; align-items: flex-start; }
  .contact-card, .form-card { padding: 28px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
