/* ============ MAAGRU — Premium Organic Fruit Landing ============ */
:root {
  --mango: #F59121;
  --mango-deep: #D96A0C;
  --mango-dark: #A84A05;
  --leaf: #6FA844;
  --leaf-deep: #4A7A2A;
  --cream: #FFF6E6;
  --cream-2: #FBEDD2;
  --peach: #FFD8A8;
  --ink: #1A1208;
  --ink-2: #2B1D0C;
  --muted: #6B5A42;
  --line: rgba(26, 18, 8, 0.12);

  --font-serif: "Instrument Serif", "Playfair Display", Georgia, serif;
  --font-sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

body {
  cursor: default;
}

@media (hover: none) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  display: none;
}

.cursor-ring {
  display: none;
}

/* ============ SHARED TYPE ============ */
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ============ CONTAINER / LAYOUT ============ */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease-out), backdrop-filter .4s;
}

.nav.-scrolled {
  background: rgba(255, 246, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.01em;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--mango);
  transition: width .4s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .4s var(--ease-spring), background .3s;
}

.nav-cta:hover {
  background: var(--mango);
  transform: scale(1.04);
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.nav-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease-spring), background .3s, border-color .3s;
}

.nav-profile:hover {
  background: var(--mango);
  border-color: var(--mango);
  transform: scale(1.06);
}

.nav-profile svg {
  transition: stroke .3s;
}

.nav-profile:hover svg {
  stroke: var(--ink);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 40px 60px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at 35% 35%, var(--peach), transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(111, 168, 68, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(111, 168, 68, 0.2);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(111, 168, 68, 0);
  }
}

.hero-title {
  font-size: clamp(52px, 9vw, 132px);
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
  overflow: visible;
  padding: 0;
  line-height: 1.09;
  margin-bottom: 0;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(120%);
  animation: wordUp 1s var(--ease-out) forwards;
}

.hero-title .word.w2 {
  animation-delay: .12s;
}

.hero-title .word.w3 {
  animation-delay: .24s;
}

.hero-title .word.w4 {
  animation-delay: .36s;
}

.hero-title .word.w5 {
  animation-delay: .48s;
}

.hero-title em {
  font-style: italic;
  color: var(--mango);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--leaf);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1s var(--ease-out) 1.2s forwards;
}

@keyframes wordUp {
  to {
    transform: translateY(0);
  }
}

@keyframes drawLine {
  to {
    transform: scaleX(1);
  }
}

.hero-sub {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .7s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .9s forwards;
}

.btn-primary {
  background: var(--mango);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-spring);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mango-deep);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-primary span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary .arrow {
  width: 14px;
  height: 14px;
  transition: transform .3s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  padding: 18px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, color .3s;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) 1.1s forwards;
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
  color: var(--mango-deep);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 6px;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  perspective: 1000px;
}

.mango-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: floatY 6s var(--ease-in-out) infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) rotateZ(-2deg);
  }

  50% {
    transform: translateY(-24px) rotateZ(2deg);
  }
}

.mango-logo {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(217, 106, 12, 0.35)) drop-shadow(0 10px 20px rgba(26, 18, 8, 0.15));
  will-change: transform;
}

.mango-orbit {
  position: absolute;
  inset: 0;
  border: 1.5px dashed var(--mango);
  border-radius: 50%;
  opacity: 0.3;
  animation: spin 30s linear infinite;
}

.mango-orbit.--2 {
  inset: 8%;
  animation-duration: 45s;
  animation-direction: reverse;
  border-color: var(--leaf);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(26, 18, 8, 0.12);
  border: 1px solid var(--line);
}

.orbit-badge.--1 {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-320px) rotate(0deg);
}

.orbit-badge.--2 {
  transform: translate(-50%, -50%) rotate(120deg) translateY(-320px) rotate(-120deg);
  background: var(--leaf);
  color: var(--cream);
}

.orbit-badge.--3 {
  transform: translate(-50%, -50%) rotate(240deg) translateY(-320px) rotate(-240deg);
  background: var(--mango);
  color: var(--ink);
}

.floating-splat {
  position: absolute;
  pointer-events: none;
  animation: floatSplat 5s var(--ease-in-out) infinite;
}

