/* ============================================================
   COURTNEY MERICLE — DESIGN SYSTEM
   courtneymericle.com
   ============================================================ */

/* 1. Reset & Base
-------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* 2. Design Tokens
-------------------------------------------------------------- */
:root {
  --teal:        #51a0a4;
  --teal-dark:   #3a7478;
  --teal-mid:    #6db5b9;
  --teal-light:  #eaf4f5;
  --white:       #ffffff;
  --grey-light:  #f4f4f4;
  --grey-mid:    #d8d8d8;
  --grey-dark:   #888888;
  --charcoal:    #2d2d2d;
  --charcoal-soft: #3e3e3e;
  --gold:        #c9a84c;
  --gold-dark:   #a88838;
  --gold-light:  #fdf8ee;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.13);

  --ease: 0.25s ease;

  --max-w: 1180px;
  --sp:    80px 24px;
}

/* 3. Typography
-------------------------------------------------------------- */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem,  5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 0.85rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

p { line-height: 1.78; color: #555; }
p + p { margin-top: 1em; }
strong { color: var(--charcoal); font-weight: 600; }

/* 4. Layout
-------------------------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--sp); }
.section--grey       { background: var(--grey-light); }
.section--teal       { background: var(--teal); }
.section--teal h1,.section--teal h2,.section--teal h3,.section--teal p { color: var(--white); }
.section--charcoal   { background: var(--charcoal); }
.section--charcoal h1,.section--charcoal h2,.section--charcoal h3,.section--charcoal p { color: var(--white); }
.section--gold-light { background: var(--gold-light); }
.section--teal-light { background: var(--teal-light); }

.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 56px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow--gold  { color: var(--gold); }
.section-eyebrow--white { color: rgba(255,255,255,.75); }

.divider-accent {
  width: 44px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 18px 0;
}
.divider-accent--center { margin: 18px auto; }
.divider-accent--gold   { background: var(--gold); }
.divider-accent--white  { background: rgba(255,255,255,.5); }

/* 5. Buttons
-------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--ease); white-space: nowrap;
}
.btn-primary   { background: var(--teal);  color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline   { background: transparent; color: var(--teal);  border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-white     { background: #fff; color: var(--teal); border-color: #fff; }
.btn-white:hover { background: var(--grey-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold      { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.btn-charcoal  { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-charcoal:hover { background: var(--charcoal-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 42px; font-size: .96rem; }
.btn-sm { padding: 9px 22px; font-size: .8rem; }
.btn-full { width: 100%; }

/* 6. Navigation
-------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--ease);
  padding: 0 24px;
}
.nav.scrolled { border-color: var(--grey-mid); box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700;
  color: var(--charcoal); letter-spacing: .02em; line-height: 1.2;
}
.nav__logo span {
  display: block; font-family: var(--font-sans); font-size: .58rem;
  font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); margin-top: 1px;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-family: var(--font-sans); font-size: .83rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: .02em;
  transition: color var(--ease); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--teal);
  transition: width var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--teal); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 8px; }

/* Nav Dropdown */
.nav__dropdown-wrap {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-sans); font-size: .83rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: .02em;
  cursor: pointer; background: none; border: none; padding: 0;
  transition: color var(--ease);
}
.nav__dropdown-trigger::after {
  content: '▾'; font-size: .7rem; transition: transform var(--ease);
}
.nav__dropdown-wrap:hover .nav__dropdown-trigger,
.nav__dropdown-wrap:focus-within .nav__dropdown-trigger { color: var(--teal); }
.nav__dropdown-wrap:hover .nav__dropdown-trigger::after,
.nav__dropdown-wrap:focus-within .nav__dropdown-trigger::after { transform: rotate(-180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 999;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: .83rem; font-weight: 500;
  color: var(--charcoal);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--teal-light); color: var(--teal); }
.nav__dropdown a::after { display: none; }

