/* ============================================================
   TRANSFORMING PAGES — Design System
   His Word. Your page. Your life.
   transformingpages.com
============================================================ */

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

.hand-signature {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
}

/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --c-aubergine:    #3D2347;
  --c-aubergine-lt: #512e5e;
  --c-aubergine-dk: #2a1830;
  --c-off-white:    #F5F3EE;
  --c-off-white-dk: #EDE7DA;
  --c-gold:         #C9A55A;
  --c-gold-dk:      #A8832E;
  --c-ocean:        #4A90A4;
  --c-ocean-vivid:  #0784A8;
  --c-sage:         #728543;
  --c-burnt:        #C1440E;
  --c-ink:          #1A1518;
  --c-ink-lt:       #3d3540;
  --c-white:        #FFFFFF;

  --f-heading: 'Cormorant Garamond', Georgia, serif;
  --f-accent:  'Cormorant Garamond', Georgia, serif;
  --f-body:    'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-script:  'Dancing Script', cursive;

  --w-site:    1200px;
  --w-content: 780px;
  --w-narrow:  560px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s var(--ease);

  --shadow-sm: 0 2px 8px rgba(61,35,71,.08);
  --shadow-md: 0 6px 24px rgba(61,35,71,.12);
  --shadow-lg: 0 12px 48px rgba(61,35,71,.18);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--c-aubergine); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-aubergine);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

.tagline {
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-gold);
  letter-spacing: 0;
}

.subtitle {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--c-ink-lt);
  line-height: 1.5;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.85;
  color: var(--c-ink-lt);
}

