/* ============================================================
   PONDY MESS — Saapadu Ready.
   Vanilla CSS. No frameworks.
   
   CSS Architecture:
   - CSS Custom Properties (Variables)
   - Reset & Base Styles
   - Utility Classes
   - Component Styles
   - Layout Sections
   - Animations & Interactions
   - Responsive Design
   
   Color Palette:
   - Primary: #2F5233 (banana-green)
   - Secondary: #E8A722 (turmeric-gold)
   - Accent: #B3402A (kalamkari-brick)
   - Background: #FBF3E7 (rice-cream)
   - Text: #2B2420 (ink)
   
   Typography:
   - Display: Fraunces (serif)
   - Body: Work Sans (sans-serif)
   - Mono: IBM Plex Mono (monospace)
   ============================================================ */

/* ============================================================
   INTRO PRELOADER — Radial Iris Reveal with Particles
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  overflow: hidden;
}
.intro__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a1612 0%, #0d0b09 100%);
  z-index: 0;
}

/* Floating particles */
.intro__particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(6px * var(--s));
  height: calc(6px * var(--s));
  border-radius: 50%;
  background: var(--turmeric-gold);
  opacity: 0;
  animation: particleFloat var(--d) ease-in-out infinite, particleFadeIn 0.8s var(--ease) 0.3s forwards;
  box-shadow: 0 0 8px rgba(232, 167, 34, 0.5);
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-8px) translateX(-8px); }
  75% { transform: translateY(-25px) translateX(5px); }
}
@keyframes particleFadeIn {
  to { opacity: 0.6; }
}

/* Center content */
.intro__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  z-index: 2;
  pointer-events: none;
}

/* Logo — rectangular, no circle crop, larger */
.intro__logo {
  width: 200px;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.7) translateY(10px);
  animation: introLogoIn 1.4s var(--ease) 0.4s forwards;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(232, 167, 34, 0.3);
  position: relative;
  z-index: 3;
}
@keyframes introLogoIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Character-by-character text — single line */
.intro__text {
  display: flex;
  gap: 0.02em;
  overflow: hidden;
  flex-wrap: nowrap;
}
.intro__char {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--turmeric-gold);
  opacity: 0;
  transform: translateY(100%) rotateX(90deg);
  animation: charReveal 0.8s var(--ease) forwards;
  display: inline-block;
}
.intro__char--space {
  width: 0.3em;
}

/* Stagger each character — P A K K I R I _ P O N D Y _ M E S S (18 chars) */
.intro__char:nth-child(1) { animation-delay: 1.0s; }
.intro__char:nth-child(2) { animation-delay: 1.12s; }
.intro__char:nth-child(3) { animation-delay: 1.24s; }
.intro__char:nth-child(4) { animation-delay: 1.36s; }
.intro__char:nth-child(5) { animation-delay: 1.48s; }
.intro__char:nth-child(6) { animation-delay: 1.6s; }
.intro__char:nth-child(7) { animation-delay: 1.72s; }
.intro__char:nth-child(8) { animation-delay: 1.84s; }
.intro__char:nth-child(9) { animation-delay: 1.96s; }
.intro__char:nth-child(10) { animation-delay: 2.08s; }
.intro__char:nth-child(11) { animation-delay: 2.2s; }
.intro__char:nth-child(12) { animation-delay: 2.32s; }
.intro__char:nth-child(13) { animation-delay: 2.44s; }
.intro__char:nth-child(14) { animation-delay: 2.56s; }
.intro__char:nth-child(15) { animation-delay: 2.68s; }
.intro__char:nth-child(16) { animation-delay: 2.8s; }
.intro__char:nth-child(17) { animation-delay: 2.92s; }
.intro__char:nth-child(18) { animation-delay: 3.04s; }

