/* ==========================================================================
   Trilaksha — Ayurvedic PCD Franchise landing page
   Palette sampled from assets/img/Trilaksha_logo.png
   ========================================================================== */

:root {
  /* Leaf green — from the logo mark */
  --leaf-50: #f1f8f2;
  --leaf-100: #ddeee0;
  --leaf-200: #bcdcc3;
  --leaf-300: #8dc39b;
  --leaf-400: #5aa26f;
  --leaf-500: #3a8552;
  --leaf-600: #2a6a40;
  --leaf-700: #225435;
  --leaf-800: #1d442c;
  --leaf-900: #183826;

  /* Clay / maroon — from the "laksha" wordmark */
  --clay-50: #fbf5f2;
  --clay-100: #f5e7df;
  --clay-500: #b06848;
  --clay-900: #533027;

  /* Gold accent */
  --gold-400: #e0b354;
  --gold-500: #d09b2c;
  --gold-600: #b17d1f;

  --cream: #fdfaf4;

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 3px rgba(24, 56, 38, 0.08);
  --shadow-lg: 0 18px 40px -12px rgba(24, 56, 38, 0.22);
  --shadow-xl: 0 28px 60px -18px rgba(24, 56, 38, 0.3);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--leaf-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--leaf-600);
  color: var(--cream);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--leaf-50);
}
::-webkit-scrollbar-thumb {
  background: var(--leaf-600);
  border: 2px solid var(--leaf-50);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--leaf-700);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  position: relative;
  padding-block: 96px;
}

.section--tight {
  padding-block: 64px;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 32px;
  }
  .section {
    padding-block: 128px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 48px;
  }
}

.grid {
  display: grid;
  gap: 20px;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--leaf-200);
  background: rgba(241, 248, 242, 0.8);
  color: var(--leaf-700);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow--light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--leaf-100);
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
}

.section-lead {
  color: rgba(29, 68, 44, 0.75);
  font-size: 1.02rem;
  line-height: 1.7;
}

.on-dark .section-title,
.on-dark h3 {
  color: var(--cream);
}
.on-dark .section-lead {
  color: rgba(221, 238, 224, 0.85);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

/* Gold shimmer for key phrases */
.shimmer {
  background: linear-gradient(
    100deg,
    var(--gold-600) 0%,
    var(--gold-400) 25%,
    #fff4d6 50%,
    var(--gold-400) 75%,
    var(--gold-600) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3.5s linear infinite;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 99px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn--primary {
  background: var(--leaf-700);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover {
  background: var(--leaf-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--gold {
  background: var(--gold-500);
  color: var(--leaf-900);
  box-shadow: 0 18px 40px -12px rgba(177, 125, 31, 0.45);
}
.btn--gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.btn--glass {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  backdrop-filter: blur(12px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--wa {
  background: #25d366;
  color: #06301a;
  box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.55);
}
.btn--wa:hover {
  background: #3ce07a;
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* ---------- Glass surface ---------- */
.glass {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

.glass--dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

/* Organic leaf-shaped mask for imagery */
.mask-leaf {
  border-radius: 58% 42% 45% 55% / 48% 52% 48% 52%;
}

/* ==========================================================================
   Scroll progress + navigation
   ========================================================================== */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  height: 4px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--leaf-700), var(--gold-500), var(--clay-500));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 16px;
  transition: padding 0.5s var(--ease);
}

.site-header.is-scrolled {
  padding-block: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 12px 16px;
  transition: all 0.5s var(--ease);
}

.site-header.is-scrolled .nav {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .nav {
    padding-inline: 24px;
  }
}

.nav__logo img {
  height: 44px;
  width: auto;
}

@media (min-width: 640px) {
  .nav__logo img {
    height: 48px;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  position: relative;
  display: block;
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--leaf-800);
  transition: color 0.3s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 16px -2px 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--leaf-600);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__cta {
  display: none;
}

@media (min-width: 640px) {
  .nav__cta {
    display: inline-flex;
    padding: 12px 22px;
    font-size: 0.85rem;
  }
}

.nav__toggle {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border: 1px solid var(--leaf-200);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--leaf-800);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle svg {
  width: 20px;
  height: 20px;
}
.nav__toggle .icon-close {
  display: none;
}
.nav__toggle.is-open .icon-menu {
  display: none;
}
.nav__toggle.is-open .icon-close {
  display: block;
}

/* Mobile sheet */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(24, 56, 38, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.mobile-menu__panel {
  margin: 96px 20px 0;
  border-radius: 24px;
  background: var(--cream);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  transform: translateY(-24px);
  transition: transform 0.35s var(--ease);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
}

.mobile-menu__panel a {
  display: block;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--leaf-800);
  transition: background 0.2s;
}

.mobile-menu__panel a:hover {
  background: var(--leaf-50);
}

.mobile-menu__panel .btn {
  margin-top: 16px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: var(--leaf-900);
  padding-block: 128px 80px;
}

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

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--leaf-900), var(--leaf-800) 55%, var(--clay-900));
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(58, 133, 82, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(176, 104, 72, 0.45), transparent 55%);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero__video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.hero__video.is-hidden {
  display: none;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--leaf-900),
    rgba(24, 56, 38, 0.55) 50%,
    rgba(24, 56, 38, 0.7)
  );
}

#particles {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__title {
  margin-top: 24px;
  font-size: clamp(2.25rem, 6vw, 4.2rem);
  color: var(--cream);
}

.hero__underline {
  position: relative;
  display: inline-block;
}

.hero__underline svg {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  color: var(--gold-500);
}

.hero__underline path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 1.2s 0.9s ease-in-out forwards;
}