/* Mega-menu (Shop dropdown) */
.nav__dropdown--mega {
  display: flex; gap: 0;
  min-width: 560px; padding: 8px 0;
  left: auto; transform: translateX(-40%) translateY(-4px);
}
.nav__dropdown-wrap:hover .nav__dropdown--mega,
.nav__dropdown-wrap:focus-within .nav__dropdown--mega {
  transform: translateX(-40%) translateY(0);
}
.nav__dropdown-col {
  flex: 1; padding: 14px 0;
  border-right: 1px solid var(--grey-light);
}
.nav__dropdown-col:last-child { border-right: none; }
.nav__dropdown-heading {
  font-family: var(--font-sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); padding: 6px 18px 10px; display: block;
}
.nav__dropdown-col a { padding: 8px 18px; }
.nav__dropdown-heading--link { text-decoration: none; }
.nav__dropdown-heading--link:hover { color: var(--teal-dark, #3d8a8e) !important; background: none !important; }

/* Mobile nav section labels */
.nav__mobile-section {
  font-family: var(--font-sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); padding: 14px 0 4px;
  border-bottom: none !important;
}
.nav__mobile-item {
  padding-left: 12px !important; font-size: .88rem !important;
  color: var(--charcoal-light, #555) !important;
}
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px; transition: all var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; padding: 20px 24px 28px;
  border-bottom: 1px solid var(--grey-mid); box-shadow: var(--shadow-md);
  z-index: 999; flex-direction: column; gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-sans); font-size: .95rem; font-weight: 500;
  color: var(--charcoal); padding: 13px 0;
  border-bottom: 1px solid var(--grey-light);
  transition: color var(--ease);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--teal); }
.nav__mobile .btn { margin-top: 16px; }

