/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TERESA IP — Shared Stylesheet
   Used by: index.html, about.html, contact.html
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS — edit here
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --cream:         #FAF7F2;
  --cream-deep:    #F2EDE4;
  --cream-dark:    #E8E0D4;
  --crimson:       #7A1530;
  --crimson-deep:  #4A0D1E;
  --crimson-light: #9B1E3F;
  --gold:          #B8965A;
  --ink:           #1A0F08;
  --ink-mid:       #3D2B1F;
  --ink-light:     #7A6555;
  --ink-faint:     #B8A898;
  --white:         #FEFCF8;

  --font-display:  'Libre Baskerville', Georgia, serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --font-body:     'Montserrat', sans-serif;

  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     FONT SIZES — edit each independently
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  --fs-nav:            11px;   /* navigation links */
  --fs-eyebrow:        10px;   /* section eyebrow labels */
  --fs-tag:            10px;   /* pill tags */
  --fs-btn:            10px;   /* button text */
  --fs-card-label:     10px;   /* card labels */
  --fs-caption:        11px;   /* captions, footnotes */
  --fs-body-sm:        12px;   /* small body text */
  --fs-body:           12.5px;   /* standard body text */
  --fs-body-lg:        15px;   /* large body / lead text */
  --fs-offer:          13px;   /* offer item names */
  --fs-workshop:       13px;   /* workshop list items */
  --fs-powered:        11px;   /* powered by line */
  --fs-footer:         11px;   /* footer text */
}

/* ━━━ Reset ━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ━━━ Animations ━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-12px) rotate(0.5deg); }
}
@keyframes lineExpand {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes shimmerIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.45s; }

/* ━━━ Navigation ━━━ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,21,48,0.06);
  animation: fadeIn 0.8s ease both;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo span {
  font-style: normal;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  display: block;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--crimson); }
.nav-links a:hover::after { width: 100%; }

/* ━━━ Hero ━━━ */
.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 6vw 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 65% 40%, rgba(122,21,48,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(184,150,90,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(122,21,48,0.08) 30%, rgba(122,21,48,0.08) 70%, transparent);
  pointer-events: none;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}