@keyframes charReveal {
  0% { opacity: 0; transform: translateY(100%) rotateX(90deg); }
  60% { opacity: 1; transform: translateY(-8%) rotateX(-5deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.intro__tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: rgba(251, 243, 231, 0.5);
  margin-top: 1.8rem;
  opacity: 0;
  transform: translateY(12px);
  animation: taglineIn 0.8s var(--ease) 3.6s forwards;
}
@keyframes taglineIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Iris wipe exit — circular mask that expands to reveal hero */
.intro__iris {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: transparent;
  clip-path: circle(0% at 50% 50%);
}

/* When intro starts exiting */
.intro.is-revealing .intro__iris {
  background: var(--rice-cream);
  animation: irisOpen 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.intro.is-revealing .intro__center {
  animation: centerZoomOut 0.7s var(--ease) forwards;
}
.intro.is-revealing .intro__bg {
  animation: bgFade 0.5s var(--ease) 0.4s forwards;
}
@keyframes irisOpen {
  0% { clip-path: circle(0% at 50% 50%); }
  100% { clip-path: circle(150% at 50% 50%); }
}
@keyframes centerZoomOut {
  to { opacity: 0; transform: scale(1.3); filter: blur(8px); }
}
@keyframes bgFade {
  to { opacity: 0; }
}

.intro.is-done {
  visibility: hidden;
  display: none;
}

/* Skip seen intro — faster version for returning visitors */
.intro.is-fast .intro__char { animation-duration: 0.4s; }
.intro.is-fast .intro__logo { animation-duration: 0.5s; animation-delay: 0.1s; }
.intro.is-fast .intro__tagline { animation-delay: 1.1s; animation-duration: 0.3s; }
.intro.is-fast .intro__char:nth-child(1) { animation-delay: 0.25s; }
.intro.is-fast .intro__char:nth-child(2) { animation-delay: 0.29s; }
.intro.is-fast .intro__char:nth-child(3) { animation-delay: 0.33s; }
.intro.is-fast .intro__char:nth-child(4) { animation-delay: 0.37s; }
.intro.is-fast .intro__char:nth-child(5) { animation-delay: 0.41s; }
.intro.is-fast .intro__char:nth-child(6) { animation-delay: 0.45s; }
.intro.is-fast .intro__char:nth-child(7) { animation-delay: 0.49s; }
.intro.is-fast .intro__char:nth-child(8) { animation-delay: 0.53s; }
.intro.is-fast .intro__char:nth-child(9) { animation-delay: 0.57s; }
.intro.is-fast .intro__char:nth-child(10) { animation-delay: 0.61s; }
.intro.is-fast .intro__char:nth-child(11) { animation-delay: 0.65s; }
.intro.is-fast .intro__char:nth-child(12) { animation-delay: 0.69s; }
.intro.is-fast .intro__char:nth-child(13) { animation-delay: 0.73s; }
.intro.is-fast .intro__char:nth-child(14) { animation-delay: 0.77s; }
.intro.is-fast .intro__char:nth-child(15) { animation-delay: 0.81s; }
.intro.is-fast .intro__char:nth-child(16) { animation-delay: 0.85s; }
.intro.is-fast .intro__char:nth-child(17) { animation-delay: 0.89s; }
.intro.is-fast .intro__char:nth-child(18) { animation-delay: 0.93s; }

/* ============================================================
   SKIP LINK FOR ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 1rem 1.5rem;
  background: var(--turmeric-gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* ============================================================
   :root tokens
   ============================================================ */
:root {
  --rice-cream: #fbf3e7;
  --banana-green: #2f5233;
  --banana-green-dark: #243e27;
  --pondy-blue: #17415c;
  --turmeric-gold: #e8a722;
  --kalamkari-brick: #b3402a;
  --ink: #2b2420;
  --paper: #f6e9cf;
  --paper-shadow: 30 28 22;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --space: 10px;
  --maxw: 1440px;
  --radius: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--rice-cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a.is-disabled,
a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--turmeric-gold);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: 0 0 0 6px rgba(232, 167, 34, 0.2);
}

/* Enhanced button focus states */
.btn:focus-visible {
  outline: 3px solid var(--turmeric-gold);
  outline-offset: 2px;
  transform: translateY(-2px);
}
.btn--primary:focus-visible {
  box-shadow: 0 6px 0 var(--banana-green-dark), 0 0 0 4px var(--turmeric-gold);
}
.btn--gold:focus-visible {
  box-shadow: 0 6px 0 #b8821a, 0 0 0 4px var(--turmeric-gold);
}
.btn--ghost:focus-visible {
  background: rgba(251, 243, 231, 0.2);
  border-color: var(--turmeric-gold);
}
.btn--outline:focus-visible {
  background: var(--banana-green);
  color: var(--rice-cream);
  box-shadow: 0 0 0 4px var(--turmeric-gold);
}

/* ---------- Typography helpers ---------- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kalamkari-brick);
  margin-bottom: calc(var(--space) * 1.5);
}
.section-label--light {
  color: var(--turmeric-gold);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-heading--light {
  color: var(--rice-cream);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1em 2em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--banana-green);
  color: var(--rice-cream);
  box-shadow: 0 4px 0 var(--banana-green-dark);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--banana-green-dark);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--banana-green-dark);
}

.btn--gold {
  background: var(--turmeric-gold);
  color: var(--ink);
  box-shadow: 0 4px 0 #b8821a;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b8821a;
}
.btn--gold:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b8821a;
}

.btn--ghost {
  border: 2px solid rgba(251, 243, 231, 0.7);
  color: var(--rice-cream);
}
.btn--ghost:hover {
  background: rgba(251, 243, 231, 0.12);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--banana-green);
  color: var(--banana-green);
}
.btn--outline:hover {
  background: var(--banana-green);
  color: var(--rice-cream);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.2em 2.6em;
  font-size: 1.2rem;
}

.wa-icon {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 231, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 36, 32, 0.1);
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.3rem 2rem;
  transition: padding 0.3s var(--ease);
}
.nav.is-scrolled .nav__inner {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.nav.is-scrolled {
  box-shadow: 0 2px 20px rgba(43, 36, 32, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--banana-green);
  color: var(--turmeric-gold);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__link {
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--turmeric-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover {
  color: var(--banana-green);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: var(--banana-green);
  color: var(--rice-cream) !important;
  padding: 0.7em 1.3em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--banana-green-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  position: relative;
  z-index: 100;
}
.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile navigation backdrop */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 36, 32, 0.6);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Reveal animation base ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 2.5rem 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(36, 62, 39, 0.72) 0%,
    rgba(36, 62, 39, 0.55) 38%,
    rgba(23, 65, 92, 0.35) 70%,
    rgba(23, 65, 92, 0.18) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  color: var(--rice-cream);
}
.hero__content.reveal {
  transform: translateY(40px);
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: var(--turmeric-gold);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
  /* Reserve space for 2 lines so content below doesn't jump when typing text changes */
  min-height: 2.2em;
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--turmeric-gold);
  margin-bottom: 1rem;
}
.hero__desc {
  max-width: 540px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(251, 243, 231, 0.88);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__utility {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 243, 231, 0.6);
  border-top: 1px solid rgba(251, 243, 231, 0.25);
  padding-top: 1rem;
  max-width: 460px;
}

