:root {
  --bg: #0b0c0e;
  --bg-alt: #101216;
  --card: #14161b;
  --fg: #f2efe9;
  --muted: #8f8c84;
  --accent: #c9a86a;
  --accent-soft: rgba(201, 168, 106, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(201, 168, 106, 0.35);
  --maxw: 980px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #0b0c0e; }

a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 5vw, 3rem);
  background: rgba(11, 12, 14, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-decoration: none;
  color: var(--fg);
}
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 7rem) 1.5rem clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(110% 80% at 80% -10%, var(--accent-soft) 0%, transparent 55%);
}
.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.lead {
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  color: #cdc9c0;
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-portrait { display: flex; justify-content: center; }
.hero-portrait img {
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--accent); color: #0b0c0e; }
.btn-primary:hover { transform: translateY(-2px); background: #d8ba80; }
.btn-ghost { border: 1px solid var(--line-gold); color: var(--fg); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.section-intro { color: var(--muted); max-width: 52ch; margin-bottom: 2.4rem; }

.prose p { color: #cdc9c0; max-width: 64ch; margin-bottom: 1.2rem; font-size: 1.04rem; }
.prose strong { color: var(--fg); font-weight: 600; }

/* ---------- CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.card-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.card h3 { font-size: 1.2rem; font-weight: 600; margin: 0.7rem 0 0.6rem; }
.card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.1rem; }
.card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.card a:hover { opacity: 0.75; }

/* ---------- LINK GROUPS ---------- */
.link-group { margin-bottom: 2.4rem; }
.link-group h4, .social-heading {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.links { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.7rem; }
.links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.links a:hover { border-color: var(--line-gold); transform: translateX(3px); }
.links span { font-weight: 600; }
.links em { font-style: normal; font-size: 0.82rem; color: var(--muted); }

.social { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.social a {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--fg);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- CONTACT ---------- */
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- FOOTER ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 2.2rem 0; }
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--fg);
}
.foot-links { display: flex; gap: 1.4rem; }
.foot-links a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.foot-links a:hover { color: var(--accent); }
.foot-copy { font-size: 0.82rem; color: var(--muted); }

/* ---------- LEGAL PAGES ---------- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 4rem; }
.legal h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 0.4rem;
}
.legal .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 2.4rem; }
.legal h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.2rem 0 0.8rem;
  color: var(--accent);
}
.legal p, .legal li { color: #cdc9c0; max-width: 70ch; margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.3rem; }
.legal a { color: var(--accent); }
.back-link { display: inline-block; margin-bottom: 2rem; color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.back-link:hover { color: var(--accent); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-portrait { order: -1; margin-bottom: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
