/* ═══════════════════════════════════════════════
   PADMASOULJOURNEY — Design System
   Brand: Claudia — The Relationship Architect™
   ═══════════════════════════════════════════════ */

/* ── Self-hosted Fonts (no Google Fonts requests) ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 400;
  src: url('assets/fonts/cormorant-garamond-normal.woff2?v=2') format('woff2');
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  src: url('assets/fonts/cormorant-garamond-italic.woff2?v=2') format('woff2');
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  src: url('assets/fonts/inter-latin.woff2?v=2') format('woff2');
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Custom Properties ── */
:root {
  --fire:       #C94B2C;
  --ember:      #E8623A;
  --rose:       #D4376A;
  --gold:       #D4A054;
  --ink:        #2A2A2A;
  --cream:      #FFFDF8;
  --parch:      #F7F3EC;
  --warm:       #FAF7F2;
  --muted:      #7A6E64;
  --soft:       #E5DDD4;

  --display:    'Cormorant Garamond', serif;
  --body:       'Inter', sans-serif;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.04);
  --shadow-md:  0 8px 30px rgba(0,0,0,.07);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.1);

  --transition: 0.25s ease;
}

/* ── Reset & Base ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}

body{
  font-family:var(--body);
  background:var(--cream);
  color:var(--ink);
  font-size:1rem;
  font-weight:300;
  line-height:1.65;
  overflow-x:hidden;
}

::selection{background:rgba(201,75,44,.15);color:var(--fire)}

/* ── Scroll Reveal Animations ── */
.reveal,
[class*="reveal-delay"]{opacity:0;transform:translateY(36px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible,
[class*="reveal-delay"].visible{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}
@media(prefers-reduced-motion:reduce){.reveal,[class*="reveal-delay"]{opacity:1;transform:none;transition:none}}

/* ── Typography ── */
.section-tag{
  font-size:.68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--fire);
  font-weight:600;
  margin-bottom:1rem;
}
.section-tag-gold{color:var(--gold)}

.section-heading{
  font-family:var(--display);
  font-size:clamp(2rem,3.5vw,3.2rem);
  font-weight:300;
  line-height:1.18;
  margin-bottom:1.2rem;
  color:var(--ink);
}
.section-heading em{font-style:italic;color:var(--fire)}
.section-heading-light{color:#fff}
.section-heading-light em{color:var(--gold)}

.section-sub{
  font-size:.97rem;
  font-weight:300;
  color:var(--muted);
  line-height:1.9;
  max-width:560px;
}
.section-sub-light{color:rgba(200,184,158,.65)}

/* ── Layout ── */
.section{padding:7rem 2rem}
.section-alt{background:var(--parch)}
.section-dark{background:var(--ink);color:#fff;position:relative;overflow:hidden}
.section-inner{max-width:1200px;margin:0 auto}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--body);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  padding:1rem 2.2rem;
  cursor:pointer;
  transition:all var(--transition);
}
.btn span{font-size:.9rem}
.btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--body);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  padding:1rem 2.2rem;
  cursor:pointer;
  transition:all var(--transition);
  background:var(--fire);color:#fff;
}
.btn-primary span{font-size:.9rem}
.btn-primary:hover{
  background:var(--rose);
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(201,75,44,.3);
}
.btn-outline{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--body);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  padding:1rem 2.2rem;
  cursor:pointer;
  transition:all var(--transition);
  border:1px solid rgba(0,0,0,.2);color:var(--ink);
}
.btn-outline span{font-size:.9rem}
.btn-outline:hover{
  border-color:var(--ink);background:var(--ink);color:#fff;
}
.btn-lg{
  background:linear-gradient(135deg,var(--fire),var(--rose));
  padding:1.2rem 3.5rem;font-size:.85rem;
}
.btn-lg:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 40px rgba(201,75,44,.4);
}

/* ═══════════ NAVIGATION ═══════════ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(255,253,248,.94);backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.05);
  transition:box-shadow var(--transition);
}
.nav.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.nav-inner{
  max-width:1300px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 2rem;
}
.nav-logo{
  display:flex;align-items:center;gap:.6rem;
  text-decoration:none;color:var(--ink);
}
.nav-logo-img{height:38px;width:auto}
.nav-links{display:flex;gap:2rem;list-style:none}
.nav-links a{
  font-size:.7rem;letter-spacing:.14em;
  text-transform:uppercase;text-decoration:none;
  color:var(--muted);font-weight:500;
  transition:color var(--transition);
}
.nav-links a:hover{color:var(--fire)}

/* Dropdown */
.nav-dropdown{position:relative}
.nav-dropdown-toggle{
  font-family:var(--body);font-size:.7rem;letter-spacing:.14em;
  text-transform:uppercase;text-decoration:none;color:var(--muted);
  font-weight:500;transition:color var(--transition);cursor:pointer;
  display:flex;align-items:center;gap:.25rem;
  background:none;border:none;padding:0;
}
.nav-dropdown-toggle::after{content:'▾';font-size:.55rem;margin-top:1px}
.nav-dropdown-toggle:hover{color:var(--fire)}
.nav-cta{
  background:var(--fire);color:#fff;padding:.55rem 1.4rem;
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  font-weight:600;white-space:nowrap;transition:all var(--transition);
  border:none;cursor:pointer;font-family:var(--body);
  display:inline-flex;align-items:center;text-decoration:none;
}
.nav-cta:hover{background:var(--rose);transform:translateY(-1px);box-shadow:0 4px 14px rgba(201,75,44,.35)}
.nav-dropdown-menu{
  position:absolute;top:calc(100% + .25rem);left:50%;
  background:var(--cream);border:1px solid var(--soft);
  padding:.5rem 0;min-width:180px;
  opacity:0;visibility:hidden;
  transform:translateX(-50%) translateY(-6px);
  transition:opacity .25s ease,transform .25s ease,visibility .25s ease;
  box-shadow:var(--shadow-md);
}
.nav-dropdown-menu a{
  display:block;padding:.55rem 1.2rem;
  font-size:.65rem;letter-spacing:.1em;
  white-space:nowrap;
}
.nav-dropdown-menu a:hover{color:var(--fire);background:var(--parch)}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}