/* --- HERO UPGRADES --- */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 2;
}

/* Vertical side label */
.hero__side {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(251, 243, 231, 0.5);
  white-space: nowrap;
  z-index: 4;
}

/* Rotating seal badge */
.hero__seal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 130px;
  height: 130px;
  z-index: 5;
  display: grid;
  place-items: center;
}
.hero__seal-svg {
  width: 100%;
  height: 100%;
  animation: sealSpin 18s linear infinite;
}
.hero__seal-text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  fill: var(--turmeric-gold);
  font-weight: 600;
}
.hero__seal-core {
  position: absolute;
  font-size: 1.8rem;
  color: var(--turmeric-gold);
  text-shadow: 0 0 18px rgba(232, 167, 34, 0.5);
}
@keyframes sealSpin {
  to { transform: rotate(360deg); }
}


/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  z-index: 5;
}
.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(251, 243, 231, 0.6);
}
.hero__scroll-line {
  display: block;
  width: 2px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    var(--turmeric-gold),
    transparent
  );
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--rice-cream);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-100%); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(220%); opacity: 0; }
}

/* --- HERO ENTRANCE TIMELINE (data-hero-el) ---
   Set by JS after intro completes. Each element fades up
   with a staggered delay. */
.hero[data-entered] .hero__content { opacity: 1; }
.hero__content {
  opacity: 0;
}
.hero[data-entered] [data-hero-el] {
  animation: heroElIn 0.8s var(--ease) both;
}
@keyframes heroElIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Stagger via nth-child within the content flow */
.hero[data-entered] [data-hero-el] { animation-delay: 0.05s; }
.hero[data-entered] .hero__content > [data-hero-el]:nth-child(2) { animation-delay: 0.18s; }
.hero[data-entered] .hero__content > [data-hero-el]:nth-child(3) { animation-delay: 0.28s; }
.hero[data-entered] .hero__content > [data-hero-el]:nth-child(4) { animation-delay: 0.38s; }
.hero[data-entered] .hero__content > [data-hero-el]:nth-child(5) { animation-delay: 0.48s; }
.hero[data-entered] .hero__content > [data-hero-el]:nth-child(6) { animation-delay: 0.58s; }
/* Side label + seal + scroll cue (outside content) */
.hero[data-entered] > .hero__side  { animation-delay: 0.7s; }
.hero[data-entered] > .hero__seal  { animation-delay: 0.75s; animation-duration: 1s; }
.hero[data-entered] > .hero__scroll { animation-delay: 0.9s; animation-duration: 1s; }

/* The split-words inside hero title inherit the entrance */
.hero[data-entered] [data-split] .split-word > span {
  transform: translateY(0);
}

