:root{
  --cream: #f4e9d8;
  --cream-deep: #efe0c8;
  --card: #faf4e8;
  --wine: #4a1a24;
  --wine-deep: #3a1119;
  --gold: #b08a5a;
  --gold-soft: #d9bd8f;
  --ink: #2c2320;
  --ink-soft: #6b5f54;
  --border: rgba(74,26,36,0.12);
}

*{box-sizing:border-box;margin:0;padding:0;}

html{ scroll-behavior: smooth; }

body{
  font-family:'Montserrat', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Hero logo ---------- */
.hero-logo{
  display: inline-flex;
  align-items: center;
}
.hero-logo img{
  height: 95px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(0.5) contrast(1.2);
  transition: transform 220ms cubic-bezier(0.16,1,0.3,1);
}
.hero-logo:hover img{ transform: scale(1.05); }

.hero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 88% 20%, rgba(217,189,143,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(176,138,90,0.12) 0%, transparent 70%),
    var(--cream);
  padding: 64px 6vw 72px;
}

.hero-inner{
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

/* ---------- Content ---------- */
.hero-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wine-deep);
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  opacity: 0;
  animation: rise 700ms cubic-bezier(0.16,1,0.3,1) 60ms forwards;
}
.badge::before{
  content:"";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex: none;
}

h1{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: #56272f;
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 12ch;
}
h1 em{
  font-style: italic;
  font-weight: 500;
  color: #2b1519;
}

.subtitle{
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  opacity: 0;
  animation: rise 700ms cubic-bezier(0.16,1,0.3,1) 260ms forwards;
}

.hero-photo-mobile{ display: none; }

.info-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  opacity: 0;
  animation: rise 700ms cubic-bezier(0.16,1,0.3,1) 360ms forwards;
}
.info-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-value{
  font-size: 1.05rem;
  font-weight: 700;
  color: #56272f;
}
.info-break{ display: none; }

.cta-block{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: rise 700ms cubic-bezier(0.16,1,0.3,1) 460ms forwards;
}
.cta-btn{
  appearance: none;
  border: none;
  cursor: pointer;
  background: var(--wine);
  color: #fdf6ea;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 18px 40px;
  border-radius: 8px;
  transition: transform 180ms cubic-bezier(0.16,1,0.3,1), background 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 20px 34px -16px rgba(58,17,25,0.6);
}
.cta-btn:hover{
  background: var(--wine-deep);
  box-shadow: 0 18px 34px -14px rgba(58,17,25,0.65);
}
.cta-btn:active{ transform: scale(0.97); }
.cta-btn:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.cta-note{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.cta-note::before{
  content:"";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #7a9b6e;
  flex: none;
  box-shadow: 0 0 0 3px rgba(122,155,110,0.18);
}

/* ---------- Image ---------- */
.hero-image{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  opacity: 0;
  animation: rise 900ms cubic-bezier(0.16,1,0.3,1) 200ms forwards;
}
.hero-image::before{
  content:"";
  position: absolute;
  width: 84%;
  height: 78%;
  left: 50%;
  top: 46%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(217,189,143,0.55) 0%, rgba(217,189,143,0) 68%);
  filter: blur(10px);
  z-index: 0;
}
.hero-image img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

@keyframes rise{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .badge, h1, .subtitle, .info-card, .cta-block, .hero-image{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero{ padding: 48px 6vw 56px; }
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-image{ display: none; }
  .hero-photo-mobile{
    display: block;
    order: 1;
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 10px auto 0;
  }
  .hero-photo-mobile::before{
    content:"";
    position: absolute;
    width: 90%; height: 80%;
    left: 50%; top: 45%;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(217,189,143,0.55) 0%, rgba(217,189,143,0) 68%);
    filter: blur(10px);
  }
  .hero-photo-mobile img{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
  }
  .hero-content{ align-items: center; text-align: center; }
  .hero-content .hero-logo{ align-self: flex-start; }
  h1{ max-width: 16ch; display: flex; flex-direction: column; align-items: center; }
  .info-dot{ display: none; }
  .info-break{ display: block; }
  .subtitle{ max-width: 42ch; }
  .cta-block .cta-btn{ width: 100%; text-align: center; }
  .cta-block{ width: 100%; flex-direction: column; align-items: center; gap: 20px; }
}

