:root {
  --bg: #0a1628;
  --bg2: #162a4a;
  --panel: rgba(26, 58, 92, 0.6);
  --panel2: #1a3a5c;
  --gold: #d4af37;
  --gold2: #f4d675;
  --text: #f7fafc;
  --muted: #a0aec0;
  --line: rgba(212, 175, 55, 0.15);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(145deg, #060d1a, #0f2440 55%, #081628);
  color: var(--text);
  font: 14px/1.5 "Segoe UI", Arial, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.06), transparent 30%),
    radial-gradient(circle at 10% 50%, rgba(66, 153, 225, 0.05), transparent 25%);
  z-index: -1;
}

a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 70px);
  gap: 28px;
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  color: var(--gold2);
  font-size: 22px;
  background: rgba(212, 175, 55, 0.08);
}
.brand b {
  display: block;
  color: var(--gold2);
  font: 20px Georgia;
  letter-spacing: 1px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 4px;
}

nav { flex: 1; display: flex; justify-content: center; gap: 25px; }
nav a {
  color: var(--muted);
  font-size: 12px;
  padding: 29px 0 24px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
nav a:hover, nav a.active {
  color: #fff;
  border-color: var(--gold2);
}

/* ===== CHIC BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.btn:active { transform: scale(0.98); }

.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2), var(--gold));
  background-size: 200% 200%;
  color: #0a1628;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.3);
}
.gold:hover {
  background-position: 100% 100%;
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.45);
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: white;
  backdrop-filter: blur(10px);
}
.glass:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
}

.menu { display: none; background: none; border: 0; color: #fff; font-size: 25px; }

/* ===== HERO ===== */
.hero {
  height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 13, 26, 0.92), rgba(15, 36, 64, 0.75) 50%, rgba(6, 13, 26, 0.85));
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold2);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.slider-arrow:hover {
  background: var(--gold);
  color: #0a1628;
  transform: translateY(-50%) scale(1.05);
}
.left { left: 30px; }
.right { right: 30px; }
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 650px;
  padding: 0 clamp(24px, 6vw, 80px);
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold2);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.stars span {
  font-size: 13px;
  color: var(--muted);
}
.hero h1 {
  font: 700 clamp(42px, 5vw, 62px)/1.1 Georgia, serif;
  color: #fff;
  margin: 0 0 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 50px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats span {
  font-size: 12px;
  color: var(--muted);
}
.slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  width: 28px;
  border-radius: 5px;
}

