@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400;1,9..144,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=IBM+Plex+Mono:wght@300;400&display=swap');

/* ─── TOKENS ─────────────────────────── */
:root {
  --ink:        #1C1917;
  --vellum:     #F6F3EC;
  --vellum-2:   #EDE9DF;
  --vellum-3:   #E0DBCF;
  --rose:       #8C6560;
  --rose-lt:    #B89490;
  --oxblood:    #4A0E0E;
  --oxblood-2:  #3A0B0B;
  --cream:      #FDFBF7;
  --muted:      #6B6560;
  --border:     rgba(140,101,96,0.18);
  --border-dk:  rgba(140,101,96,0.30);

  --serif:   'Fraunces', Georgia, serif;
  --sans:    'DM Sans', sans-serif;
  --mono:    'IBM Plex Mono', monospace;

  --w: 1160px;
  --pad: 40px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── CONTAINER ────────────────────────── */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── NAVIGATION ─────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--oxblood);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { font-style: normal; font-weight: 300; color: var(--rose); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-2px; left:0; right:0;
  height:1px;
  background:var(--oxblood);
  transform:scaleX(0);
  transition:transform 0.2s;
  transform-origin:left;
}
.nav-links a:hover { color: var(--oxblood); }
.nav-links a:hover::after { transform:scaleX(1); }
.nav-links a.active { color: var(--oxblood); }
.nav-links a.active::after { transform:scaleX(1); }
.nav-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--oxblood);
  color: var(--vellum);
  border: none;
  padding: 11px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--oxblood-2); }

/* ─── FOOTER ─────────────────────────── */
.footer {
  background: var(--ink);
  padding: 72px 0 40px;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose-lt);
  margin-bottom: 10px;
}
.footer-brand-desc {
  font-family: var(--mono);
  font-size: 11px;
  color: #555;
  letter-spacing: 0.05em;
  line-height: 1.7;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid #2a2a2a;
  transition: all 0.18s;
}
.footer-social a:hover { color: var(--rose-lt); border-color: var(--rose); }
.footer-col h6 {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 13.5px;
  color: #777;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--rose-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  color: #3a3a3a;
  letter-spacing: 0.06em;
}

/* ─── SHARED UTILITIES ───────────────── */
.label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
}
.body-text {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.btn-dark { background: var(--ink); color: var(--vellum); }
.btn-dark:hover { background: var(--oxblood); }
.btn-oxblood { background: var(--oxblood); color: var(--vellum); }
.btn-oxblood:hover { background: var(--oxblood-2); }
.btn-outline { background: transparent; border: 1px solid var(--border-dk); color: var(--ink); }
.btn-outline:hover { border-color: var(--oxblood); color: var(--oxblood); }
.btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--vellum); }
.btn-outline-light:hover { border-color: var(--rose-lt); color: var(--rose-lt); }
.divider-line {
  width: 40px;
  height: 1px;
  background: var(--rose);
  display: block;
}

/* ─── PAGE FADE IN ───────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-2 { animation: fadeUp 0.55s 0.12s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-3 { animation: fadeUp 0.55s 0.22s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-4 { animation: fadeUp 0.55s 0.32s cubic-bezier(0.22,1,0.36,1) both; }
.fade-up-5 { animation: fadeUp 0.55s 0.42s cubic-bezier(0.22,1,0.36,1) both; }