.floating-splat.s1 {
  top: 10%;
  right: 5%;
  width: 50px;
  animation-delay: 0s;
}

.floating-splat.s2 {
  bottom: 15%;
  left: 0%;
  width: 38px;
  animation-delay: 1.5s;
}

.floating-splat.s3 {
  top: 50%;
  right: -5%;
  width: 28px;
  animation-delay: 2.8s;
}

@keyframes floatSplat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  50% {
    transform: translate(10px, -14px) rotate(15deg);
  }
}

/* ============ SCROLL CUE ============ */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.scroll-cue-line {
  width: 1.5px;
  height: 40px;
  background: var(--ink);
  opacity: 0.3;
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mango);
  animation: scrollCue 2s var(--ease-in-out) infinite;
}

@keyframes scrollCue {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll-x 40s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: var(--font-serif);
  font-size: 48px;
  white-space: nowrap;
  font-style: italic;
}

.marquee-item span {
  color: var(--mango);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTIONS ============ */
.section {
  padding: 140px 40px;
  position: relative;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 80px;
}

@media (max-width: 860px) {
  .section-head {
    gap: 20px;
  }
}

.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mango-deep);
  letter-spacing: 0.15em;
}

.section-title {
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.02;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  color: var(--mango);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

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

.reveal.-d1 {
  transition-delay: .1s;
}

.reveal.-d2 {
  transition-delay: .2s;
}

.reveal.-d3 {
  transition-delay: .3s;
}

.reveal.-d4 {
  transition-delay: .4s;
}

/* ============ FRUITS STACK ============ */
.fruits {
  background: var(--cream);
}

.fruits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.fruit-card {
  position: relative;
  background: var(--cream-2);
  border-radius: 20px;
  padding: 32px 24px 28px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .5s var(--ease-spring), box-shadow .4s;
  cursor: pointer;
  border: 1px solid rgba(26, 18, 8, 0.06);
}

.fruit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 18, 8, 0.1);
}