@media (max-width: 820px) {
  .hero__seal { width: 84px; height: 84px; top: 1rem; right: 1rem; }
  .hero__seal-text { font-size: 7px; }
  .hero__seal-core { font-size: 1.1rem; }
  .hero__side { display: none; }
  .hero__scroll { bottom: 1rem; }
}

/* ============================================================
   TODAY'S SPECIAL — simple grid showcase
   ============================================================ */
.special {
  padding: 7rem 2.5rem;
  background: var(--rice-cream);
  position: relative;
  overflow: hidden;
}
.special::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(47, 82, 51, 0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232, 167, 34, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.special__intro {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.special__intro .section-label {
  color: var(--kalamkari-brick);
}
.special__intro .section-heading {
  color: var(--ink);
}
.special__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 1rem;
}

/* Simple 3-column grid */
.special__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.special__card {
  text-align: center;
}
.special__card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(43, 36, 32, 0.12);
}
.special__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.special__card:hover .special__card-img-wrap img {
  transform: scale(1.06);
}
.special__card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}

/* The order chit */
.chit {
  position: relative;
  background: var(--paper);
  padding: 3rem 2.8rem 3.2rem;
  font-family: var(--font-mono);
  color: var(--ink);
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px rgba(var(--paper-shadow), 0.35),
    0 6px 14px rgba(var(--paper-shadow), 0.2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  /* torn-paper edge via clip-path */
  clip-path: polygon(
    0% 2%, 3% 0%, 8% 1.5%, 14% 0%, 20% 1%, 28% 0%, 36% 1.2%, 44% 0%, 52% 0.8%, 60% 0%, 68% 1%, 76% 0%, 84% 1.2%, 92% 0%, 97% 1%, 100% 0.5%,
    100% 98%, 96% 100%, 88% 98.5%, 80% 100%, 72% 99%, 64% 100%, 56% 98.8%, 48% 100%, 40% 99%, 32% 100%, 24% 98.8%, 16% 100%, 8% 99%, 3% 100%, 0% 98%
  );
  background-image: repeating-linear-gradient(
    transparent 0px,
    transparent 31px,
    rgba(43, 36, 32, 0.04) 31px,
    rgba(43, 36, 32, 0.04) 32px
  );
}
.chit:hover {
  transform: rotate(-1.5deg) translateY(-4px);
  box-shadow: 0 24px 50px rgba(var(--paper-shadow), 0.4),
    0 10px 20px rgba(var(--paper-shadow), 0.25);
}

.chit__staple {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(8deg);
  width: 22px;
  height: 6px;
  border: 2px solid #8a8580;
  border-radius: 1px;
  background: linear-gradient(180deg, #c8c2bb 40%, #9a948c 40%);
}
.chit__staple--bottom {
  top: auto;
  bottom: 14px;
  transform: translateX(-50%) rotate(-6deg);
}

.chit__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.chit__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.chit__date {
  font-size: 0.7rem;
  color: #8a8580;
  letter-spacing: 0.1em;
}

.chit__divider {
  height: 2px;
  background: var(--ink);
  margin: 0.6rem 0 1rem;
}
.chit__divider--dashed {
  border-top: 2px dashed rgba(43, 36, 32, 0.4);
  background: transparent;
  height: 0;
}

.chit__special-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 1.4rem;
  color: var(--kalamkari-brick);
}

.chit__items {
  margin-bottom: 1rem;
}
.chit__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(43, 36, 32, 0.3);
  font-size: 1.05rem;
}
.chit__price {
  font-weight: 600;
  font-size: 1.1rem;
}

.chit__includes {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: rgba(43, 36, 32, 0.75);
  margin-bottom: 0.5rem;
}

.chit__item em {
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.65;
  letter-spacing: 0.05em;
}

.chit__note {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #8a8580;
  margin-top: 0.6rem;
}

/* Stamp */
.stamp {
  position: absolute;
  bottom: 26px;
  right: 18px;
  display: inline-block;
  border: 2.5px solid var(--kalamkari-brick);
  color: var(--kalamkari-brick);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.35em 0.7em;
  transform: rotate(-14deg);
  opacity: 0.85;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease);
}
.chit:hover .stamp {
  transform: rotate(-10deg) scale(1.05);
}

/* ============================================================
   LUNCH RUSH
   ============================================================ */
