/* ============================
   CHRYSALIS COACHING - Global Styles
   Elegant · Minimalist · Editorial
   ============================ */

/* Hide Google Translate bar */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }
#google_translate_element { display: none !important; }
.skiptranslate { display: none !important; }

/* Fix Google Translate font overrides */
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style] { background: none !important; box-shadow: none !important; }

/* Color Palette (extracted from logo) */
:root {
  --camel:          #C4A882;
  --camel-light:    #D4BFA0;
  --camel-dark:     #A8895E;
  --brown:          #8B6E4A;
  --brown-dark:     #7A5C3E;
  --cream:          #F5F0E8;
  --cream-light:    #FAF7F2;
  --off-white:      #FDFCFA;
  --white:          #FFFFFF;
  --text-primary:   #4A3F35;
  --text-secondary: #7A6850;
  --text-light:     #9C8468;
  --gold:           #C9A96E;
  --gold-hover:     #B8944F;
  --border:         #E5DDD3;
  --shadow:         rgba(139, 115, 85, 0.08);
  --nav-height:     80px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
  color: var(--text-primary);
  background: var(--cream-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================
   Typography
   ============================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown-dark);
}

.heading-xl {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.15em;
}

.heading-lg {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 0.12em;
}

.heading-md {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.08em;
}

.heading-sm {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  letter-spacing: 0.06em;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}

.body-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 640px;
}