.fruit-card:nth-child(1) {
  background: linear-gradient(135deg, #FFE4B8 0%, #FFECD0 100%);
}

.fruit-card:nth-child(2) {
  background: linear-gradient(135deg, #E8F3D4 0%, #F0F7E4 100%);
}

.fruit-card:nth-child(3) {
  background: linear-gradient(135deg, #FFD0A8 0%, #FFE0C0 100%);
}

.fruit-card:nth-child(4) {
  background: linear-gradient(135deg, #F5E6D3 0%, #FFF0E0 100%);
}

.fruit-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fruit-card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  position: relative;
}

.fruit-card-emoji {
  font-size: 120px;
  transition: transform .6s var(--ease-spring);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.fruit-card:hover .fruit-card-emoji {
  transform: scale(1.12) rotate(-6deg);
}

.fruit-card-name {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.fruit-card-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.fruit-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform .4s var(--ease-spring), background .3s;
}

.fruit-card:hover .fruit-card-arrow {
  transform: rotate(-45deg);
  background: var(--mango);
}

/* ============ AUTH MODAL ============ */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 11500;
  background: rgba(26, 18, 8, 0.75);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}

.auth-modal.-show {
  display: flex;
}

.auth-modal.-in {
  opacity: 1;
}

.auth-modal-inner {
  background: var(--cream);
  border-radius: 28px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
  transition: transform .5s var(--ease-spring);
  overflow: hidden;
}

.auth-modal.-in .auth-modal-inner {
  transform: translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: transform .3s var(--ease-spring), background .3s;
}

.auth-modal-close:hover {
  transform: rotate(90deg);
  background: var(--mango);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.auth-subtitle {
  font-size: 14px;
  color: var(--muted);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth-row input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(26, 18, 8, 0.12);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}

.auth-row input:focus {
  border-color: var(--mango);
  box-shadow: 0 0 0 3px rgba(245, 145, 33, 0.12);
}

.auth-submit {
  background: var(--mango);
  color: var(--ink);
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  transition: transform .4s var(--ease-spring), background .3s;
  box-shadow: 0 4px 14px rgba(245, 145, 33, 0.3);
}

.auth-submit:hover {
  background: var(--mango-deep);
  transform: scale(1.04);
}

.auth-divider {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 8px 0;
}

.auth-switch {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 14px;
  text-align: center;
  transition: color .3s;
  padding: 8px;
}

.auth-switch:hover {
  color: var(--mango);
}

.auth-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(26, 18, 8, 0.08);
  font-size: 15px;
  font-weight: 500;
  transition: transform .3s var(--ease-spring), background .3s, border-color .3s;
}

.auth-menu-item:hover {
  background: var(--cream-2);
  border-color: var(--mango);
  transform: translateX(4px);
}

.auth-menu-item svg {
  flex-shrink: 0;
}

.auth-logout {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: transform .4s var(--ease-spring), background .3s;
}

.auth-logout:hover {
  background: var(--mango);
  color: var(--ink);
  transform: scale(1.03);
}

/* ============ AUTH MODAL — SLIDING PANELS ============ */
/* Wrapper clips the sliding animation inside the modal */
.auth-modal-inner {
  overflow: hidden;
}

/* The horizontal slide track — all panels sit side by side */
.auth-slide-track {
  display: flex;
  width: 300%;
  /* 3 panels max */
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
  transform: translateZ(0);
  /* Hardware acceleration for Edge */
}

/* Each panel occupies 1/3 of the track (= full modal width) */
.auth-slide-panel {
  width: 33.333%;
  flex-shrink: 0;
  min-width: 0;
  padding: 48px 44px;
  /* Move padding here */
  box-sizing: border-box;
}

/* ── State classes applied to track via JS ── */
.auth-slide-track.-at-forgot {
  transform: translateX(-33.333%);
}

.auth-slide-track.-at-signup {
  transform: translateX(-66.666%);
}

/* default (.-at-login) = translateX(0) */

/* auth-msg feedback banners */
.auth-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  display: none;
}

.auth-msg.-error {
  background: rgba(220, 38, 38, .08);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, .2);
}

.auth-msg.-success {
  background: rgba(111, 168, 68, .1);
  color: #3d7217;
  border: 1px solid rgba(111, 168, 68, .25);
}


.fruit-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(26, 18, 8, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}

.fruit-modal.-show {
  display: flex;
}

.fruit-modal.-in {
  opacity: 1;
}

.fruit-modal-inner {
  background: var(--cream);
  border-radius: 32px;
  padding: 60px 56px;
  max-width: 720px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform .5s var(--ease-spring);
}

.fruit-modal.-in .fruit-modal-inner {
  transform: translateY(0);
}

.fruit-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: transform .3s var(--ease-spring), background .3s;
}

.fruit-modal-close:hover {
  transform: rotate(90deg);
  background: var(--mango);
}

.fruit-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 720px) {
  .fruit-modal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fruit-modal-inner {
    padding: 48px 36px;
  }
}

.fruit-modal-visual {
  aspect-ratio: 1;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(26, 18, 8, 0.06);
}

.fruit-modal-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.fruit-modal-visual .fruit-modal-emoji {
  display: block;
  font-size: clamp(140px, 18vw, 220px);
  line-height: 1;
  text-align: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.fruit-modal-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mango);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fruit-modal-name {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--ink);
}

.fruit-modal-origin {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}

.fruit-modal-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 28px;
}

.fruit-modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 18, 8, 0.1);
}

.fruit-spec dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.fruit-spec dd {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ============ PROCESS ============ */
.process {
  background: var(--ink);
  color: var(--cream);
  border-radius: 40px 40px 0 0;
}

.process .section-num {
  color: var(--mango);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 246, 230, 0.15);
}

@media (max-width: 860px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: 48px 32px;
  position: relative;
  border-right: 1px solid rgba(255, 246, 230, 0.15);
  transition: background .4s;
}

.process-step:last-child {
  border-right: none;
}

@media (max-width: 860px) {
  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 246, 230, 0.15);
  }
}

.process-step:hover {
  background: rgba(255, 246, 230, 0.04);
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mango);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.process-step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border: 1px solid rgba(255, 246, 230, 0.25);
  border-radius: 16px;
  transition: transform .5s var(--ease-spring), border-color .3s;
}