/* ===== BOOKING ===== */
.booking-wrap {
  max-width: 1100px;
  margin: -70px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.booking-card {
  background: var(--panel);
  backdrop-filter: blur(25px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-heading {
  padding: 32px 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.booking-heading h2 {
  font: 600 24px Georgia, serif;
  color: var(--gold2);
  margin: 8px 0 0;
}
.booking-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a1628;
  font: 700 11px/1 "Segoe UI";
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 1px;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 36px;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.booking-form input,
.booking-form select {
  height: 48px;
  padding: 0 16px;
  background: rgba(15, 30, 55, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s;
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.room-select { grid-column: span 2; }
.booking-submit {
  grid-column: span 1;
  height: 48px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a1628;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-submit:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
.booking-result {
  padding: 0 36px 24px;
  font-size: 14px;
  color: var(--gold2);
}

/* ===== QUICK FEATURES ===== */
.quick-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}
.quick-features > div {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
.quick-features > div:hover {
  background: rgba(212, 175, 55, 0.05);
}
.quick-features > div:last-child { border-right: 0; }
.quick-features b {
  font-size: 24px;
  color: var(--gold);
}
.quick-features strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}
.quick-features small {
  font-size: 12px;
  color: var(--muted);
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px clamp(20px, 5vw, 70px);
}
.section.soft {
  background: rgba(22, 42, 74, 0.3);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-head.center { justify-content: center; text-align: center; }
.section-head h2 {
  font: 600 40px Georgia, serif;
  color: var(--gold2);
  margin: 12px 0 0;
}
.section-head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-top: 10px;
}
.text-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  transition: color 0.3s;
}
.text-link:hover { color: var(--gold2); }

/* ===== ROOMS ===== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.room-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 175, 55, 0.3);
}
.room-photo {
  height: 200px;
  background: var(--bg2) center/cover;
  position: relative;
}
.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a1628;
  font: 700 10px/1 "Segoe UI";
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 1px;
}
.room-body {
  padding: 24px;
}
.room-body h3 {
  font: 600 18px Georgia, serif;
  color: var(--text);
  margin-bottom: 8px;
}
.room-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.price {
  font: 700 22px Georgia, serif;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
}
.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 175, 55, 0.3);
}
.service-grid span {
  display: inline-block;
  font: 700 32px Georgia, serif;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.service-grid b {
  display: block;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
.service-grid p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== OFFERS ===== */
.offers-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.offer-main {
  background: linear-gradient(135deg, var(--panel), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-row: span 2;
}
.offer-main strong {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0;
}
.offer-main h2 {
  font: 600 32px Georgia, serif;
  color: var(--text);
}
.offer-main p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
}

.video-card, .project-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.video-card:hover, .project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.video-poster {
  height: 180px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-poster button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border: none;
  color: #0a1628;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.video-poster button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}
.video-poster span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
}
.video-card h3, .project-card h3 {
  font: 600 18px Georgia, serif;
  padding: 20px 24px 8px;
  color: var(--text);
}
.video-card p, .project-card p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 24px 24px;
}

.project-photo {
  height: 180px;
  background: var(--bg2) center/cover;
}
.project-body {
  padding: 24px;
}
.project-body b {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery-count {
  font-size: 14px;
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.gallery-item {
  background: var(--bg2) center/cover;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 13, 26, 0.85), transparent 60%);
}
.gallery-item span {
  position: relative;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-row: span 2; }

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about h2 {
  font: 600 42px Georgia, serif;
  color: var(--gold2);
  margin: 12px 0 20px;
}
.about p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-points span {
  font-size: 14px;
  color: var(--text);
  padding: 12px 16px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.about-photo {
  min-height: 420px;
  background: linear-gradient(135deg, var(--panel), rgba(212, 175, 55, 0.1));
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo > div { text-align: center; }
.about-photo span {
  display: block;
  font: 700 48px Georgia, serif;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-photo b {
  display: block;
  color: var(--muted);
  letter-spacing: 8px;
  font-size: 14px;
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact h2 {
  font: 600 38px Georgia, serif;
  color: var(--gold2);
  margin: 12px 0 16px;
}
.contact > div > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list span {
  font-size: 14px;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  height: 52px;
  padding: 0 20px;
  background: rgba(15, 30, 55, 0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s;
}
.contact-form textarea {
  height: 140px;
  padding: 16px 20px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.contact-form .btn {
  align-self: flex-start;
}
.contact-form small {
  font-size: 13px;
  color: var(--success);
}

/* ===== FOOTER ===== */
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px clamp(20px, 5vw, 70px);
  background: rgba(6, 13, 26, 0.8);
  border-top: 1px solid var(--line);
}
.footer-brand p {
  color: var(--muted);
  margin-top: 12px;
}
footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
footer a, footer p {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}
footer a:hover { color: var(--gold2); }
.news-input {
  display: flex;
  gap: 8px;
}
.news-input input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  background: rgba(15, 30, 55, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
}
.news-input input:focus {
  outline: none;
  border-color: var(--gold);
}
.news-input button {
  width: 46px;
  height: 46px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a1628;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.news-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background: linear-gradient(135deg, #162a4a, #0d1f3c);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.modal-box #close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}
.modal-box #close:hover {
  background: rgba(229, 62, 62, 0.2);
  color: #fc8181;
}
.modal-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-photo {
  min-height: 320px;
  background: var(--bg2) center/cover;
}
.modal-room > div {
  padding: 36px;
}
.modal-price {
  font: 700 26px Georgia, serif;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  nav { gap: 14px; }
  .booking-form { grid-template-columns: 1fr 1fr 1fr; }
  .room-select { grid-column: span 2; }
  .booking-submit { grid-column: span 1; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-section { grid-template-columns: 1fr 1fr; }
  .offer-main { grid-row: span 2; }
  .quick-features { grid-template-columns: repeat(3, 1fr); }
  .quick-features > div:nth-child(3) { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  .topbar { height: 64px; padding: 0 18px; }
  .brand { min-width: 0; }
  .brand b { font-size: 15px; }
  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 13, 26, 0.98);
    padding: 12px 20px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }
  nav.open { display: flex; }
  nav a { padding: 12px; }
  .top-book { display: none; }
  .menu { display: block; margin-left: auto; }
  .hero {
    height: auto;
    min-height: 620px;
    padding: 65px 7% 95px;
  }
  .hero h1 { font-size: 49px; }
  .hero-image { background-position: 60% center; }
  .hero-stats { gap: 15px; flex-wrap: wrap; }
  .booking-wrap { margin: 20px auto 0; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .room-select, .booking-submit { grid-column: span 2; }
  .quick-features { grid-template-columns: 1fr 1fr; }
  .quick-features > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-features > div:last-child { grid-column: span 2; }
  .offers-section, .about, .contact { grid-template-columns: 1fr; }
  .offer-main { grid-row: auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-row: span 1; }
  .section { padding: 65px 0; }
  .section h2, .contact h2 { font-size: 35px; }
  .about h2 { font-size: 40px; }
  .about-photo { min-height: 330px; }
  footer { grid-template-columns: 1fr 1fr; }
  .copyright { margin-top: 15px; }
  .modal-room { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .booking-form { grid-template-columns: 1fr; }
  .room-select, .booking-submit { grid-column: auto; }
  .quick-features { grid-template-columns: 1fr; }
  .quick-features > div:last-child { grid-column: auto; }
  .room-grid, .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .hero-stats strong { font-size: 18px; }
}