blockquote {
  font-family: var(--f-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--c-aubergine);
  border-left: 3px solid var(--c-gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--w-site);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--content {
  max-width: var(--w-content);
}

.container--narrow {
  max-width: var(--w-narrow);
}

.section {
  padding: 5rem 0;
}

.section--lg {
  padding: 7rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--dark {
  background: var(--c-aubergine);
  color: var(--c-off-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-off-white);
}

.section--tinted {
  background: var(--c-off-white-dk);
}

.section--aubergine-tint {
  background: rgba(61, 35, 71, 0.04);
}

.text-center { text-align: center; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-2--flip > *:first-child { order: 2; }
.grid-2--flip > *:last-child  { order: 1; }

@media (min-width: 900px) {
  .grid-2--flip > *:first-child { order: 1; }
  .grid-2--flip > *:last-child  { order: 2; }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.section-label {
  font-family: var(--f-script);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.ornament {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-gold);
  margin: 1rem auto;
}

.ornament--left { margin-left: 0; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announce-bar {
  background: var(--c-aubergine-dk);
  color: rgba(245,245,240,.9);
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.announce-bar a {
  color: var(--c-off-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announce-bar a:hover { color: rgba(245,245,240,.75); }

/* ============================================================
   LOGO / BRAND MARK
============================================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo__mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.logo__img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-aubergine);
  letter-spacing: 0.02em;
}

.logo__tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 0.68rem;
  color: var(--c-gold);
  letter-spacing: 0.04em;
}

.logo--light .logo__name { color: var(--c-off-white); }
.logo--light .logo__tagline { color: rgba(245,245,240,0.7); }

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-off-white);
  border-bottom: 1px solid rgba(61,35,71,.1);
  transition: box-shadow var(--t);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  padding: 0.5rem 0.75rem;
  border-radius: 100px;
  transition: background var(--t), color var(--t);
}

.nav-links a:hover {
  background: rgba(61,35,71,.06);
  color: var(--c-aubergine);
}

.nav-links .btn-nav {
  background: var(--c-aubergine);
  color: var(--c-off-white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links .btn-nav:hover {
  background: var(--c-aubergine-lt);
  color: var(--c-off-white);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-aubergine);
  transition: transform var(--t), opacity var(--t);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-off-white);
  z-index: 150;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-aubergine);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61,35,71,.1);
  display: block;
}

.mobile-menu a:hover { color: var(--c-gold); }

.mobile-menu .btn-primary {
  margin-top: 1.5rem;
  text-align: center;
  border-bottom: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.95rem 2.25rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: filter var(--t), transform var(--t), color var(--t);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-secondary,
.btn-ocean {
  background-image:
    url('../images/btn-torn-left.png'),
    url('../images/btn-torn-right.png'),
    url('../images/btn-torn-center.png');
  background-position: left center, right center, center center;
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-size: auto 100%, auto 100%, auto 100%;
  background-color: transparent;
  color: var(--c-aubergine);
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-ocean:hover {
  color: var(--c-aubergine);
  filter: brightness(0.9);
}

.btn-light {
  background: var(--c-off-white);
  color: var(--c-aubergine);
}
.btn-light:hover {
  background: var(--c-white);
  color: var(--c-aubergine);
}

.btn-outline-light {
  background: rgba(245,243,238,.15);
  color: var(--c-off-white);
}
.btn-outline-light:hover {
  background: rgba(245,243,238,.25);
}

.btn-lg {
  font-size: 0.95rem;
  padding: 1.2rem 2.75rem;
}

.btn-sm {
  font-size: 0.78rem;
  padding: 0.7rem 1.5rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   IMAGE PLACEHOLDERS
============================================================ */
.img-ph {
  position: relative;
  background: var(--c-off-white);
  border: 1px solid rgba(61,35,71,.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: var(--c-aubergine);
}

.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233D2347' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.img-ph__icon {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  opacity: 0.4;
}

.img-ph__label {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--c-aubergine);
  opacity: 0.6;
  position: relative;
  z-index: 1;
  max-width: 200px;
}

.img-ph--hero { min-height: 420px; border-radius: 0; }
.img-ph--tall { min-height: 520px; }
.img-ph--med  { min-height: 320px; }
.img-ph--sm   { min-height: 220px; }
.img-ph--sq   { aspect-ratio: 1; min-height: 0; }
.img-ph--round { border-radius: 50%; aspect-ratio: 1; min-height: 0; }

/* Site images (replacing placeholders) */
.site-img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.site-img--hero { height: 420px; border-radius: 0; }
.site-img--tall { height: 520px; }
.site-img--med  { height: 320px; }
.site-img--sm   { height: 220px; }
.site-img--sq   { aspect-ratio: 1; height: auto; }
.site-img--round { border-radius: 50%; aspect-ratio: 1; height: auto; }

/* Devotional cover — no card, just image with shadow */
.devotional-cover {
  display: inline-block;
}
.devotional-cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 16px 48px rgba(61,35,71,.2), 0 4px 12px rgba(61,35,71,.1);
}

/* ============================================================
   HERO — HOME
============================================================ */
.hero {
  position: relative;
  background: var(--c-off-white);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233D2347' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.hero__torn-edge {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  padding: 6rem 0 7rem;
  width: 100%;
}

.hero__label {
  font-family: var(--f-script);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--c-aubergine);
  max-width: 650px;
  margin-bottom: 1.5rem;
}

.hero .tagline {
  color: var(--c-ink-lt);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* ============================================================
   HERO — INNER PAGES
============================================================ */
.page-hero {
  background: var(--c-aubergine);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F5F0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .section-label { color: var(--c-gold); }
.page-hero h1,
.page-hero h2 { color: var(--c-off-white); }

.page-hero .tagline { color: rgba(245,245,240,.7); }

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--c-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(61,35,71,.08);
  transition: border-color var(--t), box-shadow var(--t);
}

.card:hover {
  border-color: rgba(61,35,71,.18);
  box-shadow: var(--shadow-sm);
}

.card__body {
  padding: 1.75rem;
}

.card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

.card__title {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-aubergine);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card__excerpt {
  font-size: 0.9rem;
  color: var(--c-ink-lt);
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-gold);
  margin-top: 1.25rem;
  transition: gap var(--t);
}

.card__link:hover { gap: 0.7rem; color: var(--c-aubergine); }

/* Feature card */
.feature-card {
  padding: 2rem;
  background: var(--c-white);
  border-radius: 8px;
  border: 1px solid rgba(61,35,71,.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201,165,90,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

/* ============================================================
   FORMS
============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(61,35,71,.2);
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-white);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(74,144,164,.15);
}

textarea { resize: vertical; min-height: 140px; }

.form-inline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .form-inline {
    flex-direction: row;
    align-items: flex-end;
  }
  .form-inline .form-group { flex: 1; margin-bottom: 0; }
  .form-inline .btn { white-space: nowrap; }
}

.form-note {
  font-size: 0.78rem;
  color: var(--c-ink-lt);
  margin-top: 0.75rem;
  opacity: 0.7;
}

/* Gift form box */
.gift-form-box {
  background: var(--c-white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.gift-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   PULL QUOTE / MANIFESTO
============================================================ */
.pull-quote-section {
  background: var(--c-aubergine);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.pull-quote-section::before {
  content: '"';
  position: absolute;
  top: -0.2em;
  left: 0.1em;
  font-family: var(--f-heading);
  font-size: 20rem;
  color: rgba(245,245,240,.04);
  line-height: 1;
  pointer-events: none;
}

.pull-quote-section blockquote {
  border-color: var(--c-gold);
  color: var(--c-off-white);
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.pull-quote-section .quote-attr {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 1.5rem;
  display: block;
}

/* ============================================================
   FREE GIFT BANNER
============================================================ */
.gift-banner {
  padding: 0;
}

/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial {
  background: var(--c-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--c-gold);
}

.testimonial__text {
  font-family: var(--f-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  background: rgba(61,35,71,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--c-aubergine);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-aubergine);
}

.testimonial__location {
  font-size: 0.78rem;
  color: var(--c-ink-lt);
}

/* ============================================================
   SESSION LIST (Course)
============================================================ */
.session-list { counter-reset: session; }

.session-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(61,35,71,.1);
  align-items: start;
}

.session-item:last-child { border-bottom: none; }

.session-number {
  width: 3rem;
  height: 3rem;
  background: var(--c-aubergine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--c-off-white);
  font-weight: 600;
  flex-shrink: 0;
}

.session-content h4 { margin-bottom: 0.4rem; color: var(--c-aubergine); }

.session-content p {
  font-size: 0.9rem;
  color: var(--c-ink-lt);
  margin: 0;
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list {
  border-top: 1px solid rgba(61,35,71,.12);
}

.faq-item {
  border-bottom: 1px solid rgba(61,35,71,.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-aubergine);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--t);
}

.faq-question:hover { color: var(--c-gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--c-aubergine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-aubergine);
  transition: transform var(--t), background var(--t), color var(--t);
}

.faq-item.open .faq-icon {
  background: var(--c-aubergine);
  color: var(--c-off-white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--c-ink-lt);
  line-height: 1.75;
  max-width: 700px;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SOCIAL LINKS
============================================================ */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(61,35,71,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-aubergine);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--t), color var(--t), transform var(--t);
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--c-aubergine);
  color: var(--c-off-white);
  transform: translateY(-2px);
}

.social-link--light { background: rgba(245,245,240,.15); color: var(--c-off-white); }
.social-link--light:hover { background: var(--c-off-white); color: var(--c-aubergine); }

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(245,245,240,.6);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(245,245,240,.6); }
.breadcrumb a:hover { color: var(--c-off-white); }
.breadcrumb span { opacity: 0.4; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--c-aubergine-dk);
  color: rgba(245,245,240,.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h4 {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-off-white);
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245,245,240,.65);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(245,245,240,.65);
  transition: color var(--t);
}

.footer-col ul a:hover { color: var(--c-off-white); }

.footer-bottom {
  border-top: 1px solid rgba(245,245,240,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245,245,240,.4);
}

.footer-bottom a { color: rgba(245,245,240,.4); }
.footer-bottom a:hover { color: rgba(245,245,240,.7); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.tina-signature {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--c-aubergine);
  margin-top: 2rem;
}

/* ============================================================
   PRICE BOX (Sales page)
============================================================ */
.price-box {
  background: var(--c-white);
  border-radius: 8px;
  border: 2px solid var(--c-aubergine);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

.price-box__price {
  font-family: var(--f-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-aubergine);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-box__currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-box__period {
  font-size: 0.875rem;
  color: var(--c-ink-lt);
  margin-bottom: 2rem;
}

.price-box__features {
  text-align: left;
  margin: 1.5rem 0;
}

.price-box__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-off-white-dk);
  font-size: 0.9rem;
  color: var(--c-ink);
}

.price-box__features li:last-child { border-bottom: none; }

.price-box__check {
  color: var(--c-gold);
  font-size: 0.9rem;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.guarantee {
  font-size: 0.8rem;
  color: var(--c-ink-lt);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}

/* ============================================================
   THANK YOU PAGE
============================================================ */
.thank-you-hero {
  background: var(--c-aubergine);
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-bottom: 5rem;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: rgba(245,245,240,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
}

/* ============================================================
   BLOG GRID
============================================================ */
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--c-ink-lt);
  margin-bottom: 0.75rem;
}

.post-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--c-gold);
  border-radius: 50%;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--c-white);
  border-radius: 8px;
  border: 1px solid rgba(61,35,71,.08);
  margin-bottom: 1rem;
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(74,144,164,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-aubergine);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--c-ink-lt);
  margin: 0;
}

/* ============================================================
   LEGAL PAGES
============================================================ */
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--c-aubergine);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.legal-content li { margin-bottom: 0.4rem; }

/* ============================================================
   UTILITY CLASSES
============================================================ */
.text-aubergine { color: var(--c-aubergine); }
.text-ocean     { color: var(--c-gold); }
.text-sage      { color: var(--c-sage); }
.text-muted     { color: var(--c-ink-lt); opacity: 0.75; }

.bg-white    { background: var(--c-white); }
.bg-tinted   { background: var(--c-off-white-dk); }

.divider {
  border: none;
  border-top: 1px solid rgba(61,35,71,.1);
  margin: 3rem 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--c-aubergine);
  color: var(--c-off-white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
  transition: top var(--t);
}

.skip-link:focus { top: 0; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s var(--ease) both;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE UTILITIES
============================================================ */
@media (max-width: 639px) {
  .hide-mobile { display: none; }
  .section { padding: 3.5rem 0; }
  .section--lg { padding: 4.5rem 0; }
  .gift-form-box { padding: 1.75rem; }
  .price-box { position: static; }
  .pull-quote-section blockquote { padding: 1rem 1.25rem; }
}

@media (min-width: 640px) {
  .hide-desktop { display: none; }
}

/* ============================================================
   COURSE PAGES
============================================================ */

/* Course catalog grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.course-card {
  background: var(--c-off-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.course-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.course-card__thumb {
  aspect-ratio: 16/9;
  background: var(--c-aubergine);
  position: relative;
  overflow: hidden;
}
.course-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-aubergine-dk), var(--c-aubergine-lt));
  font-family: var(--f-display);
  color: var(--c-gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem;
}

.course-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-family: var(--f-ui);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.course-card__badge--paid {
  background: var(--c-gold);
  color: var(--c-aubergine-dk);
}
.course-card__badge--free {
  background: var(--c-sage);
  color: #fff;
}

.course-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-aubergine);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.course-card__desc {
  font-size: 0.9rem;
  color: var(--c-ink);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.course-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--c-ink-lt);
}
.course-card__price {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-aubergine);
}
.course-card__lessons {
  font-size: 0.8rem;
}

/* Lesson list on sales page */
.lesson-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lesson-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--c-off-white-dk);
}
.lesson-item:first-child { border-top: 1px solid var(--c-off-white-dk); }
.lesson-item__number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-aubergine);
  color: var(--c-gold);
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lesson-item__number--bonus {
  background: var(--c-gold);
  color: var(--c-aubergine-dk);
}
.lesson-item__title {
  flex: 1;
  font-size: 0.95rem;
  color: var(--c-ink);
  font-weight: 500;
}
.lesson-item__lock {
  color: var(--c-ink-lt);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Module group heading */
.lesson-module {
  padding: 0.6rem 1.25rem;
  background: var(--c-off-white-dk);
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-lt);
}

/* Course sales hero */
.course-hero {
  background: var(--c-aubergine-dk);
  padding: 5rem 0 4rem;
  text-align: center;
}
.course-hero .section-label { color: var(--c-gold); }
.course-hero h1 { color: var(--c-off-white); font-size: clamp(2rem,5vw,3.5rem); }
.course-hero .tagline { color: rgba(245,243,238,.8); }

/* Sticky buy box */
.buy-box {
  background: var(--c-off-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: sticky;
  top: 5rem;
}
.buy-box__price {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c-aubergine);
  margin-bottom: 0.25rem;
}
.buy-box__currency {
  font-size: 1rem;
  color: var(--c-ink-lt);
  margin-bottom: 1.5rem;
}
.buy-box__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  font-size: 0.9rem;
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.buy-box__features li::before {
  content: '✓  ';
  color: var(--c-gold);
  font-weight: 700;
}
.buy-box__guarantee {
  font-size: 0.75rem;
  color: var(--c-ink-lt);
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 639px) {
  .buy-box { position: static; }
  .course-grid { grid-template-columns: 1fr; }
}
