/*
Theme Name: Get Passion Pilates
Theme URI: https://example.com/get-passion-pilates
Author: OpenAI
Author URI: https://openai.com
Description: A custom one-page WordPress theme for Get Passion Pilates.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: get-passion-pilates
*/

:root {
  --mauve:       #C9A7AB;
  --mauve-light: #E8D5D7;
  --mauve-pale:  #F5ECEE;
  --maroon:      #6B1F2A;
  --wine:        #A0394A;
  --wine-light:  #C4697A;
  --cream:       #FAF5F5;
  --text-dark:   #2E1215;
  --text-mid:    #6B3640;
  --gold:        #C9A96E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

.site-wrap { overflow-x: hidden; }

nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(250,245,245,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mauve-light);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: .06em;
  color: var(--maroon);
  text-decoration: none;
}
.nav-logo span { color: var(--wine-light); font-style: italic; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; transition: color .25s;
}
.nav-links a:hover { color: var(--maroon); }
.nav-cta {
  background: var(--maroon); color: #fff;
  border: none; padding: .55rem 1.5rem;
  font-family: 'Jost', sans-serif; font-size: .75rem;
  font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .25s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--wine); }

.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 12vh 6vw 8vh 8vw;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--wine-light); font-weight: 400;
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--wine-light);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--maroon);
  margin-bottom: 1.6rem;
}
.hero-headline em {
  font-style: italic; color: var(--wine);
  font-weight: 400;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: var(--text-mid); max-width: 420px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--maroon); color: #fff;
  padding: .9rem 2.4rem;
  font-family: 'Jost', sans-serif; font-size: .8rem;
  font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--wine); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--maroon);
  padding: .9rem 2.4rem;
  font-family: 'Jost', sans-serif; font-size: .8rem;
  font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  border: 1.5px solid var(--mauve); cursor: pointer;
  transition: border-color .25s, color .25s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--maroon); color: var(--maroon); }
.hero-right {
  height: 100vh;
  background: linear-gradient(160deg, var(--mauve-light) 0%, var(--mauve) 50%, var(--wine-light) 100%);
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(107,31,42,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 30% 70%, rgba(201,167,171,.4) 0%, transparent 60%);
}
.hero-medallion {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center;
}
.hero-medallion-ring {
  width: 300px; height: 300px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: gentlePulse 4s ease-in-out infinite;
}
.hero-medallion-ring::before {
  content: '';
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
}
.hero-medallion-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(107,31,42,.3);
}
.hero-medallion-sub {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-top: .6rem;
}
.hero-float-words {
  position: absolute; inset: 0;
  pointer-events: none;
}
.fw {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.22);
  white-space: nowrap;
}
.fw-1 { font-size: 7rem; top: 8%; left: -5%; }
.fw-2 { font-size: 4rem; bottom: 12%; right: 4%; }
.fw-3 { font-size: 3rem; top: 60%; left: 10%; }

@keyframes gentlePulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.03); opacity: .92; }
}