.process-step:hover .process-step-icon {
  transform: scale(1.1) rotate(-6deg);
  border-color: var(--mango);
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.process-step-body {
  font-size: 14px;
  color: rgba(255, 246, 230, 0.7);
  line-height: 1.6;
}

/* ============ PRODUCTS ============ */
.products {
  background: var(--cream);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.product {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-spring);
}

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

.product-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
}

.product-tag.-new {
  background: var(--leaf);
  color: var(--cream);
  border-color: var(--leaf);
}

.product-tag.-bestseller {
  background: var(--mango);
  color: var(--ink);
  border-color: var(--mango);
}

.product-visual {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--peach), var(--mango));
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease-out);
}

.product:nth-child(2) .product-visual {
  background: linear-gradient(135deg, #E8F3D4, var(--leaf));
}

.product:nth-child(3) .product-visual {
  background: linear-gradient(135deg, #FFE4B8, var(--mango-deep));
}

.product:nth-child(4) .product-visual {
  background: linear-gradient(135deg, #F5D3D3, #D96A6A);
}

.product:nth-child(5) .product-visual {
  background: linear-gradient(135deg, #E8D8F5, #8A5FB8);
}

.product:nth-child(6) .product-visual {
  background: linear-gradient(135deg, #FFF2D8, #D9A20C);
}

.product:hover .product-visual {
  transform: scale(1.02);
}

.product-visual-emoji {
  transition: transform .6s var(--ease-spring) .1s;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.product:hover .product-visual-emoji {
  transform: scale(1.15) rotate(8deg);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 24px;
}

.product-price span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.product-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-spring), background .3s;
}

.product-add:hover {
  transform: rotate(90deg);
  background: var(--mango);
  color: var(--ink);
}

/* ============ STORY ============ */
.story {
  background: var(--mango);
  color: var(--ink);
  padding: 160px 40px;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 860px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Gallery Container */
.story-gallery-wrap {
  position: relative;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 520px) {
  .story-gallery {
    grid-template-columns: 1fr;
  }
}

/* Gallery Items */
.story-media-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  transition: transform .5s var(--ease-spring), box-shadow .4s;
}

.story-media-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.story-media-item:not(:first-child) {
  aspect-ratio: 1;
}

.story-media-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(26, 18, 8, 0.25);
  z-index: 2;
}

.story-media-item img,
.story-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}

.story-media-item:hover img,
.story-media-item:hover video {
  transform: scale(1.06);
}

/* Video play overlay */
.story-media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 18, 8, 0.2);
  pointer-events: none;
  transition: background .3s;
}

.story-media-item:hover .story-media-play {
  background: rgba(26, 18, 8, 0.35);
}

.story-media-play svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform .4s var(--ease-spring);
}

.story-media-item:hover .story-media-play svg {
  transform: scale(1.15);
}

/* Caption overlay */
.story-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 12px;
  background: linear-gradient(transparent, rgba(26, 18, 8, 0.7));
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}

.story-media-item:hover .story-media-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Admin delete button */
.story-media-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.85);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  z-index: 3;
  backdrop-filter: blur(4px);
}

body.is-admin .story-media-delete {
  display: flex;
}

.story-media-item:hover .story-media-delete {
  opacity: 1;
}

.story-media-delete:hover {
  background: #dc2626;
  transform: scale(1.15);
}

/* Empty state */
.story-gallery-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: rgba(26, 18, 8, 0.06);
  border-radius: 24px;
  border: 2px dashed rgba(26, 18, 8, 0.15);
}

.story-gallery-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.story-gallery-empty-text {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}

/* Admin Upload FAB */
.story-upload-fab {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 18, 8, 0.35);
  transition: transform .4s var(--ease-spring), background .3s;
  z-index: 4;
}

.story-upload-fab:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--mango-deep, #D96A0C);
}

/* ============ STORY LIGHTBOX ============ */
.story-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(26, 18, 8, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.story-lightbox.-active {
  display: flex;
}

.story-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 246, 230, 0.1);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .3s, transform .3s;
}

.story-lightbox-close:hover {
  background: var(--mango);
  color: var(--ink);
  transform: rotate(90deg);
}

.story-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 246, 230, 0.1);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .3s, transform .3s;
}

