/* ============================================
   The Focused Woman Collective — Shared Styles
   ============================================ */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F7F4F1;
  --taupe:      #EDE8E3;
  --sage-light: #E8EDE5;
  --rose:       #B78582;
  --taupe-mid:  #8A7A74;
  --sage:       #A8B29B;
  --sage-dark:  #6b7a62;
  --ink:        #3a322f;
  --ink-mid:    #5a4e4a;
  --border:     rgba(138,122,116,0.18);
  --border-soft:rgba(138,122,116,0.12);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--rose); }

/* --- Layout --- */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Nav --- */
.site-nav {
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  line-height: 1.1;
}

.nav-wordmark span {
  display: block;
  font-size: 9px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rose); }

.nav-back {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--taupe-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--rose); }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--cream) !important;
  border: none;
  padding: 13px 28px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--taupe-mid) !important;
  border: 0.5px solid rgba(138,122,116,0.5);
  padding: 13px 28px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(138,122,116,0.08); border-color: var(--taupe-mid); }

.btn-block { display: block; text-align: center; width: 100%; padding: 14px; }

/* --- Sections --- */
.section        { padding: 56px 0; }
.section-cream  { background: var(--cream); }
.section-taupe  { background: var(--taupe); }
.section-sage   { background: var(--sage-light); }

.section-rule { border: none; border-top: 0.5px solid rgba(168,178,155,0.22); margin: 0; }

/* --- Typography helpers --- */
.eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.heading-xl {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}

.heading-lg {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.heading-md {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.heading-sm {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--ink); }
em { color: var(--rose); font-style: italic; }

.lede {
  font-size: 14px;
  color: var(--taupe-mid);
  line-height: 1.85;
  max-width: 480px;
}

.body-text {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* --- Cards --- */
.card {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}

.card-rose-header {
  background: var(--rose);
  border-radius: 18px;
  overflow: hidden;
}
.card-rose-header .card-head {
  padding: 26px 28px 20px;
}
.card-rose-header .card-body {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 0 0 18px 18px;
  padding: 24px 28px;
}

/* --- Pills / badges --- */
.badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(168,178,155,0.22);
  padding: 4px 11px;
  border-radius: 20px;
}

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--sage-dark);
  background: rgba(168,178,155,0.18);
  padding: 5px 14px;
  border-radius: 40px;
  letter-spacing: 0.03em;
}

/* --- Pullquote --- */
.pullquote {
  border-left: 2px solid var(--rose);
  padding: 18px 22px;
  background: rgba(183,133,130,0.06);
  border-radius: 0 12px 12px 0;
}
.pullquote p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 10px;
}
.pullquote cite {
  font-size: 11px;
  color: var(--sage);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* --- Leaf divider --- */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
}
.leaf-line {
  flex: 1;
  height: 0.5px;
  background: rgba(168,178,155,0.28);
  max-width: 200px;
}

/* --- Cookie banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: rgba(247,244,241,0.85);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  line-height: 1.6;
  z-index: 999;
}
.cookie-banner a { color: var(--sage); }
.cookie-banner .cookie-btn {
  background: var(--rose);
  color: var(--cream);
  border: none;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--taupe);
  border-top: 0.5px solid var(--border);
  padding: 36px 0 24px;
  text-align: center;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 2px;
}
.footer-wordmark span {
  display: block;
  font-size: 8.5px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 16px 0 12px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose); }
.footer-copy {
  font-size: 10px;
  color: rgba(138,122,116,0.5);
  letter-spacing: 0.04em;
}

/* --- Legal pages --- */
.legal-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 12px;
}
.legal-content p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px 20px;
}
.legal-content ul li {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 6px;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin-bottom: 20px;
}
.legal-content table th {
  text-align: left;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 10px 12px;
  border-bottom: 0.5px solid var(--border);
}
.legal-content table td {
  padding: 10px 12px;
  border-bottom: 0.5px solid var(--border-soft);
  color: var(--ink-mid);
  vertical-align: top;
  line-height: 1.65;
}
.legal-content table code {
  font-family: monospace;
  font-size: 12px;
  background: rgba(138,122,116,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}
.legal-content a { color: var(--rose); text-decoration: none; border-bottom: 0.5px solid rgba(183,133,130,0.35); }
.legal-content a:hover { border-bottom-color: var(--rose); }

/* --- Responsive --- */
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .heading-xl { font-size: 36px; }
  .heading-lg { font-size: 28px; }
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr !important; }
  .three-col { grid-template-columns: 1fr !important; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