.band {
  background: var(--maroon); color: rgba(255,255,255,.85);
  padding: 1.6rem 5vw;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.band-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 1rem;
}
.band-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mauve-light); }
.section { padding: 8rem 8vw; }
.section-label {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--wine-light); font-weight: 400;
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.4rem;
}
.section-label::before { content:''; width:28px; height:1px; background: var(--wine-light); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem); font-weight: 300; line-height: 1.2;
  color: var(--maroon);
}
.intro-headline em { font-style: italic; color: var(--wine); }
.intro-body {
  font-size: .95rem; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); margin-top: 2rem;
}
.intro-body p + p { margin-top: 1.2rem; }
.intro-visual { position: relative; padding: 2rem; }
.intro-card {
  background: linear-gradient(135deg, var(--mauve-pale) 0%, var(--mauve-light) 100%);
  padding: 3.5rem 3rem;
  border-left: 3px solid var(--wine-light);
  position: relative;
}
.intro-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-style: italic; font-weight: 300;
  color: var(--maroon); line-height: 1.45;
}
.intro-card-attr {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--wine-light); margin-top: 1.4rem;
}
.intro-card-deco {
  position: absolute; top: -1.5rem; right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; line-height: 1; color: var(--mauve);
  opacity: .4;
}
.plans { background: var(--mauve-pale); padding: 8rem 8vw; }
.plans-header { text-align: center; margin-bottom: 5rem; }
.plans-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 300; color: var(--maroon);
  margin-top: 1rem; line-height: 1.2;
}
.plans-headline em { font-style: italic; color: var(--wine); }
.plans-sub { font-size: .9rem; color: var(--text-mid); font-weight: 300; margin-top: 1rem; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.plan-card {
  background: #fff; padding: 3rem 2.5rem;
  border: 1px solid var(--mauve-light);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(107,31,42,.12); }
.plan-card.featured {
  background: var(--maroon); color: #fff;
  border-color: var(--maroon);
}
.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured .plan-desc { color: rgba(255,255,255,.9); }
.plan-card.featured .plan-feature { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.15); }
.plan-card.featured .plan-feature::before { color: var(--mauve-light); }
.plan-badge {
  position: absolute; top: -1px; right: 2rem;
  background: var(--gold); color: var(--maroon);
  font-size: .65rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; padding: .35rem .9rem;
}
.plan-name {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--wine-light); font-weight: 400; margin-bottom: 1.2rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300; color: var(--maroon); line-height: 1;
}
.plan-price sup { font-size: 1.4rem; vertical-align: super; }
.plan-period { font-size: .8rem; color: var(--text-mid); font-weight: 300; margin: .4rem 0 1.5rem; }
.plan-desc { font-size: .88rem; font-weight: 300; line-height: 1.7; color: var(--text-mid); margin-bottom: 2rem; }
.plan-features { list-style: none; margin-bottom: 2.5rem; }
.plan-feature {
  font-size: .84rem; font-weight: 300; color: var(--text-mid);
  padding: .7rem 0; border-bottom: 1px solid var(--mauve-light);
  display: flex; align-items: center; gap: .7rem;
}
.plan-feature::before { content: '✦'; font-size: .6rem; color: var(--wine-light); flex-shrink: 0; }
.btn-plan {
  width: 100%; padding: .9rem;
  font-family: 'Jost', sans-serif; font-size: .75rem;
  font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: all .25s; border: none;
}
.btn-plan-light { background: var(--mauve-pale); color: var(--maroon); border: 1.5px solid var(--mauve); }
.btn-plan-light:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.btn-plan-dark { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-plan-dark:hover { background: rgba(255,255,255,.25); }
.features { padding: 8rem 8vw; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--mauve-light); border: 1px solid var(--mauve-light); margin-top: 4rem; }
.feature-cell {
  background: var(--cream); padding: 3.5rem;
  transition: background .3s;
}
.feature-cell:hover { background: var(--mauve-pale); }
.feature-icon {
  font-size: 1.8rem; margin-bottom: 1.4rem;
  display: block;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--maroon); margin-bottom: .8rem;
}
.feature-title em { font-style: italic; }
.feature-text { font-size: .88rem; font-weight: 300; line-height: 1.8; color: var(--text-mid); }
.testimonials { background: var(--maroon); padding: 8rem 8vw; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 4rem; }
.testi-card {
  background: rgba(255,255,255,.07); padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .3s;
}
.testi-card:hover { background: rgba(255,255,255,.12); }
.testi-stars { color: var(--gold); font-size: .85rem; letter-spacing: .15em; margin-bottom: 1.2rem; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.88); line-height: 1.65; margin-bottom: 1.8rem;
}
.testi-name { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mauve-light); }
.testi-detail { font-size: .78rem; color: rgba(255,255,255,.4); font-weight: 300; margin-top: .2rem; }
.testimonials .section-label::before { background: var(--mauve-light); }
.testimonials .section-label { color: var(--mauve-light); }
.testimonials .plans-headline { color: #fff; }
.cta-section {
  padding: 8rem 8vw; text-align: center;
  background: linear-gradient(160deg, var(--mauve-pale) 0%, #fff 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'together';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw; font-style: italic; font-weight: 300;
  color: var(--mauve-light); opacity: .25; white-space: nowrap;
  pointer-events: none;
}
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 300; color: var(--maroon);
  line-height: 1.15; position: relative; z-index: 1;
}
.cta-headline em { font-style: italic; color: var(--wine); }
.cta-sub { font-size: .95rem; font-weight: 300; color: var(--text-mid); margin: 1.5rem auto 3rem; max-width: 480px; line-height: 1.75; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
footer.site-footer {
  background: var(--text-dark); color: rgba(255,255,255,.5);
  padding: 4rem 8vw 2.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--mauve-light); margin-bottom: 1rem;
}
.footer-brand span { font-style: italic; color: var(--wine-light); }
.footer-about { font-size: .83rem; font-weight: 300; line-height: 1.7; }
.footer-col-title {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mauve-light); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li + li { margin-top: .6rem; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .83rem; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--mauve-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .75rem; flex-wrap: wrap; }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important;
  width: 1px; word-wrap: normal !important;
}

@media(max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .intro-grid, .plans-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section, .plans, .features, .testimonials, .cta-section { padding: 5rem 6vw; }
  nav.site-nav { gap: 1rem; }
}