.body-text-lg {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============================
   Layout
   ============================ */

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.container--narrow {
  max-width: 900px;
}

.section {
  padding: 6rem 0;
}

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

.section--dark-brown {
  background: var(--brown-dark);
}

.section--dark-brown .label,
.section--dark-brown .heading-lg,
.section--dark-brown .body-text {
  color: var(--cream-light);
}

.section--dark-brown .pillar__number {
  color: var(--camel-light);
}

.section--dark-brown .pillar__title {
  color: var(--white);
}

.section--dark-brown .pillar__text {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark-brown .btn {
  background: linear-gradient(135deg, #9c7c58, #c4a882, #9c7c58);
  background-size: 200% 200%;
  animation: heroGradientFlow 6s ease-in-out infinite;
  color: var(--white);
  border: 1px solid rgba(196, 168, 130, 0.4);
  box-shadow: 0 4px 20px rgba(196, 168, 130, 0.35), 0 0 30px rgba(196, 168, 130, 0.15);
}

.section--dark-brown .btn:hover {
  background: linear-gradient(135deg, #c4a882, #d4bfa0, #c4a882);
  background-size: 200% 200%;
  border-color: rgba(212, 191, 160, 0.6);
  color: var(--brown-dark);
  box-shadow: 0 6px 28px rgba(196, 168, 130, 0.5), 0 0 40px rgba(196, 168, 130, 0.25);
}

.section--services-bg {
  background: url('../images/place.jpeg') center/cover no-repeat fixed;
}

.section--services-bg .label,
.section--services-bg .heading-lg {
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

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

.section--camel h2,
.section--camel h3,
.section--camel .label {
  color: var(--white);
}

.section--camel .body-text,
.section--camel .body-text-lg {
  color: rgba(255, 255, 255, 0.85);
}

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

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

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ============================
   Navigation
   ============================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}

.nav--scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  height: 70px;
}

.nav__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 44px;
  width: auto;
  transition: all 0.4s ease;
  filter: brightness(0) invert(1);
}

.nav--scrolled .nav__logo img {
  height: 38px;
  filter: none;
}

/* Animated gradient logo mask */
.nav__logo-mask {
  height: 44px;
  width: 200px;
  transition: all 0.4s ease;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  background: white;
}

.nav--scrolled .nav__logo-mask {
  height: 38px;
  background: linear-gradient(90deg, #5a4433, #7a5c42, #9c7c58, #8a6848, #5a4433, #7a5c42, #9c7c58, #5a4433);
  background-size: 300% 100%;
  animation: logo-flow 8s linear infinite;
}

@keyframes logo-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

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

.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
}

.nav--scrolled .nav__link {
  color: var(--text-secondary);
}

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

.nav--scrolled .nav__link:hover {
  color: var(--brown-dark);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--gli {
  background:
    radial-gradient(ellipse at 20% 50%, #b89878 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #a07850 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, #8b6842 0%, transparent 45%),
    radial-gradient(ellipse at 30% 10%, #c4a888 0%, transparent 50%),
    linear-gradient(135deg, #9c7c58 0%, #8b6842 25%, #a08060 50%, #7a5c3e 75%, #9c7c58 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%;
  animation: heroGradientFlow 12s ease-in-out infinite;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.12em;
}

.nav__link--gli::after {
  display: none;
}

.nav--scrolled .nav__link--gli {
  color: var(--white) !important;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav__login {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav__login:hover {
  color: var(--camel-light);
}

.nav--scrolled .nav__login {
  color: var(--brown-dark);
}

.nav__mobile a.nav__mobile-login {
  margin-top: 1.5rem;
  padding: 0.85rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  background: none;
  border-bottom: none !important;
  border-top: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .nav__login {
    display: none;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__current {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: transparent;
}

.nav--scrolled .lang-switcher__current {
  color: var(--text-secondary);
}

.lang-switcher__current::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-light);
  transition: transform 0.3s ease;
}

.lang-switcher.open .lang-switcher__current::after {
  transform: rotate(180deg);
}

.lang-switcher__current:hover {
  color: var(--brown-dark);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 0 8px 30px var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  min-width: 140px;
  z-index: 100;
}

.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-align: left;
  transition: all 0.2s ease;
}

.lang-switcher__option:hover {
  background: var(--cream);
  color: var(--brown-dark);
}

.lang-switcher__option.active {
  color: var(--gold);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span {
  background: var(--brown-dark);
}

.nav__hamburger.active span {
  background: var(--white) !important;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(140, 105, 65, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(100, 75, 45, 0.4) 0%, transparent 45%),
    radial-gradient(ellipse at 40% 80%, rgba(160, 120, 75, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 65%, rgba(120, 90, 55, 0.3) 0%, transparent 40%),
    linear-gradient(160deg, #7A5C3E 0%, #6B4E34 20%, #8A6A48 40%, #5E4430 60%, #7A5C3E 80%, #6B4E34 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%;
  animation: heroGradientFlow 15s ease-in-out infinite;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.nav__mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile.open a:nth-child(1) { transition-delay: 0.1s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.2s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.3s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.4s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.5s; }
.nav__mobile.open a:nth-child(6) { transition-delay: 0.6s; }
.nav__mobile.open a:nth-child(7) { transition-delay: 0.7s; }
.nav__mobile.open a:nth-child(8) { transition-delay: 0.8s; }

.nav__mobile a:hover {
  color: var(--camel-light);
}

@keyframes metalShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.nav__mobile a.nav__mobile-gli {
  background:
    linear-gradient(
      105deg,
      #7a5c3e 0%,
      #9c7c58 15%,
      #c4a888 30%,
      #d6c0a0 40%,
      #c4a888 45%,
      #9c7c58 55%,
      #7a5c3e 65%,
      #9c7c58 80%,
      #c4a888 90%,
      #9c7c58 100%
    );
  background-size: 300% 100%;
  animation: metalShimmer 4s ease-in-out infinite;
  color: var(--white);
  padding: 0.85rem 2rem;
  margin: 0.3rem -2rem;
  border-bottom: none;
  border-radius: 0;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(201, 169, 110, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

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

.nav__mobile a.nav__mobile-gli .nav__mobile-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.nav__mobile a .nav__mobile-subtitle {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(212, 191, 160, 0.7);
  font-weight: 300;
  margin-left: 0.8rem;
  font-style: italic;
  text-decoration: none;
}

.nav__mobile a .nav__mobile-subtitle .cursor {
  display: inline-block;
  width: 1px;
  height: 0.75em;
  background: rgba(196, 168, 130, 0.5);
  margin-left: 1px;
  animation: blink 0.6s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Video Banner */
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: auto;
  display: block;
}

.video-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 63, 53, 0.35);
}

.video-banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.video-banner__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Scroll Butterfly */
.scroll-butterfly {
  position: fixed;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  z-index: 90;
  pointer-events: none;
  transition: transform 0.4s ease;
  will-change: left, top, transform;
}

.scroll-butterfly__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.scroll-butterfly__frame--active {
  opacity: 1;
}

.scroll-butterfly__frame[data-frame="flying"],
.scroll-butterfly__frame[data-frame="gliding"] {
  transform: rotate(180deg);
}

/* Landed — completely still */
.scroll-butterfly--still {
  animation: none;
}

/* No bob while flying */
.scroll-butterfly--flying {
  animation: none;
}

@media (max-width: 480px) {
  .scroll-butterfly {
    width: 120px;
    height: 120px;
  }
}

/* ============================
   Buttons
   ============================ */

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

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

.btn:hover::before {
  left: 0;
}

.btn--filled {
  background: var(--gold);
  color: var(--white);
}

.btn--filled::before {
  background: var(--gold-hover);
}

.btn--white {
  border-color: var(--white);
  color: var(--white);
}

.btn--white::before {
  background: var(--white);
}

.btn--white:hover {
  color: var(--brown-dark);
}

/* ============================
   Hero
   ============================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, #d4bfa0 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #c9a96e 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, #b89460 0%, transparent 45%),
    radial-gradient(ellipse at 30% 10%, #d6c4a8 0%, transparent 50%),
    linear-gradient(135deg, #c4a882 0%, #b8944f 25%, #c4a882 50%, #a8895e 75%, #c9a96e 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%;
  animation: heroGradientFlow 12s ease-in-out infinite;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 115, 85, 0.55);
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 50%;
  max-width: 600px;
  opacity: 0.12;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hero__cta {
  margin-top: 1rem;
}

.hero__btn-draw {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero__btn-draw span {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero__btn-draw::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 2px;
  background: linear-gradient(105deg, #9c7c58 0%, #c9a96e 15%, #e8d5a8 30%, #f5ead0 42%, #e8d5a8 55%, #c9a96e 70%, #9c7c58 85%, #c9a96e 100%);
  background-size: 300% 100%;
  animation: metalShimmer 4s ease-in-out infinite;
}

.hero__btn-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__btn-border rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1;
  stroke-dasharray: 692;
  stroke-dashoffset: 692;
  animation: draw-border 1.5s ease forwards 0.8s;
}

@keyframes draw-border {
  to { stroke-dashoffset: 0; }
}

.hero__btn-draw:hover .hero__btn-border rect {
  stroke: rgba(255, 255, 255, 1);
}

.hero__btn-draw:hover span {
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

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

/* Flowy gradient animation */
@keyframes heroGradientFlow {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 50%, 0% 0%;
  }
  25% {
    background-position: 30% 20%, 70% 30%, 80% 60%, 20% 80%, 50% 25%;
  }
  50% {
    background-position: 60% 50%, 40% 60%, 20% 30%, 80% 20%, 100% 50%;
  }
  75% {
    background-position: 40% 80%, 60% 40%, 50% 70%, 60% 60%, 50% 75%;
  }
  100% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 50%, 0% 0%;
  }
}

/* Page Hero (smaller, for subpages) */
.page-hero {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 20% 50%, #d4bfa0 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #c9a96e 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, #b89460 0%, transparent 45%),
    radial-gradient(ellipse at 30% 10%, #d6c4a8 0%, transparent 50%),
    linear-gradient(135deg, #c4a882 0%, #b8944f 25%, #c4a882 50%, #a8895e 75%, #c9a96e 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%;
  animation: heroGradientFlow 12s ease-in-out infinite;
  text-align: center;
}

.page-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ============================
   Section Headers
   ============================ */

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .label {
  margin-bottom: 1rem;
  display: block;
}

.section-header .heading-lg {
  margin-bottom: 1.5rem;
}

.section-header .body-text {
  margin-inline: auto;
}

/* ============================
   Cards
   ============================ */

.card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}

.card--glass {
  background: rgba(60, 45, 30, 0.35);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card--glass:hover {
  background: rgba(60, 45, 30, 0.45);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.card--glass .card__title {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.card--glass .card__text {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.card--glass .card__link {
  color: var(--white);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--shadow);
  border-color: transparent;
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.card__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}

.card__link:hover {
  gap: 0.8rem;
}

.card__link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

/* ============================
   Pillars (Drie Pijlers)
   ============================ */

.pillar {
  text-align: center;
  padding: 1.5rem 2rem;
}

.pillar__icon {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 0.8rem;
  filter: brightness(0) invert(1);
}

.pillar__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--camel-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.pillar__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 320px;
  margin-inline: auto;
}

/* ============================
   Journey / Timeline
   ============================ */

.journey {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.journey::before {
  display: none;
}

.journey__step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.journey__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
}

.journey__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 0.8rem;
}

.journey__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 260px;
  margin-inline: auto;
}

/* ============================
   Testimonials
   ============================ */

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

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial__quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--camel-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial__author {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================
   Video Reels
   ============================ */

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

.reel {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--camel);
  cursor: pointer;
}

.reel video,
.reel iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.reel__title {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 400;
}

/* ============================
   USP Strip
   ============================ */

.usp-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 4rem 0;
}

.usp {
  text-align: center;
}

.usp__icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.usp__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================
   CTA Section
   ============================ */

.cta-section {
  background: var(--camel);
  padding: 6rem 0;
  text-align: center;
}

.cta-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.cta-section__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-inline: auto;
}

/* ============================
   Contact Form
   ============================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

/* ============================
   Minimal Contact Form
   ============================ */

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-minimal__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-minimal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-minimal__form input,
.contact-minimal__form textarea {
  width: 100%;
  padding: 1.1rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-minimal__row input:first-child {
  padding-right: 2rem;
}

.contact-minimal__form input::placeholder,
.contact-minimal__form textarea::placeholder {
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.contact-minimal__form input:focus,
.contact-minimal__form textarea:focus {
  border-color: var(--gold);
}

.contact-minimal__form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 2rem;
}

.contact-minimal__form .btn {
  align-self: flex-start;
}

.contact-minimal__info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-minimal__info a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.contact-minimal__info a:hover {
  color: var(--gold);
}

.contact-minimal__divider {
  color: var(--border);
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .contact-minimal__row {
    grid-template-columns: 1fr;
  }
  .contact-minimal__row input:first-child {
    padding-right: 0;
  }
  .container--narrow {
    padding: 0 1.5rem;
  }
}

/* ============================
   Video Banner Duo (desktop side-by-side)
   ============================ */

.video-banner-duo {
  display: flex;
  width: 100%;
}

.video-banner-duo .video-banner {
  flex: 1;
  min-width: 0;
}

.video-banner-duo .video-banner video {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-banner-duo {
    flex-direction: column;
  }
}

/* ============================
   FAQ / Accordion
   ============================ */

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--brown-dark);
  text-align: left;
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: var(--gold);
}

.accordion-trigger::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-inline-start: 1rem;
}

.accordion-item.open .accordion-trigger::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content__inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================
   Footer
   ============================ */

.footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

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

.footer__brand img {
  height: 40px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

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

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

/* ============================
   Metamorphosis Timeline
   ============================ */

.metamorphosis {
  padding: 1rem 0 6rem;
  overflow: hidden;
}

.metamorphosis__timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The animated vertical line */
.metamorphosis__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  z-index: 0;
}

.metamorphosis__line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--border);
}

.metamorphosis__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #63503f, #8a6f55, #bf9f7d, #a6845f, #63503f);
  background-size: 100% 300%;
  animation: line-shimmer 4s linear infinite;
  transition: height 0.05s linear;
}

@keyframes line-shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 300%; }
}

/* Each step */
.metamorphosis__step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.metamorphosis__step.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Spacing between steps */
.metamorphosis__step:not(:last-child) {
  margin-bottom: 1rem;
}

/* Pad last step bottom so line doesn't overflow */
.metamorphosis__step:last-child {
  padding-bottom: 1rem;
}

/* The dot/node on the line */
.metamorphosis__node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 2px solid var(--border);
  margin-bottom: 1.5rem;
  transition: all 0.6s ease;
  flex-shrink: 0;
  z-index: 3;
}

