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

:root {
  --old-burgundy: #6B1232;
  --burgundy:     #670D2F;
  --burgundy-dark:#4A0C22;
  --burgundy-mid: #8A1840;
  --cream:        #F7F0E8;
  --cream-warm:   #EDE3D5;
  --gold:         #C8A96E;
  --gold-light:   #DFC08A;
  --white:        #FDFAF6;
  --text-dark:    #2A0D18;
}

@font-face {
  font-family: 'new-icon-script';
  src: url('../fonts/NewIconScript-Regular.woff2') format('woff2'),
       url('../fonts/NewIconScript-Regular.woff') format('woff'),
       url('../fonts/./fonts/NewIconScript-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'new-icon-serif';
  src: url('../fonts/NewIconSerif-Regular.woff2') format('woff2'),
       url('../fonts/NewIconSerif-Regular.woff') format('woff'),
       url('../fonts/./fonts/NewIconSerif-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.5rem;
  background: transparent;
  transition: background 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(107, 18, 50, 0.96);
  backdrop-filter: blur(12px);
}
.nav-logo {
  margin: 0 0.5em;
}
.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.85);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(200,169,110,0.6);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--burgundy-dark);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(138,24,64,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200,169,110,0.08) 0%, transparent 60%);
}
/* Subtle noise grain */
.hero-bg::after {
  content:'';
  position: absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}
/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.12);
  pointer-events: none;
}
/*.hero-ring-1 { width: 500px; height: 500px; top: 50%; left: 55%; transform: translate(-50%,-50%); }
.hero-ring-2 { width: 700px; height: 700px; top: 50%; left: 55%; transform: translate(-50%,-50%); }
.hero-ring-3 { width: 920px; height: 920px; top: 50%; left: 55%; transform: translate(-50%,-50%); }
*/
/* Ghost 100 watermark */
.hero-hundred-numbers {
  position: absolute;
  background-image: url("../images/100.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  min-width:500px;
  aspect-ratio: 1 / 1;
  /*right: -4rem;*/
  bottom: -3rem;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /*padding: 2rem;*/
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-logo-text {
  display: block;
}
.hero-the {
  font-family: 'new-icon-serif', serif;
  font-weight: 300;
  font-size: clamp(3rem, 2.5vw, 6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.75);
  animation: fadeUp 1.2s 0.3s ease both;
  float:left;
}
.hero-hundred {
  font-family: 'new-icon-script', cursive;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--white);
  position: relative;
  /*line-height: 1;*/
  /*display: block;*/
  margin: 0.1em 0.3em;
  left: -0.15em;
  animation: fadeUp 1.2s 0.4s ease both;
}
.hero-club {
  font-family: 'new-icon-serif', serif;
  font-weight: 300;
  font-size: clamp(3rem, 2.5vw, 6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.75);
  animation: fadeUp 1.2s 0.3s ease both;
  float: right;
}
.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
  animation: fadeUp 1.2s 0.55s ease both;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(253,250,246,0.72);
  letter-spacing: 0.05em;
  max-width: 500px;
  margin: 0 auto 2.8rem;
  animation: fadeUp 1.2s 0.65s ease both;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 0.8s ease both;
}
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--burgundy-dark);
  padding: 1rem 2.4rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-secondary {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem 2.4rem;
  text-decoration: none;
  border: 1px solid rgba(253,250,246,0.35);
  transition: border-color 0.3s, color 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  /*left: 50%;*/
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253,250,246,0.4);
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1.5s 1.2s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDrop 2s 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { opacity:0.4; transform: scaleY(1); transform-origin: top; }
  50% { opacity:1; }
}

/* ── SECTION SHARED ── */
section { padding: 7rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
}
.thin-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.body-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.85;
  color: #4A2030;
  max-width: 600px;
}