.story-lightbox-nav:hover {
  background: var(--mango);
  color: var(--ink);
}

.story-lightbox-nav.-prev {
  left: 20px;
}

.story-lightbox-nav.-next {
  right: 20px;
}

.story-lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.story-lightbox-content video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.story-lightbox-caption {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 246, 230, 0.6);
}

/* ============ STORY UPLOAD MODAL ============ */
.story-upload-modal {
  position: fixed;
  inset: 0;
  z-index: 13000;
  background: rgba(26, 18, 8, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.story-upload-modal.-active {
  display: flex;
}

.story-upload-modal-inner {
  background: var(--cream, #fefdd7);
  border-radius: 28px;
  padding: 48px 44px;
  max-width: 520px;
  width: 92vw;
  position: relative;
  box-shadow: 0 20px 60px rgba(26, 18, 8, 0.25);
}

.story-upload-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(26, 18, 8, 0.1));
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.story-upload-modal-close:hover {
  background: rgba(26, 18, 8, 0.06);
}

.story-upload-modal-title {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 8px;
}

.story-upload-modal-sub {
  font-size: 14px;
  color: var(--muted, #888);
  margin-bottom: 28px;
}

.story-upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  border: 2px dashed rgba(26, 18, 8, 0.18);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  margin-bottom: 20px;
}

.story-upload-dropzone:hover,
.story-upload-dropzone.-dragover {
  border-color: var(--mango);
  background: rgba(245, 145, 33, 0.06);
}

.story-upload-dropzone-text {
  font-size: 15px;
  color: var(--ink-2);
}

.story-upload-dropzone-text span {
  color: var(--mango);
  font-weight: 600;
  text-decoration: underline;
}

.story-upload-dropzone-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted, #888);
  text-align: center;
}

.story-upload-queue {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.story-upload-queue-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(26, 18, 8, 0.05);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
}

.story-upload-queue-item .remove-file {
  cursor: pointer;
  color: #dc2626;
  font-weight: bold;
}

.story-upload-caption-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.story-upload-caption-row label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.story-upload-caption-row input {
  padding: 12px 16px;
  border: 1px solid rgba(26, 18, 8, 0.12);
  border-radius: 10px;
  font-size: 14px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}

.story-upload-caption-row input:focus {
  border-color: var(--mango);
}

.story-upload-submit {
  width: 100%;
  padding: 14px;
  background: var(--mango);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), opacity .3s;
}

.story-upload-submit:not(:disabled):hover {
  transform: scale(1.02);
}

.story-upload-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.story-upload-progress {
  margin-top: 16px;
  height: 4px;
  background: rgba(26, 18, 8, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.story-upload-progress-bar {
  height: 100%;
  background: var(--mango);
  border-radius: 4px;
  width: 0%;
  transition: width .3s ease;
}

.story-title {
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.02;
  margin-bottom: 40px;
}

.story-title em {
  font-style: italic;
}

.story-body {
  font-size: 18px;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}

.story-body p+p {
  margin-top: 16px;
}

.story-meta {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 18, 8, 0.2);
}

.story-meta-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
}

.story-meta-item span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin-top: 6px;
  display: block;
}

/* ============ CONTACT FORM ============ */
.contact-section {
  padding: 140px 40px;
  background: var(--cream);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 18, 8, 0.08);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 10px 40px rgba(26, 18, 8, 0.04);
  backdrop-filter: blur(10px);
}

@media (max-width: 720px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
}

.cf-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-row.-full {
  grid-column: 1 / -1;
}

.cf-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cf-row input,
.cf-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(26, 18, 8, 0.12);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}

.cf-row input:focus,
.cf-row textarea:focus {
  border-color: var(--mango);
  box-shadow: 0 0 0 3px rgba(245, 145, 33, 0.12);
}

.cf-row textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-sans);
}

.cf-submit {
  background: var(--mango);
  color: var(--ink);
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
  transition: transform .4s var(--ease-spring), background .3s;
  box-shadow: 0 4px 14px rgba(245, 145, 33, 0.3);
}

