/* ============================================================
   OM IOGA — STYLESHEET PREMIUM
   Disseny: Luxury Minimal · Natura · Apple-level smoothness
   ============================================================ */

/* ── Imports ── */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --cream:        #FAFAF8;
  --cream-dark:   #F9F9F7;
  --green-deep:   #2A4130;
  --green-mid:    #4A6C52;
  --green-light:  #8AAF8E;
  --green-pale:   #C8DCC8;
  --gold:         #B89660;
  --gold-light:   #D4B87A;
  --charcoal:     #1C1C1C;
  --text:         #3A3A3A;
  --text-light:   #6B6B5E;
  --white:        #FFFFFF;
  --border:       rgba(42, 65, 48, 0.08);
  --shadow:       0 4px 40px rgba(42, 65, 48, 0.06);
  --shadow-md:    0 8px 60px rgba(42, 65, 48, 0.1);

  --font-display: 'Crimson Text', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  --radius:       12px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --transition:   0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-w:        1200px;
  --nav-h:        80px;
  --section-gap:  160px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  padding-top: var(--nav-h);
  /* Hidden by default — JS sets opacity:1 after content is built */
  opacity: 0;
  transition: opacity 0.5s ease;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::selection {
  background: var(--green-pale);
  color: var(--green-deep);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 500; }
p  { font-size: 1rem; color: var(--text-light); line-height: 1.8; text-align: justify; }

.pretitle {
  padding-top: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section { padding: var(--section-gap) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  display: block;
}

.divider--left {
  margin-left: 0;
}

/* ── Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  transition: background var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 50px;
  flex-shrink: 0;
}

.middle-image {
  border-radius: var(--radius-lg);
  padding-bottom: 10px; ;
}

.logo-text {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green-deep);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-deep);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--green-deep);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Page Transition Overlay ── */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--green-light);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#page-transition.active { opacity: 1; pointer-events: all; }

/* ── Hero (Internal Pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(138, 175, 142, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-top: 0.25rem;
}

/* ── Home Hero ── */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -10%, rgba(138, 175, 142, 0.08) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 85% 80%, rgba(184, 150, 96, 0.05) 0%, transparent 60%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.home-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.05;
  margin-bottom: 0.3rem;
}

.home-hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 2rem;
}

.home-hero__desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Tree SVG Container ── */
.home-hero__tree,
.home-hero__logo {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 680px;
  opacity: 0.95;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  pointer-events: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(42, 65, 48, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
}

.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 150, 96, 0.3);
}

/* ── Scroll Indicator ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  animation: bounce 2.4s ease-in-out infinite;
}

.scroll-hint__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green-light), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Intro Section (Home) ── */
.intro-section {
  background: var(--cream-dark);
  padding: 100px 0;

}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.intro-highlight {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-mid);
  line-height: 1.6;
}

.intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Pillars (Home) ── */
.pillars-section {
  padding: var(--section-gap) 0;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.pillar-card {
  padding: 3.5rem 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-align: justify;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  text-align: justify;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  align-items: center;
}

.pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--green-deep);
  text-align: justify;
}

.pillar-card p {
  text-align: justify;
}

/* ── Quote Section ── */
.quote-section {
  padding: 80px 0;
  background: var(--green-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(138, 175, 142, 0.15) 0%, transparent 70%);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.06);
  font-style: italic;
  margin-bottom: -1rem;
  display: block;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-attribution {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  position: relative;
  z-index: 1;
}

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--cream-dark);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Milestones (Qui soc) ── */
.milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.milestone-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.milestone-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  min-width: 80px;
}

.milestone-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Bio section ── */
.bio-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: start;
}

/* Qui Soc — 2 columnes desktop: text esquerra, foto dreta per fila
   Mòbil: columna única, text i foto intercalats en ordre natural */
.bio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 5rem;
  align-items: center;
}

/* Parells text/foto: cada element explícitament a la seva columna */
.bio-item--text {
  grid-column: 1;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  align-self: center;
}

.bio-item--img {
  grid-column: 2;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  align-self: center;
}

.bio-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-split__text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
}

.bio-split__images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.bio-split__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.bio-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.bio-centered p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.85;
  text-align: center;
}

.bio-centered .middle-image {
  margin: 1rem auto;
  display: block;
}

.bio-text p {
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

.bio-aside {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.bio-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-bottom: 2px solid var(--green-pale);
  border-left: 2px solid var(--green-pale);
  transition: border-color var(--transition), transform var(--transition);
}

.value-item:hover {
  border-color: var(--green-mid);
  transform: translateY(-3px);
}

.value-item h4 {
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  text-align: justify;
}

/* ── Styles (Tipus de Ioga) ── */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.style-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.style-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.style-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
  font-style: italic;
}

