/* ── FONTS (self-hosted) ── */
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-MediumItalic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --bg:         #0c0b09;
  --bg2:        #131209;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim:   rgba(201,168,76,0.15);
  --text:       #e8e4d8;
  --text-muted: #7a7569;
  --text-mid:   #b5af9f;
  --border:     rgba(201,168,76,0.18);
  --serif: 'EB Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ── LANG TOGGLE ── */
.lang-bar {
  position: fixed;
  top: 0; right: 0;
  padding: 1.2rem 2rem;
  z-index: 100;
  display: flex;
  gap: .2rem;
  align-items: center;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .3rem .5rem;
  transition: color .2s;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover  { color: var(--text); }
.lang-sep { color: var(--border); font-size: .7rem; }

/* ── HEADER ── */
header {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
}
.logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-decoration: none;
}
.logo span { font-style: italic; color: var(--text-muted); font-size: .9em; }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}
h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: 2px;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #0c0b09;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-2px);
}

/* ── DIVIDER ── */
.divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-icon { color: var(--gold); font-size: 1rem; opacity: .6; }

/* ── ABOUT ── */
.about {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-headline { grid-column: 1 / -1; }

.section-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text);
}
h2 em { font-style: italic; color: var(--gold-light); }

/* ── CARDS ── */
.card {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}
.card-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: .5rem;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── PULL QUOTE ── */
.pull-quote {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.pull-quote-bg { position: absolute; inset: 0; background: var(--bg2); }
.pull-quote blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.pull-quote blockquote strong {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
}

/* ── CTA FINAL ── */
.cta-final {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  text-align: center;
}
.cta-final h2 { margin-bottom: 1rem; }
.cta-final p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p { font-size: .75rem; color: var(--text-muted); }
.footer-logo { font-family: var(--serif); font-size: .9rem; color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
