/* ============================================================
   Saklıkent Kayak Merkezi — v3
   Single cohesive design token system
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  /* Colors */
  --ink:        #0D1117;          /* hero, footer, deep dark */
  --ink-2:      #161C26;          /* snow section, slightly lighter dark */
  --white:      #FFFFFF;
  --surface:    #F2F1ED;          /* alternating section background */
  --blue:       #1B69D4;          /* single accent, used everywhere */
  --blue-hi:    #4D90E6;          /* lighter shade of same hue for text on dark */
  --blue-pale:  rgba(27,105,212,0.07);
  --body-clr:   #434A58;          /* all body text */
  --muted:      #727987;          /* secondary text, labels */
  --rule:       rgba(13,17,23,0.08);
  --rule-inv:   rgba(255,255,255,0.09);
  --radius:     10px;
  --shadow:     0 2px 24px rgba(13,17,23,0.08);
  --shadow-lg:  0 8px 48px rgba(13,17,23,0.12);
  --t:          0.22s cubic-bezier(0.4,0,0.2,1);

  /* Fonts */
  --outfit: 'Outfit', sans-serif;
  --inter:  'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--inter);
  color: var(--body-clr);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }

/* ── Wrap ──────────────────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section spacing & backgrounds ────────────────────────── */
.section    { padding: 7rem 0; }
.section-md { padding: 5rem 0; }
.bg-surface { background: var(--surface); }
.bg-ink     { background: var(--ink); }
.bg-ink2    { background: var(--ink-2); }

/* ── Typography system ─────────────────────────────────────── */
/* Eyebrow — same everywhere */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--inter);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow-inv { color: var(--blue-hi); }

/* Section heading */
.h-section {
  font-family: var(--outfit);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-section-inv { color: #fff; }

/* Section body */
.b-section {
  font-family: var(--inter);
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--body-clr);
  max-width: 520px;
}
.b-section-inv { color: rgba(255,255,255,0.55); }

/* Section header block */
.sh           { margin-bottom: 3.5rem; }
.sh > * + *   { margin-top: 0.85rem; }
.sh.center    { text-align: center; }
.sh.center .b-section { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
/* ONE primary, ONE secondary — used identically everywhere */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--inter);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #1a2235;
  border-color: #1a2235;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,17,23,0.20);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
/* Inverted (on dark bg) */
.btn-inv-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-inv-primary:hover {
  background: var(--surface);
  border-color: var(--surface);
  transform: translateY(-1px);
}
.btn-inv-secondary {
  background: transparent;
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.30);
}
.btn-inv-secondary:hover {
  border-color: rgba(255,255,255,0.70);
  color: #fff;
}

/* ── Lucide icon sizing ─────────────────────────────────────── */
.ic       { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic svg   { display: block; }
.ic-14 svg { width: 14px; height: 14px; }
.ic-16 svg { width: 16px; height: 16px; }
.ic-18 svg { width: 18px; height: 18px; }
.ic-20 svg { width: 20px; height: 20px; }
.ic-24 svg { width: 24px; height: 24px; }
.ic-32 svg { width: 32px; height: 32px; }
.ic-40 svg { width: 40px; height: 40px; }

/* ── Navbar ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 1.4rem 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
#nav.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule);
  padding: 0.85rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  font-family: var(--outfit);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color var(--t);
}
#nav.solid .nav-brand { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--inter);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.10); }
#nav.solid .nav-links a { color: var(--muted); }
#nav.solid .nav-links a:hover { color: var(--ink); background: var(--surface); }

.nav-book {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--blue) !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.1rem !important;
}
.nav-book:hover { background: #1555ae !important; color: #fff !important; }
#nav.solid .nav-book { background: var(--blue) !important; color: #fff !important; }

.nav-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
  line-height: 1;
}
#nav.solid .nav-burger { color: var(--ink); }

/* ── Mobile drawer ─────────────────────────────────────────── */
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,0.50);
  backdrop-filter: blur(4px);
  z-index: 1000;
}
.backdrop.open { display: block; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: none; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--rule);
}
.drawer-head .brand {
  font-family: var(--outfit);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  padding: 4px;
}

.drawer-links {
  flex: 1;
  overflow-y: auto;
  list-style: none;
}
.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--inter);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  transition: color var(--t), background var(--t);
}
.drawer-links a:hover { color: var(--blue); background: var(--blue-pale); }