.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 700;
  color: rgba(122,21,48,0.04);
  letter-spacing: -0.04em;
  line-height: 0.9;
  user-select: none;
  text-align: center;
  animation: fadeIn 1.5s ease 0.5s both;
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  animation: float 8s ease-in-out infinite, fadeIn 1.2s ease 0.3s both;
}
.hero-img {
  width: 420px;
  height: 560px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 48px rgba(74,13,30,0.14));
}
.hero-img-frame {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80%;
  height: 80%;
  border: 0px solid rgba(122,21,48,0.12);
  border-radius:0px;
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: shimmerIn 1s ease 0.2s both;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--crimson);
  animation: lineExpand 0.8s ease 1s both;
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--crimson);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-title-italic {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  color: var(--crimson);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: block;
}
.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--crimson);
  margin-bottom: 24px;
  opacity: 0.4;
}
.hero-sub {
  font-size: var(--fs-body-lg);
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 40px;
  opacity: 1;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ━━━ Buttons ━━━ */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(122,21,48,0.22);
}
.btn-primary:hover {
  background: var(--crimson-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(122,21,48,0.32);
}
.btn-ghost {
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, gap 0.25s;
}
.btn-ghost:hover { color: var(--crimson); gap: 12px; }
.btn-ghost::after { content: '→'; font-size: 13px; }
.btn-gold {
  display: inline-block;
  padding: 16px 44px;
  border: 1px solid rgba(184,150,90,0.5);
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-gold:hover {
  background: rgba(184,150,90,0.15);
  border-color: rgba(184,150,90,0.8);
  transform: translateY(-2px);
}

/* ━━━ Marquee strip ━━━ */
.marquee-strip {
  background: var(--crimson-deep);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 32px;
}
.marquee-dot {
  color: rgba(184,150,90,0.7);
  padding: 0 4px;
}

/* ━━━ Section base ━━━ */
.section { padding: 100px 6vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--crimson);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-quote {
  font-family: var(--font-accent);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-light);
  letter-spacing: 0.01em;
}

/* ━━━ Program cards ━━━ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  border-radius: 16px;
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(74,13,30,0.22);
}

/*   Card Opacity 
.cards-grid .reveal.visible {
  opacity: 1;
}
*/

.card-1 { background: linear-gradient(150deg, #6B1128, #3D0A16);} 


.card-2 {
  background: linear-gradient(150deg, #A01840, #6B1128);
  transform: scale(1.04);
  
}
.card-2:hover { transform: scale(1.04) translateY(-6px); }
.card-3 { background: linear-gradient(150deg, #5A0E20, #2E0810);}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,90,0.35), transparent);
}
.card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
}
.card-num {
  font-family: var(--font-accent);
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  color: rgba(184,150,90,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.card-title {
  font-family: var(--font-body);
  font-size: var(--fs-card-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.card-body {
  font-size: var(--fs-body);
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
}

/* ━━━ Offers ━━━ */
.offers-section { background: var(--cream-deep); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-item {
  background: var(--white);
  border: 1px solid rgba(122,21,48,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.offer-item:hover {
  border-color: rgba(122,21,48,0.2);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(122,21,48,0.08);
}
.offer-icon {
  width: 44px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 20px;
}
.offer-icon span {
  display: block;
  height: 1.5px;
  background: var(--crimson);
  border-radius: 2px;
  transition: width 0.3s ease;
  opacity: 0.7;
}
.offer-icon span:nth-child(1) { width: 100%; }
.offer-icon span:nth-child(2) { width: 65%; margin-left: auto; margin-right: auto; }
.offer-icon span:nth-child(3) { width: 80%; }
.offer-item:hover .offer-icon span { width: 100%; opacity: 1; }
.offer-name {
  font-family: var(--font-display);
  font-size: var(--fs-offer);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ━━━ Workshops ━━━ */
.workshops-section { background: var(--white); }
.workshops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.workshops-left .section-eyebrow { justify-content: flex-start; }
.workshops-left .section-eyebrow::before { display: none; }
.workshops-left .section-title { text-align: left; }
.workshop-subtitle {
  font-family: var(--font-accent);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-light);
  margin-bottom: 32px;
  line-height: 1.6;
}
.workshop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.workshop-list li {
  font-size: var(--fs-workshop);
  font-weight: 400;
  color: var(--ink-mid);
  padding: 13px 0;
  border-bottom: 1px solid rgba(122,21,48,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s, padding-left 0.25s;
  cursor: default;
}
.workshop-list li:hover { color: var(--crimson); padding-left: 6px; }
.workshop-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--crimson);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.workshop-list li:hover::before { opacity: 1; }
.powered-box {
  background: var(--cream-deep);
  border: 1px solid rgba(122,21,48,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 28px;
}
.powered-label {
  font-size: var(--fs-powered);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.powered-line {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.powered-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.powered-tag {
  padding: 5px 14px;
  border: 1px solid rgba(122,21,48,0.18);
  border-radius: 40px;
  font-size: var(--fs-tag);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
}

/* ━━━ CTA ━━━ */
.cta-section {
  background: var(--crimson-deep);
  padding: 100px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,150,90,0.06) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,90,0.3), transparent);
}
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(184,150,90,0.7);
  margin-bottom: 24px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.cta-title-italic {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: rgba(184,150,90,0.85);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
  display: block;
}
.cta-sub {
  font-size: var(--fs-body-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

/* ━━━ Footer ━━━ */
.footer {
  background: #0F0806;
  padding: 32px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
}
.footer-copy {
  font-size: var(--fs-footer);
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* ━━━ Responsive ━━━ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; text-align: center; }
  .hero::after { display: none; }
  .hero-visual { height: 340px; order: -1; }
  .hero-img { width: 200px; height: 280px; }
  .hero-eyebrow { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-divider { margin: 0 auto 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-2 { transform: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .workshops-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}