.hero__lead {
  margin-top: 32px;
  max-width: 36rem;
  color: rgba(221, 238, 224, 0.85);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__lead strong {
  color: var(--cream);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.play-dot {
  position: relative;
  display: grid;
  place-items: center;
  height: 28px;
  width: 28px;
  border-radius: 99px;
  background: var(--cream);
  color: var(--leaf-800);
}

.play-dot svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.play-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: rgba(253, 250, 244, 0.6);
  animation: pulse-ring 2.4s ease-out infinite;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 48px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(221, 238, 224, 0.8);
}

.hero__trust svg {
  width: 17px;
  height: 17px;
  color: var(--gold-400);
}

/* Hero right column — medallion backdrop with the form card laid over it */
.hero__panel {
  position: relative;
  display: grid;
  justify-items: center;
}

/* Floating logo medallion */
.medallion {
  position: relative;
  display: none;
  aspect-ratio: 1;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .medallion {
    display: block;
  }

  /* The form sits on top, so the medallion recedes into a backdrop. */
  .hero__panel .medallion {
    position: absolute;
    inset-block-start: -40px;
    inset-inline-end: -24px;
    width: 26rem;
    opacity: 0.55;
    filter: blur(1px);
    pointer-events: none;
  }
}

.medallion__glow {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(224, 179, 84, 0.25), rgba(90, 162, 111, 0.2), transparent);
  filter: blur(40px);
  animation: float 7s ease-in-out infinite;
}

.medallion__disc {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.medallion__disc img {
  width: 100%;
  max-width: 15rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

/* Emblem stacked above the wordmark */
.medallion__disc {
  gap: 18px;
  align-content: center;
}

.medallion__mark {
  max-width: 9.5rem;
  animation: float 6s ease-in-out infinite;
}

.medallion__word {
  max-width: 13rem;
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .medallion__mark {
    animation: none;
  }
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  animation: orbit linear infinite;
}

.orbit span {
  display: block;
  height: 12px;
  width: 12px;
  border-radius: 99px;
  background: var(--gold-400);
  box-shadow: 0 6px 18px rgba(208, 155, 44, 0.5);
}

.orbit:nth-child(1) {
  animation-duration: 16s;
}
.orbit:nth-child(1) span {
  transform: translateX(170px);
}
.orbit:nth-child(2) {
  animation-duration: 22s;
  animation-delay: -6s;
}
.orbit:nth-child(2) span {
  transform: translateX(184px);
}
.orbit:nth-child(3) {
  animation-duration: 28s;
  animation-delay: -12s;
}
.orbit:nth-child(3) span {
  transform: translateX(198px);
}

.scroll-cue {
  position: absolute;
  inset: auto 0 24px 0;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.scroll-cue div {
  display: grid;
  place-items: start center;
  height: 44px;
  width: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  padding: 6px;
}

.scroll-cue span {
  height: 8px;
  width: 4px;
  border-radius: 99px;
  background: var(--gold-400);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

/* ==========================================================================
   Marquee ribbon
   ========================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(188, 220, 195, 0.6);
  background: var(--leaf-50);
  padding-block: 20px;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__track span {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(34, 84, 53, 0.7);
}

.marquee__track svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 96px;
  z-index: 1;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--leaf-50), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--leaf-50), transparent);
}

/* ==========================================================================
   Decorative drifting leaves
   ========================================================================== */
.leaf-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.leaf-field svg {
  position: absolute;
  color: var(--leaf-600);
  animation: float 9s ease-in-out infinite;
}

.leaf-field--light svg {
  color: var(--leaf-300);
}

/* ==========================================================================
   Split content (Why choose / Manufacturing)
   ========================================================================== */
.split {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.prose {
  margin-top: 24px;
  max-width: 36rem;
  color: rgba(29, 68, 44, 0.75);
  line-height: 1.75;
}

.callout {
  margin-top: 32px;
  border-left: 4px solid var(--gold-500);
  border-radius: 16px;
  background: var(--clay-50);
  padding: 24px;
  color: rgba(83, 48, 39, 0.85);
  line-height: 1.7;
}

/* Layered image composition */
.compose {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}

.compose__main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: float 7s ease-in-out infinite;
}

.compose__main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

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

.compose__inset {
  position: absolute;
  bottom: -32px;
  left: -24px;
  width: 44%;
  max-width: 224px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 9s ease-in-out infinite reverse;
}

.compose__inset img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.compose__badge {
  position: absolute;
  top: 40px;
  right: -16px;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
}

.compose__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--leaf-700);
}

.compose__badge span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(29, 68, 44, 0.7);
}

/* Image fallback when a remote photo fails to load */
.img-fallback {
  position: relative;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, var(--leaf-700), var(--leaf-500), var(--gold-400));
}

