:root {
  --bg: #000; --card: #111; --ink: #fff; --muted: #b3b3b3;
  --line: rgba(255,255,255,.16); --gold: #fff; --wa: #25d366;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  min-height: 100vh;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink); background: #000;
}
a { color: #fff; }
img { max-width: 100%; display: block; }
.wrap { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
nav {
  position: sticky; top: 0; z-index: 40;
  background: #000; border-bottom: 1px solid var(--line); padding: 14px 0;
}
nav .wrap { display: flex; justify-content: space-between; align-items: center; }
.brand img { height: 76px; width: auto; }
.nav-links { display: flex; gap: 16px; font-size: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: #fff; }
.hero {
  position: relative; min-height: min(62vh, 560px);
  display: flex; align-items: flex-end;
  background: #000 center 45% / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), #000);
}
.hero-inner { position: relative; z-index: 2; width: min(1140px, calc(100% - 32px)); margin: 0 auto 36px; }
.kicker { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: #f2f2f2; }
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: .95; margin: 8px 0 10px;
}
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 40px 0 10px;
}
.lead { max-width: 56ch; color: var(--muted); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cta, .ghost {
  display: inline-flex; align-items: center; padding: 12px 18px;
  border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 15px;
}
.cta { background: #fff; color: #000; }
.ghost { border: 1px solid var(--line); color: #fff; }
.facts {
  display: grid; gap: 10px;
  grid-template-columns: repeat(4, 1fr); margin: 8px 0 28px;
}
.fact {
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; background: #111;
}
.fact b { display: block; font-size: 12px; color: #aaa; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.prose { color: var(--muted); line-height: 1.65; max-width: 68ch; }
.prose p { margin: 0 0 12px; }
.inc {
  display: grid; gap: 8px; grid-template-columns: 1fr 1fr; margin: 12px 0 8px;
  padding: 0; list-style: none;
}
.inc li {
  border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; background: #111; color: #ddd;
}
.gallery {
  display: grid; gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery a { display: block; border-radius: 12px; overflow: hidden; background: #111; }
.gallery img {
  width: 100%; height: 220px; object-fit: cover; cursor: zoom-in;
  transition: transform .35s ease;
}
.gallery a:first-child { grid-column: span 2; }
.gallery a:first-child img { height: 360px; }
.gallery img:hover { transform: scale(1.04); }
.others { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.others a {
  text-decoration: none; color: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; background: #111;
}
.others img { width: 100%; height: 120px; object-fit: cover; }
.others span { display: block; padding: 10px 12px; font-size: 14px; font-weight: 700; }
footer { border-top: 1px solid var(--line); padding: 24px 0 40px; color: var(--muted); font-size: .9rem; }
footer img { height: 64px; width: auto; margin-bottom: 8px; }
.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  background: var(--wa); color: #06210f; font-weight: 800;
  padding: 12px 16px; border-radius: 999px; text-decoration: none;
}
#lb {
  position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.92);
  display: none; place-items: center; padding: 24px;
}
#lb.open { display: grid; }
#lb img { max-width: min(96vw, 1200px); max-height: 88vh; object-fit: contain; }
#lb button {
  position: absolute; top: 16px; right: 16px; background: #fff; color: #000;
  border: 0; border-radius: 999px; padding: 8px 14px; font-weight: 700; cursor: pointer;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .brand img { height: 64px; }
  .facts, .inc, .gallery { grid-template-columns: 1fr 1fr; }
  .gallery a:first-child { grid-column: span 2; }
  .gallery img, .gallery a:first-child img { height: 180px; }
  .hero { min-height: 70svh; }
}
