/* ═══════════════════════════════════════════
   DREAMHORSE — style.css
   Palette: Rose · White · Gray · Charcoal
═══════════════════════════════════════════ */

:root {
  --white:        #FFFFFF;
  --off-white:    #FBF7F8;
  --rose-50:      #FFF0F5;
  --rose-100:     #FFD9EA;
  --rose-200:     #FFB3D1;
  --rose-300:     #F58FB5;
  --rose-400:     #E8739A;   /* PRIMARY */
  --rose-500:     #D45884;
  --rose-600:     #B83C68;
  --gray-50:      #F8F5F6;
  --gray-100:     #EDE7EA;
  --gray-200:     #D8CDD2;
  --gray-400:     #A0909A;
  --gray-600:     #6B5A63;
  --charcoal:     #1C1318;
  --text:         #2A1F24;
  --text-light:   #7A6870;

  --font-display: 'Cormorant Garant', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    48px;

  --shadow-sm:    0 2px 16px rgba(232,115,154,0.08);
  --shadow-md:    0 8px 40px rgba(232,115,154,0.14);
  --shadow-lg:    0 24px 80px rgba(28,19,24,0.12);

  --transition:   0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--rose-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--transition), height 0.3s var(--transition), background 0.3s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--rose-300);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.4s var(--transition), height 0.4s var(--transition), opacity 0.3s;
}

body.cursor-hover .cursor         { width: 48px; height: 48px; background: rgba(232,115,154,0.15); }
body.cursor-hover .cursor-follower { opacity: 0; }
body.cursor-button .cursor        { width: 56px; height: 56px; background: var(--rose-400); mix-blend-mode: normal; }
body.cursor-button .cursor-follower { opacity: 0; }

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition), visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-logo {
  font-size: 2.5rem;
  color: var(--rose-400);
  animation: spin 2s linear infinite;
  display: block;
  margin-bottom: 1.5rem;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-300), var(--rose-500));
  border-radius: 2px;
  animation: load 1.6s var(--transition) forwards;
  width: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes load { to { width: 100%; } }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3.5rem;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-100), 0 4px 30px rgba(0,0,0,0.04);
  padding: 0.8rem 3.5rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xl);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover { color: var(--rose-500); background: var(--rose-50); }

.nav-cta {
  background: var(--rose-400) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
}

.nav-cta:hover { background: var(--rose-600) !important; color: var(--white) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.mobile-menu ul a:hover { color: var(--rose-400); }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 4rem;
}

.section-header h2 { max-width: 560px; }
.section-header > p { color: var(--text-light); margin-top: 1rem; max-width: 480px; }

/* ── TAG ── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-500);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.2rem;
}

.tag--light {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }

em { font-style: italic; color: var(--rose-400); }

p { color: var(--text-light); line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rose-400);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-xl);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,115,154,0.35);
  border: none;
  cursor: none;
}

.btn-primary:hover {
  background: var(--rose-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,115,154,0.45);
}

.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.04em;
  padding: 0.8rem 0;
  transition: color var(--transition), gap var(--transition);
  gap: 0.3rem;
}

.btn-ghost:hover { color: var(--rose-400); gap: 0.6rem; }

.btn-white-sm {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--rose-500);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.btn-white-sm:hover { background: var(--rose-400); color: var(--white); }

/* ── ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal-up.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3.5rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(ellipse at center, var(--rose-100) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--rose-300);
  border-radius: 50%;
  opacity: 0.5;
  animation: float-particle var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%       { transform: translateY(-30px) scale(1.3); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-bottom: 1.2rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero-headline .line {
  display: block;
}

.hero-headline .italic {
  font-style: italic;
  color: var(--rose-400);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 420px;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.hero-img-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-img-frame:hover .hero-img-main { transform: scale(1.04); }

.hero-img-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 0.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-500);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-img-badge strong { font-size: 1rem; color: var(--text); }

.hero-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.hero-float-card {
  position: absolute;
  bottom: 22%;
  right: -1rem;
  background: var(--rose-400);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--shadow-md);
  animation: float-card 3s ease-in-out infinite;
}

.float-card-icon { font-size: 1.5rem; }

.hero-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.hero-float-card span { font-size: 0.75rem; opacity: 0.8; }

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-400);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-200), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--rose-400);
  padding: 2.5rem 3.5rem;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.3rem;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── STEPS ── */