.rush {
  background: var(--banana-green);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rush::before,
.rush::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    180deg,
    var(--turmeric-gold) 0 20px,
    transparent 20px 40px
  );
  opacity: 0.5;
}
.rush::before {
  left: 0;
}
.rush::after {
  right: 0;
}
.rush__inner {
  max-width: 700px;
  margin: 0 auto;
}
.rush__time {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5rem);
  color: var(--turmeric-gold);
  line-height: 1;
  margin: 1.2rem 0;
  letter-spacing: -0.01em;
}
.rush__copy {
  font-size: 1.15rem;
  color: rgba(251, 243, 231, 0.9);
  margin-bottom: 1.5rem;
}
.rush__tag {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: var(--rice-cream);
  border: 2px solid var(--turmeric-gold);
  display: inline-block;
  padding: 0.6em 1.4em;
  border-radius: 4px;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story__media {
  position: relative;
}
.story__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 540px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(43, 36, 32, 0.22);
}
.story__caption {
  position: absolute;
  bottom: -14px;
  left: 18px;
  background: var(--ink);
  color: var(--rice-cream);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.4em 0.8em;
  border-radius: 3px;
  transform: rotate(-1.5deg);
}
.story__text {
  max-width: 100%;
}
.story__text .section-heading {
  margin-bottom: 1.8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.story__body {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(43, 36, 32, 0.85);
  margin-bottom: 1.8rem;
}
.story__handwritten {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--kalamkari-brick);
  margin-bottom: 2.4rem;
  position: relative;
  padding-left: 1.4rem;
}
.story__handwritten::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 1.4em;
  background: var(--turmeric-gold);
  border-radius: 2px;
}

/* ============================================================
   MENU — Inspired layout
   ============================================================ */
.menu {
  background: var(--rice-cream);
  padding: 7rem 2.5rem;
}
.menu__head {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.menu__head .section-label {
  color: var(--kalamkari-brick);
}
.menu__head-dot {
  color: var(--turmeric-gold);
  margin-right: 0.3em;
}
.menu__head-accent {
  color: var(--turmeric-gold);
}

.menu__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  background: rgba(43, 36, 32, 0.04);
  border: 1px solid rgba(43, 36, 32, 0.1);
  border-radius: 50px;
  padding: 0.7em 2em;
  width: fit-content;
}
.menu__tab {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.5em 1em;
  border: none;
  border-radius: 50px;
  color: rgba(43, 36, 32, 0.6);
  background: transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.menu__tab:hover {
  color: var(--ink);
}
.menu__tab.is-active {
  color: var(--ink);
  font-weight: 600;
}
.menu__tab-dot {
  color: rgba(43, 36, 32, 0.35);
  font-size: 0.6rem;
  line-height: 1;
}

.menu__board {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 1100px;
  margin: 0 auto;
}
.menu__container {
  min-height: 200px;
}
.menu__loading {
  text-align: center;
  padding: 3rem;
  font-family: var(--font-mono);
  color: rgba(43, 36, 32, 0.5);
  font-size: 0.9rem;
}
.menu__no-results {
  text-align: center;
  padding: 2rem;
  font-family: var(--font-body);
  color: rgba(43, 36, 32, 0.6);
  font-style: italic;
}
.menu__panel {
  animation: panelIn 0.4s var(--ease);
}
.menu__panel[hidden] {
  display: none;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.menu__row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  border-bottom: none;
  border-radius: 12px;
  margin-bottom: 0;
  background: rgba(43, 36, 32, 0.03);
  border: 1px solid rgba(43, 36, 32, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.menu__row:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.1);
}
.menu__item-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(43, 36, 32, 0.08);
  box-shadow: 0 4px 12px rgba(43, 36, 32, 0.15);
  background: linear-gradient(135deg, var(--banana-green), var(--pondy-blue));
}
.menu__item-content {
  flex: 1;
  min-width: 0;
}
.menu__item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.menu__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  flex-shrink: 0;
  line-height: 1.3;
}
.menu__dots {
  display: none;
}
.menu__price {
  display: none;
}
.menu__row:hover .menu__price {
  display: none;
}
.menu__desc {
  font-size: 0.82rem;
  color: rgba(43, 36, 32, 0.55);
  font-style: normal;
  line-height: 1.4;
}

.menu__foot {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
}
.menu__cta-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(43, 36, 32, 0.7);
}
.menu__cta-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.menu__cta-link:hover {
  color: var(--turmeric-gold);
}