.metamorphosis__step.is-visible .metamorphosis__node {
  border-color: #bf9f7d;
  background: #bf9f7d;
  box-shadow: 0 0 0 6px rgba(191, 159, 125, 0.15);
}

/* Image wrapper */
.metamorphosis__image {
  width: 200px;
  height: auto;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 3;
  background: var(--cream-light);
  padding: 0.8rem;
  border-radius: 4px;
}

.metamorphosis__image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(99, 80, 63, 0.1));
  transition: transform 0.6s ease;
}

.metamorphosis__step:hover .metamorphosis__image img {
  transform: scale(1.05);
}

/* Step 1 (rups) - wider image */
.metamorphosis__step:nth-child(1) .metamorphosis__image {
  width: 240px;
}

/* Step 3 (net uit cocon) - slightly bigger */
.metamorphosis__step:nth-child(3) .metamorphosis__image {
  width: 220px;
}

/* Step 4 (vrije vlinder) - biggest, the finale */
.metamorphosis__step:nth-child(4) .metamorphosis__image {
  width: 250px;
}

/* Labels */
.metamorphosis__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--brown-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 3;
  background: var(--cream-light);
  padding: 0.1rem 2rem;
}

.metamorphosis__sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
  background: var(--cream-light);
  padding: 0.1rem 2rem;
  max-width: 280px;
}