@media(max-width:1024px){
  .nav-dropdown{text-align:center;width:100%}
  .nav-dropdown-toggle{font-size:1rem;color:var(--ink);font-weight:500;letter-spacing:.12em;justify-content:center;margin:0 auto;display:inline-flex!important;width:auto}
  .nav-dropdown-menu{
    position:static!important;
    top:auto!important;left:auto!important;right:auto!important;
    transform:none!important;
    border:none!important;box-shadow:none!important;
    opacity:1!important;visibility:visible!important;
    display:none;
    background:transparent;text-align:center;padding-top:.8rem;
    width:100%!important;min-width:0!important;
  }
  .nav-dropdown-menu a{font-size:.85rem;padding:.5rem 0;text-align:center;display:block;white-space:normal}
  .nav-dropdown.open .nav-dropdown-menu{display:flex;flex-direction:column;align-items:center}
}

/* ═══════════ HAMBURGER ── */
.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;
  padding:.5rem;
}
.nav-toggle span{
  display:block;
  width:22px;height:1.5px;
  background:var(--ink);
  transition:all .3s;
}
.nav-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ═══════════ HERO — split layout ═══════════ */
.hero{
  min-height:100vh;display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:0;overflow:hidden;
}
.hero-left{
  padding:10rem 4rem 6rem 5rem;
  display:flex;flex-direction:column;
  justify-content:center;
  position:relative;overflow:hidden;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.6rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--fire);font-weight:600;margin-bottom:1.5rem;
}
.hero-tag-line{display:inline-flex;align-items:center;gap:.5rem}
.hero-tag-line::before{content:'';display:inline-block;width:2rem;height:1px;background:var(--fire)}
.hero-title{
  font-family:var(--display);
  font-size:clamp(3.2rem,5vw,5rem);
  font-weight:300;line-height:1.06;
  letter-spacing:-.025em;margin-bottom:1.8rem;
  color:var(--ink);
}
.hero-title em{font-style:italic;color:var(--fire)}
.hero-sub{
  font-size:1.05rem;color:var(--muted);
  font-weight:300;line-height:1.85;
  max-width:440px;margin-bottom:2.8rem;
}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem}
.hero-trust{
  display:flex;align-items:center;gap:1.5rem;
  padding-top:2rem;border-top:1px solid var(--soft);
  font-size:.75rem;color:var(--muted);font-weight:400;
}
.hero-dot{display:inline-flex;align-items:center;width:6px;height:7px}

/* Right dark panel */
.hero-right{
  height:100vh;position:relative;
  background:var(--ink);overflow:hidden;
}
.hero-right-bg{
  position:absolute;inset:0;
  background:linear-gradient(160deg,#1F1F1F 0%,#181818 60%,#222222 100%);
}
.hero-right-glow{
  position:absolute;
  width:70%;height:70%;
  top:15%;left:15%;
  background:radial-gradient(ellipse,rgba(212,160,84,.12) 0%,transparent 70%);
}
.hero-right-lotus{
  position:absolute;
  inset:0;display:flex;align-items:center;justify-content:center;
}
.hero-right-lotus svg{width:75%;max-width:420px;opacity:.9}
.hero-right-vignette{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(to top,rgba(0,0,0,.7) 0%,rgba(0,0,0,.2) 50%,transparent 100%);
}
.hero-flower-img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.85);
  animation: flowerGlow 5s ease-in-out infinite;
  transition:filter .5s ease;
}
.hero-flower-img:hover{filter:brightness(1)}
@keyframes flowerGlow{
  0%,100%{filter:brightness(.85)}
  50%{filter:brightness(.95)}
}
.hero-quote-overlay{
  position:absolute;bottom:2.5rem;left:2rem;right:2rem;z-index:2;
  font-family:var(--display);
  font-size:1.05rem;font-style:italic;font-weight:300;
  color:rgba(255,255,255,.55);
  line-height:1.6;text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:1.5rem;
}

/* ═══════════ URGENCY BAR ═══════════ */
.urgency{
  background:var(--ink);color:#fff;
  padding:.85rem 2rem;text-align:center;
  font-size:.75rem;letter-spacing:.08em;
}
.urgency strong{color:var(--gold)}

/* ═══════════ PAIN ═══════════ */
.pain-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:start;
}
.pain-list{margin-top:2.5rem;display:flex;flex-direction:column;gap:.5rem}
.pain-item{
  display:flex;align-items:flex-start;gap:1rem;
  font-size:.95rem;color:var(--muted);line-height:1.7;font-weight:300;
  padding:.8rem 0;border-bottom:1px solid var(--soft);
}
.pain-item:last-child{border-bottom:none}
.pain-icon{
  width:20px;height:20px;border-radius:50%;
  background:rgba(201,75,44,.1);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:.15rem;
}

/* Pain quote — dark box */
.pain-quote{
  background:var(--ink);color:#fff;
  padding:3rem;position:relative;overflow:hidden;
}
.pain-quote::before{
  content:'';position:absolute;
  top:-40%;left:-40%;width:180%;height:180%;
  background:radial-gradient(ellipse at 60% 40%,rgba(212,160,84,.1),transparent 65%);
}
.pain-quote blockquote{
  font-family:var(--display);
  font-size:1.5rem;font-style:italic;font-weight:300;
  line-height:1.55;color:rgba(255,255,255,.9);
  position:relative;z-index:1;margin-bottom:2rem;
  margin-left:0;margin-right:0;
}
.pain-quote-attr{
  font-size:.7rem;color:rgba(255,255,255,.45);
  letter-spacing:.06em;position:relative;z-index:1;
  font-family:var(--body)!important;font-style:normal!important;font-weight:300!important;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonial-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2px;margin-top:3.5rem;background:var(--soft);
}
.testimonial-card{
  background:var(--cream);padding:2.5rem;
  transition:background var(--transition);
}
.testimonial-card:hover{background:var(--warm)}
.testimonial-stars{color:var(--gold);font-size:1rem;margin-bottom:1rem;letter-spacing:.1em}
.testimonial-text{
  font-family:var(--display);
  font-size:1.12rem;font-style:italic;font-weight:300;
  color:var(--ink);line-height:1.65;margin-bottom:1.5rem;
}
.testimonial-name{font-size:.73rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:500}
.testimonial-detail{font-size:.72rem;color:var(--gold);margin-top:.2rem}
.testimonial-cta{margin-top:2.5rem;text-align:center}

