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

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

:root {
  --ink: #111110;
  --ink-2: #3a3a38;
  --ink-3: #6b6b68;
  --ink-4: #a8a8a4;
  --ink-5: #d4d4d0;
  --paper: #faf9f7;
  --paper-2: #f3f1ec;
  --paper-3: #e9e6df;
  --gold: #b8965a;
  --gold-light: #f5ede0;
  --rule: rgba(17,17,16,0.08);
  --rule-2: rgba(17,17,16,0.04);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg text { font-synthesis: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--ink); }

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s, opacity 0.2s;
}

.nav-cta:hover { opacity: 0.75; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.footer-brand-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 15px;
  color: rgba(250,249,247,0.45);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(250,249,247,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(250,249,247,0.3);
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(250,249,247,0.3);
  text-decoration: none;
}

.footer-legal a:hover { color: rgba(250,249,247,0.6); }

/* ── BUTTONS ── */
.btn-dark {
  display: inline-block;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.75; }

.btn-light {
  display: inline-block;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink-5);
  border-radius: 1px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-light:hover { border-color: var(--ink-3); color: var(--ink-2); }

.btn-gold {
  display: inline-block;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-gold:hover { opacity: 0.85; }

/* ── SECTION LABEL ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--rule); }

/* ── FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  footer { padding: 2.5rem 1.5rem; }
}