.cf-submit:hover {
  background: var(--mango-deep);
  transform: scale(1.04);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 140px 40px;
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.testi {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  transition: transform .5s var(--ease-spring), background .4s;
}

.testi:hover {
  transform: translateY(-6px);
  background: var(--cream-2);
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 32px;
}

.testi-quote::before {
  content: '“';
  font-size: 48px;
  color: var(--mango);
  line-height: 0;
  vertical-align: -12px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 20px;
}

.testi-avatar.-g {
  background: var(--leaf);
  color: var(--cream);
}

.testi-avatar.-d {
  background: var(--ink);
  color: var(--cream);
}

.testi-name {
  font-weight: 500;
  font-size: 14px;
}

.testi-role {
  font-size: 12px;
  color: var(--muted);
}

.testi-stars {
  margin-top: 16px;
  color: var(--mango);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============ NEWSLETTER ============ */
.nl {
  padding: 140px 40px;
  background: var(--cream);
}

.nl-inner {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 60px;
  border-radius: 36px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .nl-inner {
    grid-template-columns: 1fr;
    padding: 56px 32px;
  }
}

.nl-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--mango);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  top: -150px;
  right: -100px;
  animation: blobFloat 8s var(--ease-in-out) infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, 40px) scale(1.15);
  }
}

.nl-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  position: relative;
  z-index: 2;
}

.nl-title em {
  font-style: italic;
  color: var(--mango);
}

.nl-form {
  position: relative;
  z-index: 2;
}

.nl-form-sub {
  font-size: 14px;
  color: rgba(255, 246, 230, 0.7);
  margin-bottom: 24px;
}

.nl-input-row {
  display: flex;
  gap: 0;
  background: rgba(255, 246, 230, 0.08);
  border: 1px solid rgba(255, 246, 230, 0.2);
  border-radius: 999px;
  padding: 6px;
  align-items: center;
  transition: border-color .3s;
}

.nl-input-row:focus-within {
  border-color: var(--mango);
}

.nl-input-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 20px;
  color: var(--cream);
  font-size: 15px;
  font-family: var(--font-sans);
}

.nl-input-row input::placeholder {
  color: rgba(255, 246, 230, 0.4);
}

.nl-submit {
  background: var(--mango);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .3s var(--ease-spring);
}

.nl-submit:hover {
  transform: scale(1.04);
}

.nl-perks {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 246, 230, 0.6);
  flex-wrap: wrap;
}

.nl-perks li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nl-perks li::before {
  content: '✓';
  color: var(--leaf);
  font-size: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 40px 40px;
  border-top: 1px solid rgba(255, 246, 230, 0.1);
}

.footer-huge {
  font-family: var(--font-serif);
  font-size: clamp(100px, 18vw, 280px);
  line-height: 1;
  text-align: center;
  margin-bottom: 80px;
  font-style: italic;
  color: var(--mango);
  letter-spacing: -0.03em;
  position: relative;
  padding-bottom: 0.1em;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 246, 230, 0.1);
}

@media (max-width: 860px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-brand {}

.footer-brand-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand-logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
}

.footer-brand-body {
  font-size: 14px;
  color: rgba(255, 246, 230, 0.6);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  color: var(--mango);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a {
  font-size: 14px;
  color: rgba(255, 246, 230, 0.8);
  transition: color .2s;
}

.footer-col li a:hover {
  color: var(--mango);
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 246, 230, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ PAGE TRANSITION ============ */
.page-cover {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 1.1s var(--ease-in-out);
}

.page-cover.-out {
  transform: translateY(-105%);
}

.page-cover-logo {
  font-family: var(--font-serif);
  font-size: 96px;
  font-style: italic;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out) .1s, transform .6s var(--ease-out) .1s;
}

.page-cover.-show .page-cover-logo {
  opacity: 1;
  transform: translateY(0);
}

.page-cover.-out .page-cover-logo {
  opacity: 0;
  transform: translateY(-20px);
}

/* ============ UTILS ============ */
.split-char {
  display: inline-block;
  transform: translateY(120%);
  transition: transform .9s var(--ease-out);
  padding-bottom: 0.05em;
}

.split-char.-in {
  transform: translateY(0);
}

.split-wrap {
  padding-bottom: 0.18em !important;
  line-height: 1.05;
}