@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Barlow+Condensed:wght@300;400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --red:    #d42b2b;
  --gold:   #f0a500;
  --sun:    #ffcd3c;
  --sky:    #1a6fb5;
  --forest: #2d6a4f;
  --snow:   #f0f4f8;
  --dark:   #0f1923;
  --ink:    #1c2b38;
  --mid:    #4a6070;
  --pale:   #e8eef3;
  --white:  #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 72px;
  --radius: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
}

/* ─── Reset ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ───────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(15,25,35,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(15,25,35,0.98); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 3px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px;
  margin-left: 16px;
}
.lang-btn {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ──────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,25,35,0.5) 0%, rgba(15,25,35,0.3) 40%, rgba(15,25,35,0.7) 100%),
    var(--bg-color, #1a6fb5);
  background-size: cover;
  background-position: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(240,165,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,43,43,0.1) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}
.badge.gold { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: all 0.2s;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-cta:hover {
  background: #b82020;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

/* ─── PAGE HERO (inner pages) ───────── */
.page-hero {
  padding-top: var(--nav-h);
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,25,35,0.3) 0%, rgba(15,25,35,0.8) 100%),
    var(--bg-color, var(--sky));
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 40px 60px;
  max-width: 900px;
}

.page-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}

/* ─── LAYOUT ────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.8;
}

/* ─── CARDS ─────────────────────────── */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-img {
  height: 220px;
  background: var(--pale);
  position: relative;
  overflow: hidden;
}
.card-img-gradient {
  position: absolute;
  inset: 0;
}

.card-body {
  padding: 24px;
}
.card-tag {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── SPLIT SECTIONS ────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.accent-box.red { background: var(--red); }
.accent-box.sky { background: var(--sky); }
.accent-box.forest { background: var(--forest); }

/* ─── STATS BAR ─────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── HIGHLIGHT BAND ────────────────── */
.highlight-band {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.highlight-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.highlight-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.highlight-band .section-title { color: var(--white); }
.highlight-band .section-label { color: var(--sun); }
.highlight-band p { color: rgba(255,255,255,0.82); }

/* ─── INFO BLOCKS ───────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.info-block {
  background: var(--pale);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.info-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-block.red { border-color: var(--red); }
.info-block.sky { border-color: var(--sky); }
.info-block.forest { border-color: var(--forest); }

.info-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.info-block h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.info-block p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── SEASON TABS ───────────────────── */
.season-tabs {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.season-tab {
  flex: 1;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: var(--pale);
  color: var(--mid);
}
.season-tab.active-winter {
  background: var(--sky);
  color: var(--white);
}
.season-tab.active-summer {
  background: var(--gold);
  color: var(--dark);
}

.season-panel { display: none; }
.season-panel.active { display: block; }

/* ─── ACCOMMODATION CARDS ───────────── */
.hotel-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 24px rgba(0,0,0,0.08);
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.hotel-card-img {
  position: relative;
  overflow: hidden;
}
.hotel-card-body {
  padding: 28px 32px;
}
.hotel-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.hotel-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.amenity-tag {
  background: var(--pale);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--mid);
}

/* ─── VISUAL GRADIENT BLOCKS ────────── */
.visual-block {
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.visual-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.1;
}
.visual-block p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 400px;
}
.vb-winter { background: linear-gradient(135deg, #1a6fb5 0%, #0a3d6e 100%); }
.vb-summer { background: linear-gradient(135deg, #f0a500 0%, #d44000 100%); }
.vb-para   { background: linear-gradient(135deg, #2d6a4f 0%, #1a3d2d 100%); }
.vb-history{ background: linear-gradient(135deg, #8b2020 0%, #3d0a0a 100%); }

.vb-icon {
  font-size: 4rem;
  position: absolute;
  right: 32px;
  bottom: 24px;
  opacity: 0.2;
}

/* ─── QUOTE BLOCK ───────────────────── */
.quote-block {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.quote-attr {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── CTA SECTION ───────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #8b1a1a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--sun);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 12px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--sun);
  transform: translateY(-2px);
}

/* ─── FOOTER ────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-mk-flag { color: var(--gold); font-weight: 700; }

/* ─── SVG ILLUSTRATIONS (CSS art) ───── */
.illustration-mountain {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, #1a6fb5 0%, #5ba3d9 60%, #87bfeb 100%);
  position: relative;
  overflow: hidden;
}

/* ─── ANIMATIONS ────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── UTILITIES ─────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-red    { color: var(--red) !important; }
.bg-dark     { background: var(--dark); }
.bg-pale     { background: var(--pale); }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16{ margin-top: 16px; }
.mt-24{ margin-top: 24px; }
.mt-40{ margin-top: 40px; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }
.divider.red { background: var(--red); }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--dark); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; }
  .hotel-card { grid-template-columns: 1fr; }
  .hotel-card-img { height: 200px; }
  .page-hero-content { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ─── PAGE-SPECIFIC COLOR THEMES ──── */
/* Gradient backgrounds using CSS since no actual images */
.bg-hero-home    { background: linear-gradient(160deg, #0a3d6e 0%, #1a6fb5 40%, #2d9e6b 100%); }
.bg-hero-history { background: linear-gradient(160deg, #3d0a0a 0%, #8b2020 50%, #c0392b 100%); }
.bg-hero-seasons { background: linear-gradient(160deg, #1a3a6e 0%, #1a6fb5 40%, #f0a500 100%); }
.bg-hero-para    { background: linear-gradient(160deg, #1a3d2d 0%, #2d6a4f 50%, #74c69d 100%); }
.bg-hero-stay    { background: linear-gradient(160deg, #1c2b38 0%, #4a6070 50%, #8aa0b0 100%); }
.bg-hero-visit   { background: linear-gradient(160deg, #3d2000 0%, #a05c00 50%, #f0a500 100%); }

/* Decorative mountain SVG backgrounds */
.mountain-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}

/* ─── REAL PHOTO STYLES ─────────────────────────────────────────────────── */
.photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-overlay {
  position: absolute;
  inset: 0;
}
.real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-frame:hover img { transform: scale(1.04); }

.photo-caption {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 6px;
  text-align: center;
}
.photo-credit {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.45);
  position: absolute;
  bottom: 6px;
  right: 8px;
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 3px;
  pointer-events: none;
}

/* Photo gallery grid */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.photo-gallery .photo-frame {
  aspect-ratio: 4/3;
}
.photo-gallery-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.photo-gallery-2col .photo-frame {
  aspect-ratio: 16/10;
}

@media (max-width: 768px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery-2col { grid-template-columns: 1fr; }
}

/* Photo hero overlay gradient */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-hero-bg img, .home-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