.drawer-foot {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.drawer-snow {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.ds-val {
  font-family: var(--outfit);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.ds-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── Hero ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
}
.hero-img {
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/36788564/pexels-photo-36788564.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,17,23,0.32) 0%,
    rgba(13,17,23,0.20) 35%,
    rgba(13,17,23,0.60) 75%,
    rgba(13,17,23,0.88) 100%
  );
}
.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.hero-body {
  padding: 0 2rem 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--inter);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.hero-h1 {
  font-family: var(--outfit);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.hero-h1 .accent { color: var(--blue-hi); font-weight: 700; }
.hero-p {
  font-family: var(--inter);
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hero stat bar */
.hero-bar {
  position: relative;
  z-index: 2;
  background: rgba(13,17,23,0.60);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--rule-inv);
}
.hero-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.bar-item {
  padding: 1.2rem 1rem 1.2rem 0;
  border-right: 1px solid var(--rule-inv);
  padding-left: 1.5rem;
}
.bar-item:first-child { padding-left: 0; }
.bar-item:last-child { border-right: none; }
.bar-val {
  font-family: var(--outfit);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bar-lbl {
  font-family: var(--inter);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

/* ── Unified card ──────────────────────────────────────────── */
/* All cards across the site share this base */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(13,17,23,0.14);
}
/* Card on dark background */
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--rule-inv);
  border-radius: var(--radius);
  transition: background var(--t), transform var(--t);
}
.card-dark:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

/* ── Split section (about + accommodation) ─────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-photo {
  overflow: hidden;
  min-height: 540px;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.split-photo:hover img { transform: scale(1.03); }
.split-text {
  padding: 6rem 4rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text.reverse { padding: 6rem 5rem 6rem 4rem; }

/* Stat row inside about */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 1.75rem;
  margin-top: 1.75rem;
}
.ms-item { padding-right: 1.25rem; }
.ms-item + .ms-item {
  padding-left: 1.25rem;
  border-left: 1px solid var(--rule);
}
.ms-val {
  font-family: var(--outfit);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ms-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Accommodation list */
.accom-list {
  list-style: none;
  margin: 1.5rem 0;
}
.accom-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--body-clr);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
}
.accom-list li:last-child { border-bottom: none; }

/* ── Snow report (dark section) ────────────────────────────── */
.snow-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rule-inv);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.snow-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--rule-inv);
}
.snow-item:last-child { border-right: none; }
.snow-val {
  font-family: var(--outfit);
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.snow-val sup {
  font-size: 0.45em;
  font-weight: 600;
  opacity: 0.6;
  vertical-align: super;
  margin-left: 2px;
}
.snow-lbl {
  font-family: var(--inter);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.snow-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
}
.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--inter);
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.04em;
}
.open-pill::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
.snow-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.snow-detail b { color: rgba(255,255,255,0.68); font-weight: 500; }

/* ── Feature cards (on dark bg) ────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.feat-card {
  padding: 1.75rem;
}
.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  color: var(--blue);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
/* On dark bg, icon box is lighter */
.on-dark .feat-icon {
  background: rgba(27,105,212,0.18);
  color: var(--blue-hi);
}
.feat-title {
  font-family: var(--outfit);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.on-dark .feat-title { color: #fff; }
.feat-body {
  font-family: var(--inter);
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
}
.on-dark .feat-body { color: rgba(255,255,255,0.42); }

/* ── Slope cards ───────────────────────────────────────────── */
.slopes-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.slope-card { padding: 1.75rem; }

.diff-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--inter);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.28rem 0.65rem;
  margin-bottom: 1.1rem;
}
.diff-green  { background: #dcfce7; color: #166534; }
.diff-blue   { background: #dbeafe; color: #1e40af; }
.diff-red    { background: #fee2e2; color: #991b1b; }

.slope-name {
  font-family: var(--outfit);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.slope-body { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }

.slope-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  flex-wrap: wrap;
}
.slope-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* Lifts row */
.lifts-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.lift-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t), background var(--t);
}
.lift-card:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.lift-card:hover .lift-name,
.lift-card:hover .lift-sub { color: rgba(255,255,255,0.90) !important; }
.lift-card:hover .lift-ico  { color: var(--blue-hi) !important; }

.lift-ico  { color: var(--blue); margin-bottom: 0.5rem; }
.lift-name { font-family: var(--outfit); font-size: 0.95rem; font-weight: 700; color: var(--ink); transition: color var(--t); }
.lift-sub  { font-size: 0.78rem; color: var(--muted); transition: color var(--t); }

/* Safety strip */
.safety-strip {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  align-items: center;
}
.safe-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.safe-item .ic { color: var(--blue); }

/* ── Restaurant cards ──────────────────────────────────────── */
.rest-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.25rem;
}
.rest-card { overflow: hidden; }
.rest-thumb { overflow: hidden; }
.rest-card.big .rest-thumb  { height: 280px; }
.rest-card:not(.big) .rest-thumb { height: 190px; }
.rest-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.rest-card:hover .rest-thumb img { transform: scale(1.05); }
.rest-body { padding: 1.4rem 1.5rem; }
.rest-name {
  font-family: var(--outfit);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.rest-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.9rem; }
