/* ==========================================================================
   Bhandardara Trekking — Design System
   Palette: Forest Green #1B5E20 / Dark Green #2E7D32 / Black #111111 /
            White #FFFFFF / Light Grey #F5F5F5 / Sunrise Gold #D9A441 (accent)
   Type: "Fraunces" (display) + "Inter" (body/UI)
   Signature motif: topographic contour lines (mountain elevation) used as a
   recurring structural device — dividers, section backgrounds, hover states.
   ========================================================================== */

:root {
  --forest: #1B5E20;
  --dark-green: #2E7D32;
  --black: #111111;
  --white: #FFFFFF;
  --grey: #F5F5F5;
  --gold: #D9A441;
  --grey-mid: #E3E1DB;
  --text-soft: #4A4F49;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(17,17,17,0.08);
  --shadow-strong: 0 20px 50px rgba(17,17,17,0.18);
  --container: 1240px;
  --nav-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }
.section-alt { background: var(--grey); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 17px; }

/* Contour-line signature motif ------------------------------------------ */
.contour-divider {
  width: 100%;
  height: 64px;
  overflow: hidden;
  line-height: 0;
}
.contour-divider svg { width: 100%; height: 100%; display: block; }

.contour-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-repeat: repeat;
}

/* Buttons ----------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(217,164,65,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(217,164,65,0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.btn-forest {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(27,94,32,0.28);
}
.btn-forest:hover { background: var(--dark-green); transform: translateY(-3px); }

.btn-dark-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(17,17,17,0.25);
}
.btn-dark-outline:hover { border-color: var(--black); background: var(--black); color: var(--white); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Navigation ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar:not(.is-scrolled) { background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0)); }
.navbar.is-scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(17,17,17,0.08); height: 72px; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 58px; width: auto; transition: height 0.3s, filter 0.3s; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
.navbar.is-scrolled .nav-logo img { height: 48px; filter: none; }

.nav-links { display: flex; align-items: center; gap: 42px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.navbar.is-scrolled .nav-links a { color: var(--black); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold) !important; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 12px 26px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}
.nav-toggle span {
  height: 2px; width: 100%; background: var(--white);
  transition: all 0.35s ease;
}
.navbar.is-scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.is-active span { background: var(--black); }

/* Hero ------------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.35) 0%, rgba(17,17,17,0.25) 45%, rgba(17,17,17,0.75) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: var(--nav-h); }
.hero-content .eyebrow { color: var(--gold); }
.hero-content .eyebrow::before { background: var(--gold); }
.hero-content h1 {
  font-size: clamp(40px, 6vw, 74px);
  color: var(--white);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-content p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 40px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--gold);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -40px; } 100% { top: 40px; } }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stats div strong { font-family: var(--font-display); font-size: 30px; color: var(--gold); display: block; }
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 0.05em; }

/* Small hero (About / Contact) ------------------------------------------*/
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-bottom: 70px;
}
.page-hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.75) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 18px; letter-spacing: 0.05em; }
.breadcrumb .sep { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(36px, 5vw, 58px); }
.page-hero p { color: rgba(255,255,255,0.85); margin-top: 14px; max-width: 560px; font-size: 17px; }

/* Cards -------------------------------------------------------------- */
.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.8,.2,1); }
.dest-card:hover img { transform: scale(1.1); }
.dest-card:hover { box-shadow: var(--shadow-strong); }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0) 35%, rgba(17,17,17,0.88) 100%);
}
.dest-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px;
  z-index: 2;
  color: var(--white);
}
.dest-card-body span.tag {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block;
}
.dest-card-body h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.dest-card-body p { font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 16px; max-width: 90%; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); border-bottom: 1.5px solid var(--gold); padding-bottom: 4px; transition: gap 0.3s; }
.card-link:hover { gap: 14px; }

/* Accommodation cards */
.stay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.stay-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stay-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.stay-card-img { height: 280px; overflow: hidden; position: relative; }
.stay-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.stay-card:hover .stay-card-img img { transform: scale(1.08); }
.stay-card-img .price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--white); color: var(--black);
  font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 100px;
  box-shadow: var(--shadow-soft);
}
.stay-card-body { padding: 32px; }
.stay-card-body h3 { font-size: 26px; margin-bottom: 14px; }
.stay-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.stay-feature-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-soft); }
.stay-feature-list li svg { flex-shrink: 0; color: var(--dark-green); }

/* Activities ------------------------------------------------------------*/
.activity-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--grey-mid);
  transition: border-color 0.35s, transform 0.35s, background 0.35s;
}
.activity-item:hover { transform: translateY(-6px); border-color: var(--gold); background: var(--grey); }
.activity-item .icon-wrap {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.35s, transform 0.35s;
}
.activity-item:hover .icon-wrap { background: var(--gold); color: var(--black); transform: rotate(-8deg) scale(1.05); }
.activity-item h4 { font-size: 16px; font-weight: 600; font-family: var(--font-body); }

