/* ===================================================
   Lake View Resort by J.V — GREEN EDITION CSS
   Design: Bold, vibrant, high-visibility green theme
   Premium UI/UX — crisp, modern, resort-luxury feel
   =================================================== */

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

/* ─── CSS Variables ─────────────────────────────── */
:root {
  /* Green Palette */
  --forest:       #0d3320;
  --pine:         #0f4c2a;
  --emerald:      #1a7a42;
  --jade:         #22a355;
  --mint:         #2dcc6b;
  --lime-glow:    #4ddd88;
  --sage:         #a8dbb9;
  --pale-mint:    #d4f5e2;
  --frost:        #edfaf3;

  /* Accent */
  --gold:         #f0b429;
  --gold-dark:    #d4960e;

  /* Text */
  --text-dark:    #0a1f12;
  --text-mid:     #2d5a3d;
  --text-soft:    #4e8264;
  --text-muted:   #89b89a;

  /* Neutral */
  --white:        #ffffff;
  --off-white:    #f7fdf9;
  --light-bg:     #f0faf5;
  --border:       rgba(34,163,85,.18);

  /* Shadows */
  --shadow-xs:    0 1px 6px rgba(13,51,32,.07);
  --shadow-sm:    0 3px 16px rgba(13,51,32,.10);
  --shadow-md:    0 8px 36px rgba(13,51,32,.14);
  --shadow-lg:    0 20px 64px rgba(13,51,32,.20);

  /* Structure */
  --nav-h:        70px;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --transition-s: 0.5s cubic-bezier(.4,0,.2,1);

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.72;
  overflow-x: hidden;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--frost); }
::-webkit-scrollbar-thumb { background: var(--jade); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--emerald); }

/* Selection */
::selection { background: var(--mint); color: var(--forest); }

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-soft); font-weight: 400; font-size: .96rem; }

/* ─── Layout ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── Section Decoration ─────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--jade);
  background: var(--pale-mint);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid var(--sage);
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
  max-width: 580px;
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 56px;
  font-weight: 400;
  line-height: 1.75;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,122,66,.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--pine), var(--emerald));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,122,66,.5);
}

.btn-outline {
  border: 2px solid var(--jade);
  color: var(--jade);
  background: transparent;
  font-weight: 600;
}
.btn-outline:hover {
  background: var(--jade);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
  font-weight: 600;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240,180,41,.4);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,180,41,.55);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  font-weight: 600;
}
.btn-wa:hover {
  background: linear-gradient(135deg, #1ebe5d, #18a850);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

.btn-call {
  background: linear-gradient(135deg, var(--forest), var(--pine));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-call:hover {
  background: linear-gradient(135deg, var(--pine), var(--emerald));
  transform: translateY(-2px);
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(13,51,32,.1);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; }

.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.navbar:not(.scrolled) .logo-main { color: var(--white); }

.nav-logo .logo-sub {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--jade);
}
.navbar:not(.scrolled) .logo-sub { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }

.nav-links a:hover, .nav-links a.active {
  background: var(--pale-mint);
  color: var(--pine);
}
.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
  background: rgba(45,204,107,.22);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--pale-mint); }
.navbar:not(.scrolled) .hamburger:hover { background: rgba(255,255,255,.15); }

.hamburger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(9,30,18,.88) 0%,
    rgba(13,51,32,.74) 45%,
    rgba(26,122,66,.38) 100%
  );
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,204,107,.15);
  border: 1px solid rgba(45,204,107,.45);
  backdrop-filter: blur(8px);
  color: var(--lime-glow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .8s .2s forwards;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
  animation: pulseDot 2s infinite;
}

.hero-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s .4s forwards;
}

.hero-title .accent { color: var(--lime-glow); font-style: italic; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .6s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .8s forwards;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(13,51,32,.8);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(45,204,107,.25);
  padding: 18px 0;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.hero-stats .container {
  display: flex;
  justify-content: center;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 44px;
  border-right: 1px solid rgba(45,204,107,.2);
}
.hero-stat-item:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--lime-glow);
  line-height: 1;
}

.hero-stat-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 90px; right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.5);
  font-size: .64rem;
  letter-spacing: .2em;
  animation: fadeIn 1s 1.4s both;
}

.scroll-line {
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, rgba(45,204,107,.8), transparent);
  animation: scrollDown 2s infinite;
}

/* ─── INTRO ──────────────────────────────────────── */
.intro {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.intro-image:hover img { transform: scale(1.04); }

.intro-image::before {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 54px; height: 54px;
  border-top: 3px solid var(--jade);
  border-right: 3px solid var(--jade);
  border-radius: 0 var(--radius-sm) 0 0;
  z-index: 1;
}

.intro-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--jade);
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-badge-icon { font-size: 1.4rem; }