/* ---------- Quote ---------- */
.quote{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 96px 6vw 104px;
  text-align: center;
}
.quote-inner{
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.quote-mark{
  position: absolute;
  top: -79px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.quote-symbol{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
}
.quote-text, .quote-divider, .quote-attribution{
  position: relative;
  z-index: 1;
}
.quote-text{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.45;
  color: var(--wine);
}
.quote-divider{
  width: 52px;
  height: 2px;
  background: var(--gold);
}
.quote-attribution{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view{ opacity: 1; transform: none; }
/* la stagger delay es solo para la animación de entrada; sin esto, queda pegada
   al elemento y retrasa después las transiciones de hover en estas cards */
.how-card.in-view, .price-card.in-view{ transition-delay: 0ms !important; }
.quote-inner > *:nth-child(1){ transition-delay: 0ms; }
.quote-inner > *:nth-child(2){ transition-delay: 90ms; }
.quote-inner > *:nth-child(3){ transition-delay: 180ms; }
.quote-inner > *:nth-child(4){ transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Curriculum ---------- */
.curriculum{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 108px 6vw 116px;
}
.curriculum-grid{
  max-width: 1240px;
  margin: 0 auto;
}
.curriculum-content{
  max-width: 760px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.section-eyebrow{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.curriculum-content h2{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.14;
  color: var(--wine-deep);
  margin-bottom: 16px;
}
.lesson-list{
  list-style: none;
  margin-top: 44px;
  position: relative;
}
.lesson-list::before{
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.lesson{
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.lesson:last-child{
  padding-bottom: 0;
}
.lesson-num{
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wine-deep);
  color: #fdf6ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.lesson-text{
  padding-top: 8px;
}
.lesson-text h3{
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--wine-deep);
  margin-bottom: 6px;
}
.lesson-text p{
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.curriculum-cta{
  padding-top: 30px;
}
.cta-btn--block{
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 34px;
}

.curriculum-content > .reveal:nth-child(1){ transition-delay: 0ms; }
.curriculum-content > .reveal:nth-child(2){ transition-delay: 80ms; }
.curriculum-content > .reveal:nth-child(4){ transition-delay: 460ms; }
.lesson.reveal:nth-child(1){ transition-delay: 0ms; }
.lesson.reveal:nth-child(2){ transition-delay: 150ms; }
.lesson.reveal:nth-child(3){ transition-delay: 300ms; }
.lesson.reveal:nth-child(4){ transition-delay: 450ms; }

@media (max-width: 900px){
  .curriculum{ padding: 72px 6vw 80px; }
  .curriculum-content h2{ text-wrap: balance; }
}

/* ---------- Reframe ---------- */
.reframe{
  background: var(--wine-deep);
  border-top: 1px solid rgba(253,246,234,0.12);
  padding: 108px 6vw 120px;
  text-align: center;
}
.reframe-inner{
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.reframe-lead{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.3;
  color: #fdf6ea;
}
.reframe-lead em{
  font-style: italic;
  font-weight: 600;
  color: var(--gold-soft);
}
.reframe-punch{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}
.reframe-punch .punch-a{
  font-weight: 700;
  color: var(--gold-soft);
}
.reframe-punch .punch-b{
  font-weight: 400;
  color: rgba(253,246,234,0.55);
}

.reframe-inner > .reveal:nth-child(1){ transition-delay: 0ms; }
.reframe-inner > .reveal:nth-child(2){ transition-delay: 120ms; }

@media (max-width: 600px){
  .reframe{ padding: 76px 6vw 88px; }
  .reframe-break{ display: none; }
  .reframe-lead{ text-wrap: balance; }
  .reframe-punch{ text-wrap: balance; }
}

/* ---------- How ---------- */
.how{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 100px 6vw 108px;
}
.how-inner{
  max-width: 1240px;
  margin: 0 auto;
}
.how-heading{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.18;
  color: var(--wine-deep);
  max-width: 20ch;
  margin-top: 14px;
  margin-bottom: 56px;
}
.how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.how-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  transition: transform 260ms cubic-bezier(0.16,1,0.3,1), box-shadow 260ms ease, border-color 260ms ease;
}
.how-card:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 26px 46px -30px rgba(74,26,36,0.32);
}
.how-icon{
  display: inline-flex;
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 22px;
  transition: transform 260ms cubic-bezier(0.16,1,0.3,1);
}
.how-icon svg{ width: 100%; height: 100%; }
.how-card:hover .how-icon{ transform: translateY(-3px) scale(1.06); }
.how-card h3{
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.35;
  margin-bottom: 10px;
}
.how-card p{
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.how-card-label{
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.how-card--wide{ grid-column: span 2; }
.how-card--wide h3{
  font-size: 1.2rem;
  font-weight: 700;
}
.how-card-h3-light{
  font-weight: 400;
  color: var(--ink-soft);
}

.how-grid > .reveal:nth-child(1){ transition-delay: 0ms; }
.how-grid > .reveal:nth-child(2){ transition-delay: 80ms; }
.how-grid > .reveal:nth-child(3){ transition-delay: 160ms; }
.how-grid > .reveal:nth-child(4){ transition-delay: 240ms; }
.how-grid > .reveal:nth-child(5){ transition-delay: 320ms; }
.how-grid > .reveal:nth-child(6){ transition-delay: 380ms; }

@media (max-width: 900px){
  .how-grid{ grid-template-columns: 1fr 1fr; }
  .how-heading{ text-wrap: balance; }
}
@media (max-width: 560px){
  .how{ padding: 72px 6vw 80px; }
  .how-grid{ grid-template-columns: 1fr; }
  .how-card--wide{ grid-column: span 1; }
}

/* ---------- About ---------- */
.about{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 104px 6vw 112px;
}
.about-grid{
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.about-content h2{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: var(--wine-deep);
  margin-top: 14px;
  margin-bottom: 20px;
}
.about-lead{
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}
.credential-list{
  margin-top: 34px;
}
.credential-row{
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.credential-row:last-child{
  border-bottom: 1px solid var(--border);
}
.credential-mark{
  flex: none;
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.6;
}
.credential-row p{
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.credential-row strong{
  color: var(--wine-deep);
  font-weight: 700;
}
.credential-year{
  color: var(--gold);
  font-weight: 600;
}
.about-cta{
  padding-top: 30px;
}

.about-photo{
  position: relative;
}
.about-photo-frame{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -36px rgba(74,26,36,0.32);
}
.about-photo-frame img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: 50% 20%;
}
.about-photo-float{
  position: absolute;
  left: -56px;
  bottom: -36px;
  width: 46%;
  max-width: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 26px 44px -22px rgba(74,26,36,0.42);
  transform: rotate(-7deg);
  transition: transform 260ms cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.about-photo-float:hover{ transform: rotate(-2deg) scale(1.04); }
.about-photo-float img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-content > .reveal:nth-child(1){ transition-delay: 0ms; }
.about-content > .reveal:nth-child(2){ transition-delay: 80ms; }
.about-content > .reveal:nth-child(3){ transition-delay: 160ms; }
.credential-row.reveal:nth-child(1){ transition-delay: 240ms; }
.credential-row.reveal:nth-child(2){ transition-delay: 300ms; }

@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-photo{ order: -1; max-width: 360px; margin: 0 auto 44px; }
  .about-content{ text-align: center; }
  .about-content h2{ display: flex; flex-direction: column; align-items: center; }
  .about-lead{ margin: 0 auto; }
  .credential-row{ text-align: left; }
  .about{ padding: 72px 6vw 80px; }
  .about-photo-float{ left: -20px; bottom: -28px; width: 42%; max-width: 160px; }
}

/* ---------- Pricing ---------- */
.pricing{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 104px 6vw 116px;
}
.pricing-inner{
  max-width: 1120px;
  margin: 0 auto;
}
.pricing-heading{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.18;
  color: var(--wine-deep);
  max-width: 22ch;
  margin-top: 14px;
  margin-bottom: 56px;
}
.pricing-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.price-card{
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 260ms cubic-bezier(0.16,1,0.3,1), box-shadow 260ms ease;
}
.price-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 54px -32px rgba(74,26,36,0.28);
}
.price-card--premium{
  background: var(--wine-deep);
  border-color: transparent;
  box-shadow: 0 34px 64px -30px rgba(58,17,25,0.5);
  transform: scale(1.03);
}
.price-card--premium:hover{
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 40px 70px -30px rgba(58,17,25,0.58);
}
.price-badge{
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--gold-soft);
  color: var(--wine-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
}
.price-tag{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.price-card--premium .price-tag{ color: var(--gold-soft); }
.price-card h3{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--wine-deep);
  margin-bottom: 18px;
}
.price-card--premium h3{ color: #fdf6ea; }
.price-amount{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--wine-deep);
  margin-bottom: 6px;
}
.price-card--premium .price-amount{ color: var(--gold-soft); }
.price-currency{
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 6px;
}
.price-note{
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.price-card--premium .price-note{ color: rgba(253,246,234,0.55); }
.price-features{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li{
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.price-card--premium .price-features li{ color: rgba(253,246,234,0.82); }
.price-check{
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold);
}
.price-card--premium .price-check{ color: var(--gold-soft); }

.cta-btn--gold{
  background: var(--gold-soft);
  color: var(--wine-deep);
  box-shadow: 0 20px 34px -18px rgba(0,0,0,0.35);
}
.cta-btn--gold:hover{
  background: #e9d6ae;
  box-shadow: 0 22px 38px -18px rgba(0,0,0,0.4);
}
.cta-btn--white{
  background: #fdf6ea;
  color: var(--wine-deep);
  box-shadow: 0 20px 34px -18px rgba(0,0,0,0.35);
}
.cta-btn--white:hover{
  background: #ffffff;
  box-shadow: 0 22px 38px -18px rgba(0,0,0,0.4);
}

.pricing-inner > .reveal:nth-child(1){ transition-delay: 0ms; }
.pricing-inner > .reveal:nth-child(2){ transition-delay: 80ms; }
.pricing-grid > .reveal:nth-child(1){ transition-delay: 160ms; }
.pricing-grid > .reveal:nth-child(2){ transition-delay: 220ms; }

@media (max-width: 800px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card--premium{ transform: none; }
  .price-card--premium:hover{ transform: translateY(-6px); }
  .pricing-heading{ text-wrap: balance; }
}
@media (max-width: 480px){
  .pricing{ padding: 72px 6vw 80px; }
  .price-card{ padding: 32px 26px 28px; }
}

/* ---------- Closing ---------- */
.closing{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 100px 6vw 112px;
  text-align: center;
}
.closing-inner{
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.closing-inner h2{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: var(--wine-deep);
}
.closing-urgency{
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
a.cta-btn{
  display: inline-block;
  text-decoration: none;
  margin-top: 6px;
}
.closing-ctas{
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.closing-ctas .cta-btn{ margin-top: 0; }
.closing-note{
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 4px;
}

.closing-inner > .reveal:nth-child(1){ transition-delay: 0ms; }
.closing-inner > .reveal:nth-child(2){ transition-delay: 80ms; }
.closing-inner > .reveal:nth-child(3){ transition-delay: 160ms; }
.closing-inner > .reveal:nth-child(4){ transition-delay: 240ms; }

@media (max-width: 480px){
  .closing{ padding: 72px 6vw 80px; }
}

span.quote-mark.quote-symbol.reveal.in-view {
  opacity: 0.2;
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--wine-deep);
  padding: 56px 6vw 40px;
  text-align: center;
}
.footer-inner{
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo{
  height: 120px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-tagline{
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(253,246,234,0.55);
  margin-top: -10px;
}
.footer-copy{
  font-size: 0.8rem;
  color: rgba(253,246,234,0.45);
  padding-top: 20px;
  border-top: 1px solid rgba(253,246,234,0.12);
  width: 100%;
  max-width: 420px;
}

@media (max-width: 480px){
  .site-footer{ padding: 44px 6vw 32px; }
}