/* ============================================================
   MY DESSIN LA ROCHELLE — Feuille de styles principale
   ============================================================ */

/* --- Variables & Reset ------------------------------------ */
:root {
  --orange:      #FF7A00;
  --orange-dark: #E06600;
  --gold:        #FFB800;
  --dark:        #141414;
  --dark-2:      #1E1E1E;
  --dark-3:      #2A2A2A;
  --white:       #FFFFFF;
  --cream:       #FFF8F0;
  --gray:        #888888;
  --gray-light:  #F4F4F4;
  --text:        #222222;
  --radius:      12px;
  --radius-lg:   24px;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.18);
  --transition:  .3s ease;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-width:   1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Container -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,122,0,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

/* --- Header / Navigation ---------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(20,20,20,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  padding: .65rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo span { color: var(--orange); }

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

.nav-menu a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}

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

.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  border-bottom: 1px solid var(--dark-3);
  padding-bottom: 1rem;
}

/* --- Hero Section ----------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,.85) 40%, rgba(255,122,0,.2) 100%);
}

.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 50%, #2a1000 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,122,0,.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,184,0,.06) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,122,0,.15);
  border: 1px solid rgba(255,122,0,.4);
  color: var(--orange);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 750px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.stat-number span { color: var(--orange); }
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

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

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.content-split--profile {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 5rem;
}

.content-split--gift {
  align-items: center;
}

.media-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.meta-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.profile-visual {
  position: relative;
}

.profile-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
}

/* --- Section spacing -------------------------------------- */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }
.section-cream { background: var(--cream); }
.text-center { text-align: center; }

/* --- Services / Cards ------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.next-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.next-session-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(160deg, #1f1f1f 0%, #141414 100%);
  border: 1px solid rgba(255,122,0,.18);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.next-session-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  min-height: 96px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
  padding: .9rem .75rem;
}

.next-session-day {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.next-session-month {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.next-session-kicker {
  color: rgba(255,184,0,.95);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}

.next-session-body h3 {
  font-size: 1.4rem;
  margin-bottom: .7rem;
  color: var(--white);
}

.next-session-meta {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .9rem;
}

.next-session-note {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: .85rem 1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.next-sessions-empty {
  margin-top: 3rem;
  background: var(--white);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.next-sessions-empty h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.next-sessions-empty p {
  max-width: 540px;
  margin: 0 auto 1.5rem;
  color: var(--gray);
  line-height: 1.75;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.horse-feature {
  grid-column: span 2;
  display: block;
  background: linear-gradient(135deg, #fffdf9 0%, #fff4e8 100%);
  border: 1px solid rgba(255,122,0,.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.horse-feature-art {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,184,0,.22) 0%, transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255,122,0,.15) 0%, transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.horse-feature-art::after {
  content: '';
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(20,20,20,.05);
  border-radius: 22px;
  pointer-events: none;
}

.horse-feature-art img {
  width: 100%;
  max-width: 760px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(20,20,20,.08));
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: #fff;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-tag {
  display: inline-block;
  background: rgba(255,122,0,.1);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--gray-light);
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.social-spotlight {
  display: grid;
  gap: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,.16), transparent 38%),
    linear-gradient(135deg, #141414 0%, #221b16 100%);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.social-spotlight-copy .section-title,
.social-spotlight-copy .section-subtitle {
  color: var(--white);
}

.social-spotlight-copy .section-subtitle {
  color: rgba(255,255,255,.72);
}

.social-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-spotlight-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

.social-spotlight-card--youtube:hover {
  border-color: rgba(255, 59, 48, .45);
}

.social-spotlight-card--instagram:hover {
  border-color: rgba(255, 184, 0, .45);
}

.social-spotlight-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.social-spotlight-card--youtube .social-spotlight-icon {
  background: linear-gradient(135deg, #ff4336 0%, #b80f0a 100%);
}

.social-spotlight-card--instagram .social-spotlight-icon {
  background: linear-gradient(135deg, #ffb800 0%, #ff7a00 52%, #d62976 100%);
}

.social-spotlight-kicker {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  margin-bottom: .35rem;
}

.social-spotlight-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: .55rem;
}

.social-spotlight-card p {
  color: rgba(255,255,255,.75);
  margin-bottom: .95rem;
  line-height: 1.65;
}

.social-spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.social-spotlight-link::after {
  content: '→';
}

/* --- Why / Features --------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  transition: border-color var(--transition), transform var(--transition);
}

.why-item:hover {
  border-color: rgba(255,122,0,.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,122,0,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.why-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.why-item p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* --- Cours Steps ------------------------------------------ */
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  top: -1.2rem; left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* --- Pricing --------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.pricing-card.featured {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem; right: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem 2rem;
  transform: rotate(45deg);
  transform-origin: center;
  right: -1rem;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .5rem;
}

.pricing-card.featured .pricing-name { color: rgba(255,255,255,.8); }

.pricing-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: .25rem;
}

.pricing-period {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-period { color: rgba(255,255,255,.7); }

.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .9rem;
}

.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,.15); }

.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 800;
  margin-top: .05rem;
}

.pricing-card.featured .pricing-features li::before { color: var(--white); }

/* --- Testimonials ----------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .75rem;
  letter-spacing: .1em;
}

.testimonial-text {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: .9rem;
}

.author-meta {
  font-size: .78rem;
  color: var(--gray);
}

/* --- FAQ -------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}

.section-dark .faq-item { border-bottom-color: rgba(255,255,255,.1); }
.section:not(.section-dark) .faq-item { border-bottom-color: rgba(0,0,0,.1); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--white);
  transition: color var(--transition);
}

.section:not(.section-dark) .faq-question { color: var(--text); }

.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,122,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

.section:not(.section-dark) .faq-answer { color: var(--gray); }

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-dark:hover {
  background: var(--dark-2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* --- Info Banner ------------------------------------------ */