@media (max-width: 768px) {
  .menu__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu__tabs {
    padding: 0.5em 1em;
  }
  .menu__tab {
    font-size: 0.9rem;
    padding: 0.4em 0.7em;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.gallery__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
  grid-auto-flow: dense;
}
.gallery__item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}
/* Caption overlay */
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem;
  color: #fff;
  font-family: var(--ff-body, sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery__item--big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--tall {
  grid-row: span 2;
}

/* ============================================================
   PONDY ATMOSPHERE
   ============================================================ */
.atmos {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 4rem 1.5rem;
}
.atmos__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.atmos__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 65, 92, 0.55) 0%,
    rgba(23, 65, 92, 0.7) 100%
  );
  z-index: 1;
}
/* blue shutter slats */
.atmos__shutters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
}
.atmos__shutters span {
  border-left: 1px solid rgba(251, 243, 231, 0.12);
  border-right: 1px solid rgba(251, 243, 231, 0.12);
}
.atmos__content {
  position: relative;
  z-index: 3;
}
.atmos__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--rice-cream);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}
.atmos__line {
  width: 60px;
  height: 3px;
  background: var(--turmeric-gold);
  margin: 0 auto;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.reviews__head {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(43, 36, 32, 0.6);
  margin-top: 1rem;
}

/* Corkboard surface */
.reviews__board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 90, 43, 0.06) 0%, transparent 50%),
    var(--paper);
  border-radius: 12px;
  box-shadow:
    inset 0 0 60px rgba(139, 90, 43, 0.07),
    0 12px 40px rgba(43, 36, 32, 0.12);
}

/* Polaroid card */
.polaroid {
  position: relative;
  background: #fffdf7;
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(43, 36, 32, 0.08),
    0 10px 28px rgba(43, 36, 32, 0.15);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: default;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.03);
  box-shadow:
    0 2px 4px rgba(43, 36, 32, 0.1),
    0 18px 48px rgba(43, 36, 32, 0.22);
  z-index: 10;
}

/* Tape strip */
.polaroid__tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 60px;
  height: 22px;
  background: rgba(232, 167, 34, 0.32);
  border: 1px solid rgba(232, 167, 34, 0.18);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.polaroid__tape--right {
  left: auto;
  right: 14px;
  transform: rotate(4deg);
}

/* Pushpin */
.polaroid__pin {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 14px;
  height: 14px;
  background: var(--kalamkari-brick);
  border-radius: 50%;
  box-shadow:
    inset -2px -2px 3px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Header: avatar + name + date */
.polaroid__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.polaroid__avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  color: #fffdf7;
  background: var(--c, var(--turmeric-gold));
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.polaroid__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.polaroid__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.1;
}
.polaroid__date {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: rgba(43, 36, 32, 0.45);
}

.polaroid__stars {
  color: var(--turmeric-gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.polaroid__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1rem;
}
.polaroid__dish {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kalamkari-brick);
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(43, 36, 32, 0.18);
}

.reviews__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(43, 36, 32, 0.45);
}

@media (max-width: 820px) {
  .reviews__board {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 520px) {
  .reviews__board {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.8rem 1.2rem;
  }
  .polaroid {
    transform: rotate(0deg);
  }
}

/* ============================================================
   LOCATION + TIMINGS
   ============================================================ */
.location {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 2.5rem;
}
.location__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.location__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(43, 36, 32, 0.6);
  margin-top: 0.8rem;
}
.location__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.location__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.location__dir-btn {
  align-self: flex-start;
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(43, 36, 32, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.location__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.12);
}
.location__card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(47, 82, 51, 0.08);
  border-radius: 10px;
}
.location__card-content {
  flex: 1;
}
.location__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.location__addr {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(43, 36, 32, 0.75);
}
.location__phone {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--banana-green);
  letter-spacing: 0.03em;
}
.location__hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(43, 36, 32, 0.8);
  padding: 0.25rem 0;
  border-bottom: 1px dotted rgba(43, 36, 32, 0.15);
}
.location__hours-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(43, 36, 32, 0.5);
  margin-top: 0.5rem;
}
.location__wa-btn {
  align-self: flex-start;
}

.map {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(43, 36, 32, 0.12);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) saturate(0.95);
}

/* ============================================================
   WHATSAPP CTA (now inside footer)
   ============================================================ */