.rest-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-family: var(--inter);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--muted);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
}

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.g-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--surface);
}
.g-item:first-child { grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  min-height: 190px;
}
.g-item:first-child img { min-height: 100%; height: 100%; min-height: 460px; }
.g-item:hover img { transform: scale(1.05); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.g-item:hover .g-overlay { background: rgba(13,17,23,0.35); }
.g-zoom {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}
.g-item:hover .g-zoom { opacity: 1; transform: scale(1); }

/* Gallery modal */
.g-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,17,23,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.g-modal.open { display: flex; }
.g-modal-img {
  max-height: 86vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.40);
}
.g-close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.g-close:hover { background: rgba(255,255,255,0.20); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; }
.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.ci:first-child { border-top: 1px solid var(--rule); }
.ci-ico { color: var(--blue); margin-top: 1px; }
.ci-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.ci-val { font-size: 0.9rem; color: var(--body-clr); line-height: 1.55; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.flabel {
  font-family: var(--inter);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.finput {
  font-family: var(--inter);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.finput:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,105,212,0.10);
}
textarea.finput { resize: vertical; min-height: 120px; }
select.finput { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23727987' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; -webkit-appearance: none; }

.success {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.success-ico { color: #16a34a; margin: 0 auto 0.75rem; }
.success-title { font-family: var(--outfit); font-size: 1.3rem; font-weight: 700; color: #166534; margin-bottom: 0.3rem; }
.success-sub { font-size: 0.85rem; color: #166534; opacity: 0.75; }

/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {
  font-family: var(--outfit);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 0.85rem;
}
.footer-desc {
  font-size: 0.84rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fsoc {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: rgba(255,255,255,0.45);
  transition: all var(--t);
}
.fsoc:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.footer-h {
  font-family: var(--inter);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
}
.flink {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  padding: 0.28rem 0;
  transition: color var(--t);
}
.flink:hover { color: #fff; }

.fcontact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}
.fcontact-item .ic { color: var(--blue-hi); flex-shrink: 0; margin-top: 1px; }
.fcontact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.55; }

.footer-snow {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  text-decoration: none;
  transition: background var(--t);
}
.footer-snow:hover { background: rgba(255,255,255,0.08); }
.fsn-val { font-family: var(--outfit); font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.fsn-lbl { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── Sticky book bar ───────────────────────────────────────── */
#book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
}
#book-bar.show { transform: none; }
.bb-snow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.45);
}
.bb-snow strong { color: #fff; font-weight: 600; }
.bb-snow .ic { color: var(--blue-hi); }
.bb-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin: 0 auto;
}
.bb-label strong { color: #fff; font-weight: 600; }

/* ── Fade-up ───────────────────────────────────────────────── */
.fu {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.60s cubic-bezier(0.4,0,0.2,1),
              transform 0.60s cubic-bezier(0.4,0,0.2,1);
}
.fu.d1 { transition-delay: 0.08s; }
.fu.d2 { transition-delay: 0.16s; }
.fu.d3 { transition-delay: 0.24s; }
.fu.d4 { transition-delay: 0.32s; }
.fu.vis { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split-photo { min-height: 380px; order: -1; }
  .split-text, .split-text.reverse { padding: 3.5rem 2rem; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .rest-grid { grid-template-columns: 1fr 1fr; }
  .rest-card.big { grid-column: 1 / -1; }
  .rest-card.big .rest-thumb { height: 260px; }
  .lifts-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section, .section-md { padding: 5rem 0; }
  .hero-bar-inner { grid-template-columns: repeat(2,1fr); }
  .bar-item:nth-child(2) { border-right: none; }
  .bar-item:nth-child(3) { border-right: 1px solid var(--rule-inv); }
  .snow-grid { grid-template-columns: repeat(2,1fr); }
  .snow-item:nth-child(2) { border-right: none; }
  .slopes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:first-child { grid-column: 1 / -1; grid-row: auto; }
  .g-item:first-child img { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr; gap: 1rem; }
  .ms-item + .ms-item { padding-left: 0; border-left: none; padding-top: 1rem; border-top: 1px solid var(--rule); }
  #book-bar { flex-wrap: wrap; }
  .bb-label { display: none; }
}

@media (max-width: 540px) {
  .wrap { padding: 0 1.25rem; }
  .hero-h1 { font-size: clamp(2.8rem,12vw,4rem); }
  .section, .section-md { padding: 4rem 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .lifts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:first-child img { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .rest-grid { grid-template-columns: 1fr; }
  .snow-grid { grid-template-columns: 1fr 1fr; }
}