.info-bar {
  background: var(--orange);
  padding: .75rem 0;
  text-align: center;
}

.info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}

/* --- Contact Form ----------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

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

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,122,0,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: .2rem;
}

.contact-detail span, .contact-detail a {
  font-size: .92rem;
  color: var(--gray);
}

.contact-detail a:hover { color: var(--orange); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  background: var(--gray-light);
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,.15);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--orange); }
.form-checkbox label { font-size: .85rem; color: var(--gray); }
.form-checkbox a { color: var(--orange); text-decoration: underline; }

/* --- Map placeholder -------------------------------------- */
.map-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  color: var(--gray);
  text-align: center;
  padding: 1rem;
}

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

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

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-3);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* --- Page Header (inner pages) ---------------------------- */
.page-hero {
  background: var(--dark);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,122,0,.12) 0%, transparent 65%);
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}

.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  line-height: 1.75;
}

/* --- Image Gallery ---------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffaf4 0%, #fff 100%);
  border: 1px solid rgba(255,122,0,.12);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}

.gallery-intro-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 70ch;
}

.gallery-intro-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.art-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.art-card {
  grid-column: span 4;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20,20,20,.06);
}

.art-card--wide {
  grid-column: span 8;
}

.art-card--portrait {
  grid-row: auto;
}

.art-card img {
  width: 100%;
  height: auto;
  max-height: 620px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.art-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

/* --- Highlight Box ---------------------------------------- */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,122,0,.08), rgba(255,184,0,.06));
  border: 1px solid rgba(255,122,0,.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.highlight-box-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-box h4 { font-size: 1rem; margin-bottom: .35rem; }
.highlight-box p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* --- Success message -------------------------------------- */
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: .92rem;
}

.form-success.is-error {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

#contact-submit:disabled {
  opacity: .7;
  cursor: wait;
}

/* --- Cookie consent -------------------------------------- */
.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1400;
  display: grid;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(20,20,20,.96);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent__body {
  display: grid;
  gap: .45rem;
}

.cookie-consent__title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}

.cookie-consent__text {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  font-size: .92rem;
}

.cookie-consent__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.cookie-consent__btn {
  min-width: 150px;
  justify-content: center;
}

.cookie-consent-reopen {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1390;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(20,20,20,.96);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.cookie-consent-reopen.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent-reopen:hover {
  background: var(--orange);
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-split,
  .content-split--profile {
    gap: 2.5rem;
  }
  .gallery-intro-card {
    grid-template-columns: 1fr;
  }
  .gallery-intro-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .art-gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .art-card,
  .art-card--wide {
    grid-column: span 4;
  }
  .profile-badge {
    right: 0;
  }
  .page-hero {
    padding: 8.2rem 0 4.2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.1rem; }
  .logo { font-size: 1.08rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1rem; }
  .btn { white-space: normal; text-align: center; justify-content: center; }

  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 7rem 0 4.5rem;
  }
  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); max-width: 12ch; }
  .hero-badge {
    white-space: normal;
    line-height: 1.4;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2.25rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-scroll-hint {
    display: none;
  }
  .content-split,
  .content-split--profile,
  .content-split--gift {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .media-duo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .meta-badge-group {
    margin-bottom: 1.5rem;
  }
  .profile-badge {
    bottom: 1rem;
    right: 1rem;
    padding: .8rem 1rem !important;
  }
  .horse-feature { grid-column: span 1; }
  .horse-feature-art { padding: 1.5rem 1.25rem; }
  .next-sessions-grid {
    grid-template-columns: 1fr;
  }
  .next-session-card { grid-template-columns: 1fr; }
  .next-session-date { min-height: auto; width: 100%; }
  .why-grid,
  .steps,
  .pricing-grid,
  .gallery-grid {
    gap: 1rem;
  }
  .art-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .art-card,
  .art-card--wide,
  .art-card--portrait {
    grid-column: span 1;
    grid-row: auto;
  }
  .art-card img {
    max-height: 420px;
  }
  .highlight-box {
    flex-direction: column;
    padding: 1.5rem;
  }
  .page-hero {
    padding: 7.2rem 0 3.6rem;
  }
  .breadcrumb {
    flex-wrap: wrap;
  }
  .page-hero p {
    font-size: 1rem;
  }

  .social-spotlight {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .social-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .social-spotlight-card {
    grid-template-columns: 1fr;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form {
    padding: 1.5rem;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .section { padding: 4rem 0; }

  .cookie-consent {
    left: .75rem;
    right: .75rem;
    padding: 1rem;
    border-radius: 18px;
  }

  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 .95rem; }
  .info-bar-inner { flex-direction: column; gap: .75rem; }
  .info-bar-item {
    text-align: center;
    justify-content: center;
  }
  .hero-content {
    padding: 6.5rem 0 4rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .section-title {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }
  .social-spotlight,
  .contact-form,
  .next-sessions-empty,
  .gallery-intro-card,
  .pricing-card,
  .service-card-body,
  .highlight-box {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .media-duo-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .art-gallery-grid {
    grid-template-columns: 1fr;
  }
  .art-card img {
    max-height: 320px;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .mobile-menu {
    padding: 5.5rem 1.25rem 1.5rem;
  }
  .mobile-menu a {
    font-size: 1.2rem;
  }
}

/* --- Utilities -------------------------------------------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.text-orange { color: var(--orange); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray); }

.full-width { width: 100%; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
