/* ========================================
   V2 – Personal, warm, not generic
   ======================================== */
:root {
  --orange: #e8632b;
  --orange-soft: #f4a261;
  --navy: #1a1440;
  --navy-mid: #2d2466;
  --cream: #faf6f1;
  --cream-dark: #f0ebe3;
  --sage: #c9e0db;
  --lavender: #e4d9f5;
  --warm-white: #fdfcfa;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --text-muted: #9a9a9a;
  --white: #ffffff;
  --black: #111;

  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'DM Serif Display', Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-style: italic; color: var(--orange); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
}

.section-warm {
  background: var(--cream);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 16px;
}

.label-light {
  color: var(--orange-soft);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-warm {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-warm:hover {
  background: #d4561f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 99, 43, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(24px);
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 100px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

.nav-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-btn:hover {
  background: #d4561f !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,99,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-greeting {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(232,99,43,0.08);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stars {
  color: #f5b731;
  letter-spacing: 1px;
}

.hero-right {
  position: relative;
}

.hero-img-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-left: auto;
  display: block;
}

.hero-quote-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border-left: 3px solid var(--orange);
}

.hero-quote-card p {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
}

/* ========================================
   INTRO BLOCK
   ======================================== */
.intro-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro-block h2 {
  color: var(--navy);
}

.intro-block p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   OFFERS GRID
   ======================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.offer-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--cream-dark);
  margin-bottom: 20px;
  line-height: 1;
}
.offer-card:hover .offer-number {
  color: var(--orange-soft);
}

.offer-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.offer-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
}
.offer-card:hover .offer-link {
  transform: translateX(4px);
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-card-highlight {
  background: var(--navy);
  color: var(--white);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-card-highlight .review-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}
.review-card-highlight .review-author {
  color: var(--orange-soft);
}

.review-stars {
  color: #f5b731;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ========================================
   PERSONAL BLOCK
   ======================================== */
.personal-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.personal-text h2 {
  color: var(--white);
}

.personal-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.personal-facts {
  display: flex;
  gap: 40px;
}

.fact-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--orange-soft);
  line-height: 1;
  margin-bottom: 4px;
}

.fact-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portrait-round {
  width: 100%;
  max-width: 360px;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-left: auto;
  display: block;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  background: var(--cream);
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--serif);
  color: var(--navy);
}

.cta-inner > p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.cta-alt {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cta-alt a {
  color: var(--orange);
  font-weight: 500;
}
.cta-alt a:hover { text-decoration: underline; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }

.footer-left > p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 0.85rem;
  font-weight: 500;
}
.footer-social a:hover { color: var(--orange); }

.footer-right {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 0.82rem;
  text-align: center;
}

/* ========================================
   PAGE HEADER (subpages)
   ======================================== */
.page-hero {
  padding: 140px 0 70px;
  background: var(--cream);
  position: relative;
}

.page-hero .label { margin-bottom: 8px; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.page-hero > .container > p {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 560px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  color: var(--navy);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-portrait-wrap {
  position: sticky;
  top: 100px;
}

.about-portrait {
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  margin-left: auto;
  display: block;
}

.methods-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.method-pill {
  padding: 7px 18px;
  background: var(--sage);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
}

/* Timeline */
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}

.tl-item {
  padding-left: 52px;
  position: relative;
  margin-bottom: 36px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--warm-white);
}

