/* ============================================
   Studio 3 Coaching - Global Stylesheet
   Surya | Fotografie & PMA-Hypnotherapie
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --bg:            #F7F6F4;
  --bg-alt:        #EDEBE8;
  --bg-dark:       #1C2B36;
  --primary:       #2B4C6F;
  --primary-hover: #1E3A56;
  --accent:        #5E8C7A;
  --accent-hover:  #4A7364;
  --cta:           #2B4C6F;
  --cta-hover:     #1E3A56;
  --text:          #1C2B36;
  --text-muted:    #5C6E78;
  --border:        #D5D9D8;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(28,43,54,0.08);
  --shadow-md:     0 8px 32px rgba(28,43,54,0.12);
  --shadow-lg:     0 20px 60px rgba(28,43,54,0.15);
  --radius:        10px;
  --radius-lg:     20px;
  --transition:    200ms ease;
  --nav-h:         110px;
  --font-heading:  'Lora', Georgia, serif;
  --font-body:     'Raleway', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-muted); max-width: 65ch; }
p.wide { max-width: 75ch; }
p.full { max-width: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- Layout ---- */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(800px, 100% - 3rem);
  margin-inline: auto;
}

section {
  padding-block: clamp(60px, 8vw, 110px);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

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

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
  box-shadow: 0 2px 8px rgba(43,76,111,0.18), 0 4px 16px rgba(43,76,111,0.12);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  box-shadow: 0 4px 12px rgba(43,76,111,0.22), 0 8px 28px rgba(43,76,111,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(43,76,111,0.18), 0 8px 28px rgba(43,76,111,0.12);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(94,140,122,0.18), 0 4px 16px rgba(94,140,122,0.12);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(94,140,122,0.22), 0 8px 28px rgba(94,140,122,0.18);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg);
  border-color: var(--bg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247,246,244,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(247,246,244,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

/* Subtiele text-shadow op nav links zodat ze leesbaar zijn op donkere achtergronden */

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 85px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  :root { --nav-h: 84px; }
  .nav__logo-img { height: 56px; }
}
@media (max-width: 480px) {
  :root { --nav-h: 68px; }
  .nav__logo-img { height: 44px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  border-radius: 0;
  position: relative;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav__link:hover { color: var(--primary); }
.nav__link.active { color: var(--primary); }

.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 1rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg);
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
  border-top: 1px solid var(--border);
}

.nav__mobile.open { display: flex; }

.nav__mobile .nav__link {
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28,43,54,0.72) 0%,
    rgba(28,43,54,0.45) 55%,
    rgba(28,43,54,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  max-width: 640px;
}

.hero__eyebrow {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: #A8C5B5;
}

.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 52ch;
}

.hero__slogan {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.hero__stats {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scroll-pulse 2s ease-in-out infinite;
}

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

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Feature Cards ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(94,140,122,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  stroke: currentColor;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { margin-inline: auto; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1A3A56 100%);
  color: var(--white);
  text-align: center;
  padding-block: clamp(60px, 8vw, 100px);
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-inline: auto; }
.cta-banner .btn-group { justify-content: center; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-alt);
}

.testimonial-card__avatar--initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: color var(--transition), gap var(--transition);
}

.testimonial-card__more:hover {
  color: var(--primary);
  gap: 0.55rem;
}

/* ===== TESTIMONIAL SLIDER (premium) ===== */
.testimonial-slider {
  position: relative;
}

.testimonial-slider__track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.testimonial-slider__slide {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

.testimonial-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-card--large {
  max-width: 700px;
  width: 100%;
}

.testimonial-card--large::before {
  font-size: 6rem;
  opacity: 0.11;
  top: 0.75rem;
  left: 1.5rem;
}

.testimonial-card--large .testimonial-card__text {
  padding-top: 3.25rem;
}

.testimonial-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-slider__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: color var(--transition);
  flex-shrink: 0;
}

.testimonial-slider__btn:hover { color: var(--primary); }

.testimonial-slider__btn svg {
  width: 20px;
  height: 20px;
}

