/* ═══════════════════════════════════════════════════════════════
   Greenland Farms — HTML Version CSS
   Complete port of all React CSS Modules + global.css
   ═══════════════════════════════════════════════════════════════ */

/* Google Fonts loaded via HTML <link> — no @import needed */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── ROOT VARIABLES ─────────────────────────────────────────── */
:root {
  --gold: #C4A35A;
  --gold-lt: #D4B978;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;
  --muted: rgba(255,255,255,0.6);
}

/* ─── BASE ───────────────────────────────────────────────────── */
html, body { height: 100%; scroll-behavior: smooth; }
body { background: #F2F0EF; color: #1a1a1a; font-family: var(--ff-sans); overflow: hidden; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

/* ─── SNAP CONTAINER ─────────────────────────────────────────── */
#main-content { height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
#snap-container {
  flex: 1; height: 0;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#snap-container::-webkit-scrollbar { display: none; }
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#after-snap { scroll-snap-align: start; }

/* ─── VIDEO OVERLAY TEXT ─────────────────────────────────────── */
.video-overlay-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; pointer-events: none;
}
.video-overlay-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5.5vw, 6.5rem);
  font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1.15;
  text-shadow: 0 2px 32px rgba(0,0,0,0.65); white-space: nowrap;
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes navSlideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes scrollpulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: relative; top: 0; left: 0; right: 0;
  z-index: 1100; flex-shrink: 0;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 52px; height: 72px;
  background: #141a14;
  border-bottom: 1px solid rgba(232,223,192,0.07);
  animation: navSlideDown 0.7s cubic-bezier(0.22,1,0.36,1) both;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.navbar.scrolled {
  background: rgba(20,26,20,0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(232,223,192,0.12);
}

.nav-left { display: flex; align-items: center; justify-content: flex-start; }
.menu-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 1px solid rgba(232,223,192,0.25);
  border-radius: 50px; padding: 9px 16px 9px 14px;
  cursor: pointer; min-height: 38px; transition: border-color 0.3s ease;
}
.menu-btn:hover, .menu-btn.active { border-color: rgba(232,223,192,0.55); }
.menu-btn:focus-visible { outline: 2px solid rgba(232,223,192,0.5); outline-offset: 3px; border-radius: 50px; }
.burger-lines { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.line-top, .line-mid, .line-bottom {
  display: block; height: 1px; background: rgba(232,223,192,0.75);
  border-radius: 1px; transform-origin: center;
  transition: background 0.3s ease, transform 0.35s ease, opacity 0.3s ease, width 0.3s ease;
}
.line-top { width: 20px; } .line-mid { width: 14px; } .line-bottom { width: 20px; }
.menu-btn.active .line-top { transform: translateY(6px) rotate(45deg); width: 20px; background: #e8dfc0; }
.menu-btn.active .line-mid { opacity: 0; transform: scaleX(0); }
.menu-btn.active .line-bottom { transform: translateY(-6px) rotate(-45deg); width: 20px; background: #e8dfc0; }
.menu-btn:hover .line-top, .menu-btn:hover .line-mid, .menu-btn:hover .line-bottom { background: #e8dfc0; }
.menu-text {
  font-family: var(--ff-sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,223,192,0.7); transition: color 0.3s ease; white-space: nowrap;
}
.menu-btn:hover .menu-text, .menu-btn.active .menu-text { color: #e8dfc0; }

.nav-center { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; justify-self: center; }
.nav-logo { height: 52px; width: auto; object-fit: contain; }
.nav-center-text { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.brand-name { font-family: var(--ff-serif); font-size: 22px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff; white-space: nowrap; }
.tagline-nav { font-family: var(--ff-sans); font-size: 11px; font-weight: 600; font-style: italic; letter-spacing: 0.28em; text-transform: uppercase; color: #ffffff; white-space: nowrap; }

.nav-right { display: flex; align-items: center; justify-content: flex-end; }
.btn-book {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 22px; border: 1px solid rgba(232,223,192,0.35);
  border-radius: 50px; background: transparent;
  font-family: var(--ff-sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,223,192,0.7); text-decoration: none;
  cursor: pointer; white-space: nowrap; min-height: 38px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.btn-book:hover { border-color: rgba(232,223,192,0.75); color: #e8dfc0; background: rgba(232,223,192,0.05); }

/* ─── DRAWER ─────────────────────────────────────────────────── */
.drawer { position: fixed; inset: 0; z-index: 1050; visibility: hidden; pointer-events: none; }
.drawer.open { visibility: visible; pointer-events: all; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,14,10,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.4s ease;
}
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-inner {
  position: absolute; top: 0; left: 0;
  width: 100%; max-width: 480px; height: 100%;
  background: #0d120d; border-right: 1px solid rgba(232,223,192,0.08);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.drawer.open .drawer-inner { transform: translateX(0); }
.nav-list { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0; margin: 0; width: 100%; }
.nav-item {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%; text-align: center;
}
.drawer.open .nav-item { opacity: 1; transform: translateY(0); }
.nav-link {
  display: block; padding: 10px 40px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(232,223,192,0.65); text-decoration: none;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.nav-link:hover { color: #e8dfc0; letter-spacing: 0.28em; }
.nav-link-home { font-family: var(--ff-serif); font-size: 18px; font-weight: 600; letter-spacing: 0.18em; color: #c4a35a; margin-bottom: 10px; }
.nav-link-home:hover { color: #d4b978; letter-spacing: 0.22em; }
.nav-item:first-child::after { content: ''; display: block; width: 40px; height: 1px; background: rgba(196,163,90,0.35); margin: 8px auto 4px; }
/* Stagger delays */
.nav-item:nth-child(1)  { transition-delay: calc(0  * 45ms + 150ms); }
.nav-item:nth-child(2)  { transition-delay: calc(1  * 45ms + 150ms); }
.nav-item:nth-child(3)  { transition-delay: calc(2  * 45ms + 150ms); }
.nav-item:nth-child(4)  { transition-delay: calc(3  * 45ms + 150ms); }
.nav-item:nth-child(5)  { transition-delay: calc(4  * 45ms + 150ms); }
.nav-item:nth-child(6)  { transition-delay: calc(5  * 45ms + 150ms); }
.nav-item:nth-child(7)  { transition-delay: calc(6  * 45ms + 150ms); }
.nav-item:nth-child(8)  { transition-delay: calc(7  * 45ms + 150ms); }
.nav-item:nth-child(9)  { transition-delay: calc(8  * 45ms + 150ms); }
.nav-item:nth-child(10) { transition-delay: calc(9  * 45ms + 150ms); }
.nav-item:nth-child(11) { transition-delay: calc(10 * 45ms + 150ms); }
.nav-item:nth-child(12) { transition-delay: calc(11 * 45ms + 150ms); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero { position: relative; height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-poster { position: absolute; inset: 0; background: url('../public/images/13 2.png') center/cover no-repeat; z-index: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.65) 100%); z-index: 1; }
.hero-content {
  position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%;
  padding: 60px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.hero-headline {
  font-family: var(--ff-serif); font-size: clamp(2rem,5.5vw,6.5rem);
  font-weight: 700; line-height: 1.15; letter-spacing: 0.04em;
  color: #fff; text-transform: uppercase;
  text-shadow: 0 2px 32px rgba(0,0,0,0.65); white-space: nowrap; overflow: hidden;
}
.hero-headline .char { display: inline-block; opacity: 0; transform: translateY(18px); transition: opacity 0.04s ease, transform 0.04s ease; }
.hero-headline .char.space { width: 0.35em; }
.hero-tagline { display: none; }
.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollpulse 2s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════════════════
   VIDEO SECTIONS (secondary)
   ═══════════════════════════════════════════════════════════════ */
.video-section video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
#about { background: #F2F0EF; }
.about-inner {
  max-width: 1200px; margin: 0 auto; padding: 110px 60px 100px;
  display: grid; grid-template-columns: 1fr 1px 1.1fr; gap: 72px; align-items: center;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.about-inner.visible { opacity: 1; transform: translateY(0); }
.about-left { display: flex; flex-direction: column; }
.about-label { font-family: var(--ff-sans); font-size: 10px; font-weight: 400; letter-spacing: 0.38em; text-transform: uppercase; color: #C4A35A; margin-bottom: 28px; }
.about-heading { font-family: var(--ff-serif); font-size: clamp(3rem,5.5vw,6rem); font-weight: 600; line-height: 1.05; color: #1a1a1a; letter-spacing: -0.01em; margin-bottom: 40px; }
.about-heading em { font-style: italic; color: #C4A35A; }
.about-tagline { font-family: var(--ff-sans); font-size: 11px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(26,26,26,0.4); }
.about-rule { width: 1px; background: rgba(26,26,26,0.12); align-self: stretch; min-height: 200px; }
.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-body { font-family: var(--ff-sans); font-size: clamp(0.88rem,1.3vw,1rem); font-weight: 300; line-height: 1.95; color: rgba(26,26,26,0.62); }
.about-stats { display: flex; align-items: center; gap: 32px; margin-top: 16px; padding-top: 32px; border-top: 1px solid rgba(26,26,26,0.1); }
.about-stat { display: flex; flex-direction: column; gap: 5px; }
.stat-value { font-family: var(--ff-serif); font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 600; color: #1a1a1a; line-height: 1; letter-spacing: 0.01em; }
.stat-label { font-family: var(--ff-sans); font-size: 9px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(26,26,26,0.4); }
.stat-divider { width: 1px; height: 36px; background: rgba(26,26,26,0.12); }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL PRESENCE
   ═══════════════════════════════════════════════════════════════ */
#global-presence { background: #F2F0EF; padding: 80px 0 60px; overflow: hidden; }
.gp-title { text-align: center; font-family: var(--ff-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: #111; margin-bottom: 48px; }
.gp-row-wrapper { overflow: hidden; width: 100%; }
.gp-row { display: flex; gap: 12px; margin-bottom: 12px; will-change: transform; width: max-content; }
.gp-card { flex: 0 0 400px; height: 320px; border-radius: 10px; overflow: hidden; position: relative; }
.gp-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gp-card:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════
   LAKE EXPERIENCE
   ═══════════════════════════════════════════════════════════════ */
#lake-experience { position: relative; overflow: hidden; }
.lake-bg { position: absolute; inset: 0; background: url('../public/images/lakecardimages/Calm lake with autumn reflections.png') center/cover no-repeat; z-index: 0; }
.lake-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.38); }
.lake-inner {
  position: relative; z-index: 2; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 40px; gap: 40px;
}
.lake-title { font-family: var(--ff-serif); font-size: clamp(1.6rem,3vw,3rem); font-weight: 700; font-style: italic; color: #fff; line-height: 1.1; letter-spacing: 0.04em; text-transform: uppercase; text-shadow: 0 2px 24px rgba(0,0,0,0.65); }
.lake-card { background: #F2F0EF; border-radius: 12px; width: 320px; padding: 14px 14px 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.lake-card-img-wrap { position: relative; width: 100%; height: 320px; overflow: hidden; border-radius: 8px; }
.lake-card-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.lake-card-img-wrap img.active { opacity: 1; }
.lake-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lake-card-icon { font-size: 22px; color: #1a1a1a; }
.lake-card-tag { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600; color: #1a1a1a; letter-spacing: 0.04em; min-height: 20px; transition: opacity 0.4s; }
.lake-swipe-hint { display: none; }
.lake-bullets { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lake-bullet { cursor: pointer; display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; background: transparent; border: none; padding: 0; }
.lake-bullet .star { display: none; font-size: 22px; color: #fff; line-height: 1; }
.lake-bullet .ring { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.7); display: block; transition: border-color 0.3s; }
.lake-bullet.active .star { display: block; }
.lake-bullet.active .ring { display: none; }
.lake-bullet:hover .ring { border-color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   TEAM / GALLERY
   ═══════════════════════════════════════════════════════════════ */
#team { background: #F2F0EF; padding: 96px 0 100px; }
.team-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.team-header { margin-bottom: 56px; }
.team-label-el { display: block; font-family: var(--ff-sans); font-size: 10px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase; color: #C4A35A; margin-bottom: 14px; }
.team-title-el { font-family: var(--ff-serif); font-size: clamp(2rem,4vw,3.4rem); font-weight: 600; color: #1a1a1a; letter-spacing: 0.02em; line-height: 1.05; }
.team-divider { width: 36px; height: 1px; background: #C4A35A; margin-top: 20px; }
.gallery-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 340px 340px; gap: 10px;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.gallery-grid.visible { opacity: 1; transform: translateY(0); }
.gallery-card { overflow: hidden; border-radius: 6px; position: relative; background: #ddd; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.gallery-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.gallery-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.gallery-card:nth-child(6) { grid-column: 1 / -1; grid-row: 3; height: 320px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
#contact { background: #fff; padding: 80px 0; }
.contact-inner { max-width: 900px; margin: 0 auto; background: #f7f7f7; border: 1px solid #eee; border-radius: 20px; padding: 50px; box-shadow: 0 8px 25px rgba(0,0,0,0.04); }
.contact-header { margin-bottom: 56px; }
.contact-section-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: #999; margin-bottom: 16px; }
.contact-header h2 { font-family: var(--ff-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 600; color: #1a1a1a; line-height: 1.15; }
.form-grid { display: flex; flex-direction: column; gap: 0; }
.form-group { display: flex; flex-direction: column; border-bottom: 1px solid rgba(30,30,30,0.15); padding: 18px 0; }
.form-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(30,30,30,0.5); margin-bottom: 8px; }
.form-control { background: transparent; border: none; outline: none; padding: 0; font-size: 15px; color: #1a1a1a; font-family: var(--ff-sans); width: 100%; }
.form-control::placeholder { color: rgba(30,30,30,0.3); }
.form-control:focus { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
textarea.form-control { resize: none; min-height: 80px; }
.btn-submit { margin-top: 48px; display: block; width: 100%; padding: 18px; background: #fff; border: none; color: #000; font-family: var(--ff-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.btn-submit:hover { background: #f2f2f2; }
.field-error { font-size: 11px; color: #c0392b; margin-top: 4px; display: block; }
.success-msg { text-align: center; padding: 24px 0; font-size: 15px; color: #1a6a3a; font-family: var(--ff-serif); font-style: italic; }

/* ═══════════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════════ */
#map-section iframe { display: block; width: 100%; height: 400px; border: 0; filter: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #main-content { height: 100dvh; }
  #snap-container { scroll-snap-type: none; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .snap-section { height: auto; min-height: 100vh; scroll-snap-align: none; padding-bottom: 40px; }
  .navbar { padding: 0 20px; height: 64px; }
  .brand-name { font-size: 17px; letter-spacing: 0.14em; }
  .nav-logo { height: 42px; }
  .tagline-nav { font-size: 8px; letter-spacing: 0.22em; }
  .btn-book { padding: 8px 16px; font-size: 10px; letter-spacing: 0.16em; min-height: 34px; }
  .drawer-inner { max-width: 100%; border-right: none; }
  .hero-content { padding: 32px 24px 80px; align-items: center; justify-content: center; text-align: center; }
  .hero-headline { font-size: clamp(1.6rem,7.5vw,3.2rem); }
  .hero-tagline { display: block; text-align: center; max-width: 320px; font-size: 0.9rem; line-height: 1.65; margin-top: 16px; opacity: 0.88; color: rgba(255,255,255,0.9); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 24px 64px; }
  .about-rule { display: none; }
  .about-heading { font-size: clamp(2.6rem,8vw,4rem); }
  .gp-row-wrapper { overflow-x: auto; overflow-y: hidden; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .gp-row { flex-wrap: nowrap; gap: 16px; width: max-content; padding-left: 20px; }
  .gp-card { flex: 0 0 260px; min-width: 260px; height: 220px; }
  .lake-inner { padding: 0 20px 40px; }
  .lake-card { width: 100%; max-width: 520px; }
  .lake-card-img-wrap { height: 260px; }
  .lake-bullets { position: static; flex-direction: row; justify-content: center; gap: 12px; margin: 24px auto 0; transform: none; right: auto; top: auto; }
  /* swipe hint under bullets on mobile */
  .lake-swipe-hint { display: block; text-align: center; font-family: var(--ff-sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 12px; }
  .team-section { padding: 64px 0 72px; }
  .team-inner { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: unset; gap: 8px; }
  .gallery-card:nth-child(1), .gallery-card:nth-child(2), .gallery-card:nth-child(3),
  .gallery-card:nth-child(4), .gallery-card:nth-child(5), .gallery-card:nth-child(6) { grid-column: unset; grid-row: unset; height: 220px; }
  .contact-inner { padding: 32px 20px; border-radius: 12px; margin: 0 16px; }
  .video-overlay-text h2 { font-size: clamp(2rem,8vw,3rem); line-height: 1.1; padding: 0 20px; }
}
@media (max-width: 768px) { .menu-text { display: none; } .menu-btn { padding: 9px 12px; gap: 0; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; } .gallery-card { height: 160px !important; } }
@media (max-width: 480px) {
  .navbar { padding: 0 14px; }
  .brand-name { font-size: 14px; letter-spacing: 0.1em; }
  .nav-logo { height: 36px; }
  .tagline-nav { font-size: 9px; letter-spacing: 0.18em; }
  .btn-book { padding: 7px 13px; font-size: 9px; }
  .hero-headline { font-size: clamp(1.4rem,6.5vw,2.2rem); }
  .about-stats { gap: 20px; }
}