/* Why choose us ----------------------------------------------------------*/
.feature-card {
  padding: 36px 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s, box-shadow 0.35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.feature-card .num { font-family: var(--font-display); font-size: 15px; color: var(--gold); font-weight: 600; margin-bottom: 18px; letter-spacing: 0.05em; }
.feature-card h4 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--text-soft); }

/* Gallery (masonry) ------------------------------------------------------*/
.masonry {
  columns: 4 220px;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.masonry-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.masonry-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,94,32,0) 50%, rgba(17,17,17,0.85) 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 18px;
}
.masonry-item .overlay span { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.masonry-item:hover .overlay { opacity: 1; }
.masonry-item:hover img { transform: scale(1.12); }

/* Testimonials ------------------------------------------------------------*/
.testi-track { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; }
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--grey-mid); border-radius: 10px; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--grey-mid);
}
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 15.5px; color: var(--black); margin-bottom: 24px; min-height: 96px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testi-person strong { display: block; font-size: 15px; }
.testi-person span { font-size: 13px; color: var(--text-soft); }

/* CTA banner ----------------------------------------------------------- */
.cta-banner {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--white);
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 32px;
}
.cta-banner-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,94,32,0.55), rgba(17,17,17,0.82)); }
.cta-banner-content { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.cta-banner-content h2 { color: var(--white); font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 26px; }
.cta-banner-content .btn { margin-top: 6px; }

/* About page specific ------------------------------------------------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.story-media .img-back {
  position: absolute; top: -24px; left: -24px;
  width: 60%; height: 60%;
  border-radius: var(--radius-lg);
  background: var(--forest);
  z-index: -1;
}
.story-text p { color: var(--text-soft); margin-bottom: 18px; font-size: 16px; }
.story-text .badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.story-badge {
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 100px;
  background: var(--grey); border: 1px solid var(--grey-mid); color: var(--black);
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: var(--white);
}
.mv-card:nth-child(2) { background: var(--black); }
.mv-card .icon-wrap { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.mv-card h3 { color: var(--white); font-size: 24px; margin-bottom: 14px; }
.mv-card p { color: rgba(255,255,255,0.85); font-size: 15.5px; }

.service-card {
  padding: 32px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--grey-mid);
  text-align: left;
  transition: transform 0.35s, border-color 0.35s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--forest); }
.service-card .icon-wrap { width: 50px; height: 50px; border-radius: 12px; background: var(--grey); display: flex; align-items: center; justify-content: center; color: var(--forest); margin-bottom: 18px; }
.service-card h4 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-soft); }

.team-strip { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.stat-block { text-align: center; }
.stat-block strong { font-family: var(--font-display); font-size: 42px; color: var(--forest); display: block; }
.stat-block span { font-size: 13.5px; color: var(--text-soft); letter-spacing: 0.04em; text-transform: uppercase; }

/* Contact page ----------------------------------------------------------*/
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: flex-start; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--grey-mid);
}
.contact-form-card h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-soft); margin-bottom: 32px; font-size: 15px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-mid);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--grey);
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.radio-group { display: flex; gap: 14px; }
.radio-option {
  flex: 1;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  font-size: 14.5px; font-weight: 600;
}
.radio-option input { width: auto; accent-color: var(--forest); }
.radio-option:has(input:checked) { border-color: var(--forest); background: var(--grey); }
.field-error { color: #C0392B; font-size: 12.5px; margin-top: 6px; display: none; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #C0392B; }
.form-group.has-error .field-error { display: block; }

.form-msg {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  display: none;
  align-items: center;
  gap: 12px;
}
.form-msg.show { display: flex; }
.form-msg.success { background: #E7F3E8; color: var(--forest); border: 1px solid #B9DEBB; }
.form-msg.error { background: #FBEAE8; color: #C0392B; border: 1px solid #F0C4BF; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-item .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14.5px; color: var(--text-soft); }
.contact-info-item a:hover { color: var(--forest); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 280px; margin-bottom: 24px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.hours-badge { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--black); color: var(--white); border-radius: var(--radius-sm); font-size: 14px; }
.hours-badge strong { color: var(--gold); }

/* Footer ------------------------------------------------------------- */
.footer { background: var(--black); color: rgba(255,255,255,0.72); padding-top: 90px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-logo-wrap { display: inline-block; background: rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 12px 18px; margin-bottom: 18px; }
.footer-brand img { display: block; height: 56px; width: auto; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 22px; font-family: var(--font-body); letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 14.5px; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: 13.5px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* Reveal on scroll ------------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }
.reveal-delay-4.in-view { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media { animation: none; }
  html { scroll-behavior: auto; }
}

/* Focus visibility -----------------------------------------------------*/
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Utility ------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--forest); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3 200px; }
}

@media (max-width: 960px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: min(340px, 82%); height: 100vh; background: var(--white); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 26px; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right 0.45s cubic-bezier(.2,.8,.2,1); z-index: 1100; }
  .nav-links.is-open { right: 0; }
  .nav-links a { color: var(--black) !important; font-size: 17px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn:first-child { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media .img-back { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2 160px; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .cta-banner { margin: 0 16px; min-height: 380px; }
  .contact-form-card { padding: 28px; }
  .testi-card { flex: 0 0 300px; }
}