.testimonial-slider__dots {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.testimonial-slider__dot {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(0,0,0,0.12);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.testimonial-slider__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
}

.testimonial-slider__dot.is-active::after {
  transform: scaleX(1);
  transition: transform 7s linear;
}

.stars { display: none; }

@media (prefers-reduced-motion: reduce) {
  .testimonial-slider__slide { transition: none; }
  .testimonial-slider__dot.is-active::after { transition: none; }
}

/* ---- Process Steps ---- */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__body h4 { margin-bottom: 0.4rem; }
.process-step__body p { font-size: 0.9rem; }

/* ---- Image Blocks ---- */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.img-frame--portrait {
  aspect-ratio: 3/4;
}

.img-frame--landscape {
  aspect-ratio: 4/3;
}

.img-frame--square {
  aspect-ratio: 1;
}

/* ---- Credentials Badge ---- */
.credentials {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(94,140,122,0.1);
  border: 1px solid rgba(94,140,122,0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.credentials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ---- Contact Form ---- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.form-label span {
  color: var(--accent);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control::placeholder { color: #9AABB5; }

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,76,111,0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select.form-control { cursor: pointer; }

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(50px, 7vw, 80px) 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo-img {
  height: 85px;
  width: auto;
  display: block;
  /* Inverteert het logo naar wit voor de donkere footer */
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
}

.footer__logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  cursor: pointer;
}

.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  margin-bottom: 0.65rem;
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--bg) 0%, #E8ECE9 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,140,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__eyebrow { margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; }

/* ---- Sticky CTA bar (mobile) ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(28,43,54,0.1);
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

.sticky-cta .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 0.75rem 1rem; }

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 1.25rem 0;
}

.divider--center { margin-inline: auto; }

/* ---- Animations ---- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in {
    opacity: 0;
    transition: opacity 0.7s ease;
  }

  .fade-in.visible { opacity: 1; }

  .stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
  .stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
  .stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
  .stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
  .stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
  .stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.bg-white { background: var(--white); }
.bg-alt { background: var(--bg-alt); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.gap-sm { gap: 0.75rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; stroke: var(--text-muted); }

/* ---- Package Cards ---- */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--border);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

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

.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.package-card__badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0 0 10px 10px;
}

.package-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.package-card__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.package-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.package-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-card__feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   PREMIUM UPGRADES
   ============================================ */

/* ---- L: Skip link ---- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 500;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: var(--shadow-md);
}
.skip-link:focus { top: 0; outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---- L: Hero quick-form ---- */
.hero__quickform {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__quickform-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.85rem;
  max-width: none;
}
.hero__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero__form-input,
.hero__form-select {
  flex: 1;
  min-width: 150px;
  padding: 0.75rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.hero__form-input::placeholder { color: rgba(255,255,255,0.5); }
.hero__form-input:focus,
.hero__form-select:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
}
.hero__form-select option { color: var(--text); background: var(--white); }
.hero__form .btn { flex-shrink: 0; }

@media (max-width: 560px) {
  .hero__form { flex-direction: column; }
  .hero__form-input,
  .hero__form-select,
  .hero__form .btn { width: 100%; min-width: 0; justify-content: center; }
}

/* ---- A: Grain texture ---- */
.grain {
  position: relative;
  isolation: isolate;
}
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='0.036'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.grain > * { position: relative; z-index: 1; }

/* ---- A: Richer section backgrounds ---- */
.bg-warm-texture {
  background: linear-gradient(158deg, #F8F7F4 0%, #EDEAE6 55%, #E6E2DC 100%);
}
.bg-sage-texture {
  background: linear-gradient(158deg, #F4F7F5 0%, #EAF0EB 60%, #DDE8DE 100%);
}
.bg-cool-texture {
  background: linear-gradient(158deg, #F5F6F8 0%, #EAECEE 55%, #E1E5E9 100%);
}

/* ---- A: Typographic watermark ---- */
.watermark-wrap {
  position: relative;
  overflow: hidden;
}
.watermark-wrap::after {
  content: attr(data-watermark);
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(7rem, 20vw, 17rem);
  color: var(--primary);
  opacity: 0.032;
  pointer-events: none;
  white-space: nowrap;
  right: -2%;
  bottom: -10%;
  line-height: 1;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.02em;
}
.watermark-wrap > * { position: relative; z-index: 1; }

/* ---- B: Display quote / oversized typography ---- */
.display-section {
  padding-block: clamp(70px, 10vw, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.display-quote {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.18;
  max-width: 20ch;
  margin-inline: auto;
  letter-spacing: -0.01em;
}
.display-quote em { color: var(--accent); font-style: italic; }
.display-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2rem;
}

/* ---- D: Standalone stats section ---- */
.stats-full {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0F1E27 100%);
  position: relative;
  overflow: hidden;
  padding-block: clamp(50px, 7vw, 80px);
}
.stats-full::before {
  content: '33';
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40vw;
  color: rgba(255,255,255,0.018);
  line-height: 1;
  right: -8%;
  bottom: -10%;
  pointer-events: none;
  user-select: none;
}
.stats-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-block { padding: 1.5rem; position: relative; }
.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-block__num {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-block__suffix { color: var(--accent); }
.stat-block__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-full-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block::after { display: none; }
}

/* ---- F: Scroll-driven timeline ---- */
/* Override old pseudo-element line */
.timeline-v::before { display: none !important; }

.timeline-v__track {
  position: absolute;
  left: 1.1rem;
  top: 0.4rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
  overflow: hidden;
}
.timeline-v__fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-v__item {
  opacity: 0.38;
  transform: translateX(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.timeline-v__item.tl-active { opacity: 1; transform: translateX(0); }

/* Scale dot on active */
.timeline-v__item::before {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  transform: scale(0.8);
}
.timeline-v__item.tl-active::before {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 5px rgba(94,140,122,0.18);
  transform: scale(1.1);
}

/* ---- J: Floating labels ---- */
.form-floating {
  position: relative;
}
.form-floating .form-label {
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  font-size: 0.9rem;
  color: #9AABB5;
  font-weight: 400;
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, font-weight 0.2s ease;
  z-index: 1;
  padding: 0 4px;
  margin-left: -4px;
  background: transparent;
}
/* Required span hidden in floating mode */
.form-floating .form-label span { display: none; }

.form-floating .form-control { padding-top: 1.15rem; padding-bottom: 0.65rem; }

.form-floating .form-control:focus ~ .form-label,
.form-floating .form-control.has-value ~ .form-label {
  top: -0.55rem;
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  background: var(--white);
  letter-spacing: 0.04em;
}

/* ---- G: Parallax hero ---- */
.hero__bg img {
  height: 116%;
  top: -8%;
  will-change: transform;
}

/* ---- H & I: Magnetic / tilt base ---- */
.service-tile {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-tile.tilt-reset {
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) !important;
}

/* ---- K: Mobile nav full-screen overlay ---- */
@media (max-width: 900px) {
  .nav__mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: #111D25;
    padding: calc(var(--nav-h) + 2.5rem) 2.5rem 3rem;
    flex-direction: column;
    z-index: 98;
    transform: translateX(101%);
    transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
    visibility: hidden;
    gap: 0;
    overflow-y: auto;
  }
  .nav__mobile.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav__mobile .nav__link {
    font-size: 1.45rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
    transition: color var(--transition), padding-left var(--transition);
  }
  .nav__mobile .nav__link:hover,
  .nav__mobile .nav__link.active { color: var(--white); background: none; padding-left: 0.35rem; }
  .nav__mobile .btn {
    margin-top: 2rem;
    justify-content: center;
    width: 100%;
  }
  .nav__mobile-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav__mobile-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
  }
  .nav__mobile-contact a:hover { color: rgba(255,255,255,0.85); }
  .nav__mobile-contact svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }
}

/* ---- K: Mobile hero special layout ---- */
@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
    padding-bottom: 5.5rem;
  }
  .hero__content { padding-inline: 1.5rem; }
  .hero__title { font-size: clamp(1.9rem, 7.5vw, 2.75rem); }
  .hero__stats { display: none; }
  .hero__scroll { display: none; }
  .hero__quickform { margin-top: 1.5rem; padding-top: 1.5rem; }
  .hero__subtitle { font-size: 0.975rem; }
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,43,54,0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after { background: rgba(28,43,54,0.15); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