/* ═══════════ METHOD — dark section ═══════════ */
.method-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:start;
}
.method-left{}
.method-quote{
  font-family:var(--display);
  font-size:1.6rem;font-style:italic;font-weight:300;
  color:rgba(255,255,255,.75);line-height:1.5;margin:2rem 0;
}
.method-badges{
  display:flex;flex-wrap:wrap;gap:.4rem;
}
.method-badges span{
  font-size:.6rem;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(200,184,158,.55);
  border:1px solid rgba(255,255,255,.12);
  padding:.25rem .65rem;
}
.method-steps{margin-top:0}
.method-step{
  display:flex;gap:1.5rem;align-items:flex-start;
  padding:2rem 0;border-bottom:1px solid rgba(255,255,255,.07);
  cursor:pointer;transition:all var(--transition);
}
.method-step:first-child{padding-top:0}
.method-step:last-child{border-bottom:none}
.method-step:hover .method-num{color:var(--gold)}
.method-num{
  font-family:var(--display);
  font-size:2rem;font-weight:300;color:rgba(255,255,255,.15);
  line-height:1;flex-shrink:0;min-width:2rem;
  transition:color var(--transition);
}
.method-step h4{
  font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;
  font-weight:500;color:rgba(255,255,255,.85);margin-bottom:.4rem;
}
.method-step p{
  font-size:.86rem;color:rgba(200,184,158,.6);
  line-height:1.75;font-weight:300;
}

/* 9 Relationships inside method — dark variant */
.nine-teaser{margin-top:4rem;padding-top:3rem;border-top:1px solid rgba(255,255,255,.07);text-align:center}
.nine-teaser-label{
  font-family:var(--display);
  font-size:1.2rem;font-style:italic;font-weight:300;
  color:rgba(255,255,255,.5);margin-bottom:1.5rem;
}
.nine-teaser-label em{color:var(--gold)}
.nine-teaser-row{display:flex;justify-content:center;flex-wrap:wrap;gap:.5rem}
.nine-pill{
  font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;
  font-weight:500;color:rgba(212,160,84,.6);background:none;
  border:1px solid rgba(212,160,84,.2);
  padding:.4rem 1rem;cursor:pointer;font-family:var(--body);
  transition:all var(--transition);
}
.nine-pill:hover{color:var(--gold);border-color:rgba(212,160,84,.5)}
.nine-pill.active{background:var(--gold);color:var(--ink);border-color:var(--gold)}
.nine-detail{margin-top:2rem;text-align:center;display:none}
.nine-detail.open{display:block}
.nine-detail-title{font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:var(--gold);margin-bottom:.5rem}
.nine-detail-body{font-size:.86rem;color:rgba(200,184,158,.6);line-height:1.75;font-weight:300;max-width:500px;margin:0 auto}

/* ═══════════ SERVICES ═══════════ */
.services-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;margin-top:4rem;border:1px solid var(--soft);
}
/* Two-pathway variant (two service-cards instead of four) - the 1024px/768px
   breakpoints below already collapse .services-grid appropriately for 2 cards. */
.pathways-grid{grid-template-columns:1fr 1fr}
.service-card{
  background:var(--cream);padding:2.5rem 2rem;
  border-right:1px solid var(--soft);
  display:flex;flex-direction:column;
  transition:background var(--transition);
  position:relative;
}
.service-card:last-child{border-right:none}
.service-card:hover{background:var(--parch)}
.service-card.featured{
  background:var(--ink);color:#fff;border-right:1px solid rgba(255,255,255,.1);
}
.service-card.featured:hover{background:#333}
.service-badge{
  font-size:.62rem;letter-spacing:.16em;text-transform:uppercase;
  font-weight:600;margin-bottom:1.2rem;color:var(--fire);
}
.service-card.featured .service-badge{color:var(--gold)}
.service-name{
  font-family:var(--display);
  font-size:1.3rem;font-weight:400;margin-bottom:.4rem;
}
.service-card.featured .service-name{color:#fff}
.service-price{font-size:1.35rem;font-weight:600;color:var(--fire);margin-bottom:.3rem}
.service-card.featured .service-price{color:var(--gold)}
.service-duration{font-size:.73rem;color:var(--muted);margin-bottom:1.2rem}
.service-card.featured .service-duration{color:rgba(255,255,255,.45)}
.service-desc{font-size:.83rem;color:var(--muted);line-height:1.8;font-weight:300;flex:1;margin-bottom:1.5rem}
.service-card.featured .service-desc{color:rgba(200,184,158,.75)}
.service-cta{
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
  font-weight:600;color:var(--fire);text-decoration:none;
  display:inline-flex;align-items:center;gap:.4rem;
  transition:gap var(--transition);
}
.service-card.featured .service-cta{color:var(--gold)}
.service-cta:hover{gap:.8rem}
.service-cta::after{content:'→'}

.service-actions{display:flex;gap:.75rem;align-items:center;margin-top:auto}
.service-book{
  font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;
  font-weight:600;color:#fff;text-decoration:none;
  background:var(--fire);padding:7px 16px;
  transition:all var(--transition);border:none;cursor:pointer;
  font-family:var(--body);white-space:nowrap;
}
.service-book:hover{background:var(--rose);transform:translateY(-1px);box-shadow:0 4px 14px rgba(201,75,44,.35)}
.service-card.featured .service-book{background:var(--gold);color:var(--ink)}
.service-card.featured .service-book:hover{background:#e0b860;box-shadow:0 4px 14px rgba(212,160,84,.45)}

/* ═══════════ LOTUS WATERMARKS ═══════════ */
.lotus-watermark{
  position:absolute;top:-10%;right:-15%;
  width:clamp(300px,45vw,520px);pointer-events:none;z-index:0;
}
.lotus-watermark svg{width:100%;height:auto}
.lotus-watermark-center{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:clamp(280px,40vw,500px);pointer-events:none;z-index:0;
}
.lotus-watermark-center svg{width:100%;height:auto}
.lotus-watermark-right{
  position:absolute;top:50%;right:-10%;transform:translateY(-50%);
  width:clamp(260px,35vw,460px);pointer-events:none;z-index:0;
}
.lotus-watermark-right svg{width:100%;height:auto}
.lotus-accent{
  display:inline-block;width:11px;height:11px;flex-shrink:0;
  opacity:.35;vertical-align:middle;
}
.section-tag-line{
  display:inline-flex;align-items:center;gap:.35rem;
}

/* ═══════════ BIG QUOTE ═══════════ */
.big-quote{
  background:linear-gradient(135deg,var(--fire) 0%,var(--rose) 100%);
  padding:8rem 2rem;text-align:center;
  position:relative;overflow:hidden;
}
.big-quote-inner{max-width:820px;margin:0 auto}
.big-quote blockquote{
  font-family:var(--display);
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:300;font-style:italic;
  color:#fff;line-height:1.35;
  margin:0 auto 2rem;
}
.big-quote cite{
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.55);font-style:normal;font-weight:500;
}

/* ═══════════ 9 RELATIONSHIPS ═══════════ */
.nine-intro{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:end;margin-bottom:4rem}
.nine-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid var(--soft)}
.ni{
  padding:1.8rem 2rem;
  border-bottom:1px solid var(--soft);
  border-right:1px solid var(--soft);
  display:flex;gap:1.2rem;align-items:flex-start;
  transition:background var(--transition);
}
.ni:hover{background:rgba(201,75,44,.03)}
.ni:nth-child(3n){border-right:none}
.ni-num{
  font-family:var(--display);
  font-size:1.6rem;font-weight:300;color:var(--gold);
  line-height:1;flex-shrink:0;min-width:1.8rem;
}
.ni-title{font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:var(--ink);margin-bottom:.3rem}
.ni-body{font-size:.8rem;color:var(--muted);line-height:1.7;font-weight:300}

/* ═══════════ HEALING EXPERIENCES ═══════════ */
.exp-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:3rem;
}
.exp-card{
  background:var(--cream);padding:2.2rem;
  border:1px solid var(--soft);
  transition:all var(--transition);
  position:relative;overflow:hidden;
}
.exp-card-link{text-decoration:none;color:inherit;display:block}
.exp-card::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--fire),var(--rose));
  transform:scaleX(0);transition:transform .3s;transform-origin:left;
}
.exp-card:hover{border-color:rgba(201,75,44,.2);box-shadow:0 8px 30px rgba(0,0,0,.07)}
.exp-card:hover::before{transform:scaleX(1)}
.exp-icon{margin-bottom:1.2rem}
.exp-name{font-family:var(--display);font-size:1.2rem;font-weight:400;margin-bottom:.3rem}
.exp-price{font-size:.8rem;color:var(--fire);font-weight:600;margin-bottom:.8rem;letter-spacing:.04em}
.exp-desc{font-size:.82rem;color:var(--muted);line-height:1.78;font-weight:300}
.exp-explore{display:inline-block;margin-top:1.4rem;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:var(--fire);transition:color var(--transition),gap var(--transition)}
.exp-card:hover .exp-explore{color:var(--gold)}