.img-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 55%);
  animation: drift 18s ease-in-out infinite alternate;
}

/* ==========================================================================
   Products — dark band, carousel + chip grid
   ========================================================================== */
.band-dark {
  position: relative;
  overflow: hidden;
  background: var(--leaf-900);
}

.band-dark__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(58, 133, 82, 0.4), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(176, 104, 72, 0.35), transparent 50%);
  animation: drift 18s ease-in-out infinite alternate;
}

.band-dark .container {
  position: relative;
  z-index: 1;
}

.carousel {
  position: relative;
  margin-top: 64px;
}

.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.carousel__viewport::-webkit-scrollbar {
  display: none;
}

.carousel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-inline: 4px;
}

.product-card {
  scroll-snap-align: center;
  width: 280px;
  flex-shrink: 0;
  border-radius: 24px;
  padding: 28px;
  color: var(--cream);
  transition: transform 0.5s var(--ease), background 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card__icon {
  display: grid;
  place-items: center;
  height: 56px;
  width: 56px;
  border-radius: 18px;
  background: rgba(208, 155, 44, 0.2);
  color: var(--gold-400);
  transition: background 0.3s, color 0.3s;
}

.product-card:hover .product-card__icon {
  background: var(--gold-500);
  color: var(--leaf-900);
}

.product-card__icon svg {
  width: 24px;
  height: 24px;
}

.product-card h3 {
  margin-top: 24px;
  font-size: 1.2rem;
}

.product-card p {
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(221, 238, 224, 0.7);
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.carousel__btn {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel__btn:hover {
  background: var(--gold-500);
  color: var(--leaf-900);
  transform: translateY(-2px);
}

.carousel__btn svg {
  width: 18px;
  height: 18px;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .chip-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(221, 238, 224, 0.85);
  transition: border-color 0.3s, background 0.3s;
}

.chip:hover {
  border-color: rgba(208, 155, 44, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold-400);
}

/* ==========================================================================
   Benefit cards
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 64px;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--leaf-100);
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--leaf-300);
  box-shadow: var(--shadow-xl);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  height: 112px;
  width: 112px;
  border-radius: 99px;
  background: var(--leaf-50);
  transition: transform 0.5s var(--ease);
}

.benefit-card:hover::before {
  transform: scale(2.6);
}

.benefit-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  height: 56px;
  width: 56px;
  border-radius: 18px;
  background: var(--leaf-700);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  transition: background 0.3s, color 0.3s;
}

.benefit-card:hover .benefit-card__icon {
  background: var(--gold-500);
  color: var(--leaf-900);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  position: relative;
  margin-top: 24px;
  font-size: 1.08rem;
  color: var(--leaf-900);
}

/* Compact row cards (Why partner) */
.row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(188, 220, 195, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.row-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-lg);
}

.row-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: rgba(208, 155, 44, 0.15);
  color: var(--gold-600);
}

.row-card__icon svg {
  width: 20px;
  height: 20px;
}

.row-card p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--leaf-900);
}

/* ==========================================================================
   Cinematic video band
   ========================================================================== */
.video-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--leaf-900);
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 96px;
}

.video-band__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--leaf-800), var(--leaf-900) 55%, var(--clay-900));
}

.video-band video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity 1s;
}

.video-band video.is-bright {
  opacity: 0.7;
}

.video-band video.is-hidden {
  display: none;
}

.video-band__scrim {
  position: absolute;
  inset: 0;
  background: rgba(24, 56, 38, 0.5);
}

