@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink: #1a1a2e;
  --cream: #f5f0e8;
  --accent: #c8783a;
  --muted: #7a7a8c;
  --card-bg: #ffffff;
  --border: #e0d9ce;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .02em;
}

.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

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

/* ── MAIN ── */
main { flex: 1; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #888;
  text-align: center;
  padding: 1.5rem;
  font-size: .82rem;
}

footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 2rem;
  background: var(--ink);
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #2e2060 0%, var(--ink) 70%);
  opacity: .9;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.hero p {
  color: #b0adc8;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: .8rem 2rem;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background .2s, transform .15s;
}

.btn:hover { background: #b0622a; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  margin-left: 1rem;
}

.btn-outline:hover { background: var(--accent); color: #fff; }

/* ── SECTION ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.product-card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.product-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  flex: 1;
}

.product-card .card-link {
  color: var(--accent);
  font-size: .9rem;
  font-weight: 500;
  margin-top: .5rem;
}

/* ── PRODUCT PAGE ── */
.product-header {
  background: var(--ink);
  padding: 4rem 2rem;
  text-align: left;
}

.product-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.product-header .eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.product-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
}

.product-header p {
  color: #b0adc8;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

.product-content { padding: 4rem 2rem; }
.product-content-inner { max-width: 900px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem;
}

.feature-item .icon { font-size: 1.6rem; margin-bottom: .8rem; }
.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.feature-item p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ── PRIVACY ── */
.privacy-content { padding: 4rem 2rem; }
.privacy-inner { max-width: 760px; margin: 0 auto; }

.privacy-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 2.5rem 0 .8rem;
}

.privacy-inner p, .privacy-inner li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: .6rem;
}

.privacy-inner ul { padding-left: 1.5rem; }
.privacy-inner .last-updated {
  font-size: .85rem;
  color: #aaa;
  margin-bottom: 2rem;
}

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

.fade-up { animation: fadeUp .6s ease both; }
.fade-up-d1 { animation-delay: .15s; }
.fade-up-d2 { animation-delay: .3s; }
.fade-up-d3 { animation-delay: .45s; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 0 1.2rem; }
  .nav-links { gap: 1.2rem; }
  .section { padding: 3rem 1.2rem; }
}
