@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --black:     #0D0D0D;
  --surface:   #151515;
  --surface-2: #1C1C1C;
  --white:     #F2EDE4;
  --dim:       rgba(242,237,228,.55);
  --gold:      #C9A87A;
  --gold-dim:  rgba(201,168,122,.22);
  --gold-line: rgba(201,168,122,.16);
  --gray:      #525252;
  --pad:       5rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 300;
}
nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 200;
  padding: 2rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line);
  transition: background .4s;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.nav-cta {
  padding: .55rem 1.375rem !important;
  border: 1px solid var(--gold-dim) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  border-bottom: none !important;
  transition: background .25s !important;
}
.nav-cta:hover { background: var(--gold-dim) !important; }
.nav-cta.active { border-bottom: none !important; color: var(--gold) !important; }

/* ── FOOTER ── */
footer {
  padding: 2.75rem var(--pad);
  border-top: 1px solid var(--gold-line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.foot-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
}
.foot-logo span { color: var(--gold); }
.foot-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.foot-links a {
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  text-decoration: none;
  transition: color .25s;
}
.foot-links a:hover { color: var(--dim); }
.foot-copy { font-size: .6875rem; color: var(--gray); text-align: right; }

/* ── LAYOUT ── */
section { padding: 7.5rem var(--pad); }
.rule { border: none; border-top: 1px solid var(--gold-line); margin: 0 var(--pad); }
.surface { background: var(--surface); }

/* ── TYPE ── */
.label {
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.serif-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.015em;
}
.serif-xl em { font-style: italic; color: var(--gold); }
.serif-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 1.75rem;
}
.serif-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
}
.body-text {
  font-size: 1.0625rem;
  color: var(--dim);
  max-width: 560px;
  line-height: 1.8;
}
.body-wide {
  font-size: 1.0625rem;
  color: var(--dim);
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: #0D0D0D;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 2px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .25s;
}
.btn-gold:hover { opacity: .82; }
.btn-outline {
  display: inline-block;
  padding: 1rem 2.25rem;
  border: 1px solid var(--gold-dim);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 300;
  letter-spacing: .04em;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color .25s;
}
.btn-outline:hover { border-color: var(--gold); }

/* ── ANIMATIONS ── */
.fi { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.fi.on { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 11rem var(--pad) 6rem;
  background: var(--surface);
  border-bottom: 1px solid var(--gold-line);
}

/* ── CARD ── */
.card {
  background: var(--surface);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 2.75rem;
  transition: border-color .3s, background .3s;
}
.card:hover { border-color: rgba(201,168,122,.45); background: var(--surface-2); }

/* ── PROSE (policies) ── */
.prose { max-width: 760px; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 3rem 0 1rem;
  color: var(--white);
}
.prose h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 1.75rem 0 .5rem;
  color: var(--white);
  letter-spacing: .02em;
}
.prose p { font-size: .9375rem; color: var(--dim); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { font-size: .9375rem; color: var(--dim); line-height: 1.8; margin-bottom: .375rem; }
.prose a { color: var(--gold); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* ── FORM ── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ff { display: flex; flex-direction: column; gap: .5rem; }
.ff label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); }
.ff input, .ff textarea, .ff select {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gold-line);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 300;
  padding: .9375rem 1.125rem;
  border-radius: 2px;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}
.ff input::placeholder, .ff textarea::placeholder { color: var(--gray); }
.ff input:focus, .ff textarea:focus, .ff select:focus { border-color: rgba(201,168,122,.6); }
.ff select { -webkit-appearance: none; cursor: pointer; }
.ff select option { background: #1C1C1C; }
.ff textarea { resize: vertical; min-height: 130px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  :root { --pad: 1.75rem; }
  nav { padding: 1.25rem var(--pad); }
  .nav-links { display: none; }
  section { padding: 5rem var(--pad); }
  .rule { margin: 0 var(--pad); }
  footer { grid-template-columns: 1fr; gap: 1rem; }
  .foot-copy { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .page-hero { padding: 8rem var(--pad) 4rem; }
}