/* ── Origin block ── */
.origin-block {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.origin-block::before {
  content: 'ॐ';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.origin-block h3 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.origin-block p {
  color: rgba(245, 243, 238, 0.8);
  font-size: 1.05rem;
}

.origin-highlight {
  margin-top: 2rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 243, 238, 0.9) !important;
}

/* ── Breath Techniques ── */
.techniques-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.technique-item {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.technique-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-style: italic;
}

/* ── Class Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item h4 {
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--green-mid);
}

/* ── Session Structure ── */
.session-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.session-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.step-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  align-items: flex-start;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.05rem;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

/* ── Schedule (Horaris) ── */
.schedule-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.schedule-day-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.schedule-day-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.schedule-day-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.schedule-day-card:hover::before {
  transform: scaleX(1);
}

.schedule-day-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--green-pale);
}

.schedule-day-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.schedule-slots {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.schedule-slot {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.schedule-slot:last-child {
  border-bottom: none;
}

.slot-time-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  min-width: 80px;
  padding: 0.5rem 0.75rem;
  background: var(--green-pale);
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}

.slot-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.slot-type {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.slot-level {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  opacity: 0.8;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  width: fit-content;
}

.schedule-info-banner {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.banner-icon {
  font-size: 2rem;
  color: var(--gold);
  font-weight: bold;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.banner-text strong {
  color: var(--green-deep);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.schedule-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(138, 175, 142, 0.08) 0%, rgba(184, 150, 96, 0.05) 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.placeholder-content {
  color: var(--text-light);
}

.placeholder-content h3 {
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Prices ── */
.price-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.05rem;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.price-plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.price-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.price-plan-card.featured-plan {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: scale(1.05);
  color: var(--white);
}

.price-plan-card.featured-plan:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 12px 50px rgba(42, 65, 48, 0.3);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-frequency {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.price-plan-card.featured-plan .plan-frequency {
  color: var(--green-light);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-plan-card.featured-plan .plan-price {
  color: var(--white);
}

.plan-period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.price-plan-card.featured-plan .plan-period {
  color: var(--green-pale);
}

.plan-cta {
  margin-top: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
}

.price-days {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.price-card.featured .price-days { color: var(--green-pale); opacity: 1; }

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1;
}

.price-card.featured .price-amount { color: var(--cream); }

.price-per {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.price-card.featured .price-per { color: var(--green-pale); }

.price-option-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: justify;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-option-card h4 {
  color: var(--green-deep);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.option-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.option-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.bonus-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-pack-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bonus-pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.bonus-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green-deep);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.bonus-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.bonus-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.bonus-card:hover { transform: translateY(-4px); }

.trial-banner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border: 2px solid var(--gold);
  text-align: left;
}

.pricing-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── Responsive Grid Layouts ── */
.intro-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.gallery-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trial-offer-banner {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.trial-offer-banner h3 {
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.trial-offer-banner p {
  margin: 0;
  max-width: 400px;
}

.trial-banner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border: 2px solid var(--gold);
  text-align: left;
}

.bonus-classes {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.bonus-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 300;
}

.trial-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--cream);
}

.trial-banner h3 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.trial-banner p {
  color: var(--green-pale);
  max-width: 400px;
}

/* ── Conditions ── */
.conditions-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.condition-section {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.condition-section h3 {
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.conditions-list li {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.conditions-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  min-width: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.65rem;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-info h2 {
  margin-bottom: 0.75rem;
}

.contact-info > p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-mid);
}

.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.15rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

/* ── Form ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}

.form-group textarea { min-height: 120px; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74, 108, 82, 0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0ADA5;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  accent-color: var(--green-deep);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.88rem;
  color: var(--text-light);
  user-select: none;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(42, 65, 48, 0.25);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--green-mid);
  margin: 0 auto 1rem;
  display: block;
}

.form-success p {
  font-size: 1rem;
  color: var(--green-deep);
}

/* ── Map embed ── */
.map-container {
  margin-top: 5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: rgba(245, 243, 238, 0.7);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: rgba(245, 243, 238, 0.9);
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 243, 238, 0.5);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(245, 243, 238, 0.6);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  stroke: var(--gold);
  margin-top: 3px;
}

.footer-nav h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.3);
  margin-bottom: 1.25rem;
}

.footer-nav a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245, 243, 238, 0.55);
  margin-bottom: 0.65rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover { color: rgba(245, 243, 238, 0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(245, 243, 238, 0.3);
}

.footer-om {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(245, 243, 238, 0.08);
  letter-spacing: 0.1em;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── Leaf float animation ── */
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-6px) rotate(2deg); }
  75%       { transform: translateY(4px) rotate(-1.5deg); }
}

.leaf-animate { animation: leafFloat 6s ease-in-out infinite; }
.leaf-animate-2 { animation: leafFloat 8s ease-in-out infinite 1s; }
.leaf-animate-3 { animation: leafFloat 7s ease-in-out infinite 0.5s; }

/* ── Section separator ── */
.sep {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  opacity: 0.3;
}

.sep::before,
.sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--green-mid);
}

.sep span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-mid);
}

