/* Châu Sơn Garden Resort - Style */

:root {
  --green-deep: #1f4a1f;
  --green: #2d6b2d;
  --green-soft: #6b8e5a;
  --gold: #c9a961;
  --gold-light: #e0c680;
  --cream: #f7f0df;
  --cream-soft: #fdfaf2;
  --ink: #1c1c1c;
  --ink-soft: #555;
  --line: #e9e2cf;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 74, 31, 0.12);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--ink-soft); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-light); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  transition: color .3s;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}
.scrolled .brand-main { color: var(--green-deep); }
.scrolled .brand-sub { color: var(--gold); }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.main-nav a:hover::after { width: 100%; }
.scrolled .main-nav a { color: var(--ink); }

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .25s;
  border: 1px solid var(--gold);
}
.cta-btn:hover { background: var(--green-deep); border-color: var(--green-deep); }
.cta-btn-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.cta-btn-light:hover { background: var(--white); color: var(--green-deep); border-color: var(--white); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.lang-switch a {
  color: rgba(255,255,255,.6);
  padding: 4px 2px;
  transition: color .2s;
}
.lang-switch a.active { color: var(--white); }
.lang-switch a:hover { color: var(--gold-light); }
.lang-switch span { color: rgba(255,255,255,.35); }
.scrolled .lang-switch a { color: var(--ink-soft); }
.scrolled .lang-switch a.active { color: var(--green-deep); }
.scrolled .lang-switch span { color: var(--line); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all .3s;
}
.scrolled .menu-toggle span { background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out forwards;
}
@keyframes slowZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,74,31,0.3) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  color: var(--white);
  max-width: 760px;
  padding-left: calc((100vw - 1240px) / 2 + 28px);
}
@media (max-width: 1240px) { .hero-content { padding-left: 28px; } }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.cta-link {
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.cta-link:hover { border-color: var(--gold-light); }
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  z-index: 3;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* ===== Intro ===== */
.intro { padding: 120px 0 80px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.intro-text p { font-size: 1.05rem; margin-bottom: 1.2rem; }
.intro-text p:last-child { margin-bottom: 0; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-stats > div { text-align: center; }
.intro-stats strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.intro-stats span {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== Sections general ===== */
section { padding: 110px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; }

/* ===== Rooms ===== */
.rooms { background: var(--cream); }
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-img {
  height: 320px;
  background-size: cover;
  background-position: center;
}
.room-body { padding: 32px 34px 36px; }
.room-body h3 { margin-bottom: 8px; }
.room-meta {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.rooms-amenities {
  margin-top: 70px;
  padding: 50px 60px;
  background: var(--white);
  text-align: center;
}
.rooms-amenities h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.rooms-amenities ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
}
.rooms-amenities li {
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
  padding-left: 18px;
}
.rooms-amenities li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== Facilities ===== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.facility {
  background: var(--white);
  padding: 56px 36px 52px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(201,169,97,.18);
  overflow: hidden;
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .55s cubic-bezier(.2,.7,.2,1),
    border-color .4s ease,
    background .4s ease;
}
.facility::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.facility::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,97,.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.facility:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(31,74,31,.09);
  border-color: rgba(201,169,97,.35);
  background: #fff;
}
.facility:hover::before { width: 80px; }
.facility:hover::after { opacity: 1; }

.facility-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 30px;
  display: block;
  color: var(--gold);
  transition:
    transform .65s cubic-bezier(.34,1.56,.64,1),
    color .4s ease,
    stroke-width .4s ease;
}
.facility:hover .facility-icon {
  transform: translateY(-4px);
  color: var(--green);
}

.facility h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: 0.005em;
}
.facility h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .55;
  transition: width .5s cubic-bezier(.2,.7,.2,1), opacity .5s ease;
}
.facility:hover h4::after { width: 52px; opacity: 1; }

.facility p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ===== Events ===== */
.events { background: var(--cream); }
.event-list { display: flex; flex-direction: column; gap: 80px; }
.event-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.event-item.reverse { direction: rtl; }
.event-item.reverse > * { direction: ltr; }
.event-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.event-body h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.event-body p { font-size: 1.05rem; }

/* ===== Discover / Location banner ===== */
.discover {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0;
  color: var(--white);
  text-align: center;
}
.discover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,74,31,.55) 0%, rgba(0,0,0,.45) 100%);
}
.discover-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.discover h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}
.discover p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .discover { background-attachment: scroll; padding: 110px 0; }
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-grid > div {
  background-size: cover;
  background-position: center;
  transition: transform .4s;
  cursor: pointer;
}
.gallery-grid > div:hover { transform: scale(1.02); }
.gallery-grid > div:nth-child(1) { grid-row: span 2; }
.gallery-grid > div:nth-child(6) { grid-row: span 2; }