/* Responsive */
@media (max-width: 768px) {
  .metamorphosis__image {
    width: 160px;
  }
  .metamorphosis__step:nth-child(1) .metamorphosis__image {
    width: 200px;
  }
  .metamorphosis__step:nth-child(3) .metamorphosis__image {
    width: 180px;
  }
  .metamorphosis__step:nth-child(4) .metamorphosis__image {
    width: 200px;
  }
}

/* ============================
   Animations
   ============================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal--scale.visible {
  transform: scale(1);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }

/* Hero entrance */
@keyframes unfurl {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.hero__content {
  animation: unfurl 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero__bg {
  animation: unfurl 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

/* Decorative float */
@keyframes flutter {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(1deg); }
  75% { transform: translateY(4px) rotate(-1deg); }
}

/* ============================
   Pricing / Tarieven
   ============================ */

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card--featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

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

.pricing-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--brown-dark);
  margin: 1.5rem 0;
}

.pricing-card__price span {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-card__features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding-inline-start: 1.5rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Insurance badge */
.insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--cream);
  padding: 1rem 2rem;
  border: 1px solid var(--border);
}

.insurance-badge__text {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================
   GLI Page
   ============================ */

/* Hero subtitle */
.gli-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

/* USP Grid */
.gli-usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.gli-usp__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gli-usp__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gli-usp__icon svg {
  width: 100%;
  height: 100%;
}

.gli-usp__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Dark Section (dieet) */
.gli-dark-section {
  background: var(--brown-dark);
  color: var(--white);
  padding: 6rem 0;
}

.gli-dark-section h2 {
  color: var(--white);
}

/* Split layout */
.gli-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gli-split--reverse {
  direction: ltr;
}

.gli-split--reverse .gli-split__image {
  order: -1;
}

.gli-split__image {
  border-radius: 4px;
  overflow: hidden;
}

.gli-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.gli-split__intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.gli-split__question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.gli-split__bottom {
  margin-top: 2rem;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Checklist */
.gli-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.gli-checklist li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.gli-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--camel-light);
  font-weight: 500;
}

