/* =========================================
   LEWIS SLORACH — Golf Professional
   Style Sheet
   ========================================= */

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

:root {
  --green:      #104520;
  --green-mid:  #1a6632;
  --green-light:#2d8a4b;
  --gray-light: #e6e9e6;
  --gray-mid:   #c8cdc8;
  --gray-dark:  #555e55;
  --black:      #111111;
  --white:      #ffffff;
  --off-white:  #f7f8f7;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --transition: 0.3s ease;
  --max-width: 1200px;
  --section-pad: 90px 24px;
}

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

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

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* --- Layout Helpers --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section--gray   { background: var(--off-white); }
.section--green  { background: var(--green); color: var(--white); }
.section--gray .label, .section--gray h2 { color: var(--black); }
.section--green  .label { color: var(--gray-mid); }
.section--green  h2, .section--green h3 { color: var(--white); }
.section--green  p { color: rgba(255,255,255,0.82); }

.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  margin-top: 2px;
}
.nav.scrolled .nav-logo-name  { color: var(--black); }
.nav.scrolled .nav-logo-title { color: var(--gray-dark); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav.scrolled .nav-links a { color: var(--gray-dark); }
.nav.scrolled .nav-links a:hover { color: var(--green); }
.nav.scrolled .nav-links a::after { background: var(--green); }

.nav-cta {
  font-size: 0.75rem !important;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  color: var(--white) !important;
  transition: background var(--transition), border-color var(--transition), color var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.nav.scrolled .nav-cta { border-color: var(--green); color: var(--green) !important; }
.nav.scrolled .nav-cta:hover { background: var(--green); color: var(--white) !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav-burger span { background: var(--black); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 24px 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--gray-light);
}
.nav-mobile a:last-child { border-bottom: none; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(5,20,8,0.88) 0%, rgba(10,35,15,0.6) 50%, rgba(10,35,15,0.25) 100%),
    url('../img/hero.jpg');
  background-size: cover;
  background-position: center 40%;
}
/* Fallback gradient when no image */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a230f 0%, #104520 40%, #1a6632 70%, #2a8a3a 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  max-width: 650px;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gray-mid);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--green);
  padding: 2.5rem 24px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}

/* =========================================
   SERVICES GRID (Home teaser)
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--gray-mid);
}
.service-card {
  position: relative;
  background: var(--white);
  padding: 3rem 2.5rem;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--green);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--off-white); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p  { font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 1.25rem; }
.service-card .price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}
.service-card .price-note {
  font-size: 0.78rem;
  color: var(--gray-dark);
  margin-top: 0.2rem;
  margin-bottom: 0;
}

/* =========================================
   ABOUT PREVIEW (Home)
   ========================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.about-split-image {
  position: relative;
  background: var(--gray-light);
  overflow: hidden;
  min-height: 400px;
}
.about-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a230f 0%, #104520 50%, #2d8a4b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.8;
  min-height: 400px;
}
.about-split-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-content p { color: var(--gray-dark); font-size: 0.95rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem;
}
.stars { color: #f5c518; letter-spacing: 0.1em; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  background: var(--green);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(5,20,8,0.45) 0%, rgba(10,35,15,0.75) 50%, rgba(8,28,12,0.92) 100%),
    url('../img/hero.jpg');
  background-size: cover;
  background-position: center 65%;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* =========================================
   TRAINING SERVICES (training.html)
   ========================================= */
.training-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  border-bottom: 1px solid var(--gray-light);
}
.training-section:last-child { border-bottom: none; }
.training-section.reverse { direction: rtl; }
.training-section.reverse > * { direction: ltr; }

.training-image {
  position: relative;
  background: var(--gray-light);
  overflow: hidden;
  min-height: 380px;
}
.training-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.training-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  opacity: 0.85;
  min-height: 380px;
}
.training-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.training-content h2 { margin-bottom: 1rem; }
.training-content p  { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 1.5rem; }

.price-table { margin: 1.5rem 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .price-label { color: var(--gray-dark); }
.price-row .price-val {
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

/* =========================================
   PACKAGES (pakete.html)
   ========================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.package-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.package-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(16,69,32,0.1);
  transform: translateY(-4px);
}
.package-card.featured {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.package-card.featured h3,
.package-card.featured .pkg-price { color: var(--white); }
.package-card.featured .pkg-desc { color: rgba(255,255,255,0.75); }
.package-card.featured li { color: rgba(255,255,255,0.85); }
.package-card.featured li::before { color: var(--gray-mid); }
.package-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
}
.pkg-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.package-card.featured .pkg-label { color: var(--gray-mid); }
.package-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pkg-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pkg-period {
  font-size: 0.8rem;
  color: var(--gray-dark);
  margin-bottom: 1.25rem;
}
.package-card.featured .pkg-period { color: rgba(255,255,255,0.6); }
.pkg-desc {
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.package-card ul { margin-bottom: 2rem; }
.package-card li {
  font-size: 0.88rem;
  color: var(--gray-dark);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.package-card li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* Online badge */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gray-light);
  color: var(--green);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.online-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.bio-image-wrap {
  position: sticky;
  top: 100px;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #0a230f 0%, #104520 60%, #2d8a4b 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.bio-meta {
  background: var(--off-white);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 2px;
}
.bio-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}
.bio-meta-item:last-child { border-bottom: none; }
.bio-meta-key { font-weight: 600; color: var(--green); min-width: 80px; }
.bio-meta-val { color: var(--gray-dark); }