/* 7. Footer
-------------------------------------------------------------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 64px 24px 32px; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { }
.footer__brand-name { font-family: var(--font-serif); font-size: 1.35rem; color: #fff; font-weight: 700; margin-bottom: 2px; }
.footer__brand-sub { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.footer__tagline { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.55); max-width: 260px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .8rem;
  transition: all var(--ease);
}
.footer__social a:hover { border-color: var(--teal); color: var(--teal); }
.footer__col-title { font-family: var(--font-sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--ease); }
.footer__col ul a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: .78rem; color: rgba(255,255,255,.35); }
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom-links a { color: rgba(255,255,255,.35); transition: color var(--ease); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.65); }

/* 8. Photo Placeholders
-------------------------------------------------------------- */
.photo-placeholder {
  background: linear-gradient(140deg, var(--teal-light) 0%, #dde8e9 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--grey-dark); font-size: .75rem; font-family: var(--font-sans);
  letter-spacing: .08em; text-transform: uppercase; text-align: center;
  padding: 32px 20px; gap: 10px; border-radius: var(--radius-lg);
  border: 1.5px dashed var(--grey-mid);
}
.photo-placeholder::before {
  content: ''; width: 44px; height: 44px;
  border: 2px solid var(--grey-dark); border-radius: 50%; opacity: .35;
}
.photo-placeholder--portrait { aspect-ratio: 3/4; }
.photo-placeholder--square   { aspect-ratio: 1; }
.photo-placeholder--wide     { aspect-ratio: 16/9; }
.photo-placeholder--product  { aspect-ratio: 1; background: linear-gradient(140deg, var(--gold-light) 0%, #ece8dd 100%); border-color: #d4c8a0; }

/* 9. Hero (home)
-------------------------------------------------------------- */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.home-hero__content {
  padding: 120px 56px 80px 40px;
  max-width: 580px;
  margin-left: auto;
}
.home-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.home-hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--teal); border-radius: 2px;
}
.home-hero__title { margin-bottom: 20px; }
.home-hero__title em { font-style: italic; color: var(--teal); }
.home-hero__sub {
  font-size: 1.05rem; max-width: 460px; color: #666; margin-bottom: 36px; line-height: 1.75;
}
.home-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.home-hero__media {
  height: 100vh;
  background: linear-gradient(160deg, #c7dfe0 0%, #a8cdd0 40%, #7ab8bc 100%);
  position: relative;
  overflow: hidden;
}
.home-hero__media-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.home-hero__media .photo-placeholder {
  width: 100%; height: 100%; border-radius: 0;
  border: none; font-size: .85rem; color: rgba(255,255,255,.7);
  background: transparent;
}
.home-hero__media .photo-placeholder::before { border-color: rgba(255,255,255,.5); }
.home-hero__brands {
  position: absolute; bottom: 32px; left: 32px;
  display: flex; gap: 10px;
}
.home-hero__brand-tag {
  padding: 7px 16px; border-radius: var(--radius-pill);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.home-hero__brand-tag--teal { background: var(--teal); color: #fff; }
.home-hero__brand-tag--gold { background: var(--gold); color: #fff; }

/* 10. Page Hero (inner pages)
-------------------------------------------------------------- */
.page-hero {
  padding: 120px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero--teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.page-hero--teal h1,.page-hero--teal p { color: #fff; }
.page-hero--teal .section-eyebrow { color: rgba(255,255,255,.8); }
.page-hero--grey { background: linear-gradient(135deg, var(--grey-light) 0%, var(--teal-light) 100%); }
.page-hero--charcoal { background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%); }
.page-hero--charcoal h1,.page-hero--charcoal p { color: #fff; }
.page-hero--gold { background: linear-gradient(135deg, #3a2a0a 0%, #5a4010 100%); }
.page-hero--gold h1,.page-hero--gold p { color: #fff; }
.page-hero--gold .section-eyebrow { color: var(--gold); }
.page-hero__title { margin-bottom: 16px; }
.page-hero__sub { font-size: 1.1rem; max-width: 540px; margin: 0 auto 28px; }
.page-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 11. Stats Bar
-------------------------------------------------------------- */
.stats-bar {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 36px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat__number {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 6px;
}
.stat__label { font-size: .78rem; color: var(--grey-dark); letter-spacing: .04em; }

/* 12. Feature Split (2-col image + text)
-------------------------------------------------------------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-split--reversed .feature-split__media { order: 1; }
.feature-split--reversed .feature-split__content { order: 0; }
.feature-split__photo { width: 100%; border-radius: var(--radius-xl); overflow: hidden; }
.feature-split__photo .photo-placeholder--portrait { border-radius: var(--radius-xl); }

/* 13. Cards
-------------------------------------------------------------- */
.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__img { width: 100%; }
.card__body { padding: 28px; }
.card__tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; display: block; }
.card__tag--gold { color: var(--gold); }
.card__title { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; }
.card__text { font-size: .9rem; color: #666; line-height: 1.65; margin-bottom: 18px; }

/* 14. Pillar / Icon Grid
-------------------------------------------------------------- */
.pillar-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; text-align: center; }
.icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.icon-item__icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
  background: var(--teal-light);
}
.icon-item__icon--gold { background: var(--gold-light); }
.icon-item__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.icon-item__text { font-size: .875rem; color: #666; line-height: 1.65; }

/* 15. SHIFT Letter Pillars
-------------------------------------------------------------- */
.shift-pillars { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.shift-pillar {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal); transition: all var(--ease);
}
.shift-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shift-pillar__letter {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 8px;
}
.shift-pillar__word { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.shift-pillar__text { font-size: .82rem; color: #666; line-height: 1.6; }

/* 16. Feature Lists (check)
-------------------------------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .93rem; color: #555; }
.check-list li::before {
  content: '✓'; color: var(--teal); font-weight: 700;
  flex-shrink: 0; margin-top: 1px; font-size: .88rem;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-light); border-radius: 50%;
}
.check-list--gold li::before { color: var(--gold); background: var(--gold-light); }
.check-list--white li { color: rgba(255,255,255,.85); }
.check-list--white li::before { color: #fff; background: rgba(255,255,255,.2); }

/* 17. Testimonials
-------------------------------------------------------------- */
.testimonial {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: '\201C'; position: absolute; top: 16px; left: 24px;
  font-family: var(--font-serif); font-size: 5rem; color: var(--teal);
  opacity: .12; line-height: 1;
}
.testimonial__stars { color: var(--gold); margin-bottom: 12px; font-size: .85rem; letter-spacing: 2px; }
.testimonial__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; line-height: 1.72; color: var(--charcoal);
  margin-bottom: 20px; padding-top: 12px;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; }
.testimonial__name { font-weight: 600; font-size: .875rem; color: var(--charcoal); }
.testimonial__meta { font-size: .78rem; color: var(--grey-dark); }

/* 18. Pricing Cards
-------------------------------------------------------------- */
.pricing-card {
  background: #fff; border: 2px solid var(--grey-mid);
  border-radius: var(--radius-xl); padding: 40px 32px;
  text-align: center; transition: all var(--ease); position: relative; overflow: hidden;
}
.pricing-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.pricing-card--featured { border-color: var(--teal); box-shadow: var(--shadow-md); }
.pricing-card__badge {
  position: absolute; top: 0; right: 24px;
  background: var(--teal); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-card__badge--gold { background: var(--gold); }
.pricing-card__tier {
  font-family: var(--font-sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.pricing-card__tier--gold { color: var(--gold); }
.pricing-card__name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 6px; }
.pricing-card__desc { font-size: .875rem; color: #666; margin-bottom: 24px; }
.pricing-card__price { margin-bottom: 24px; }
.pricing-card__amount { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.pricing-card__period { font-size: .83rem; color: var(--grey-dark); margin-top: 4px; }
.pricing-card__features { list-style: none; text-align: left; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.pricing-card__features li { font-size: .875rem; color: #555; display: flex; align-items: flex-start; gap: 10px; }
.pricing-card__features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-card--featured .pricing-card__features li::before { color: var(--teal); }

/* 19. FAQ Accordion
-------------------------------------------------------------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-sans); font-size: .95rem;
  font-weight: 600; color: var(--charcoal); gap: 16px; transition: color var(--ease);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal); font-size: 1.1rem; line-height: 1;
  transition: all var(--ease);
}
.faq-item.open .faq-icon { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer__inner { padding-bottom: 20px; font-size: .9rem; color: #666; line-height: 1.78; }

/* 20. Opt-in / Lead Magnet Box
-------------------------------------------------------------- */
.optin-box {
  background: var(--teal); border-radius: var(--radius-xl);
  padding: 52px 48px; color: #fff; text-align: center;
}
.optin-box h2,.optin-box h3,.optin-box p { color: #fff; }
.optin-box--gold { background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%); }
.optin-box--gold h2,.optin-box--gold p { color: #fff; }

.optin-form { display: flex; gap: 12px; max-width: 480px; margin: 24px auto 0; }
.optin-form .form-input { flex: 1; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .83rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; letter-spacing: .02em; }
.form-input,.form-textarea,.form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--grey-mid); border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: .93rem; color: var(--charcoal);
  background: #fff; transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-input:focus,.form-textarea:focus,.form-select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(81,160,164,.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: .78rem; color: var(--grey-dark); margin-top: 4px; }

.optin-box .form-input {
  border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.15); color: #fff;
}
.optin-box .form-input::placeholder { color: rgba(255,255,255,.6); }
.optin-box .form-input:focus { border-color: rgba(255,255,255,.75); box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.optin-privacy { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 12px; }

/* 21. Week Curriculum
-------------------------------------------------------------- */
.week-list { display: flex; flex-direction: column; gap: 0; counter-reset: week; }
.week-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0; border-bottom: 1px solid var(--grey-mid);
  transition: background var(--ease);
}
.week-item:hover { background: var(--grey-light); }
.week-item__num {
  padding: 24px; display: flex; align-items: flex-start; justify-content: center;
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--teal);
  opacity: .35; padding-top: 28px;
}
.week-item__content { padding: 24px 24px 24px 0; }
.week-item__title { font-family: var(--font-sans); font-size: .9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.week-item__desc { font-size: .875rem; color: #666; line-height: 1.65; }

/* 22. Process Steps
-------------------------------------------------------------- */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 2px; background: var(--grey-mid);
}
.process-step { text-align: center; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px #fff, 0 0 0 8px var(--teal-light);
}
.process-step__title { font-family: var(--font-sans); font-size: .875rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.process-step__text { font-size: .8rem; color: #666; line-height: 1.6; }

/* 23. Bonus Cards
-------------------------------------------------------------- */
.bonus-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.bonus-card__icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.bonus-card__title { font-family: var(--font-sans); font-size: .875rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.bonus-card__text { font-size: .83rem; color: #666; line-height: 1.6; }
.bonus-card__value { font-size: .75rem; font-weight: 700; color: var(--gold); margin-top: 4px; }

/* 24. Brand Callout Cards
-------------------------------------------------------------- */
.brand-callout {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); transition: all var(--ease);
  display: flex; flex-direction: column;
}
.brand-callout:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.brand-callout__header { padding: 36px 32px 28px; }
.brand-callout__header--teal { background: var(--teal); }
.brand-callout__header--gold { background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%); }
.brand-callout__eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.brand-callout__name { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.brand-callout__tagline { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.brand-callout__body { background: #fff; padding: 28px 32px; flex: 1; }
.brand-callout__body p { font-size: .9rem; color: #666; margin-bottom: 20px; }

/* 25. Product Cards
-------------------------------------------------------------- */
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__img { width: 100%; }
.product-card__body { padding: 22px; }
.product-card__tag { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.product-card__name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.product-card__desc { font-size: .84rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
.product-card__affiliate { font-size: .72rem; color: var(--grey-dark); margin-top: 8px; }

/* 26. Lead Magnet Card
-------------------------------------------------------------- */
.lead-magnet-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 40px;
}
.lead-magnet-card__visual {
  min-height: 320px;
}
.lead-magnet-card__visual .photo-placeholder { border-radius: 0; border: none; height: 100%; }
.lead-magnet-card__content { padding: 48px 40px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.lead-magnet-card--reversed .lead-magnet-card__visual { order: 1; }
.lead-magnet-card--reversed .lead-magnet-card__content { order: 0; }
.lead-magnet-card--teal .lead-magnet-card__visual .photo-placeholder { background: linear-gradient(140deg, var(--teal) 0%, var(--teal-dark) 100%); }
.lead-magnet-card--gold .lead-magnet-card__visual .photo-placeholder { background: linear-gradient(140deg, var(--charcoal) 0%, #1a1a1a 100%); }

/* 27. Contact
-------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info__item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info__icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info__label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.contact-info__value { font-size: .93rem; color: var(--charcoal); }

/* 28. CTA Strip
-------------------------------------------------------------- */
.cta-strip { background: var(--teal); padding: 64px 24px; text-align: center; }
.cta-strip h2,.cta-strip p { color: #fff; }
.cta-strip p { opacity: .85; max-width: 520px; margin: 12px auto 28px; }
.cta-strip--charcoal { background: var(--charcoal); }
.cta-strip--gold { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }

/* 29. Scroll Animations
-------------------------------------------------------------- */
.animate { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s ease; }
.animate.in-view { opacity: 1; transform: none; }
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }

/* 30. Responsive
-------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --sp: 64px 24px; }
  .home-hero { grid-template-columns: 1fr 1fr; }
  .home-hero__content { padding: 120px 40px 80px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .shift-pillars { grid-template-columns: repeat(3,1fr); }
  .pillar-grid { grid-template-columns: repeat(3,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --sp: 48px 20px; }
  .nav__links,.nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero__content { padding: 100px 20px 40px; max-width: 100%; margin: 0; }
  .home-hero__media { height: 56vw; min-height: 280px; }
  .home-hero__brands { bottom: 16px; left: 16px; }
  .home-hero__ctas { flex-direction: column; }

  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-split--reversed .feature-split__media { order: 0; }
  .icon-grid { grid-template-columns: 1fr; }
  .shift-pillars { grid-template-columns: repeat(2,1fr); }
  .pillar-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 24px 20px; }

  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .optin-form { flex-direction: column; }
  .optin-box { padding: 36px 24px; }

  .lead-magnet-card { grid-template-columns: 1fr; }
  .lead-magnet-card--reversed .lead-magnet-card__visual { order: 0; }
  .lead-magnet-card--reversed .lead-magnet-card__content { order: 1; }
  .lead-magnet-card__visual { min-height: 220px; }
  .lead-magnet-card__content { padding: 32px 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .week-item { grid-template-columns: 56px 1fr; }
  .pricing-card { padding: 32px 22px; }
}

@media (max-width: 480px) {
  .shift-pillars { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; }
  .home-hero__ctas .btn { width: 100%; }
  .page-hero__ctas .btn { width: auto; }
  .process-steps { grid-template-columns: 1fr; }
}