.footer__cta {
  padding: 3.5rem 2.5rem 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer__cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.wacta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 6rem);
  color: var(--turmeric-gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.wacta__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  color: #fbf3e7;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   FOOTER — dark green inspired by reference
   ============================================================ */
.footer {
  background: var(--banana-green) url('assets/Clean tree silhouette landscape.png') no-repeat center bottom;
  background-size: cover;
  color: rgba(251, 243, 231, 0.85);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 22, 0.65);
  z-index: 0;
  pointer-events: none;
}
.footer__tree {
  display: none;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 3rem;
  padding: 3.5rem 2.5rem 3rem;
  border-bottom: 1px solid rgba(251, 243, 231, 0.1);
  position: relative;
  z-index: 1;
}
.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rice-cream);
  margin-bottom: 0.6rem;
}
.footer__col-desc {
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(251, 243, 231, 0.65);
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

/* Nav column */
.footer__col--nav {
  gap: 1.5rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a {
  font-size: 1.05rem;
  color: rgba(251, 243, 231, 0.85);
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover {
  color: var(--turmeric-gold);
}
.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}
.footer__social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(251, 243, 231, 0.4);
  border-radius: 50%;
  color: rgba(251, 243, 231, 0.8);
  transition: all 0.2s var(--ease);
}
.footer__social-link:hover {
  border-color: var(--turmeric-gold);
  color: var(--turmeric-gold);
  transform: translateY(-2px);
}

/* Map column (center) */
.footer__col--map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Contact column */
.footer__col--contact {
  align-items: flex-end;
  text-align: right;
  gap: 0.8rem;
}
.footer__phone {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--rice-cream);
}
.footer__addr {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(251, 243, 231, 0.6);
}
.footer__hours {
  margin-top: 1.2rem;
}
.footer__hours-title {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rice-cream);
  margin-bottom: 0.5rem;
}
.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(251, 243, 231, 0.7);
  padding: 0.25rem 0;
}
.footer__hours-note {
  font-size: 0.78rem;
  color: rgba(251, 243, 231, 0.5);
  margin-top: 0.4rem;
}
.footer__directions-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__directions-link:hover {
  color: var(--rice-cream);
}

/* Footer map embed */
.footer__map-wrap {
  margin-top: 1.2rem;
}
.footer__map {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 8px;
  filter: grayscale(0.3) brightness(0.9);
}

/* Bouncing WhatsApp link */
.footer__wa-bounce {
  display: inline-flex;
  gap: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.footer__wa-bounce:hover .bounce-letter {
  animation: letterBounce 0.6s ease calc(var(--i) * 0.05s) infinite;
}
.bounce-letter {
  display: inline-block;
  animation: letterBounce 0.6s ease calc(var(--i) * 0.05s + 0s) infinite;
  animation-play-state: running;
}
@keyframes letterBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.footer__brand-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.8em 1.2em;
  border: 1.5px solid rgba(251, 243, 231, 0.25);
  border-radius: 50px;
}
.footer__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.footer__logo-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--turmeric-gold);
  color: var(--banana-green);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--rice-cream);
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--rice-cream);
}
.footer__dev {
  font-size: 0.8rem;
  color: var(--rice-cream);
}
.footer__dev a {
  color: var(--rice-cream);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer__dev a:hover {
  color: var(--gold);
}
.footer__made {
  color: var(--rice-cream);
}

/* ============================================================
   STICKY MOBILE WHATSAPP
   ============================================================ */
.sticky-wa {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 90;
  background: var(--banana-green);
  color: var(--rice-cream);
  padding: 0.85em 1.3em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 6px 20px rgba(36, 62, 39, 0.5);
  transition: transform 0.2s var(--ease);
}
.sticky-wa:hover {
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story__media img {
    max-height: 380px;
  }

  .special__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__col--map {
    grid-column: span 2;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 2px;
  }
  .gallery__item--big {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  /* Mobile nav */
  .nav__toggle {
    display: flex;
  }
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: var(--rice-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(43, 36, 32, 0.15);
    z-index: 99;
    overflow-y: auto;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(43, 36, 32, 0.1);
  }
  .nav__link::after {
    display: none;
  }
  .nav__cta {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: 0.9em 1.1em;
  }
  .nav__logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 4.5rem 1.4rem 3.5rem;
    min-height: 92vh;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }

  .special,
  .story,
  .menu,
  .gallery,
  .reviews,
  .location {
    padding: 4.5rem 1.2rem;
  }

  .chit {
    padding: 2rem 1.5rem 2.2rem;
    transform: rotate(-1.5deg);
  }
  .chit:hover {
    transform: rotate(-1deg) translateY(-3px);
  }

  .special__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 2px;
  }
  .gallery__item--big {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
  .gallery__item--tall {
    grid-row: span 2;
  }
  /* Show captions always on touch devices */
  .gallery__caption {
    transform: translateY(0);
    opacity: 1;
  }
  .gallery__item img {
    filter: brightness(0.85);
  }

  .reviews__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .review--offset {
    transform: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__col--contact {
    align-items: flex-start;
    text-align: left;
  }
  .footer__col--map {
    grid-column: span 1;
    align-items: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }

  /* Footer background - remove image on mobile, plain green */
  .footer {
    background-image: none;
    background-color: var(--banana-green);
  }

  /* Show sticky WhatsApp on mobile */
  .sticky-wa {
    display: inline-flex;
  }

  /* Make space for sticky button */
  body {
    padding-bottom: 1rem;
  }
}

@media (max-width: 480px) and (min-width: 381px) {
  .gallery__grid {
    grid-auto-rows: 150px;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 3.2rem;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 2px;
  }
  .gallery__item--big,
  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--turmeric-gold), var(--kalamkari-brick));
  z-index: 200;
  transition: width 0.05s linear;
}