/* ── PHILOSOPHY ── */
#philosophy {
  background: var(--white);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-visual {
  position: relative;
  height: 500px;
}
.philosophy-rect {
  position: absolute;
  border: 1px solid rgba(107,18,50,0.15);
}
.philosophy-rect-1 { inset: 0; }
.philosophy-rect-2 { top: 20px; left: 20px; right: -20px; bottom: -20px; background: var(--cream-warm); z-index: -1; }
.philosophy-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  text-align: center;
  background: var(--cream);
}
.philosophy-quote blockquote {
  font-family: 'new-icon-script', cursive;
  font-size: 2.5rem;
  color: var(--burgundy);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.philosophy-quote cite {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── CLASSES ── */
#classes {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/*#classes .section-title { color: var(--cream); }*/
#classes .section-label { color: var(--gold); }
#classes .thin-rule { background: var(--gold); }
.classes-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(138,24,64,0.4) 0%, transparent 70%);
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.2);
  margin-top: 3.5rem;
}
.class-card {
  background: var(--burgundy-dark);
  padding: 2.8rem 2.2rem;
  transition: background 0.4s;
  cursor: default;
}
.class-card:hover { background: rgba(107,18,50,0.6); }
.class-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.25);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: color 0.4s;
}
.class-card:hover .class-num { color: rgba(200,169,110,0.5); }
.class-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.class-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 200;
  line-height: 1.8;
  color: rgba(237,227,213,0.65);
  letter-spacing: 0.03em;
}
.class-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.3rem 0.8rem;
}

/* ── ABOUT ── */
#about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-stat-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat {
  border-top: 1px solid rgba(107,18,50,0.2);
  padding-top: 1.2rem;
}
.stat-num {
  font-family: 'new-icon-script', cursive;
  font-size: 3.2rem;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A4050;
  margin-top: 0.3rem;
}
.about-image-block {
  position: relative;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--burgundy-mid) 0%, var(--burgundy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,250,246,0.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  background: var(--gold);
  padding: 1.8rem 1.5rem;
}
.accent-box-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--burgundy-dark);
  line-height: 1.4;
}

/* ── PRICING ── */
#pricing {
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pricing-card {
  border: 1px solid rgba(107,18,50,0.12);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(107,18,50,0.08);
}
.pricing-card.featured {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.pricing-card.featured .plan-name { color: var(--gold); }
.pricing-card.featured .plan-price { color: var(--white); }
.pricing-card.featured .plan-period { color: rgba(253,250,246,0.5); }
.pricing-card.featured .plan-feature { color: rgba(237,227,213,0.8); border-color: rgba(200,169,110,0.2); }
.pricing-featured-tag {
  position: absolute;
  top: -1px; right: 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--burgundy-dark);
  padding: 0.3rem 0.8rem;
}
.plan-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}
.plan-period {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 200;
  color: #7A4050;
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
}
.plan-divider { width: 30px; height: 1px; background: var(--gold); margin: 1.2rem 0 1.8rem; }
.plan-features { list-style: none; }
.plan-feature {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #4A2030;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(107,18,50,0.08);
  letter-spacing: 0.03em;
}
.plan-cta {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  transition: background 0.3s, color 0.3s;
}
.pricing-card.featured .plan-cta {
  border-color: var(--gold);
  color: var(--gold);
}
.plan-cta:hover { background: var(--burgundy); color: var(--white); }
.pricing-card.featured .plan-cta:hover { background: var(--gold); color: var(--burgundy-dark); }

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--cream-warm);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial {
  background: var(--white);
  padding: 2.2rem;
  border-top: 3px solid var(--gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* ── CONTACT / CTA ── */
#contact {
  background: var(--burgundy);
  text-align: center;
}
#contact .section-title { color: var(--cream); }
#contact .section-label { color: var(--gold); }
#contact .body-text { color: rgba(237,227,213,0.7); margin: 0 auto 2.5rem; }
.contact-detail {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.18em;
  color: rgba(237,227,213,0.6);
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.contact-detail span { text-transform: uppercase; }

/* ── FOOTER ── */
footer {
  background: var(--burgundy-dark);
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  color: rgba(253,250,246,0.6);
}
.footer-logo .footer-the-club {
  font-family: 'new-icon-serif', serif;
}
.footer-logo .footer-hundred {
  font-family: 'new-icon-script', cursive;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(253,250,246,0.3);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ── FADE-IN ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .philosophy-grid,
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .classes-grid,
  .pricing-grid,
  .testimonials-track { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
