/* =============================================
   PASCAL MILETO — RÉPÉTITEUR
   Design: Editorial luxury, warm & refined
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --ink: #1A1714;
  --ink-soft: #3D3530;
  --gold: #C8922A;
  --gold-light: #E8B86D;
  --terracotta: #B85C3A;
  --sage: #7A8C72;
  --stone: #9E9188;
  --stone-light: #D4CDBF;
  --border: rgba(200, 146, 42, 0.2);
  --shadow: 0 4px 40px rgba(26, 23, 20, 0.08);
  --shadow-hover: 0 12px 60px rgba(26, 23, 20, 0.15);
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 10px; }

/* ── SELECTION ── */
::selection { background: var(--gold-light); color: var(--ink); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { font-weight: 300; color: var(--ink-soft); }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 250, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

nav.scrolled {
  height: 60px;
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.nav-logo .tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius);
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--terracotta) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.3) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8% 8% 8% 10%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
}

.hero h1 {
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE5D8 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      var(--ink) 39px,
      var(--ink) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      var(--ink) 39px,
      var(--ink) 40px
    );
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem;
  opacity: 0;
  animation: fadeIn 1.2s 1s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
}

.hero-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 146, 42, 0.35);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stone-light);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ── SECTIONS ── */
.section {
  padding: 7rem 10%;
  position: relative;
  background: var(--warm-white);
}


.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-label span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.9;
}

/* ── VALUES STRIP ── */
.values-strip {
  background: var(--ink);
  padding: 4rem 10%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.values-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.value-card:hover::before { width: 100%; }

.value-card:hover {
  border-color: rgba(200, 146, 42, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  line-height: 1;
}

.value-card h3 {
  color: white;
  font-size: 1.5rem;
}

.value-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
}

.about-portrait-wrapper {
  position: relative;   /* crucial for absolute children */
  width: clamp(300px, 40vw, 400px);
  display: inline-block; 
}

.about-portrait {
  width: 100%;
  height: auto;
  display: block;
}

.about-block-up {
  position: absolute;
  top: -20px; /* adjust offset as needed */
  left: -20px;
  width: clamp(60px, 25%, 120px);
  height: clamp(60px, 25%, 120px);
  background: var(--gold);
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-block-down {
  position: absolute;
  bottom: -20px; /* adjust offset as needed */
  right: -20px;   /* bottom-right */
  width: clamp(60px, 25%, 120px);
  height: clamp(60px, 25%, 120px);
  border: 2px solid var(--gold);
  background: transparent;
  z-index: -1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.highlight-item {
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all var(--transition);
}

.highlight-item:hover {
  border-color: var(--gold-light);
  background: rgba(200, 146, 42, 0.03);
}

.highlight-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}




/* ── COURSES SECTION ── */
.courses-section {
  background: var(--cream);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.course-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border);
}

.course-card:hover::before { height: 100%; }

.course-card.featured {
  background: var(--ink-soft);
}

.course-card.featured::before { background: var(--gold-light); }

.course-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(200, 146, 42, 0.1);
  color: var(--gold);
  border-radius: 20px;
  align-self: flex-start;
}

.course-card.featured .course-badge {
  background: rgba(200, 146, 42, 0.2);
}

.course-card h3 {
  font-size: 1.4rem;
}

.course-card.featured h3 { color: white; }

.course-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.course-card.featured p { color: rgba(255,255,255,0.55); }

.course-price {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;          /* slightly higher than 1 to fit the unit */
  display: inline-flex;       /* ensures the span is in-line with the price */
  align-items: flex-end;      /* aligns smaller unit at the bottom */
  gap: 0.2rem;                /* spacing between price and unit */
}



.course-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.course-card.featured .course-features li { color: rgba(255,255,255,0.6); }

.course-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 7rem 10%;
  background: var(--cream); 
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--ink-soft);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--stone);
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--ink) 0%, #2D2521 100%);
  padding: 8rem 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8rem;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stone-light);
  padding: 0.75rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: var(--gold-light);
}

.contact-item .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.contact-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 4rem 10% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand .tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 10% 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 500px;
  margin-top: 1.5rem;
  line-height: 1.8;
}

/* Split hero layout (reserver page) */
.page-hero--split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-hero-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
}

.page-hero-stat {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
}

.page-hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.page-hero-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-top: 0.4rem;
}

.page-hero-divider {
  height: 1px;
  background: var(--border);
}

.page-hero-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--stone);
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.page-hero-note a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition);
}

.page-hero-note a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .page-hero--split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── BOOKING PAGE ── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-option {
  padding: 2rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.booking-option:hover,
.booking-option.selected {
  border-color: var(--gold);
  background: rgba(200, 146, 42, 0.03);
}

.booking-option.selected::after {
  content: '✓';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--gold);
  font-size: 1rem;
}

.booking-option h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.booking-option .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.booking-option p {
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 5rem; }
  .hero-visual { display: none; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .values-strip { grid-template-columns: 1fr; gap: 1rem; }
  .courses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 6%; }
}

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: white;
  font-weight: 300;
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--gold); }

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── LANG TOGGLE ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

.lang-toggle span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  color: var(--stone);
  transition: all 0.3s;
  line-height: 1;
  user-select: none;
}

.lang-toggle span.lang-active {
  background: var(--gold);
  color: white;
}

.lang-toggle:hover {
  border-color: var(--gold-light);
}