.video-band .container {
  position: relative;
  z-index: 1;
}

.play-btn {
  position: relative;
  display: grid;
  place-items: center;
  height: 80px;
  width: 80px;
  margin-inline: auto;
  border: 0;
  border-radius: 99px;
  background: var(--gold-500);
  color: var(--leaf-900);
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: rgba(208, 155, 44, 0.5);
  animation: pulse-ring 2.4s ease-out infinite;
}

.video-band h2 {
  margin-top: 36px;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  color: var(--cream);
}

.video-band p {
  margin: 24px auto 0;
  max-width: 40rem;
  color: rgba(221, 238, 224, 0.8);
  line-height: 1.75;
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  border-block: 1px solid rgba(188, 220, 195, 0.6);
  background: var(--cream);
  padding-block: 64px;
}

.stats__grid {
  display: grid;
  gap: 40px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--leaf-700);
}

.stat__value em {
  font-style: normal;
  color: var(--gold-500);
}

.stat__label {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(29, 68, 44, 0.6);
}

/* ==========================================================================
   Quality panel + check lists
   ========================================================================== */
.panel {
  margin-top: 40px;
  border: 1px solid var(--leaf-100);
  border-radius: 24px;
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.panel h3 {
  font-size: 1.5rem;
  color: var(--leaf-900);
}

.panel p {
  margin-top: 16px;
  color: rgba(29, 68, 44, 0.75);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--leaf-800);
}

.check-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-500);
}

.float-badge {
  position: absolute;
  bottom: -28px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.float-badge__icon {
  display: grid;
  place-items: center;
  height: 48px;
  width: 48px;
  border-radius: 14px;
  background: var(--leaf-700);
  color: var(--cream);
}

.float-badge__icon svg {
  width: 20px;
  height: 20px;
}

.float-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--leaf-900);
}

.float-badge span {
  font-size: 0.72rem;
  color: rgba(29, 68, 44, 0.7);
}

.rounded-shot {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.rounded-shot img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.rounded-shot:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Process timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
}

.timeline__spine {
  position: absolute;
  left: 24px;
  top: 8px;
  height: 100%;
  width: 2px;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(to bottom, var(--leaf-600), var(--gold-500), var(--clay-500));
  transition: transform 1.6s ease-in-out;
}

.timeline.is-visible .timeline__spine {
  transform: scaleY(1);
}

.timeline ol {
  display: grid;
  gap: 32px;
}

.timeline li {
  position: relative;
  padding-left: 64px;
}

.timeline__num {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 48px;
  width: 48px;
  border: 4px solid var(--cream);
  border-radius: 99px;
  background: var(--leaf-700);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  box-shadow: var(--shadow-lg);
}

.timeline__card {
  border: 1px solid var(--leaf-100);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.timeline__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.timeline__card h3 {
  font-size: 1.08rem;
  color: var(--leaf-900);
}

.timeline__card p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(29, 68, 44, 0.7);
}

/* Alternating layout on wide screens */
@media (min-width: 768px) {
  .timeline__spine {
    left: 50%;
    transform: translateX(-50%) scaleY(0);
  }
  .timeline.is-visible .timeline__spine {
    transform: translateX(-50%) scaleY(1);
  }
  .timeline li {
    width: 50%;
    padding-left: 0;
  }
  .timeline li:nth-child(odd) {
    padding-right: 56px;
    text-align: right;
  }
  .timeline li:nth-child(even) {
    margin-left: auto;
    padding-left: 56px;
  }
  .timeline li:nth-child(odd) .timeline__num {
    left: auto;
    right: -24px;
  }
  .timeline li:nth-child(even) .timeline__num {
    left: -24px;
  }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq {
  background: var(--leaf-50);
}

.faq__list {
  max-width: 800px;
  margin: 64px auto 0;
  display: grid;
  gap: 12px;
}

.faq__item {
  overflow: hidden;
  border: 1px solid rgba(188, 220, 195, 0.7);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item.is-open {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-lg);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border: 0;
  background: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--leaf-900);
  cursor: pointer;
}

@media (min-width: 640px) {
  .faq__q {
    font-size: 1.1rem;
  }
}

.faq__toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 36px;
  width: 36px;
  border-radius: 99px;
  background: var(--leaf-50);
  color: var(--leaf-700);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: var(--leaf-900);
}

.faq__toggle svg {
  width: 16px;
  height: 16px;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  padding: 0 24px 24px;
  color: rgba(29, 68, 44, 0.75);
  line-height: 1.75;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
/* Uniform row heights keep every tile aligned; `dense` backfills any gap left
   by a spanning tile, so editing GALLERY can't punch holes in the grid. */
.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .gallery {
    grid-auto-rows: 230px;
  }
}

