/* ==============================================================
   TRACKING SUCCESS — SITE STYLES
   ============================================================== */

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

:root {
  --black: #0a0a0a;
  --ink: #1C1812;
  --earth-dark: #3D2B1A;
  --earth: #5C3D20;
  --stone: #7A6248;
  --sand: #B8956A;
  --red: #962D19;
  --red-deep: #7A1E1E;
  --red-hover: #b53620;
  --cream: #F2E8D5;
  --warm: #F9F5EF;
  --off-white: #FAF6EF;
  --white: #ffffff;
  --border: rgba(122, 98, 72, 0.22);
  --muted: #888;
  --mid: #555;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-hover); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: none;
  padding: 0 40px;
  transition: all .3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo .logo-name {
  font-size: 13px; font-weight: 700; letterSpacing: 0.04em;
  color: var(--ink); line-height: 1;
  letter-spacing: 0.04em;
}
.nav-logo .logo-sub {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 11px; color: var(--sand); letter-spacing: 0.1em; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  background: none; border: none; padding: 8px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  cursor: pointer; border-radius: 8px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.btn-primary { color: var(--red); background: transparent; border-color: var(--red); }
.nav-links a.btn-primary:hover { color: white; background: var(--red); border-color: var(--red); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 14px 30px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .1s; }
.btn-primary {
  background: var(--red); color: white;
  box-shadow: 0 2px 0 rgba(0,0,0,0);
}
.btn-primary:hover { background: var(--red-hover); color: white; box-shadow: 0 10px 24px -8px rgba(150,45,25,0.55); }
.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); box-shadow: 0 8px 20px -10px rgba(28,24,18,0.35); }
.btn-light {
  background: var(--white); color: var(--ink);
}
.btn-light:hover { background: var(--cream); color: var(--ink); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.25); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.nav .btn { margin-left: 8px; }

/* ── COMMON ──────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 16px;
}
.section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

p { font-size: 16px; line-height: 1.7; color: var(--mid); }
.lead { font-size: 18px; line-height: 1.7; color: var(--mid); }

.text-red { color: var(--red); }
.italic-serif { font-family: 'EB Garamond', serif; font-style: italic; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black); color: white;
  padding: 64px 40px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #555; margin-bottom: 18px;
}
.footer a {
  display: block; font-size: 13px; color: #888;
  margin-bottom: 10px; transition: color .2s;
}
.footer a:hover { color: white; }
.footer .footer-brand .name {
  font-size: 14px; font-weight: 700; color: white; letter-spacing: 0.02em;
}
.footer .footer-brand .sub {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 12px; color: var(--sand); letter-spacing: 0.1em; margin-top: 4px;
  margin-bottom: 16px;
}
.footer .footer-brand p {
  font-size: 13px; color: #777; line-height: 1.65; max-width: 280px;
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid #1f1f1f; padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: #444;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 800px) {
  .nav { padding: 0 20px; }
  .nav .btn { display: none; }
  .nav-links a { padding: 8px 8px; font-size: 12px; }
  .section { padding: 64px 20px; }
  .footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