/* ============================================================
   GRAIN / PAPER TEXTURE OVERLAY
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 95;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  /* Improved visibility with solid background instead of blend mode */
  background: transparent;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--turmeric-gold);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s;
  box-shadow: 0 0 8px rgba(232, 167, 34, 0.6);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--turmeric-gold);
  opacity: 0.7;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
    opacity 0.25s, border-color 0.25s;
  box-shadow: 0 0 12px rgba(232, 167, 34, 0.3);
}
.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  opacity: 1;
  border-color: var(--rice-cream);
  background: rgba(251, 243, 231, 0.1);
}
.cursor-dot.is-hover {
  width: 14px;
  height: 14px;
  opacity: 1;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ============================================================
   WORD-BY-WORD SPLIT REVEAL
   ============================================================ */
[data-split] .split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
[data-split] .split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease);
}
[data-split].is-visible .split-word > span {
  transform: translateY(0);
}
[data-split] .split-word:nth-child(1) > span { transition-delay: 0.04s; }
[data-split] .split-word:nth-child(2) > span { transition-delay: 0.10s; }
[data-split] .split-word:nth-child(3) > span { transition-delay: 0.16s; }
[data-split] .split-word:nth-child(4) > span { transition-delay: 0.22s; }
[data-split] .split-word:nth-child(5) > span { transition-delay: 0.28s; }
[data-split] .split-word:nth-child(6) > span { transition-delay: 0.34s; }
[data-split] .split-word:nth-child(7) > span { transition-delay: 0.40s; }
[data-split] .split-word:nth-child(8) > span { transition-delay: 0.46s; }
[data-split] .split-word:nth-child(n+9) > span { transition-delay: 0.52s; }

/* data-stagger: fade-up children */
[data-stagger] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-stagger].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   3D TILT CARDS
   ============================================================ */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s var(--ease), box-shadow 0.4s var(--ease);
}
[data-tilt] .chit__head,
[data-tilt] .chit__items,
[data-tilt] .chit__includes,
[data-tilt] .chit__note,
[data-tilt] .stamp {
  transform: translateZ(30px);
}
[data-tilt] .stamp {
  transform: translateZ(50px) rotate(-14deg);
}
.chit[data-tilt]:hover .stamp {
  transform: translateZ(60px) rotate(-10deg) scale(1.06);
}

/* ============================================================
   MAGNETIC BUTTONS
   ============================================================ */
[data-magnetic] {
  will-change: transform;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

/* ============================================================
   PARALLAX (set via JS, no CSS needed beyond will-change)
   ============================================================ */
[data-parallax] {
  will-change: transform;
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--turmeric-gold);
  overflow: hidden;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(232, 167, 34, 0.2);
  border-bottom: 1px solid rgba(232, 167, 34, 0.2);
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  animation: marqueeScroll 26s linear infinite;
  will-change: transform;
}
.marquee.is-paused .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.marquee__dot {
  color: var(--kalamkari-brick);
  font-size: 2rem;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(23, 65, 92, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease);
  object-fit: contain;
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(251, 243, 231, 0.1);
  color: var(--rice-cream);
  border: 2px solid rgba(251, 243, 231, 0.3);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}
.lightbox__close:hover {
  background: var(--kalamkari-brick);
  transform: rotate(90deg);
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--prev {
  left: 1.5rem;
}
.lightbox__nav--next {
  right: 1.5rem;
}
.lightbox__nav:hover {
  background: var(--turmeric-gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.1);
}

/* ============================================================
   ENHANCED REVEAL: STAGGERED CHILDREN
   ============================================================ */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; }

/* ============================================================
   HERO BG PARALLAX-SAFE SCALING
   ============================================================ */
.atmos__bg[data-parallax] {
  height: 110%;
  top: -5%;
}

/* ============================================================
   NAV LOGO MARK PULSE
   ============================================================ */
.nav__logo-mark {
  transition: transform 0.3s var(--ease);
}
.nav__logo:hover .nav__logo-mark {
  transform: rotate(-12deg) scale(1.1);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
  [data-split] .split-word > span {
    transform: none;
  }
  [data-stagger] {
    opacity: 1;
    transform: none;
  }
  .marquee__track {
    animation: none;
  }
  .chit[data-tilt], [data-magnetic], [data-parallax] {
    transform: none !important;
  }
  .intro {
    display: none !important;
  }
  .hero__content {
    opacity: 1;
  }
  .hero[data-entered] [data-hero-el],
  .hero [data-hero-el] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
