/* ═══════════════════════════════════════════════════════
   CHROMOLA — Shared Stylesheet  (v2 / peach-pink vaporwave)
   ═══════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS (loaded via <link> in each page) ──────
   Josefin Sans  — headings / labels
   Raleway       — body copy
   ──────────────────────────────────────────────────────── */

/* ── DESIGN TOKENS ────────────────────────────────────── */
:root {
  --bg:        #FFF4F0;
  --bg2:       #FDE8F2;
  --accent1:   #E8A598;    /* muted coral-peach          */
  --accent2:   #C97D90;    /* dusty rose                 */
  --accent3:   #C4B5D4;    /* soft lavender              */
  --dark:      #3D2B35;    /* plum-dark text             */
  --mid:       #7A5C68;    /* medium mauve text          */
  --light:     #B09098;    /* muted caption text         */
  --card:      rgba(255, 255, 255, 0.62);
  --border:    rgba(201, 125, 144, 0.22);
  --shadow:    0 6px 30px rgba(160, 85, 110, 0.12);
  --radius:    16px;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img, video { display: block; }

/* ── BASE ─────────────────────────────────────────────── */
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* Soft grid overlay — vaporwave texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,125,144,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,125,144,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ── STICKY HEADER / NAV ──────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 244, 240, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

nav {
  display: flex;
  gap: 4px;
}

nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  padding: 7px 15px;
  border-radius: 24px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--accent2);
  background: rgba(201, 125, 144, 0.12);
}

/* ── MAIN WRAPPER ─────────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
}

/* ── SECTION UTILITIES ────────────────────────────────── */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 32px;
}

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.9em;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.section-sub {
  color: var(--light);
  font-size: 0.9em;
  margin-bottom: 44px;
}

.divider {
  height: 1px;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--accent1) 0%, transparent 80%);
  opacity: 0.35;
}

/* ── CARDS ────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 40px;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(201, 125, 144, 0.35);
  width: fit-content;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 125, 144, 0.48);
}

.btn-primary svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent2);
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8em;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: gap 0.2s;
  width: fit-content;
}

.btn-ghost:hover { gap: 13px; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(255, 244, 240, 0.75);
  backdrop-filter: blur(10px);
  padding: 28px 32px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.85em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent2); }

.footer-legal {
  font-size: 0.73em;
  color: var(--light);
  line-height: 1.5;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 700px) {
  .section { padding: 44px 20px; }
  .nav-inner { padding: 0 18px; }
  footer { padding: 24px 20px; }
}