.intro-badge span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.intro-badge strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 600;
}

.intro-stats {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 36px;
}

.stat { flex: 1; padding: 20px 12px; text-align: center; border-right: 1px solid var(--border); transition: background var(--transition); }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--frost); }

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}

.stat-label {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ─── ROOM CARDS ─────────────────────────────────── */
.rooms-section { background: var(--white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-s);
  border: 1px solid var(--border);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}

.room-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-img img { transform: scale(1.07); }

.room-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.room-body { padding: 24px; }

.room-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.room-desc {
  font-size: .88rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}

.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.amenity-tag {
  font-size: .67rem;
  font-weight: 600;
  background: var(--pale-mint);
  color: var(--pine);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--sage);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--pale-mint);
}

.price-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}

.price-note {
  font-size: .67rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── WHY SECTION ────────────────────────────────── */
.why {
  background: linear-gradient(160deg, var(--forest) 0%, var(--pine) 60%, #1e6e3a 100%);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,204,107,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.why .section-label {
  background: rgba(45,204,107,.15);
  border-color: rgba(45,204,107,.35);
  color: var(--lime-glow);
}
.why .section-title { color: var(--white); }
.why .section-subtitle { color: rgba(255,255,255,.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition-s);
}

.why-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(45,204,107,.4);
  transform: translateY(-5px);
}

.why-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.why-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.why-desc { font-size: .84rem; color: rgba(255,255,255,.58); line-height: 1.7; }

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials { background: var(--light-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition-s);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--mint));
  transform: scaleX(0);
  transition: transform var(--transition-s);
  transform-origin: left;
}

.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card:hover::before { transform: scaleX(1); }

.stars { color: var(--gold); font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }

.testi-quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--pale-mint);
  line-height: .7;
  margin-bottom: 8px;
  font-weight: 700;
}

.testi-text {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(26,122,66,.3);
}

.testi-name { font-weight: 600; font-size: .88rem; color: var(--forest); }
.testi-place { font-size: .75rem; color: var(--text-muted); }

/* ─── MAP SECTION ────────────────────────────────── */
.map-section { background: var(--white); }

.map-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }

.contact-icon {
  font-size: .95rem;
  width: 38px; height: 38px;
  background: var(--pale-mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--sage);
}

.contact-text { font-size: .88rem; color: var(--text-soft); line-height: 1.6; }
.contact-text strong {
  display: block;
  color: var(--forest);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-text a { color: var(--emerald); font-weight: 500; transition: color var(--transition); }
.contact-text a:hover { color: var(--pine); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  border: 3px solid var(--pale-mint);
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--mint), var(--jade));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(45,204,107,.15);
  margin-bottom: 32px;
}

.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--sage); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .87rem; margin-top: 14px; max-width: 300px; line-height: 1.7; }

.footer-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--jade); font-weight: 700; }
.footer-links a:hover { color: var(--sage); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  transition: color var(--transition);
  display: flex; gap: 8px;
  align-items: flex-start;
  line-height: 1.55;
}
.footer-contact a:hover { color: var(--sage); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ─── PAGE HERO ──────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 44px;
  position: relative;
  background: linear-gradient(150deg, var(--forest) 0%, var(--pine) 55%, var(--emerald) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,204,107,.14) 0%, transparent 65%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 30px,
    rgba(255,255,255,.015) 30px, rgba(255,255,255,.015) 60px
  );
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-weight: 700; margin-bottom: 10px; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--sage); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--lime-glow); font-weight: 700; }

/* ─── ROOMS PAGE ─────────────────────────────────── */
.rooms-full { background: var(--off-white); }
.rooms-full .rooms-grid { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* ─── MENU PAGE ──────────────────────────────────── */
.menu-section { background: var(--white); }

.menu-tabs {
  display: flex; gap: 6px; margin-bottom: 44px; flex-wrap: wrap;
  background: var(--light-bg);
  border-radius: 50px;
  border: 1px solid var(--border);
  padding: 6px;
  width: fit-content;
}

.menu-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
  cursor: pointer;
}

.menu-tab.active, .menu-tab:hover {
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  color: var(--white);
  box-shadow: 0 3px 12px rgba(26,122,66,.3);
}

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 600;
}

