/* ============================================================
   HOLLO COLLECTIVE — Shared Stylesheet
   Fonts: Cormorant Garamond (display) + Instrument Sans (body)
   ============================================================ */

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

/* ── Variables ── */
:root {
  --cream:      #F5F0E8;
  --warm-white: #FAF8F4;
  --ink:        #1A1612;
  --ink-mid:    #3D3630;
  --ink-light:  #7A6F65;
  --ink-faint:  #B8AFA5;
  --sage:       #9B89C4;
  --sage-light: #EDE9F7;
  --sand:       #C9B99A;
  --sand-light: #EDE5D8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 72px;
  --max-w: 1160px;
  --gutter: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-xl em, .display-lg em, .display-md em, .display-sm em {
  font-style: italic;
  font-weight: 300;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.25;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.body-lg { font-size: 18px; line-height: 1.7; }
.body-md { font-size: 15px; line-height: 1.7; }
.body-sm { font-size: 13px; line-height: 1.6; }
.muted    { color: var(--ink-light); }
.faint    { color: var(--ink-faint); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(64px, 10vw, 120px) 0;
}
.section--sm {
  padding: clamp(40px, 6vw, 72px) 0;
}
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--cream {
  background: var(--cream);
}
.section--sand {
  background: var(--sand-light);
}

/* ── Border helpers ── */
.border-top    { border-top: 0.5px solid var(--sand); }
.border-bottom { border-bottom: 0.5px solid var(--sand); }
.divider       { border: none; border-top: 0.5px solid var(--sand); margin: 0; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--warm-white);
  border-bottom: 0.5px solid var(--sand);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.nav__logo span {
  color: var(--sage);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); font-weight: 500; }
.nav__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 0.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Mobile nav toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.25s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 0.5px solid var(--sand);
  padding: 24px var(--gutter) 32px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav__mobile a {
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--ink-mid);
}
.nav__mobile a.active { color: var(--ink); }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(48px, 7vw, 80px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(201,185,154,0.25);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--sage); }
.footer__tagline {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.6;
  max-width: 240px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: var(--sand);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: var(--ink-faint);
}
.footer__email {
  font-size: 13px;
  color: var(--sand);
  transition: color 0.2s;
}
.footer__email:hover { color: var(--cream); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 0.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.22s, color 0.22s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--filled {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--filled:hover {
  background: var(--ink-mid);
}
.btn--sage {
  border-color: var(--sage);
  color: var(--sage);
}
.btn--sage:hover {
  background: var(--sage);
  color: var(--warm-white);
}
.btn--cream {
  border-color: var(--cream);
  color: var(--cream);
}
.btn--cream:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn--lg {
  font-size: 13px;
  padding: 18px 44px;
}

/* ── PILL / TAG ── */
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 0.5px solid var(--sage);
  color: var(--sage);
}
.pill--sand {
  border-color: var(--sand);
  color: var(--ink-light);
}
.pill--filled {
  background: var(--sage-light);
  border-color: var(--sage-light);
  color: var(--sage);
}

/* ── SECTION HEADING PATTERN ── */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head--center { align-items: center; text-align: center; }
.section-head p {
  max-width: 560px;
  color: var(--ink-light);
}
.section-head--center p { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--warm-white);
  border: 0.5px solid var(--sand-light);
  padding: 32px;
}
.card--cream {
  background: var(--cream);
  border-color: var(--sand);
}
.card--dark {
  background: var(--ink-mid);
  color: var(--cream);
  border-color: transparent;
}

/* ── CHECK LIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-mid);
}
.check-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 0.5px solid var(--sage);
  position: relative;
  top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%239B89C4' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.col-span-2 { grid-column: span 2; }

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-faint);
  border: 0.5px solid var(--sand);
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.img-placeholder--cream {
  background: var(--cream);
}
.img-placeholder__initials {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--ink-faint);
  line-height: 1;
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }
.fade-up--delay-4 { transition-delay: 0.4s; }
.fade-up--delay-5 { transition-delay: 0.5s; }

/* ── PAGE TOP OFFSET ── */
.page-top {
  padding-top: var(--nav-h);
}

/* ── STAT BLOCK ── */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--sage);
  padding-left: 20px;
}
.stat-block__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-block__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  text-transform: uppercase;
}

/* ── FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--warm-white);
  border: 0.5px solid var(--sand);
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6F65' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ── STEP NUMBER ── */
.step-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  color: var(--sand-light);
  user-select: none;
}

/* ── TIER CARD ── */
.tier-card {
  border: 0.5px solid var(--sand);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tier-card--featured {
  border-color: var(--sage);
  background: var(--sage-light);
}
.tier-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}
.tier-price sub {
  font-size: 18px;
  font-weight: 400;
  vertical-align: middle;
}
.tier-divider {
  border: none;
  border-top: 0.5px solid var(--sand);
}
.tier-card--featured .tier-divider {
  border-color: rgba(155, 137, 196, 0.3);
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-top: 0.5px solid var(--sand);
  border-bottom: 0.5px solid var(--sand);
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.pull-quote__attr {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 0.5px solid var(--sand-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
.faq-question:hover { color: var(--ink-mid); }
.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 0.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink-faint);
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}
.faq-item.open .faq-answer { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .col-span-2 { grid-column: span 1; }
}