/* ═══════════ ABOUT ═══════════ */
.about-grid{
  display:grid;grid-template-columns:1fr 1.4fr;
  gap:6rem;align-items:center;
}
.about-visual{
  background:var(--ink);aspect-ratio:.75;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  gap:1.5rem;padding:3rem;position:relative;overflow:hidden;
}
.about-visual::before{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(to top,rgba(17,16,8,.85) 0%,rgba(17,16,8,.3) 40%,rgba(17,16,8,.05) 100%);
}
.about-photo{
  width:100%;height:100%;object-fit:cover;
  object-position:top center;
  position:absolute;inset:0;z-index:0;
}
.about-visual-name{
  font-family:var(--display);
  font-size:1.1rem;font-weight:300;font-style:italic;
  color:rgba(255,255,255,.85);text-align:center;
  position:relative;z-index:2;line-height:1.6;
}
.about-visual-tags{
  display:flex;flex-wrap:wrap;gap:.35rem;justify-content:center;
  position:relative;z-index:2;
}
.about-visual-tags span{
  font-size:.58rem;letter-spacing:.09em;text-transform:uppercase;
  border:1px solid rgba(255,255,255,.18);
  padding:.22rem .6rem;color:rgba(255,255,255,.65);
}
.about-text .section-heading{margin-bottom:1.5rem}
.about-text p{font-size:.95rem;color:var(--muted);line-height:1.9;font-weight:300;margin-bottom:1.4rem}
.about-text p strong{color:var(--ink);font-weight:500}
.about-text blockquote{
  font-family:var(--display);
  font-size:1.4rem;font-weight:300;font-style:italic;
  color:var(--fire);line-height:1.5;
  padding-left:1.4rem;border-left:3px solid var(--gold);
  margin:2rem 0;
}

/* ═══════════ PROCESS ═══════════ */
.process-steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1rem;margin-top:4rem;position:relative;
}
.process-steps::before{
  content:'';position:absolute;
  top:28px;left:10%;right:10%;height:1px;
  background:var(--soft);z-index:0;
}
.process-step{text-align:center;position:relative;z-index:1;padding:0 1rem}
.process-circle{
  width:56px;height:56px;border-radius:50%;
  background:var(--cream);border:1px solid var(--soft);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.4rem;
  font-family:var(--display);
  font-size:1.2rem;font-weight:400;color:var(--fire);
  transition:all var(--transition);
}
.process-step:hover .process-circle{
  background:var(--fire);color:#fff;border-color:var(--fire);
  box-shadow:0 6px 20px rgba(201,75,44,.2);
}
.process-title{font-size:.76rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;color:var(--ink);margin-bottom:.4rem}
.process-desc{font-size:.8rem;color:var(--muted);line-height:1.7;font-weight:300}

/* ═══════════ FINAL CTA — dark section ═══════════ */
.cta-final{text-align:center}
.cta-final .section-sub{max-width:600px;margin:0 auto 3rem}
.cta-final-buttons{display:flex;flex-direction:column;align-items:center;gap:1rem;margin-bottom:2rem}
.cta-final-note{font-size:.75rem;color:rgba(255,255,255,.35);letter-spacing:.05em}
.cta-whatsapp{font-size:.75rem;color:rgba(255,255,255,.35);text-decoration:none;letter-spacing:.06em;transition:color var(--transition)}
.cta-whatsapp:hover{color:var(--gold)}
.cta-final-price{
  margin-top:2rem;
  font-family:var(--display);
  font-size:1.3rem;font-style:italic;font-weight:300;
  color:rgba(200,184,158,.55);margin-bottom:3rem;
}
.cta-final-price strong{color:var(--gold);font-weight:400}