/* ===== Booking ===== */
.booking {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,169,97,.1) 0%, transparent 40%);
}
.booking-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.booking h2 { color: var(--white); margin-bottom: 1rem; }
.booking p { color: rgba(255,255,255,.8); font-size: 1.08rem; margin-bottom: 2.5rem; }
.book-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.book-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all .25s;
  border-radius: 2px;
}
.book-btn:hover { background: var(--white); color: var(--green-deep); border-color: var(--white); }
.book-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}
.book-btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--green-deep); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: stretch;
}
.contact-info { margin-top: 30px; }
.contact-info p {
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--ink);
}
.contact-info strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-info a { color: var(--green-deep); border-bottom: 1px solid transparent; transition: border-color .2s; }
.contact-info a:hover { border-color: var(--green-deep); }
.contact-map {
  min-height: 420px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-brand .brand-main { color: var(--white); font-size: 1.8rem; }
.footer-brand .brand-sub { color: var(--gold-light); }
.footer-tag { color: rgba(255,255,255,.6); max-width: 300px; }
.site-footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.site-footer a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}

/* ===== Premium polish: reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--stagger, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible, .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Hero staggered entrance ===== */
.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroEnter 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-content > .eyebrow { animation-delay: .25s; }
.hero-content > h1 { animation-delay: .4s; }
.hero-content > p { animation-delay: .6s; }
.hero-content > .hero-actions { animation-delay: .8s; }
@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons: shimmer + lift ===== */
.cta-btn, .book-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .5s ease,
    color .35s ease;
}
.cta-btn::after, .book-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transition: left .85s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  pointer-events: none;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31,74,31,.22);
}
.cta-btn:hover::after, .book-btn:hover::after { left: 120%; }
.book-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.18); }

.cta-link {
  position: relative;
  transition: color .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.cta-link:hover { transform: translateX(4px); }

/* ===== Brand hover ===== */
.brand { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.brand:hover { transform: translateX(2px); }
.brand-main, .brand-sub {
  transition: letter-spacing .45s ease, color .3s ease;
}
.brand:hover .brand-sub { letter-spacing: 0.34em; }

/* ===== Nav links ===== */
.main-nav a { transition: color .25s ease, transform .3s cubic-bezier(.2,.7,.2,1); }
.main-nav a:hover { color: var(--gold-light); transform: translateY(-1px); }
.scrolled .main-nav a:hover { color: var(--gold); }
.main-nav a::after { transition: width .45s cubic-bezier(.2,.7,.2,1); }

/* ===== Room cards polish ===== */
.room-card {
  overflow: hidden;
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .55s cubic-bezier(.2,.7,.2,1);
}
.room-card .room-img {
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(31,74,31,.18);
}
.room-card:hover .room-img { transform: scale(1.06); }
.room-card h3 {
  transition: color .35s ease;
}
.room-card:hover h3 { color: var(--gold); }

/* ===== Event images ===== */
.event-img {
  position: relative;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), box-shadow .7s;
}
.event-item:hover .event-img {
  transform: scale(1.015) translateY(-4px);
  box-shadow: 0 40px 80px rgba(0,0,0,.22);
}

/* ===== Gallery polish ===== */
.gallery-grid > div {
  position: relative;
  overflow: hidden;
  transition:
    transform .7s cubic-bezier(.2,.7,.2,1),
    filter .5s ease;
}
.gallery-grid > div::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.gallery-grid > div:hover {
  transform: scale(1.025);
  filter: brightness(1.05);
  z-index: 2;
}
.gallery-grid > div:hover::before { opacity: 1; }

/* ===== Hero scroll indicator: refined breathe ===== */
.hero-scroll {
  animation: heroScrollBreathe 2.8s cubic-bezier(.4,0,.2,1) infinite;
  opacity: .7;
}
@keyframes heroScrollBreathe {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50% { transform: translate(-50%, 8px); opacity: .95; }
}

/* ===== Contact info links ===== */
.contact-info a {
  transition: color .3s ease, border-color .3s ease, letter-spacing .3s ease;
}
.contact-info a:hover { letter-spacing: .012em; color: var(--gold); }

/* ===== Footer links ===== */
.site-footer a { transition: color .3s ease, transform .3s cubic-bezier(.2,.7,.2,1); }
.site-footer a:hover { transform: translateX(3px); }

/* ===== Stats hover ===== */
.intro-stats > div { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.intro-stats > div:hover { transform: translateY(-4px); }
.intro-stats strong { transition: color .4s ease; }
.intro-stats > div:hover strong { color: var(--gold); }

/* ===== Lang switch ===== */
.lang-switch a { transition: color .3s ease, transform .3s ease; }
.lang-switch a:hover { transform: translateY(-1px); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .main-nav, .nav-wrap > .cta-btn, .lang-switch { display: none; }
  .menu-toggle { display: flex; }
  body.nav-open .main-nav {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 99;
  }
  body.nav-open .main-nav a { color: var(--ink); font-size: 1.3rem; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .event-item, .event-item.reverse { grid-template-columns: 1fr; direction: ltr; gap: 30px; }
  .event-img { height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid > div:nth-child(1), .gallery-grid > div:nth-child(6) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .rooms-amenities { padding: 40px 24px; }
  section { padding: 80px 0; }
  .intro { padding: 100px 0 60px; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; padding: 35px 0; }
  .intro-stats strong { font-size: 2.2rem; }
  .facility-grid { grid-template-columns: 1fr; }
  .book-btn { width: 100%; }
}
