/* =========================================================
   Villa Bleucaraïbes — Editorial Neumorphism · Deep Blue
   ========================================================= */

:root {
  --bg: #07111f;
  --bg-2: #0c1a2c;
  --surface: #11253c;
  --surface-2: #173052;
  --line: rgba(140, 180, 220, 0.08);
  --text: #eaf1f9;
  --text-muted: #8fa4bd;
  --text-dim: #5b7290;
  --accent: #5fbed4;
  --accent-2: #2a8aa8;
  --accent-soft: rgba(95, 190, 212, 0.14);
  --accent-glow: rgba(95, 190, 212, 0.35);
  --shadow-dark: rgba(0, 0, 0, 0.6);
  --shadow-light: rgba(70, 120, 170, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% -10%, rgba(95,190,212,0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(42,138,168,0.06), transparent 60%);
  pointer-events: none; z-index: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); letter-spacing: -0.01em; }
em, .italic { font-style: italic; font-variation-settings: "SOFT" 100; color: var(--accent); }

p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.5; }

.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.05em; color: var(--text-dim); }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

/* ---------- Layout ---------- */
.container { width: min(1240px, 92%); margin: 0 auto; position: relative; z-index: 1; }
section { padding: 6rem 0; position: relative; z-index: 1; }
@media (max-width: 760px) { section { padding: 3.5rem 0; } }

/* ---------- Neumorphism utilities ---------- */
.neu {
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border-radius: var(--radius);
  box-shadow:
    14px 14px 30px var(--shadow-dark),
    -8px -8px 22px var(--shadow-light),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.neu-inset {
  background: var(--bg-2);
  border-radius: var(--radius);
  box-shadow:
    inset 8px 8px 18px var(--shadow-dark),
    inset -5px -5px 14px var(--shadow-light);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(7, 17, 31, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex; align-items: baseline; gap: 0.45rem;
}
.logo .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent-glow); }
.logo em { font-style: italic; color: var(--accent); font-variation-settings: "SOFT" 100; }

.nav-links { display: flex; gap: 0.2rem; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.04); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #06121e !important;
  font-weight: 600 !important;
  padding: 0.7rem 1.4rem !important;
  margin-left: 0.6rem;
  box-shadow: 0 8px 22px var(--accent-glow);
}
.nav-cta:hover { transform: translateY(-2px); color: #06121e !important; background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important; }

.burger {
  display: none; background: var(--surface); border: none; color: var(--text);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  box-shadow: 5px 5px 12px var(--shadow-dark), -3px -3px 9px var(--shadow-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06121e;
  font-weight: 600;
  box-shadow: 0 12px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-3px); color: #06121e; box-shadow: 0 16px 40px var(--accent-glow); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  box-shadow: 7px 7px 18px var(--shadow-dark), -5px -5px 14px var(--shadow-light);
}
.btn-ghost:hover { transform: translateY(-3px); color: var(--accent); }
.btn-line {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.14); padding: 0.95rem 1.7rem;
}
.btn-line:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-primary:active, .btn-ghost:active { transform: translateY(0); box-shadow: inset 5px 5px 12px var(--shadow-dark), inset -3px -3px 9px var(--shadow-light); }

/* =========================================================
   HOME — Asymmetric editorial hero
   ========================================================= */
.hero-edit {
  padding: 3rem 0 5rem;
  position: relative;
}
.hero-edit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-edit .meta-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono); font-size: 0.74rem;
  color: var(--text-dim); letter-spacing: 0.08em;
}
.hero-edit .meta-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-edit h1 {
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  margin: 1rem 0 1.5rem;
}
.hero-edit h1 .l1 { display: block; font-weight: 300; color: var(--text); }
.hero-edit h1 .l2 { display: block; font-style: italic; font-variation-settings: "SOFT" 100; color: var(--accent); padding-left: 1.5rem; }
.hero-edit h1 .l3 { display: block; font-weight: 300; color: var(--text); padding-left: 4rem; font-size: 0.65em; opacity: 0.85; }

.hero-edit .lede {
  max-width: 480px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.hero-edit .actions { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.5rem; }

.hero-edit .micro-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  max-width: 520px;
}
.hero-edit .micro-stats > div { padding-right: 1rem; }
.hero-edit .micro-stats .n { font-family: var(--font-display); font-size: 2.2rem; color: var(--text); display: block; line-height: 1; }
.hero-edit .micro-stats .l { font-size: 0.74rem; color: var(--text-dim); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.45rem; display: block; }