.cta-stats{
  display:flex;justify-content:center;
  gap:3rem;flex-wrap:wrap;
  padding-top:2.5rem;border-top:1px solid rgba(255,255,255,.07);
}
.cta-stat{text-align:center}
.cta-stat-val{
  display:block;
  font-family:var(--display);
  font-size:1.8rem;font-weight:400;color:var(--gold);
  line-height:1.2;
}
.cta-stat-label{font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(200,184,158,.35)}

/* ═══════════ FOOTER ═══════════ */
.footer{
  background:#1A1A1A;color:rgba(200,184,158,.4);
  padding:2.5rem 2rem;text-align:center;
}
.footer-inner{max-width:800px;margin:0 auto}
.footer-brand{display:flex;flex-direction:column;align-items:center;gap:.8rem;margin-bottom:1.5rem}
.footer-logo{width:220px;height:auto;opacity:.85;margin-bottom:1rem}
.footer-cert{width:60px;height:auto;opacity:.7}
.footer-logos{display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap;margin-bottom:.5rem}
.footer-brand p{font-family:var(--display);font-size:.9rem;font-weight:300;line-height:1.6;color:rgba(200,184,158,.4)}
.footer-brand em{font-style:italic}
.footer-links{display:flex;justify-content:center;flex-wrap:wrap;gap:1.6rem;margin-bottom:1.5rem}
.footer-links a{
  font-size:.7rem;letter-spacing:.06em;text-decoration:none;
  color:rgba(200,184,158,.4);transition:color var(--transition);
}
.footer-links a:hover{color:var(--gold)}
.footer-legal{display:flex;justify-content:center;flex-wrap:wrap;gap:1.2rem;margin-bottom:1rem}
.footer-legal a{
  font-size:.65rem;letter-spacing:.05em;text-decoration:none;
  color:rgba(200,184,158,.25);transition:color var(--transition);
}
.footer-legal a:hover{color:rgba(200,184,158,.5)}
.footer-social{display:flex;justify-content:center;gap:1.2rem;margin-bottom:1.5rem}
.footer-social a{
  color:rgba(200,184,158,.3);transition:color var(--transition);
  display:flex;align-items:center;
}
.footer-social a:hover{color:var(--gold)}
.footer-copy{font-size:.68rem;letter-spacing:.06em;color:rgba(200,184,158,.4)}

/* ═══════════ CALENDLY MODAL ═══════════ */
.calendly-overlay{
  position:fixed;inset:0;z-index:400;
  background:rgba(0,0,0,.7);
  display:flex;align-items:center;justify-content:center;
  padding:2rem;
}
.calendly-overlay.open{display:flex}
.calendly-modal{
  position:relative;width:100%;max-width:900px;
  height:85vh;max-height:750px;
  background:var(--cream);border:1px solid var(--soft);
  box-shadow:var(--shadow-lg);
}
.calendly-close{
  position:absolute;top:-.5rem;right:-.5rem;z-index:2;
  width:36px;height:36px;border-radius:50%;
  background:var(--ink);color:#fff;
  border:none;font-size:1.2rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:all var(--transition);
}
.calendly-close:hover{background:var(--fire);transform:scale(1.1)}
.calendly-embed{width:100%;height:100%}
.calendly-embed iframe{border:none}
body.no-scroll{overflow:hidden}

/* ═══════════ CART BUBBLE ═══════════ */
.cart-bubble{
  position:fixed;bottom:6.5rem;right:2rem;z-index:299;
  display:flex;align-items:center;justify-content:center;
  width:48px;height:48px;border-radius:50%;
  background:var(--ink);color:var(--gold);
  box-shadow:0 4px 20px rgba(0,0,0,.25);
  text-decoration:none;transition:all var(--transition);
}
.cart-bubble:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(0,0,0,.35);
  background:#333;
}
.cart-bubble-count{
  position:absolute;top:-4px;right:-4px;
  background:var(--fire);color:#fff;
  width:20px;height:20px;border-radius:50%;
  font-size:.62rem;font-weight:600;
  display:flex;align-items:center;justify-content:center;
  line-height:1;
}