.steps-section {
  padding: 7rem 3.5rem;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: var(--rose-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--rose-100);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.step-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 0.6rem; }
.step-card p  { font-size: 0.92rem; }

.step-connector {
  align-self: center;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gray-200), var(--rose-200), var(--gray-200));
  margin: 0 1rem;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--rose-300);
  font-size: 1rem;
  padding: 0 4px;
}

/* ── DETAILZEICHNUNG ── */
.detail-section {
  padding: 7rem 3.5rem;
  background: var(--rose-50);
  position: relative;
  overflow: hidden;
}

.detail-bg {
  position: absolute;
  top: -30%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(ellipse, var(--rose-100), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.detail-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.detail-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.detail-img-deco {
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--rose-200);
  border-radius: calc(var(--radius-lg) + 12px);
  pointer-events: none;
  animation: rotate-deco 30s linear infinite;
}

@keyframes rotate-deco { to { transform: rotate(360deg); } }

.detail-content h2 { margin-bottom: 1.2rem; }
.detail-content p  { margin-bottom: 2rem; }

/* ── PRICING ── */
.pricing-section {
  padding: 7rem 3.5rem;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 760px;
}

.price-card {
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  border-color: var(--rose-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card--featured {
  border-color: var(--rose-300);
  background: linear-gradient(135deg, var(--rose-50), var(--white));
}

.price-card--featured:hover { border-color: var(--rose-400); }

.price-card-inner {
  padding: 2.5rem;
  position: relative;
}

.price-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--rose-400);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
}

.price-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.price-amount span {
  font-size: 1.8rem;
  color: var(--rose-400);
}

.price-list {
  list-style: none;
  margin-bottom: 1.2rem;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.price-list li::before {
  content: '✦';
  color: var(--rose-400);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.price-extras { font-size: 0.8rem; color: var(--text-light); font-style: italic; }

/* ── HORSES (VERKAUFSPFERDE) ── */
.horses-section {
  padding: 7rem 3.5rem;
  background: var(--off-white);
}

.horses-scroll-hint {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  display: none;
}

.horses-track-wrap {
  overflow-x: auto;
  margin: 0 -1rem;
  padding: 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 4rem;
}

.horses-track-wrap::-webkit-scrollbar { display: none; }

.horses-track {
  display: grid;
  grid-template-columns: repeat(5, 185px);
  gap: 1.5rem;
  width: fit-content;
}

@media (max-width: 1100px) {
  .horses-track { grid-template-columns: repeat(5, 185px); }
}

.horse-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.horse-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.horse-card-img img { transition: transform 0.6s var(--transition); }
.horse-card:hover .horse-card-img img { transform: scale(1.06); }

.horse-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,19,24,0.5), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.horse-card:hover .horse-card-overlay { opacity: 1; }

.horse-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
}

.horse-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.horse-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rose-400);
}

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

.hf {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hf:hover { border-color: var(--rose-200); box-shadow: var(--shadow-sm); }

.hf-icon { font-size: 0.9rem; color: var(--rose-400); margin-bottom: 0.8rem; }

.hf h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hf p { font-size: 0.88rem; }

/* ── GALLERY ── */
.gallery-section {
  padding: 7rem 3.5rem;
  background: var(--white);
}

.gallery-section .container { margin-bottom: 2.5rem; }

/* Filter Buttons */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--text-light);
  cursor: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--rose-300);
  color: var(--rose-500);
}

.gallery-filter-btn.active {
  background: var(--rose-400);
  border-color: var(--rose-400);
  color: var(--white);
}

/* Square Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  transition: opacity 0.4s var(--transition), transform 0.4s var(--transition);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-400), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-md);
}

.gallery-item:hover::after { opacity: 0.15; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
  display: block;
}

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

/* ── ABOUT ── */
.about-section {
  padding: 7rem 3.5rem;
  background: var(--rose-50);
}

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

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-visual { position: relative; }