/* Right side: stacked image card with floating chips */
.hero-image-stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-image-stage .frame {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    24px 24px 60px rgba(0,0,0,0.55),
    -10px -10px 30px rgba(70,120,170,0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-image-stage .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-stage .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,17,31,0.5) 100%);
}

.float-chip {
  position: absolute;
  background: rgba(17, 37, 60, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: 14px 14px 30px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem;
}
.float-chip .big { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; color: var(--accent); }
.float-chip .lbl { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }
.float-chip .val { color: var(--text); font-weight: 500; font-size: 0.92rem; }

.chip-rating { top: -1.5rem; left: -2rem; }
.chip-status { bottom: 2rem; right: -2rem; }
.chip-loc    { bottom: -1.5rem; left: 2rem; }

.scroll-hint {
  margin-top: 5rem;
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--text-dim); font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.scroll-hint .line { width: 60px; height: 1px; background: linear-gradient(90deg, var(--text-dim), transparent); }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 3rem; align-items: center;
  animation: scroll 38s linear infinite;
  font-family: var(--font-display); font-style: italic; font-variation-settings: "SOFT" 100;
  font-size: 1.6rem;
  color: var(--text-muted);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Photo collage section ---------- */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1.2rem;
  margin-top: 3rem;
}
.collage > div {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 12px 12px 28px var(--shadow-dark), -6px -6px 18px var(--shadow-light);
  position: relative;
}
.collage > div img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.collage > div:hover img { transform: scale(1.06); }
.collage .ph-1 { grid-row: 1 / 3; }
.collage .ph-4 { grid-column: 2 / 4; }

/* ---------- Editorial story section ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 5rem;
  align-items: start;
}
.story-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 0.85;
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  opacity: 0.9;
}
.story-grid .lbl { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-dim); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 1rem; }

/* ---------- Feature pills ---------- */
.feature-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.feature {
  padding: 1.6rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 10px 10px 24px var(--shadow-dark), -6px -6px 16px var(--shadow-light);
  transition: transform var(--transition);
}
.feature:hover { transform: translateY(-4px); }
.feature .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent);
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
  margin-bottom: 1rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.9rem; }

/* ---------- Final CTA card ---------- */
.cta-card {
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
}
.cta-card h2 { margin-bottom: 1rem; max-width: 640px; margin-inline: auto; }
.cta-card p { max-width: 540px; margin-inline: auto; margin-bottom: 2rem; }

/* =========================================================
   Shared sections (kept for other pages)
   ========================================================= */
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title .eyebrow { margin-bottom: 1rem; }
.section-title h2 { margin-bottom: 0.8rem; }
.section-title p { max-width: 580px; margin: 0 auto; }

.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 10px 10px 26px var(--shadow-dark), -6px -6px 18px var(--shadow-light);
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-5px); }
.card .icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
  margin-bottom: 1.2rem;
}