@media (min-width: 1024px) {
  .gallery {
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }
}

/* Wide tiles fill the row on mobile, half the row on desktop. */
.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.gallery__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.07);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 33, 20, 0.8), transparent 55%);
}

.gallery__item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.contact__list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 6px;
  transition: background 0.3s var(--ease);
}

.contact__list li a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact__list .icon--wa {
  color: #25d366;
}

.contact__list .icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-400);
}

.contact__list .icon svg {
  width: 20px;
  height: 20px;
}

.contact__list small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(221, 238, 224, 0.55);
}

.contact__list strong {
  color: var(--cream);
}

.form-card {
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.form-card h3 {
  font-size: 1.5rem;
  color: var(--cream);
}

.form {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.form__row {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(221, 238, 224, 0.7);
}

.field span em {
  font-style: normal;
  color: var(--gold-400);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(221, 238, 224, 0.4);
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(224, 179, 84, 0.3);
}

.field textarea {
  resize: vertical;
  min-height: 92px;
}

.form__note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(221, 238, 224, 0.5);
}

.form-success {
  display: none;
  padding-block: 56px;
  text-align: center;
}

.form-success svg {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  color: var(--gold-400);
}

.form-success h3 {
  margin-top: 24px;
}

.form-success p {
  margin-top: 12px;
  color: rgba(221, 238, 224, 0.75);
}

.form-card.is-sent .form,
.form-card.is-sent > h3 {
  display: none;
}

.form-card.is-sent .form-success {
  display: block;
}

.form-card.is-sent .form-card__tag,
.form-card.is-sent .form-card__sub {
  display: none;
}

/* ---------- Hero variant: overlaps the medallion ---------- */
.form-card--hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 30rem;
  padding: 28px;
  background: rgba(16, 42, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  animation: float 9s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .form-card--hero {
    margin-top: 40px;
    margin-inline-start: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-card--hero {
    animation: none;
  }
}

.form-card--hero .form {
  gap: 16px;
}

.form-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: rgba(224, 179, 84, 0.18);
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
}

.form-card__tag svg {
  width: 14px;
  height: 14px;
}

.form-card__sub {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(221, 238, 224, 0.72);
}

.form-card__split {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-card__split .btn {
  padding-inline: 16px;
}

/* ---------- Social links ---------- */
.social {
  margin-top: 40px;
}

.social__label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(221, 238, 224, 0.55);
}

.social__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social__row a {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  transition: all 0.3s var(--ease);
}

.social__row a:hover {
  background: var(--gold-500);
  color: var(--leaf-900);
  transform: translateY(-3px);
}

.social__row svg {
  width: 19px;
  height: 19px;
}

.social--light {
  margin-top: 24px;
}

.social--light .social__row a {
  background: rgba(29, 68, 44, 0.08);
  color: var(--leaf-900);
}

.social--light .social__row a:hover {
  background: var(--leaf-700);
  color: var(--cream);
}

/* ---------- Sticky contact dock ---------- */
.dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 12px;
}

.dock__btn {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  height: 52px;
  width: 52px;
  border-radius: 99px;
  color: #fff;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s var(--ease);
}

.dock__btn:hover {
  transform: scale(1.08);
}

.dock__btn svg {
  width: 24px;
  height: 24px;
}

.dock__btn--wa {
  background: #25d366;
  color: #06301a;
}

.dock__btn--call {
  background: var(--leaf-700);
}

.dock__btn--wa::after {
  content: "";
  position: absolute;
  height: 52px;
  width: 52px;
  border-radius: 99px;
  background: rgba(37, 211, 102, 0.55);
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .dock__btn--wa::after {
    animation: none;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(188, 220, 195, 0.6);
  background: var(--cream);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer__logo {
  height: 56px;
  width: auto;
}

.footer__about {
  margin-top: 20px;
  max-width: 24rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(29, 68, 44, 0.7);
}

.footer__contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: rgba(29, 68, 44, 0.8);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--leaf-900);
}

.footer__links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.footer__links li,
.footer__links a {
  font-size: 0.88rem;
  color: rgba(29, 68, 44, 0.7);
  transition: color 0.3s;
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(188, 220, 195, 0.6);
  padding-block: 28px;
  font-size: 0.75rem;
  color: rgba(29, 68, 44, 0.6);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(6deg);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-6%, 4%, 0) scale(1.12);
  }
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(14px);
    opacity: 0.3;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__underline path {
    stroke-dashoffset: 0;
  }
  .timeline__spine {
    transform: scaleY(1);
  }
}