.tl-year {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.tl-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.tl-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Memberships */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.member-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s var(--ease);
}
.member-card:hover {
  background: var(--sage);
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.svc-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.svc-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.svc-card:hover .svc-num { color: var(--orange-soft); }

.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tag {
  padding: 4px 12px;
  background: var(--sage);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Process Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-item {
  text-align: center;
}

.step-circle {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 auto 14px;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ========================================
   BOOKING PAGE
   ======================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.booking-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.b-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.b-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.b-detail h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.b-detail p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Booking Tool */
.booking-tool {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
}

.booking-tool h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.b-step {
  margin-bottom: 28px;
}

.b-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-badge {
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Service options */
.svc-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-opt {
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-opt:hover { border-color: var(--orange); }
.svc-opt.selected {
  border-color: var(--orange);
  background: rgba(232,99,43,0.04);
}

.svc-opt-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.svc-opt-dur {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Calendar */
.cal-wrap {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
}

.cal-header h4 {
  font-size: 0.92rem;
  font-weight: 600;
}

.cal-nav {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
}
.cal-nav:hover { background: rgba(255,255,255,0.12); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 12px;
}

.cal-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 0;
  text-transform: uppercase;
}

.cal-day {
  text-align: center;
  padding: 10px 0;
  font-size: 0.86rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--sage);
}
.cal-day.selected {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}
.cal-day.today {
  border: 2px solid var(--orange);
  font-weight: 600;
}
.cal-day.disabled {
  color: rgba(0,0,0,0.18);
  cursor: default;
}
.cal-day.empty { cursor: default; }

/* Time Slots */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.t-slot {
  padding: 12px;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.t-slot:hover { border-color: var(--orange); }
.t-slot.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Form */
.b-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fg label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.fg input, .fg textarea {
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text);
  transition: border 0.2s var(--ease);
  background: var(--white);
}
.fg input:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.fg textarea {
  resize: vertical;
  min-height: 70px;
}

.b-summary {
  background: var(--sage);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: var(--navy);
  display: none;
}
.b-summary.visible { display: block; }

.b-success {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  display: none;
}
.b-success.visible { display: block; }

.b-success h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.b-success p { color: var(--text-light); }

.success-check {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

/* ========================================
   LANDING PAGE – SCHULEN
   ======================================== */

/* LP Hero */
.lp-hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 40%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,99,43,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lp-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
}

.lp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
}
.lp-stat-card:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg);
}

.lp-stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.lp-stat-num {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}

.lp-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* LP Benefits */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.lp-benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease);
}
.lp-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.lp-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.lp-benefit h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

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

/* LP Offers */
.lp-offer {
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(0,0,0,0.04);
}

.lp-offer-header {
  padding: 36px 40px 0;
}

.lp-offer-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.lp-offer-header h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.lp-offer-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  padding: 28px 40px 40px;
}

.lp-offer-intro {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.lp-offer-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-detail-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lp-detail-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 120px;
}

.lp-detail-value {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}

.lp-offer-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}

.lp-offer-sidebar h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.lp-check-list {
  list-style: none;
}

.lp-check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.lp-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.lp-sidebar-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--navy);
  line-height: 1.6;
}

.lp-modules {
  margin-top: 24px;
}

.lp-modules h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.lp-module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-module-tags span {
  padding: 6px 16px;
  background: var(--sage);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* LP Collaboration */
.lp-collab {
  max-width: 800px;
  margin: 0 auto;
}

.lp-collab-text h2 {
  color: var(--navy);
}

.lp-collab-text > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.lp-collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.lp-collab-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}

.lp-collab-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.lp-collab-card ul {
  list-style: none;
}

.lp-collab-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.lp-collab-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

.lp-collab-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid var(--cream-dark);
}

/* LP Form */
.lp-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lp-form-info h2 {
  color: var(--navy);
}

.lp-form-info > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.lp-form-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-form-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-form-contact-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.lp-form-contact-item a,
.lp-form-contact-item span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.lp-form-contact-item a { color: var(--orange); }

.lp-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}

.lp-form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-check-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lp-check-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-weight: 500;
}

.lp-check-opt:hover {
  background: var(--sage);
}

.lp-check-opt input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

.lp-form-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero-layout,
  .about-grid,
  .personal-block,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-img { margin: 0 auto; max-width: 320px; }
  .hero-quote-card { position: relative; bottom: 0; left: 0; margin-top: -20px; }

  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card-highlight { grid-row: auto; }
  .services-grid { grid-template-columns: 1fr; }

  .portrait-round { margin: 0 auto; max-width: 260px; }
  .about-portrait { margin: 0 auto; }
  .about-portrait-wrap { position: static; }

  .personal-facts { justify-content: center; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    display: block;
    text-align: center;
    padding: 12px;
  }

  .lp-hero-layout { grid-template-columns: 1fr; text-align: center; }
  .lp-hero p { margin-left: auto; margin-right: auto; }
  .lp-hero-btns { justify-content: center; }
  .lp-hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .lp-stat-card { flex: 1; min-width: 160px; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-offer-body { grid-template-columns: 1fr; }
  .lp-collab-grid { grid-template-columns: 1fr; }
  .lp-form-layout { grid-template-columns: 1fr; }
  .lp-check-options { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-right { gap: 40px; }

  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .steps-row { grid-template-columns: 1fr; }
  .personal-facts { flex-direction: column; align-items: center; gap: 24px; }
}