@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --purple: #4a1d6a;
  --purple-light: #6b3a8f;
  --coral: #ff6b4a;
  --coral-light: #ff8f73;
  --cream: #fff8f5;
  --white: #ffffff;
  --ink: #2d1b36;
  --muted: #6e5f75;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--purple-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(74, 29, 106, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.logo img { width: 44px; height: 44px; }
.logo strong { display: block; font-size: 1rem; }
.logo span { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.nav-toggle {
  display: none;
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.main-nav a {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a.active { color: var(--purple); background: var(--cream); }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--coral-light) !important; color: var(--white) !important; }

/* Hero gradient */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, #3d1558 40%, var(--purple-light) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 1.5rem;
}

.hero-copy .badge {
  display: inline-block;
  background: rgba(255, 107, 74, 0.25);
  color: var(--coral-light);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.hero-copy p { opacity: 0.9; max-width: 30rem; margin-bottom: 1rem; }

.hero-mail { font-weight: 700; margin-bottom: 2rem !important; }
.hero-mail a { color: var(--coral-light); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s;
}

.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-light); color: var(--white); transform: translateY(-2px); }

.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.hero-visual img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Metric pills */
.metrics {
  background: var(--cream);
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(74, 29, 106, 0.06);
}

.metrics-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(74, 29, 106, 0.06);
}

.metric strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--purple);
}

.metric span { font-size: 0.82rem; color: var(--muted); }

/* Sections */
section { padding: 4.5rem 1.5rem; }

.wrap { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-lead { color: var(--muted); max-width: 620px; margin-bottom: 2.5rem; }

.bg-cream { background: var(--cream); }
.bg-purple { background: var(--purple); color: var(--white); }
.bg-purple a { color: var(--coral-light); }
.bg-purple .section-title { color: var(--white); }
.bg-purple .section-lead { color: rgba(255,255,255,0.78); }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(74, 29, 106, 0.08);
  border: 1px solid rgba(74, 29, 106, 0.06);
}

.bg-purple .product-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.product-card .tag {
  display: inline-block;
  background: var(--cream);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.bg-purple .product-card .tag {
  background: rgba(255,107,74,0.2);
  color: var(--coral-light);
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.75rem; }
.bg-purple .product-card p { color: rgba(255,255,255,0.72); }

.card-mail { font-size: 0.85rem; font-weight: 600; }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img { border-radius: var(--radius); }

.bullet-list { list-style: none; margin-top: 1.25rem; }
.bullet-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(74, 29, 106, 0.08);
  font-size: 0.95rem;
}
.bullet-list li::before { content: '●'; color: var(--coral); margin-right: 0.5rem; font-size: 0.6rem; }

/* Contact */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-info p { margin-bottom: 0.75rem; }
.contact-info .big-mail { font-size: 1.15rem; font-weight: 700; margin: 1rem 0; }

form { display: grid; gap: 1rem; }

label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.35rem; }

input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(74, 29, 106, 0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--coral);
}

textarea { min-height: 130px; resize: vertical; }

.form-note { font-size: 0.82rem; color: var(--muted); }

/* Page banner */
.page-banner {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 5.5rem 1.5rem 3rem;
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.page-banner p { max-width: 560px; margin: 0 auto 0.75rem; opacity: 0.88; }

.prose { max-width: 740px; margin: 0 auto; padding: 3rem 1.5rem; }
.prose h2 { font-family: var(--font-serif); font-size: 1.65rem; margin: 2rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; color: var(--muted); }

.timeline { border-left: 3px solid var(--coral); padding-left: 1.25rem; margin: 1.5rem 0; }
.timeline div { margin-bottom: 1.25rem; }
.timeline strong { display: block; color: var(--purple); font-size: 0.85rem; }

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255, 248, 245, 0.75);
  padding: 2.5rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

footer h4 { color: var(--white); font-family: var(--font-serif); margin-bottom: 0.75rem; }

.footer-links a {
  display: block;
  color: rgba(255, 248, 245, 0.65);
  padding: 0.2rem 0;
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--coral-light); }

.footer-mail { color: var(--coral-light); font-weight: 600; word-break: break-all; }

.footer-bottom {
  max-width: 1160px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .hero-grid, .split, .contact-split, .footer-grid, .product-grid { grid-template-columns: 1fr; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    flex-direction: column;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    min-width: 220px;
  }
  .main-nav.open { display: flex; }
  .site-header { position: relative; }
}

@media (max-width: 520px) {
  .metrics-inner { grid-template-columns: 1fr; }
}
