/* FlossFlow Marketing — Shared Styles */

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

:root {
  --linen:       #FAF6F1;
  --linen-deep:  #F0E6D8;
  --cream:       #FFFCF8;
  --terra:       #C0614A;
  --terra-light: #D97B62;
  --terra-dark:  #A04E3A;
  --terra-tint:  rgba(192,97,74,0.08);
  --terra-20:    rgba(192,97,74,0.2);
  --brown:       #2C1810;
  --brown-mid:   #7A5C4F;
  --brown-light: #B09080;
  --sage:        #6B8F5E;
  --rose:        #D4A096;
  --gold:        #C49A3A;
  --border:      #E5D5C8;
  --shadow:      0 2px 16px rgba(44,24,16,0.08);
  --shadow-lg:   0 8px 32px rgba(44,24,16,0.13);
  --radius:      12px;
  --radius-sm:   8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', Georgia, sans-serif;
  background: var(--linen);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle aida-cloth grid overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(192,97,74,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,97,74,0.028) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, .display {
  font-family: 'Amatic SC', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,241,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: 'Amatic SC', serif; font-size: 30px; font-weight: 700;
  color: var(--terra); text-decoration: none; letter-spacing: 0.04em;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--brown-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--terra); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: 999px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 2px 12px rgba(192,97,74,0.28); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(192,97,74,0.38); }
.btn-ghost { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); }
.btn-ghost:hover { background: var(--terra-tint); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--terra); font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.18); }
.btn-white:hover { background: var(--linen); transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 17px; }

/* ── Section shared ── */
.section-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-kicker::before, .section-kicker::after { content: '✦'; font-size: 8px; }
.section-title { font-size: clamp(38px, 4vw, 54px); color: var(--brown); margin-bottom: 48px; }

/* ── Footer ── */
.footer { background: var(--brown); color: rgba(255,255,255,0.7); padding: 52px 0 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-brand-name { font-family: 'Amatic SC', serif; font-size: 34px; font-weight: 700; color: var(--terra-light); margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); max-width: 200px; }
.footer-links h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--terra-light); }
.footer-bottom { padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── Legal prose ── */
.prose-page { max-width: 720px; margin: 0 auto; padding: 64px 24px 100px; position: relative; }
.prose-page h1 { font-size: clamp(48px, 5vw, 68px); color: var(--terra); margin-bottom: 6px; }
.prose-page .meta { font-size: 13px; color: var(--brown-light); margin-bottom: 44px; }
.prose-page h2 { font-size: 32px; color: var(--brown); margin: 44px 0 14px; }
.prose-page p { font-size: 15px; line-height: 1.8; color: var(--brown-mid); margin-bottom: 18px; }
.prose-page ul { padding-left: 24px; margin-bottom: 18px; }
.prose-page ul li { font-size: 15px; line-height: 1.8; color: var(--brown-mid); margin-bottom: 6px; }
.prose-page a { color: var(--terra); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
}