.about-img-quote {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  background: var(--rose-400);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  max-width: 260px;
  box-shadow: var(--shadow-md);
}

.about-img-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p  { margin-bottom: 1rem; }

/* ── FAQ ── */
.faq-section {
  padding: 7rem 3.5rem;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: none;
  padding: 1.6rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-trigger:hover { color: var(--rose-500); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.faq-icon span {
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--gray-400);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background var(--transition), transform var(--transition);
}

.faq-icon span:last-child { transform: translate(-50%, -50%) rotate(90deg); }

.faq-trigger[aria-expanded="true"] .faq-icon {
  border-color: var(--rose-400);
  background: var(--rose-400);
}

.faq-trigger[aria-expanded="true"] .faq-icon span {
  background: var(--white);
}

.faq-trigger[aria-expanded="true"] .faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition);
}

.faq-body p {
  padding-bottom: 1.6rem;
  font-size: 0.95rem;
}

/* ── CONTACT ── */
.contact-section {
  padding: 7rem 3.5rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(232,115,154,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
}

.contact-info h2 { color: var(--white); margin-bottom: 1.2rem; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }

.contact-links { display: flex; flex-direction: column; gap: 1rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}

.contact-link:hover {
  background: rgba(232,115,154,0.12);
  border-color: rgba(232,115,154,0.3);
}

.contact-link-icon { font-size: 1.4rem; }

.contact-link strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact-link span { display: block; color: var(--white); font-weight: 600; }

/* FORM */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.2rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  cursor: none;
}

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

.form-group label {
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
  transition: top 0.25s, font-size 0.25s, color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose-400);
  background: rgba(255,255,255,0.08);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 0.45rem;
  font-size: 0.72rem;
  color: var(--rose-300);
}

.form-group textarea { resize: vertical; min-height: 130px; padding-top: 1.6rem; }

.form-success {
  background: rgba(232,115,154,0.2);
  border: 1px solid var(--rose-400);
  color: var(--rose-200);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

/* ── HORSE GLASS MODAL ── */
.horse-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 19, 24, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--transition), visibility 0.35s;
}

.horse-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.horse-modal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 780px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 80px rgba(28, 19, 24, 0.25), 0 0 0 1px rgba(255,255,255,0.3) inset;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.4s var(--transition);
}

.horse-modal-backdrop.open .horse-modal {
  transform: scale(1) translateY(0);
}

.horse-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.85rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.horse-modal-close:hover {
  background: var(--rose-400);
  border-color: var(--rose-400);
  color: var(--white);
}

.horse-modal-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.horse-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition);
}

.horse-modal-backdrop.open .horse-modal-img-wrap img {
  transform: scale(1.03);
}

.horse-modal-info {
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horse-modal-info .tag { margin-bottom: 0.9rem; }

.horse-modal-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.horse-modal-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rose-400);
  line-height: 1;
  margin-bottom: 1.6rem;
}

.horse-modal-details {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.horse-modal-details li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.horse-modal-details li::before {
  content: '✦';
  color: var(--rose-400);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.horse-modal-cta { align-self: flex-start; }

@media (max-width: 600px) {
  .horse-modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .horse-modal-img-wrap { aspect-ratio: 4 / 3; }
  .horse-modal-info { padding: 1.8rem 1.5rem; }
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 3.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer-logo img { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.88rem; font-style: italic; }

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rose-300); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── MAGNETIC BUTTON ── */
.magnetic { position: relative; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .horses-track { grid-template-columns: repeat(5, 185px); }
  .horses-scroll-hint { display: block; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 380px; }

  section, .steps-section, .detail-section,
  .pricing-section, .horses-section, .about-section,
  .faq-section, .contact-section { padding: 5rem 1.5rem; }

  .detail-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-quote { position: static; margin-top: 1.5rem; max-width: 100%; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .horses-features { grid-template-columns: 1fr; }

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

  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }

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

@media (max-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .hero-visual { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