.menu-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--mint));
  border-radius: 3px;
  margin-bottom: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 12px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  gap: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-item:hover {
  border-color: var(--sage);
  background: var(--frost);
  transform: translateX(5px);
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 3px;
}

.menu-item-desc { font-size: .8rem; color: var(--text-muted); max-width: 240px; line-height: 1.5; }

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--emerald);
  white-space: nowrap;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--pale-mint);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--sage);
}

/* ─── ABOUT PAGE ─────────────────────────────────── */
.about-intro { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  border: 3px solid var(--pale-mint);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.mission-section { background: var(--white); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mission-card {
  padding: 32px 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition-s);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--mint));
  transform: scaleX(0);
  transition: transform var(--transition-s);
}

.mission-card:hover { background: var(--frost); transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.mission-card:hover::after { transform: scaleX(1); }

.mission-icon { font-size: 2.2rem; margin-bottom: 16px; }
.mission-card h4 { color: var(--forest); margin-bottom: 10px; }
.mission-card p { font-size: .87rem; color: var(--text-soft); }

/* Owner Quote */
.owner-section {
  background: linear-gradient(160deg, var(--forest) 0%, var(--pine) 70%, var(--emerald) 100%);
  position: relative;
  overflow: hidden;
}
.owner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover;
  opacity: .07;
}

.owner-inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; text-align: center; }

.owner-quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--jade);
  line-height: .6;
  margin-bottom: 24px;
  opacity: .5;
}

.owner-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 32px;
}

.owner-sig { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.owner-name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--lime-glow); font-weight: 600; }
.owner-title { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ─── GALLERY ─────────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-grid { columns: 3; column-gap: 18px; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-s);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,51,32,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-icon {
  background: rgba(45,204,107,.2);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: .9rem;
}

/* ─── LIGHTBOX ───────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform var(--transition);
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(45,204,107,.15);
  color: var(--white);
  border: 1px solid rgba(45,204,107,.35);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.2rem;
}
.lightbox-nav:hover { background: rgba(45,204,107,.35); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section { background: var(--light-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h3 { color: var(--forest); margin-bottom: 6px; }
.contact-form-card > p { margin-bottom: 24px; font-size: .9rem; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--pale-mint);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 4px rgba(34,163,85,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 18px;
  background: var(--pale-mint);
  border-radius: var(--radius-sm);
  border: 1px solid var(--sage);
  color: var(--pine);
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 500;
}

.contact-info-panel { padding-top: 4px; }
.contact-info-panel h3 { margin-bottom: 24px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.cinfo-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cinfo-card:hover { border-color: var(--sage); transform: translateX(6px); box-shadow: var(--shadow-sm); }

.cinfo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--pale-mint), var(--frost));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--sage);
}

.cinfo-label { font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--jade); margin-bottom: 3px; }
.cinfo-value { font-size: .9rem; color: var(--text-dark); font-weight: 500; line-height: 1.55; }
.cinfo-value a { color: var(--emerald); transition: color var(--transition); }
.cinfo-value a:hover { color: var(--pine); }

.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.contact-map {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 360px;
  border: 3px solid var(--pale-mint);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── KEYFRAMES ──────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .hamburger { display: flex; }

  .nav-links {
    /* Hidden off-screen by default — no white strip */
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 24px;
    box-shadow: 0 12px 40px rgba(13,51,32,.18);
    /* Invisible + slid up by default */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 800;
    border-top: 3px solid var(--jade);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links a {
    color: var(--text-dark) !important;
    background: transparent !important;
    padding: 13px 16px; width: 100%;
    display: block; border-radius: var(--radius-sm); font-size: .9rem;
    border-bottom: 1px solid rgba(168,219,185,.25);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover, .nav-links a.active {
    background: var(--pale-mint) !important;
    color: var(--pine) !important;
  }

  .intro-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-image { order: -1; }
  .map-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats .container { overflow-x: auto; }
  .hero-stat-item { padding: 0 20px; min-width: 90px; }
  .hero-scroll { display: none; }
  .gallery-grid { columns: 2; }
  .mission-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { width: 100%; border-radius: var(--radius); padding: 8px; gap: 6px; }
  .menu-tab { font-size: .8rem; padding: 8px 16px; }
  .hero-stats { display: none; }
  .quick-actions { flex-direction: column; }
  .quick-actions .btn { justify-content: center; }
}