/* ═══════════ WHATSAPP WIDGET ═══════════ */
.whatsapp-widget{position:fixed;bottom:2rem;right:2rem;z-index:300}
.whatsapp-toggle{
  display:flex;align-items:center;gap:.5rem;
  background:#25D366;color:#fff;border:none;
  padding:.7rem 1.1rem;border-radius:2rem;
  cursor:pointer;font-family:var(--body);
  font-size:.78rem;font-weight:500;
  box-shadow:0 4px 20px rgba(37,211,102,.35);
  transition:all var(--transition);
}
.whatsapp-toggle:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(37,211,102,.45)}
.whatsapp-status{position:relative;padding-left:.9rem}
.whatsapp-status::before{
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:7px;height:7px;border-radius:50%;background:#fff;
}
.whatsapp-bubble{
  position:absolute;bottom:calc(100% + 1rem);right:0;
  width:280px;background:#fff;border-radius:16px;
  box-shadow:var(--shadow-lg);padding:1.5rem;
  display:none;flex-direction:column;gap:.8rem;
}
.whatsapp-bubble.open{display:flex}
.whatsapp-bubble-header{
  display:flex;align-items:center;gap:.5rem;
  font-size:.82rem;font-weight:600;color:var(--ink);
}
.whatsapp-online{
  width:9px;height:9px;border-radius:50%;background:#25D366;
  flex-shrink:0;
}
.whatsapp-bubble-body{font-size:.78rem;color:var(--muted);line-height:1.6}
.whatsapp-bubble-cta{
  display:block;text-align:center;
  background:#25D366;color:#fff;text-decoration:none;
  padding:.6rem 1rem;border-radius:2rem;
  font-size:.75rem;font-weight:600;
  transition:background var(--transition);
}
.whatsapp-bubble-cta:hover{background:#1fa855}

/* ═══════════ PAGE HEADER (sub-pages) ═══════════ */
.page-header{text-align:center;padding:10rem 2rem 4rem}
.page-title{font-family:var(--display);font-size:clamp(2.2rem,3.5vw,3.8rem);font-weight:300;line-height:1.15;margin-bottom:.4rem}
.page-title em{font-style:italic;color:var(--fire)}
.page-sub{font-size:.92rem;color:var(--muted);margin-top:.5rem;max-width:500px;margin-left:auto;margin-right:auto}
.back-link{text-align:center;padding:0 2rem 2rem}
.back-link a{font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;color:var(--muted);font-weight:500;transition:color var(--transition)}
.back-link a:hover{color:var(--fire)}

/* ═══════════ FAQ ACCORDION ═══════════ */
.faq-section{padding:0 2rem 5rem}
.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:1px}
.faq-item{
  background:var(--cream);
  border:1px solid var(--soft);
  transition:border-color var(--transition),box-shadow var(--transition);
}
.faq-item:hover{border-color:rgba(201,75,44,.15);box-shadow:0 4px 20px rgba(0,0,0,.04)}
.faq-item summary{
  font-family:var(--display);
  font-size:1.2rem;font-weight:400;
  color:var(--ink);line-height:1.4;
  padding:1.6rem 2rem;
  cursor:pointer;list-style:none;
  display:flex;align-items:center;justify-content:space-between;
  transition:color var(--transition);
  user-select:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  font-family:var(--body);
  font-size:.9rem;font-weight:300;
  color:var(--gold);
  flex-shrink:0;margin-left:1.5rem;
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--soft);
  border-radius:50%;
  transition:all .3s ease;
}
.faq-item[open] summary{color:var(--fire)}
.faq-item[open] summary::after{
  content:'\2212';
  border-color:var(--gold);
  background:var(--gold);
  color:#fff;
}
.faq-item summary:hover{color:var(--fire)}
.faq-item summary:hover::after{border-color:var(--gold)}
.faq-answer{
  padding:0 2rem 1.8rem 2rem;
  font-size:.93rem;color:var(--muted);
  line-height:1.85;font-weight:300;
  max-width:640px;
}
@media(max-width:768px){
  .faq-section{padding:0 1.5rem 3rem}
  .faq-item summary{font-size:1.05rem;padding:1.2rem 1.5rem}
  .faq-answer{padding:0 1.5rem 1.2rem 1.5rem;font-size:.88rem}
}

