@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Geist:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:        #fafaf8;
  --bg2:       #f4f2ee;
  --white:     #ffffff;
  --ink:       #111009;
  --ink2:      #2a2820;
  --gold:      #b07d2a;
  --gold-lt:   #c9942f;
  --gold-bg:   rgba(176,125,42,0.07);
  --gold-bd:   rgba(176,125,42,0.2);
  --muted:     #6b6560;
  --border:    #e5e2db;
  --shadow:    0 2px 24px rgba(17,16,9,0.07);
  --radius:    8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.22s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background 0.22s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px) !important; }

/* mobile */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mob-menu {
  display: none; position: fixed; top: 68px; left: 0; width: 100%;
  background: var(--white); z-index: 998; padding: 20px 24px;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
}
.mob-menu.open { display: block; }
.mob-menu ul { list-style: none; }
.mob-menu ul li { border-bottom: 1px solid var(--border); }
.mob-menu ul li a { display: block; padding: 13px 0; color: var(--ink); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.mob-menu ul li:last-child a { color: var(--gold); font-weight: 700; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.03em; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.22s;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(17,16,9,0.2); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(176,125,42,0.3); }
.btn-outline { border: 1.5px solid var(--border); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }

/* ── SECTION BASE ── */
section { padding: 100px 52px; }
.inner { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.s-title { font-family: 'Fraunces', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.s-title em { color: var(--gold); font-style: italic; }
.s-sub { color: var(--muted); font-size: 0.93rem; max-width: 500px; line-height: 1.78; }
.s-header { margin-bottom: 60px; }
.gold-rule { width: 40px; height: 2px; background: var(--gold); margin: 18px 0; border-radius: 2px; }

/* ── CARD ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.card:hover { border-color: rgba(176,125,42,0.35); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ── PAGE BANNER ── */
.page-banner {
  padding: 150px 52px 80px; background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; color: var(--ink); line-height: 1.12; max-width: 1120px; margin: 16px auto 0; }
.page-banner h1 em { color: var(--gold); font-style: italic; }
.page-banner p { color: var(--muted); margin-top: 14px; font-size: 0.95rem; max-width: 1120px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 64px 52px 28px; }
.f-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; max-width: 1120px; margin: 0 auto 48px; }
.f-logo { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.f-logo span { color: var(--gold); }
.f-desc { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.75; max-width: 270px; }
.f-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; transition: color 0.22s; }
.f-col ul li a:hover { color: var(--gold); }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.f-bottom a { color: var(--gold); text-decoration: none; }

/* ── ANIMS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.a1 { animation: fadeUp 0.65s ease 0.05s both; }
.a2 { animation: fadeUp 0.65s ease 0.15s both; }
.a3 { animation: fadeUp 0.65s ease 0.25s both; }
.a4 { animation: fadeUp 0.65s ease 0.35s both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 20px; }
  .page-banner { padding: 120px 20px 64px; }
  footer { padding: 48px 20px 24px; }
  .f-grid { grid-template-columns: 1fr; gap: 32px; }
  .f-bottom { flex-direction: column; gap: 8px; }
}