/* ── Om Symbol ── */
.om-symbol {
  font-family: serif;
  font-size: 1.2em;
  color: var(--gold);
  display: inline-block;
}

/* ── Carousel ── */
.carousel-wrapper {
  position: relative;
  margin-top: 3rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background: var(--text);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  padding: 0;
}

.carousel-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(42, 65, 48, 0.15);
}

.carousel-prev {
  left: 1.5rem;
}

.carousel-next {
  right: 1.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.carousel-dot:hover {
  background: var(--green-mid);
}

.carousel-dot.active {
  background: var(--green-deep);
  width: 28px;
  border-radius: 5px;
}

.intro-grid .carousel-wrapper {
  margin-top: 0;
}

.intro-grid .carousel-container {
  aspect-ratio: 3 / 2;
}

/* ══════════════════════════════════════════
   POLICY DE PRIVACITAT — Visual Improvements
   ══════════════════════════════════════════ */

.policy-intro-section {
  padding: 80px 0;
  background: var(--cream-dark);
}

.policy-intro-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 20px rgba(42, 65, 48, 0.08);
}

.policy-intro-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.85;
  text-align: center;
  margin: 0;
}

.policy-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.policy-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  border-left: 4px solid var(--green-pale);
}

.policy-section:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}

.policy-section h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-section--responsibility {
  background: linear-gradient(135deg, rgba(42, 65, 48, 0.02) 0%, rgba(184, 150, 96, 0.02) 100%);
  border-left-color: var(--green-mid);
}

.policy-section--responsibility:hover {
  border-left-color: var(--green-deep);
}

.policy-section--data {
  background: linear-gradient(135deg, rgba(138, 175, 142, 0.04) 0%, rgba(200, 220, 200, 0.04) 100%);
  border-left-color: var(--green-light);
}

.policy-section--data:hover {
  border-left-color: var(--green-mid);
}

.policy-section--rights {
  background: linear-gradient(135deg, rgba(184, 150, 96, 0.04) 0%, rgba(212, 184, 122, 0.04) 100%);
  border-left-color: var(--gold-light);
}

.policy-section--rights:hover {
  border-left-color: var(--gold);
}

.policy-section--security {
  background: linear-gradient(135deg, rgba(42, 65, 48, 0.04) 0%, rgba(138, 175, 142, 0.04) 100%);
  border-left-color: var(--green-deep);
}

.policy-section--security:hover {
  border-left-color: var(--gold);
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  padding-left: 0;
}

.policy-list li::before {
  content: "▸";
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: bold;
  min-width: 20px;
  flex-shrink: 0;
}

