:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --text: #e8e2d6;
  --text-dim: #a89f8d;
  --accent: #d8c9a8;
  --line: rgba(216, 201, 168, 0.35);
  --line-soft: rgba(216, 201, 168, 0.18);
  --serif: 'Cormorant Garamond', 'Cormorant', Garamond, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─────────── NAV ─────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 60px);
  padding: 22px clamp(24px, 5vw, 70px);
  font-family: var(--serif);
  letter-spacing: 0.18em;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.brand {
  font-size: clamp(15px, 1.15vw, 19px);
  letter-spacing: 0.35em;
  font-weight: 500;
  color: var(--accent);
}
.menu {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 54px);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--text);
}
.menu a { opacity: 0.78; transition: opacity .2s, color .2s; }
.menu a:hover { opacity: 1; }
.menu a.active { color: var(--accent); opacity: 1; }
.socials {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--text);
}
.socials a {
  display: inline-flex;
  opacity: 0.82;
  transition: opacity .2s, color .2s;
}
.socials a:hover { opacity: 1; color: var(--accent); }
.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  margin: 6px 0;
  transition: transform .25s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/img/hero.jpg?v=5') center 15% / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.18) 42%, rgba(13,13,13,0) 70%),
    linear-gradient(to bottom, rgba(13,13,13,0.30), rgba(13,13,13,0) 18%, rgba(13,13,13,0) 70%, rgba(13,13,13,0.80));
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(90px, 12vh, 130px) clamp(24px, 5vw, 70px) clamp(40px, 6vh, 80px);
}
.hero-quote {
  max-width: 540px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-dim);
  font-family: var(--serif);
  font-size: clamp(13px, 1.1vw, 16px);
  opacity: 0.85;
}
.hero-quote span {
  font-size: 32px;
  line-height: 0.7;
  color: var(--accent);
}
.hero-quote em { font-style: italic; line-height: 1.5; }
.hero-content {
  align-self: end;
  max-width: 740px;
}
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin-bottom: clamp(16px, 2.2vh, 24px);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(68px, 11vw, 186px);
  line-height: 0.96;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-divider {
  width: 68px;
  height: 1px;
  background: var(--accent);
  margin: clamp(22px, 3vh, 34px) 0 clamp(16px, 2vh, 24px);
}
.tagline {
  font-family: var(--sans);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.38em;
  color: var(--text-dim);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text);
  transition: background .3s, border-color .3s, color .3s;
  cursor: pointer;
}
.btn-line:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-line.small {
  padding: 12px 22px;
  font-size: 10px;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(40px, 7vh, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
}
.scroll-line { width: 1px; height: 74px; background: var(--line); }
.scroll-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.45em;
  writing-mode: vertical-rl;
}

/* ─────────── ABOUT ─────────── */
.about {
  padding: clamp(60px, 8vh, 110px) clamp(24px, 5vw, 70px) clamp(50px, 6vh, 80px);
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.55fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
.about-text .kicker { margin-bottom: 18px; }
.about-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 clamp(20px, 2.4vh, 32px);
}
.about-copy {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 440px;
  margin: 0 0 clamp(28px, 3.5vh, 42px);
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.about-gallery figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-2);
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-gallery figure:hover img { transform: scale(1.04); }

/* ─────────── STATS ─────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(40px, 5vh, 70px) clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  gap: 24px;
  text-align: center;
}
.stat { position: relative; padding: 0 24px; }
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: var(--line-soft);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-num sup {
  font-size: 0.55em;
  top: -0.5em;
  font-weight: 300;
}
.stat-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─────────── QUOTE BAR ─────────── */
.quote-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(30px, 4vh, 50px) clamp(24px, 5vw, 70px);
  flex-wrap: wrap;
}
.quote-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--serif);
  color: var(--text-dim);
  font-size: clamp(15px, 1.15vw, 19px);
  flex: 1 1 320px;
}
.quote-mark {
  font-size: 32px;
  line-height: 0.7;
  color: var(--accent);
}
.quote-text em { font-style: italic; }

/* ─────────── FOOTER ─────────── */
.site-footer {
  padding: clamp(28px, 4vh, 50px) clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.3em;
  color: var(--accent);
  font-size: 14px;
}
.footer-legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent); }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }
  .menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 90px 32px 40px;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform .35s ease;
    z-index: -1;
  }
  .menu.open { transform: translateY(0); }
  .menu a { font-size: 14px; letter-spacing: 0.32em; }
  .socials { order: 2; }
  .burger { display: inline-block; order: 3; }

  .hero-inner {
    padding: 110px 28px 60px;
    grid-template-rows: auto 1fr;
  }
  .hero-quote { display: none; }
  .hero-title { font-size: clamp(64px, 15vw, 120px); }
  .hero-divider { width: 52px; }
  .scroll-cue { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-gallery { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }

  .stats { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); padding-top: 26px; }

  .quote-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .brand { font-size: 14px; letter-spacing: 0.3em; }
  .hero-inner { padding: 100px 22px 50px; }
  .kicker { font-size: 10px; letter-spacing: 0.38em; }
  .tagline { font-size: 10px; letter-spacing: 0.32em; }
  .btn-line { padding: 14px 22px; font-size: 10px; letter-spacing: 0.28em; }
  .about { padding: 60px 22px 50px; }
  .about-title { font-size: clamp(32px, 9vw, 48px); }
  .stats { padding: 36px 22px; }
  .stat-num { font-size: clamp(30px, 9vw, 42px); }
  .stat-label { font-size: 9.5px; letter-spacing: 0.28em; }
  .quote-bar { padding: 30px 22px; }
  .quote-text { font-size: 15px; }
  .site-footer { padding: 28px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