.gli-checklist--light li {
  color: var(--text-secondary);
}

.gli-checklist--light li::before {
  color: var(--gold);
}

.gli-checklist--white li {
  color: rgba(255, 255, 255, 0.85);
}

.gli-checklist--white li::before {
  color: var(--camel-light);
}

/* GLI Button */
.gli-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: 0;
  transition: all 0.4s ease;
  text-decoration: none;
}

.gli-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.gli-btn:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.gli-btn:hover::after {
  transform: translateX(4px);
}

.gli-btn--light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.gli-btn--light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Dark Cards Duo */
.gli-cards-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.gli-card-dark {
  background: var(--brown-dark);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 12px;
}

.gli-card-dark__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.gli-card-dark__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--camel-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.gli-card-dark__link:hover {
  color: var(--white);
}

/* Journey Section */
.gli-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gli-journey__image {
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.gli-journey__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Steps */
.gli-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gli-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.gli-step__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-top: 2px;
}

.gli-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.gli-step__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Dark Section */
.gli-cta-section {
  background: var(--brown-dark);
  color: var(--white);
  padding: 6rem 0;
}

.gli-cta-section h2,
.gli-cta-section h3 {
  color: var(--white);
}

.gli-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.gli-cta-split__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gli-cta-split__left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.gli-cta-split__right {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 4rem;
}

.gli-cta-split__right .heading-md {
  margin-bottom: 2rem;
}

.gli-cta-section .accordion-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.gli-cta-section .accordion-trigger {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.gli-cta-section .accordion-trigger:hover {
  color: var(--camel-light);
}

.gli-cta-section .accordion-trigger::after {
  color: rgba(255, 255, 255, 0.4);
}

.gli-cta-section .accordion-content__inner {
  color: rgba(255, 255, 255, 0.65);
}

/* GLI FAQ */
.gli-faq {
  margin-bottom: 1rem;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

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

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

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-inline: auto;
  }

  .gli-usps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .gli-split,
  .gli-split--reverse,
  .gli-journey,
  .gli-cards-duo,
  .gli-cta-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gli-split--reverse .gli-split__image {
    order: 0;
  }

  .gli-cta-split__right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
  }

  .gli-journey__image {
    position: static;
  }

  .journey {
    flex-direction: column;
    gap: 3rem;
  }

  .journey::before {
    display: none;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .page-hero {
    min-height: 50vh;
    padding: 8rem 1.5rem 3rem;
  }

  .page-hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .gli-hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .container {
    padding-inline: 1.5rem;
  }

  .gli-usps {
    grid-template-columns: 1fr;
  }

  .usp-strip {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

/* ============================
   RTL Support (Arabic)
   ============================ */

[dir="rtl"] {
  font-size: 0.95rem;
}

[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
  font-family: 'Noto Sans Arabic', 'Cormorant Garamond', serif;
}

[dir="rtl"] .nav__link::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .lang-switcher__dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .card__link::after {
  content: '\2190';
}

[dir="rtl"] .pricing-card__features li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .pricing-card__features li {
  padding-inline-start: 0;
  padding-inline-end: 1.5rem;
}

[dir="rtl"] .accordion-trigger {
  text-align: right;
}