.policy-contact-section {
  padding: 100px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.policy-contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(138, 175, 142, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.policy-contact-box {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 8px 60px rgba(42, 65, 48, 0.15);
  position: relative;
  z-index: 1;
}

.policy-contact-box h3 {
  color: var(--green-deep);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.policy-contact-box > p:first-of-type {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item strong {
  color: var(--gold);
  display: block;
  width: 80px;
  flex-shrink: 0;
  font-weight: 600;
}

.policy-footer-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
  padding-top: 1rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Comprehensive
   ══════════════════════════════════════════ */

/* ── Tablet: ≤1024px ── */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  .intro-grid,
  .bio-layout,
  .bio-split,
  .contact-layout,
  .intro-gallery-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Bio split: remove explicit column placement so items flow naturally */
  .bio-item--text,
  .bio-item--img { grid-column: auto; }

  .bio-split__images { position: static; }

  .bio-aside,
  .contact-info { position: static; }

  .intro-visual { display: none; }

  .pillars-grid,
  .features-grid,
  .styles-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid,
  .pricing-plans-grid,
  .schedule-grid,
  .schedule-modern-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-3col-grid { grid-template-columns: repeat(2, 1fr); }

  .home-hero__tree { display: none; }

  .trial-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .pricing-options-grid { grid-template-columns: 1fr; }

  .trial-offer-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }

  .techniques-list,
  .bonus-packs-grid,
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── Mobile: ≤768px ── */
@media (max-width: 768px) {
  :root {
    --section-gap: 60px;
    --nav-h: 64px;
  }

  /* Nav mobile */
  .nav-menu {
    display: none !important;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: var(--cream);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 0;
    gap: 0;
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.open { display: flex !important; }

  .nav-menu li { padding: 0; margin: 0; }

  .nav-menu a {
    display: block;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  .nav-menu a:active,
  .nav-menu a:hover {
    background: var(--cream-dark);
    color: var(--green-deep);
  }

  .nav-menu a.active {
    background: var(--green-pale);
    color: var(--green-deep);
    font-weight: 600;
  }

  .nav-menu a::after { display: none; }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    padding: 8px;
  }

  /* Grids → single column */
  .pillars-grid,
  .features-grid,
  .styles-grid,
  .values-grid,
  .pricing-grid,
  .pricing-plans-grid,
  .schedule-grid,
  .schedule-modern-grid,
  .gallery-3col-grid,
  .intro-gallery-grid,
  .milestones,
  .techniques-list,
  .bonus-packs-grid,
  .bonus-grid { grid-template-columns: 1fr; }

  /* Bio split mobile: 1 columna, text i fotos intercalats
     (ordre natural HTML: p → img → p → img → ...) */
  .bio-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bio-item--text,
  .bio-item--img {
    grid-column: 1;
  }

  .bio-item--img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
  }

  /* Contact layout */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info { position: static; }

  /* Pricing */
  .price-card.featured,
  .price-plan-card.featured-plan { transform: scale(1); }

  .price-card.featured:hover,
  .price-plan-card.featured-plan:hover { transform: translateY(-4px); }

  /* Misc */
  .origin-block { padding: 2.5rem 2rem; }
  .contact-form { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .home-hero h1 { font-size: clamp(3rem, 12vw, 5rem); }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .trial-banner { padding: 2rem 1.5rem; }

  /* Intro grid */
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Classes layout */
  .classes-layout { flex-direction: column !important; }

  /* Carousel */
  .carousel-nav { width: 40px; height: 40px; }
  .carousel-prev { left: 1rem; }
  .carousel-next { right: 1rem; }
  .carousel-dots { gap: 0.6rem; }

  /* Schedule cards */
  .schedule-day-card { padding: 1.5rem; }

  /* Map */
  .map-container iframe { height: 260px; }
}

/* ── Small mobile: ≤480px ── */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .page-hero { padding: calc(var(--nav-h) + 50px) 0 50px; }

  .condition-section,
  .pillar-card,
  .style-card { padding: 1.75rem 1.25rem; }

  .bio-item--img { max-height: 240px; }

  /* Buttons full width on small screens */
  .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn,
  .plan-cta { width: auto; }

  /* Pricing */
  .price-plan-card { padding: 2rem 1.5rem; }
  .bonus-pack-card { padding: 1.5rem; }

  /* Section headers */
  .section-header { margin-bottom: 2.5rem; }

  /* Footer */
  .footer-brand .nav-logo { font-size: 1.3rem; }

  /* Carousel */
  .carousel-container { aspect-ratio: 4 / 3; }
  .carousel-nav { width: 36px; height: 36px; font-size: 0.9rem; }
  .carousel-prev { left: 0.75rem; }
  .carousel-next { right: 0.75rem; }
  .carousel-dot { width: 8px; height: 8px; }
  .carousel-dot.active { width: 24px; }
}


/* ─── Form error box ─── */
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #f5c6c6;
  border-left: 3px solid #c0392b;
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #8b1a1a;
  line-height: 1.5;
}

/* ─── Steps list (classes page) ─── */
.steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-serif, serif);
  font-size: 2rem;
  color: var(--green-mid);
  opacity: 0.4;
  min-width: 48px;
  line-height: 1;
  padding-top: 0.2rem;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}


/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */

.testimonials-section {
  background: var(--cream-dark);
  padding: var(--section-gap) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   SOCIAL FOOTER
   ══════════════════════════════════════════ */

.footer-social {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--gold-light);
}

.footer-social-link svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CREDENTIALS TIMELINE
   ══════════════════════════════════════════ */

.credentials-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credential-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.credential-item:last-child {
  border-bottom: none;
}

.credential-year {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
}

.credential-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.credential-place {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════════
   HERO PHOTO (image-based hero improvement)
   ══════════════════════════════════════════ */

.home-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -10%, rgba(138, 175, 142, 0.10) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 85% 80%, rgba(184, 150, 96, 0.06) 0%, transparent 60%);
}

/* Hero with a real background photo (for future use) */
.home-hero--photo .home-hero__bg {
  background: linear-gradient(105deg, rgba(250,250,248,0.96) 45%, rgba(250,250,248,0.7) 70%, rgba(250,250,248,0.1) 100%);
}

/* ══════════════════════════════════════════
   NAV SIMPLIFICATION — reduce visual noise
   ══════════════════════════════════════════ */

.nav-menu li:last-child a {
  background: var(--green-deep);
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
}

.nav-menu li:last-child a:hover {
  background: var(--green-mid);
  color: var(--cream) !important;
}

.nav-menu li:last-child a::after {
  display: none !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Testimonials & Timeline
   ══════════════════════════════════════════ */

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .credential-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .credential-year {
    font-size: 0.7rem;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }
}