/* Gallery / Lightbox */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1rem; }
.gallery .ph {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  box-shadow: 10px 10px 24px var(--shadow-dark), -5px -5px 14px var(--shadow-light);
  cursor: pointer; transition: transform var(--transition);
  background: var(--surface-2);
}
.gallery .ph:hover { transform: scale(1.03); }
.gallery .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery .ph:hover img { transform: scale(1.08); }
.gallery .placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--text-dim); font-family: var(--font-mono); font-size: 0.78rem;
  width: 100%; height: 100%;
}
.lightbox { position: fixed; inset: 0; background: rgba(7,17,31,0.96); display: none; align-items: center; justify-content: center; z-index: 999; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 92%; max-height: 92%; border-radius: var(--radius); }
.lightbox .close { position: absolute; top: 2rem; right: 2rem; width: 50px; height: 50px; border-radius: 50%; border: none; background: var(--surface); color: #fff; font-size: 1.4rem; cursor: pointer; box-shadow: 6px 6px 16px var(--shadow-dark), -4px -4px 12px var(--shadow-light); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.price-card { padding: 2.4rem; text-align: center; }
.price-card .season { font-family: var(--font-mono); color: var(--accent); letter-spacing: 0.15em; font-size: 0.78rem; text-transform: uppercase; }
.price-card .amount { font-family: var(--font-display); font-size: 3.2rem; color: var(--text); margin: 0.6rem 0 0.2rem; line-height: 1; }
.price-card .per { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1.4rem; }
.price-card ul { list-style: none; text-align: left; }
.price-card li { padding: 0.55rem 0; color: var(--text-muted); border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.price-card li::before { content: "→ "; color: var(--accent); }

/* Reviews */
.review { padding: 1.8rem; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.review-name { color: var(--text); font-weight: 500; }
.review-date { color: var(--text-dim); font-size: 0.8rem; font-family: var(--font-mono); }
.stars { color: var(--accent); letter-spacing: 0.1em; font-size: 0.9rem; }
.review p { color: var(--text-muted); font-style: italic; font-family: var(--font-display); font-size: 1rem; }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 3rem; padding: 2.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.reviews-summary .big { font-family: var(--font-display); font-size: 4.5rem; color: var(--accent); line-height: 1; }

/* Forms */
.form { max-width: 740px; margin: 0 auto; padding: 2.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; margin-bottom: 0.55rem;
  color: var(--text-dim); font-size: 0.75rem;
  font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 1rem 1.3rem;
  background: var(--bg-2);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.96rem;
  box-shadow: inset 6px 6px 14px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
  transition: all var(--transition);
}
.form-group textarea { border-radius: var(--radius); resize: vertical; min-height: 140px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  box-shadow: inset 6px 6px 14px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light), 0 0 0 2px var(--accent);
}
.form-msg { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); text-align: center; display: none; }
.form-msg.ok { display: block; background: var(--accent-soft); color: var(--accent); }
.form-msg.err { display: block; background: rgba(255,80,80,0.12); color: #ff7878; }

/* Calendar */
.calendar-wrap { padding: 2rem; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.calendar-nav { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--surface); color: var(--text); cursor: pointer; font-size: 1.2rem; box-shadow: 5px 5px 12px var(--shadow-dark), -3px -3px 9px var(--shadow-light); transition: all var(--transition); }
.calendar-nav:hover { color: var(--accent); transform: scale(1.05); }
.calendar-nav:active { box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -3px -3px 8px var(--shadow-light); }
.calendar-month-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--text); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.calendar-grid .dow { text-align: center; padding: 0.5rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }
.calendar-grid .day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.9rem; color: var(--text); transition: all var(--transition); }
.calendar-grid .day.empty { background: transparent; }
.calendar-grid .day.available { background: rgba(80,210,140,0.18); color: #7be0a0; box-shadow: 3px 3px 8px var(--shadow-dark), -2px -2px 6px var(--shadow-light); font-weight: 500; }
.calendar-grid .day.booked { background: rgba(255,100,100,0.18); color: #ff8585; text-decoration: line-through; box-shadow: inset 2px 2px 6px rgba(0,0,0,0.25); }
.calendar-grid .day.off { background: transparent; color: var(--text-dim); opacity: 0.35; }
.calendar-grid .day.today { outline: 2px solid var(--accent); outline-offset: 2px; }
.calendar-grid .day.past { opacity: 0.45; }
.calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.legend { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-dim); flex-wrap: wrap; letter-spacing: 0.08em; text-transform: uppercase; }
.legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend i.av { background: rgba(80,210,140,0.6); }
.legend i.bk { background: rgba(255,100,100,0.5); }
.legend i.td { background: var(--accent); }

/* Equipment list */
.equip-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 0.7rem; }
.equip-item {
  padding: 0.85rem 1.2rem;
  background: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 10px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text-muted);
}
.equip-item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Footer */
.site-footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-grid h4 { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.footer-grid a { display: block; color: var(--text-muted); padding: 0.3rem 0; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid .brand p { max-width: 320px; margin-top: 1rem; font-size: 0.92rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--text-dim); font-size: 0.82rem; font-family: var(--font-mono); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeUp 0.95s cubic-bezier(0.22,1,0.36,1) forwards; }

/* Responsive */
@media (max-width: 980px) {
  .hero-edit-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hero-image-stage { aspect-ratio: 4/4; max-width: 480px; margin: 0 auto; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .collage { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .collage .ph-1 { grid-row: 1 / 2; grid-column: 1 / 3; }
  .collage .ph-4 { grid-column: 1 / 3; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 70px 0 0 0; background: var(--bg);
    flex-direction: column; padding: 2rem; gap: 0.4rem;
    transform: translateX(100%); transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 1rem; }
  .burger { display: flex; align-items: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .float-chip { padding: 0.7rem 0.9rem; font-size: 0.78rem; }
  .chip-rating { left: -0.5rem; }
  .chip-status { right: -0.5rem; }
  .chip-loc { left: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