/* ═══════════ PRODUCT PAGES (breathwork, reiki, akashic) ═══════════ */
.product-hero{padding:8rem 2rem 3rem;background:var(--parch);text-align:center}
.product-icon{margin-bottom:1.5rem}
.product-tag{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--fire);font-weight:600;margin-bottom:1rem}
.product-title{font-family:var(--display);font-size:clamp(2.2rem,3.5vw,3.4rem);font-weight:300;line-height:1.15;margin-bottom:1rem}
.product-subtitle{font-size:1rem;color:var(--muted);max-width:600px;margin:0 auto;line-height:1.75}
.product-price-hero{display:inline-block;margin-top:1.5rem;font-size:1.2rem;font-weight:600;color:var(--fire)}
.product-body{max-width:820px;margin:0 auto;padding:4rem 2rem 0}
.product-body h2{font-family:var(--display);font-size:1.8rem;font-weight:300;margin-bottom:1.2rem;color:var(--ink)}
.product-body h2 em{font-style:italic;color:var(--fire)}
.product-body p{font-size:.95rem;color:var(--muted);line-height:1.9;margin-bottom:1.5rem}
.product-body ul{margin-bottom:2rem;padding-left:1.2rem}
.product-body li{font-size:.92rem;color:var(--muted);line-height:1.8;margin-bottom:.5rem;padding-left:.3rem}
.product-body li::marker{color:var(--gold)}
.product-cta{text-align:center;padding:3rem 2rem 5rem}
.product-cta .btn-primary{display:inline-flex;align-items:center;gap:.5rem;background:var(--fire);color:#fff;padding:1rem 2.5rem;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;font-weight:600;transition:all var(--transition);border:none;cursor:pointer;font-family:var(--body)}
.product-cta .btn-primary:hover{background:var(--rose);transform:translateY(-2px);box-shadow:0 8px 30px rgba(201,75,44,.3)}
.selector-row{display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;margin-bottom:1.2rem}
.selector-row select{padding:.85rem 2.5rem .85rem 1.2rem;border:1px solid var(--soft);font-family:var(--body);font-size:.88rem;color:var(--ink);background:var(--cream);cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E64' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;min-width:280px}
.selector-row select:focus{outline:none;border-color:var(--gold)}
.selector-row .selected-price{font-size:1.1rem;font-weight:600;color:var(--fire);min-width:80px}
.cart-added{display:none;margin-top:.8rem;font-size:.82rem;color:var(--gold);font-weight:500}
.cart-added.show{display:block}
.cta-note{font-size:.75rem;color:var(--muted);margin-top:.8rem}

.pricing-table{width:100%;max-width:560px;border-collapse:collapse;margin:2rem 0 3rem}
.pricing-table th,.pricing-table td{padding:.9rem 1.2rem;text-align:left;border-bottom:1px solid var(--soft)}
.pricing-table th{font-size:.65rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:500}
.pricing-table td{font-size:.9rem;color:var(--ink);font-weight:400}
.pricing-table .price{font-weight:600;color:var(--fire)}
.pricing-table .note{font-size:.78rem;color:var(--muted);font-style:italic;border-bottom:none;padding-top:1rem}
.pricing-table .type-col{font-size:.78rem;color:var(--gold);font-weight:500}

.related{padding:5rem 2rem;background:var(--parch);text-align:center}
.related-title{font-family:var(--display);font-size:1.8rem;font-weight:300;margin-bottom:2rem}
.related-title em{font-style:italic;color:var(--fire)}
.related-grid{display:flex;gap:1.5rem;justify-content:center;flex-wrap:wrap;max-width:800px;margin:0 auto}
.related-card{background:var(--cream);padding:2rem 1.8rem;border:1px solid var(--soft);flex:1;min-width:220px;max-width:300px;text-decoration:none;color:inherit;transition:all var(--transition)}
.related-card:hover{border-color:rgba(201,75,44,.15);box-shadow:0 8px 30px rgba(0,0,0,.07);transform:translateY(-2px)}
.related-card h3{font-family:var(--display);font-size:1.15rem;font-weight:400;margin-bottom:.4rem}
.related-card .price{font-size:.85rem;color:var(--fire);font-weight:600}

/* ═══════════ CART PAGE ═══════════ */
.cart-page{max-width:700px;margin:0 auto;padding:0 2rem 5rem}
.cart-empty{text-align:center;padding:4rem 2rem}
.cart-empty p{font-size:1.1rem;color:var(--muted);margin-bottom:2rem}
.cart-item{display:flex;align-items:center;justify-content:space-between;padding:1.5rem 0;border-bottom:1px solid var(--soft);gap:1rem}
.cart-item-info{flex:1}
.cart-item-name{font-family:var(--display);font-size:1.2rem;font-weight:400}
.cart-item-price{font-size:.85rem;color:var(--fire);font-weight:600;margin-top:.2rem}
.cart-remove{background:none;border:none;color:var(--muted);cursor:pointer;font-size:.85rem;padding:.3rem .6rem;transition:color var(--transition)}
.cart-remove:hover{color:var(--fire)}
.cart-summary{margin-top:2.5rem;text-align:right;padding-top:1.5rem;border-top:2px solid var(--ink)}
.cart-total-label{font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:.3rem}
.cart-total{font-family:var(--display);font-size:2rem;font-weight:300;color:var(--ink)}
.cart-checkout{text-align:center;margin-top:2.5rem}
.cart-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ═══════════ CHECKOUT ═══════════ */
.checkout-layout{max-width:900px;margin:0 auto;padding:0 2rem 5rem;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.checkout-section h2{font-family:var(--display);font-size:1.6rem;font-weight:300;margin-bottom:1.5rem}
.checkout-section h2 em{font-style:italic;color:var(--fire)}
.form-group{margin-bottom:1.2rem}
.form-group label{display:block;font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:500;margin-bottom:.4rem}
.form-group input,.form-group select{width:100%;padding:.85rem 1rem;border:1px solid var(--soft);font-family:var(--body);font-size:.9rem;color:var(--ink);background:var(--cream);transition:border-color var(--transition)}
.form-group input:focus,.form-group select:focus{outline:none;border-color:var(--gold)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.session-toggle{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.session-option{display:flex;flex-direction:column;align-items:center;gap:.3rem;padding:1rem .8rem;border:2px solid var(--soft);cursor:pointer;text-align:center;transition:all var(--transition);position:relative;font-family:var(--body)}
.session-option input[type="radio"]{position:absolute;opacity:0}
.session-option.active{border-color:var(--gold);background:rgba(212,160,84,.06)}
.session-option:hover:not(.active){border-color:var(--soft);background:var(--parch)}
.session-option-label{font-size:.8rem;font-weight:500;color:var(--ink);letter-spacing:.03em}
.session-option-hint{font-size:.65rem;color:var(--muted);letter-spacing:.02em}
.order-summary{background:var(--parch);padding:2.5rem;border:1px solid var(--soft)}
.order-item{display:flex;justify-content:space-between;padding:.8rem 0;border-bottom:1px solid var(--soft);font-size:.9rem}
.order-item-name{color:var(--ink)}
.order-item-price{font-weight:500;color:var(--fire);white-space:nowrap}
.order-total{margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid var(--ink);display:flex;justify-content:space-between;align-items:baseline}
.order-total-label{font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.order-total-amount{font-family:var(--display);font-size:2rem;font-weight:300;color:var(--ink)}
.order-empty{text-align:center;padding:2rem;color:var(--muted);font-size:.9rem}
.checkout-pay{margin-top:2rem}
.payment-tabs{display:flex;gap:0;margin-bottom:0;border:1px solid var(--soft);border-bottom:none}
.payment-tab{flex:1;padding:.85rem 1rem;text-align:center;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;cursor:pointer;border:none;background:var(--cream);color:var(--muted);font-family:var(--body);transition:all var(--transition)}
.payment-tab.active{background:var(--ink);color:var(--gold)}
.payment-tab:first-child{border-right:1px solid var(--soft)}
.payment-tab:hover:not(.active){background:var(--parch);color:var(--ink)}
.payment-tab .picon{display:inline-block;width:16px;height:16px;margin-right:.35rem;vertical-align:-3px}
.payment-panel{display:none;border:1px solid var(--soft);border-top:none;padding:1.5rem;background:var(--cream)}
.payment-panel.active{display:block}
.btn-pay{display:block;width:100%;text-align:center;padding:1.2rem 2rem;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;text-decoration:none;font-weight:600;border:none;cursor:pointer;transition:all var(--transition);font-family:var(--body)}
.btn-pay-stripe{background:#635BFF;color:#fff}
.btn-pay-stripe:hover{background:#7C3AED;transform:translateY(-2px);box-shadow:0 14px 40px rgba(99,91,255,.4)}
.btn-pay-stripe:disabled{opacity:.5;cursor:not-allowed;transform:none;box-shadow:none}
.btn-pay-tabby{background:#00C6B0;color:#fff}
.btn-pay-tabby:hover{background:#00A890;transform:translateY(-2px);box-shadow:0 14px 40px rgba(0,198,176,.35)}
.btn-pay-tabby:disabled{opacity:.5;cursor:not-allowed;transform:none;box-shadow:none}
.btn-pay .spinner{display:none;width:18px;height:18px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .6s linear infinite;margin-right:.5rem;vertical-align:middle}
.btn-pay.loading .spinner{display:inline-block}
.btn-pay.loading .btn-text{display:none}
@keyframes spin{to{transform:rotate(360deg)}}
.tabby-promo{background:rgba(0,198,176,.06);border:1px solid rgba(0,198,176,.15);padding:.8rem 1rem;text-align:center;margin-top:.8rem}
.tabby-promo span{font-size:.73rem;color:var(--muted);line-height:1.7}
.tabby-promo strong{color:#00A890;font-weight:600}
.pay-note{text-align:center;font-size:.72rem;color:var(--muted);margin-top:.8rem}
.pay-secure{display:flex;align-items:center;justify-content:center;gap:.4rem;margin-top:1rem;font-size:.7rem;color:var(--muted)}
.pay-error{display:none;text-align:center;color:var(--fire);font-size:.82rem;margin-top:.8rem}
.pay-error.show{display:block}

/* ═══════════ TESTIMONIAL PAGE ═══════════ */
.testimonial-page{max-width:900px;margin:0 auto;padding:0 2rem 6rem;display:flex;flex-direction:column;gap:2.5rem}
.testimonial-block{background:var(--cream);padding:3rem;border:1px solid var(--soft)}
.testimonial-block .testimonial-stars{color:var(--gold);font-size:1rem;margin-bottom:1rem;letter-spacing:.1em}
.testimonial-block blockquote{font-family:var(--display);font-size:1.2rem;font-style:italic;font-weight:300;color:var(--ink);line-height:1.65;margin-bottom:1.5rem}
.testimonial-block blockquote::before{content:'\201C'}
.testimonial-block blockquote::after{content:'\201D'}
.testimonial-block .author{font-size:.73rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:500}

/* ═══════════ SUCCESS PAGE ═══════════ */
.success-confirm{text-align:center;padding:6rem 2rem 0}
.success-icon{margin-bottom:.8rem}
.success-tag{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--fire);font-weight:600;margin-bottom:.6rem}
.success-title{font-family:var(--display);font-size:clamp(2rem,3vw,2.6rem);font-weight:300;line-height:1.15;margin-bottom:.4rem}
.success-body{font-size:.95rem;color:var(--muted);line-height:1.7}
.booking-section{max-width:780px;margin:2rem auto 0;padding:0 1.5rem 5rem}
.booking-card{background:var(--cream);border:1px solid var(--soft);overflow:hidden}
.booking-header{background:var(--parch);padding:1.2rem 2rem;border-bottom:1px solid var(--soft);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.8rem}
.booking-header h2{font-family:var(--display);font-size:1.3rem;font-weight:300}
.booking-header h2 em{font-style:italic;color:var(--fire)}
.booking-badge{font-size:.62rem;letter-spacing:.13em;text-transform:uppercase;font-weight:600;padding:.35rem .9rem;background:var(--gold);color:#fff}
.booking-embed{width:100%;height:620px}
.booking-embed iframe{width:100%;height:100%;border:none}
.change-link{text-align:center;margin-top:1.5rem}
.change-link a{font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;color:var(--muted);font-weight:500;transition:color var(--transition)}
.change-link a:hover{color:var(--fire)}

/* ═══════════ RESPONSIVE ═══════════ */
@media(max-width:1024px){
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-left{padding:8rem 2rem 3rem}
  .hero-right{height:60vw;min-height:340px}

  .nav-links{display:none}
  .nav-toggle{display:flex;z-index:999;position:relative}
  .nav-cta{display:none}
  .nav-inner .nav-cta{display:none}

  .nav-links.mobile-open{
    display:flex;flex-direction:column;
    position:fixed;top:0;left:0;right:0;bottom:0;
    width:100vw;height:100vh;height:100dvh;
    background:#FFFDF8;
    align-items:center;justify-content:center;
    gap:2.5rem;z-index:991;
    padding:5rem 2rem;
  }
  .nav-links.mobile-open a,.nav-links.mobile-open .nav-dropdown-toggle{font-size:1rem;color:var(--ink);font-weight:500;letter-spacing:.12em;font-family:var(--body)}
  .nav-links.mobile-open .nav-dropdown{display:flex;flex-direction:column;align-items:center}
  .nav-links.mobile-open .nav-dropdown-toggle{justify-content:center}

  .section{padding:5rem 1.5rem}
  .pain-grid,.method-grid,.about-grid,.nine-intro{grid-template-columns:1fr;gap:3rem}
  .services-grid{grid-template-columns:1fr 1fr}
  .service-card:nth-child(2n){border-right:none}
  .testimonial-grid{grid-template-columns:1fr}
  .nine-grid{grid-template-columns:1fr 1fr}
  .ni:nth-child(3n){border-right:1px solid var(--soft);padding-right:2rem}
  .ni:nth-child(2n){border-right:none;padding-right:0}
  .exp-grid{grid-template-columns:repeat(2,1fr)}
  .process-steps{grid-template-columns:1fr 1fr;gap:2rem}
  .process-steps::before{display:none}
}

@media(max-width:768px){
  .hero-left{padding:7rem 1.5rem 2.5rem}
  .hero-right{height:80vw;min-height:280px}
  .hero-trust{flex-direction:column;gap:.5rem}
  .hero-dot{display:none}
  .services-grid{grid-template-columns:1fr}
  .service-card{border-right:none}
  .exp-grid{grid-template-columns:1fr}
  .nine-grid{grid-template-columns:1fr}
  .ni{border-right:none!important;padding-right:0!important}
  .process-steps{grid-template-columns:1fr;gap:2.5rem}
  .cta-stats{gap:1.5rem}
  .pain-quote{padding:2rem 1.5rem}
  .whatsapp-widget{bottom:1.25rem;right:1.25rem}
  .whatsapp-bubble{right:-.5rem;width:260px}
  .about-visual{aspect-ratio:3/4;min-height:420px}
  /* Sub-page responsive */
  .page-header{padding:7rem 1.5rem 2.5rem}
  .cart-page{padding:0 1.5rem 4rem}
  .cart-actions{flex-direction:column;align-items:center}
  .checkout-layout{grid-template-columns:1fr;gap:2rem;padding:0 1.5rem 4rem}
  .order-summary{padding:2rem 1.5rem}
  .testimonial-page{padding:0 1.5rem 4rem;gap:1.5rem}
  .testimonial-block{padding:2rem 1.5rem}
  .product-hero{padding:7rem 1.5rem 2.5rem}
  .product-body{padding:3rem 1.5rem 0}
  .related-grid{flex-direction:column;align-items:center}
  .success-confirm{padding:5rem 1.5rem 0}
  .booking-section{padding:0 1rem 4rem}
  .booking-header{padding:1rem 1.5rem}
  .booking-embed{height:700px}
  .calendly-overlay{padding:0}
  .calendly-modal{height:100vh;height:100dvh;max-height:none;width:100%;max-width:100%}
  .calendly-close{top:.5rem;right:.5rem}
}