.bio-text h2 { margin-bottom: 1.5rem; }
.bio-text p  { color: var(--gray-dark); font-size: 0.97rem; line-height: 1.8; }

.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.qual-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.qual-card:hover { border-color: var(--green); }
.qual-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.qual-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.qual-card p  { font-size: 0.82rem; color: var(--gray-dark); margin: 0; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p  { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--green);
}
.contact-item-text h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.25rem; }
.contact-item-text p  { font-size: 0.92rem; color: var(--black); margin: 0; }
.contact-item-text a  { color: var(--black); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--green); }

.social-links-contact {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.social-link {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--gray-dark);
}
.social-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--off-white);
}

/* Contact form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--gray-dark); margin-bottom: 2rem; }

.captcha-group {
  background: var(--gray-light);
  border-radius: 4px;
  padding: 1rem 1.1rem 0.9rem;
  border: 1px solid #d4d8d4;
}
.captcha-group label {
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin-bottom: 0.6rem;
  display: block;
}
.captcha-group label strong {
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.captcha-group input[type="number"] {
  width: 120px;
  text-align: center;
  font-size: 1rem;
  padding: 0.55rem 0.75rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  font-size: 0.88rem;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status--success {
  background: #eaf6ee;
  color: #1a6b35;
  border: 1px solid #b6dfc5;
}
.form-status--error {
  background: #fdf0f0;
  color: #b33030;
  border: 1px solid #f0bebe;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.booking-cta {
  background: var(--green);
  border-radius: 4px;
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
}
.booking-cta h3 { color: var(--white); margin-bottom: 0.5rem; }
.booking-cta p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* =========================================
   MAP PLACEHOLDER
   ========================================= */
.map-wrap {
  height: 360px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-dark);
  font-size: 0.9rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 24px 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand-title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-col address a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* =========================================
   DIVIDER
   ========================================= */
.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 1.25rem 0 1.75rem;
}
.divider.center { margin: 1.25rem auto 1.75rem; }

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header { max-width: 600px; }
.section-header.center {
  text-align: center;
  margin: 0 auto;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p   { color: var(--gray-dark); }

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip {
  background: var(--gray-light);
  padding: 4rem 24px;
  text-align: center;
}
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p  { color: var(--gray-dark); font-size: 1rem; max-width: 500px; margin: 0 auto 2rem; }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .about-split           { grid-template-columns: 1fr; }
  .about-split-image     { min-height: 320px; }
  .about-split-content   { padding: 3rem 2rem; }

  .training-section      { grid-template-columns: 1fr; direction: ltr !important; }
  .training-section.reverse > * { direction: ltr; }
  .training-image        { min-height: 280px; }
  .training-content      { padding: 2.5rem 2rem; }

  .bio-section           { grid-template-columns: 1fr; }
  .bio-image-wrap        { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .contact-grid          { grid-template-columns: 1fr; }

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

  /* Platzreife grid auf pakete.html */
  .platzreife-grid       { grid-template-columns: 1fr !important; }
}

@media (max-width: 700px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  .hero-content  { padding: 110px 24px 60px; }
  :root { --section-pad: 60px 24px; }

  .about-split-content { padding: 2.5rem 1.5rem; }

  .bio-image-wrap { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

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

  .stats-inner { grid-template-columns: 1fr 1fr; }

  .social-links-contact { flex-wrap: wrap; }

  /* Inline-Buttons zentrieren */
  div[style*="justify-content:center"] { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
  .qualifications-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { text-align: center; width: 100%; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .stat-num    { font-size: 1.8rem; }

  .page-hero   { padding: 130px 20px 60px; }
  h1           { font-size: 2rem; }

  .training-image { min-height: 240px; }
  .training-content { padding: 2rem 1.25rem; }

  .bio-meta-key { min-width: 70px; font-size: 0.82rem; }
  .bio-meta-val { font-size: 0.82rem; }

  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .booking-cta  { padding: 1.75rem 1.25rem; }
}
