:root {
  --bg: #0a0a0c;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --text: #f4efe7;
  --muted: #b9b1a6;
  --gold: #d6b06a;
  --gold-strong: #f0d39d;
  --line: rgba(255,255,255,0.09);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(214,176,106,.16), transparent 32%), linear-gradient(180deg, #0a0a0c 0%, #111114 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.page-bg {
  position: fixed; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(214,176,106,.08), transparent 25%), radial-gradient(circle at 80% 30%, rgba(255,255,255,.04), transparent 18%);
  pointer-events: none;
}
.hero, .section { position: relative; z-index: 1; }
.hero { min-height: 100vh; padding: 28px 28px 64px; display: flex; flex-direction: column; }
.nav {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 8px 0 24px; max-width: 1200px; width: 100%; margin: 0 auto;
}
.brand {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; letter-spacing: .24em; font-weight: 700;
}
.nav-links { display: flex; gap: 20px; color: var(--muted); }
.hero-content {
  max-width: 1200px; width: 100%; margin: auto; padding: 72px 0 32px;
}
.eyebrow, .section-label {
  color: var(--gold); text-transform: uppercase; letter-spacing: .24em; font-size: 12px; margin-bottom: 16px;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif; margin: 0;
}
h1 {
  font-size: clamp(56px, 10vw, 112px); line-height: .92; max-width: 10ch; margin-bottom: 24px;
}
.hero-content p, .story-panel p, .contact-box p { color: var(--muted); line-height: 1.8; max-width: 720px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 22px; border-radius: 999px; font-weight: 700;
  border: 1px solid var(--line); transition: .18s ease; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-strong)); color: #171411; border-color: transparent; }
.btn-dark { background: rgba(255,255,255,0.04); }
.section {
  max-width: 1200px; margin: 0 auto; padding: 64px 28px;
}
.section-grid { display: grid; gap: 28px; }
.section-grid h2, .story-panel h2, .contact h2 { font-size: clamp(40px, 6vw, 68px); line-height: .95; margin-bottom: 18px; max-width: 10ch; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  min-height: 320px; padding: 28px; border-radius: 28px; border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.card.tall { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.08)), linear-gradient(135deg, rgba(214,176,106,.10), transparent); }
.card.soft { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); }
.card.gold { background: linear-gradient(180deg, rgba(214,176,106,.20), rgba(255,255,255,.04)); }
.card-tag { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 11px; margin-bottom: 12px; }
.card h3 { font-size: 38px; margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); line-height: 1.7; }
.story { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.story-panel, .quote-panel, .contact-box {
  border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: var(--shadow);
}
.story-panel { padding: 34px; }
.quote-panel {
  padding: 34px; display: flex; align-items: end; justify-content: start;
  background: linear-gradient(135deg, rgba(214,176,106,.17), rgba(255,255,255,.03));
}
.quote-panel p { font-family: 'Cormorant Garamond', serif; font-size: 44px; line-height: 1.05; margin: 0; }
.contact { display: grid; gap: 24px; }
.contact-box { padding: 34px; }
@media (max-width: 900px) {
  .cards, .story { grid-template-columns: 1fr; }
  .nav { flex-direction: column; align-items: flex-start; }
  h1 { max-width: none; }
}
