/* ── SHARED STYLES · The Whole Again Initiative ─────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --dusty-rose: #d4a5a5;
  --clay: #b87d6d;
  --sand: #e8d5c4;
  --deep-burgundy: #5d2e46;
  --petal: #f5ece6;
  --warm-white: #fdf8f5;
  --muted-rose: #c49090;
  --text-dark: #3a1e2e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,165,165,0.25);
  animation: fadeDown 0.8s ease both;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-burgundy);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--deep-burgundy); }
.nav-links a.active {
  border-bottom: 1px solid var(--dusty-rose);
  padding-bottom: 2px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 4rem 6rem;
  background: #2a1020;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(232,213,196,0.5);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(232,213,196,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--dusty-rose); }
.footer-bottom {
  padding: 1.5rem 6rem;
  background: #1e0c18;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy, .footer-tax {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(232,213,196,0.35);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--deep-burgundy);
  color: var(--warm-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--deep-burgundy);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--deep-burgundy); }

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--clay);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--dusty-rose);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--clay); color: var(--deep-burgundy); }

/* ── SECTION UTILITIES ────────────────────────────────────── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  font-weight: 300;
  color: var(--deep-burgundy);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

/* ── PAGE HERO BANNER (inner pages) ──────────────────────── */
.page-banner {
  padding: 10rem 6rem 5rem;
  background: linear-gradient(135deg, var(--petal) 0%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,165,0.2);
  top: -100px; right: -100px;
  pointer-events: none;
}
.page-banner-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.page-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--deep-burgundy);
  line-height: 1.1;
  max-width: 700px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.page-banner-title em { font-style: italic; color: var(--clay); }
.page-banner-sub {
  font-size: 1.1rem;
  color: #7a4a5a;
  max-width: 560px;
  margin-top: 1.5rem;
  animation: fadeUp 0.8s 0.6s ease both;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  footer { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
  .footer-bottom { padding: 1.25rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-banner { padding: 8rem 2rem 4rem; }
}
