/* ═══════════════════════════════════════════════════════════
   HOT DROPS — styles.css
   Brand: #e35812
═══════════════════════════════════════════════════════════ */

:root {
  --orange:  #e35812;
  --orange2: #ff6b1a;
  --dark:    #1a1a1a;   /* used only inside modal overlay */
  --cream:   #ffffff;
  --white:   #ffffff;
  --fd: 'Bebas Neue', sans-serif;
  --fs: 'DM Serif Display', serif;
  --fb: 'Montserrat', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
em, i { font-style:normal; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--fb);
  color: var(--dark);
  background: var(--orange);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:0 8%; height:64px;
  display:flex; align-items:center; justify-content:space-between;
  background:#ffffff;
  backdrop-filter:none;
  border-bottom:1px solid rgba(227,88,18,0.12);
  transition:background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background:#ffffff;
  box-shadow:0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo-link { text-decoration:none; }
.nav-logo-img  { height:36px; width:auto; display:block; }
.nav-cta {
  background:var(--orange); color:var(--white);
  font-family:var(--fb); font-size:11px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  padding:11px 22px; border-radius:100px;
  text-decoration:none; white-space:nowrap;
  transition:background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background:#c04010; transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(227,88,18,0.4);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height:100vh;
  background: linear-gradient(160deg, var(--orange2) 0%, var(--orange) 55%, #c04010 100%);
  position:relative; overflow:hidden;
  display:flex;
  align-items:center;
  padding:140px 8% 160px;
}
/* Photo fills right half — blends into orange on all edges */
.hero-photo {
  position:absolute; inset:0;
  background:url('images/feel_good_1.png') right center / cover no-repeat;
  -webkit-mask-image:
    radial-gradient(ellipse 55% 85% at 78% 50%, rgba(0,0,0,0.55) 15%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.1) 62%, transparent 80%);
  mask-image:
    radial-gradient(ellipse 55% 85% at 78% 50%, rgba(0,0,0,0.55) 15%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.1) 62%, transparent 80%);
  pointer-events:none; z-index:0;
}
/* fire depth + left warmth overlay */
.hero::before {
  content:'';
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to right, var(--orange) 28%, rgba(227,88,18,0.7) 50%, rgba(227,88,18,0.08) 75%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(100,15,0,0.4) 0%, transparent 55%);
  pointer-events:none;
}
.hero-content {
  max-width:540px; width:100%;
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:flex-start;
  text-align:left;
}

.hero-eyebrow {
  font-size:10px; font-weight:700; letter-spacing:5px; text-transform:uppercase;
  color:rgba(255,255,255,0.75); margin-bottom:18px;
  position:relative; z-index:2; opacity:0;
  animation:fadeUp 0.7s ease 0.2s forwards;
}
.hero-title {
  font-family:var(--fd);
  font-size:clamp(72px, 10.5vw, 152px);
  color:var(--white); letter-spacing:3px; line-height:0.88;
  position:relative; z-index:2; opacity:0;
  animation:fadeUp 0.7s ease 0.35s forwards;
}
.hero-title span { color:var(--white); }
.hero-subtitle {
  font-family:var(--fs); font-style:normal;
  font-size:clamp(18px, 2.2vw, 26px);
  color:rgba(255,255,255,0.75); margin-top:20px;
  position:relative; z-index:2; opacity:0;
  animation:fadeUp 0.7s ease 0.5s forwards;
}
.hero-desc {
  max-width:500px; font-size:15px; line-height:2;
  color:rgba(255,255,255,0.7); margin-top:18px;
  position:relative; z-index:2; opacity:0;
  animation:fadeUp 0.7s ease 0.65s forwards;
}
.hero-actions {
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:34px;
  position:relative; z-index:2; opacity:0;
  animation:fadeUp 0.7s ease 0.8s forwards;
}
.spots-counter {
  margin-top:26px;
  position:relative; z-index:2; opacity:0;
  animation:fadeUp 0.7s ease 0.95s forwards;
}
.spots-bar-wrap {
  width:200px; height:3px;
  background:rgba(255,255,255,0.18);
  border-radius:100px; margin:0 0 9px; overflow:hidden;
}
.spots-bar {
  height:100%; width:0%;
  background:rgba(255,255,255,0.65);
  transition:width 1s ease;
}
.spots-text {
  font-size:10px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(255,255,255,0.5);
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  background:rgba(0,0,0,0.22); color:var(--white);
  font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  padding:17px 34px; border-radius:100px;
  border:2px solid rgba(255,255,255,0.55);
  text-decoration:none; display:inline-block;
  transition:background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-primary:hover { background:rgba(0,0,0,0.4); border-color:var(--white); transform:translateY(-2px); }
.btn-secondary {
  background:transparent; color:var(--white);
  font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  padding:17px 34px; border-radius:100px;
  border:2px solid rgba(255,255,255,0.3);
  text-decoration:none; display:inline-block;
  transition:border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color:var(--white); background:rgba(255,255,255,0.1); }

/* ── MARQUEE ──────────────────────────────────────── */
.marquee-wrap {
  background:var(--white);
  padding:12px 0;
  overflow:hidden; white-space:nowrap; position:relative;
}
.marquee-pattern {
  position:absolute; inset:0;
  background-image:url('images/light_orange_bg_patten.svg');
  background-size:cover; background-repeat:no-repeat; background-position:center;
  opacity:0.18; pointer-events:none;
}
.marquee-track { display:inline-flex; animation:marquee 22s linear infinite; }
.marquee-item {
  font-family:var(--fd); font-size:clamp(13px, 1.5vw, 22px); letter-spacing:3px;
  color:var(--orange); padding:0 clamp(14px, 2vw, 32px);
}
.marquee-dot { color:rgba(227,88,18,0.3); font-size:9px; vertical-align:middle; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ── SECTION SHARED ───────────────────────────────── */
.section-eyebrow {
  font-size:10px; font-weight:700; letter-spacing:4px; text-transform:uppercase;
  color:var(--orange); margin-bottom:12px;
}
.section-eyebrow.light { color:rgba(255,255,255,0.65); }
.section-title {
  font-family:var(--fd); font-size:clamp(36px, 4.5vw, 58px);
  letter-spacing:2px; line-height:0.95; color:var(--dark);
}
.section-title.white { color:var(--white); }

/* ── ABOUT ────────────────────────────────────────── */
.about {
  background:var(--cream);
  position:relative; overflow:hidden;
  padding:28px 48px 60px;
}
.about-pattern {
  position:absolute; inset:0;
  background-image:url('images/light_orange_bg_patten.svg');
  background-size:cover; background-repeat:no-repeat; background-position:center;
  opacity:0.18; pointer-events:none;
}
.about-inner {
  max-width:1200px; margin:0 auto;
  position:relative; z-index:3;
  display:flex; flex-direction:column; gap:48px;
}
/* Top row: image left, text right */
.about-top {
  display:grid; grid-template-columns:420px 1fr; gap:52px;
  align-items:center;
}
.about-image-col {
  position:relative;
  display:flex; align-items:center; justify-content:center;
  padding:36px;
}

/* Spinning dashed ring */
.about-image-col::before {
  content:'';
  position:absolute;
  inset:10px;
  border-radius:50%;
  border:2.5px dashed rgba(227,88,18,0.35);
  animation:spinRing 18s linear infinite;
  pointer-events:none;
}
/* Solid orange glow ring */
.about-image-col::after {
  content:'';
  position:absolute;
  inset:26px;
  border-radius:50%;
  border:3px solid var(--orange);
  box-shadow:0 0 0 8px rgba(227,88,18,0.08), 0 0 40px rgba(227,88,18,0.2);
  pointer-events:none;
}
@keyframes spinRing {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

.about-img {
  width:82%; aspect-ratio:1/1;
  border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;
  object-fit:cover; object-position:center top;
  display:block;
  box-shadow:
    0 0 0 5px var(--white),
    0 0 0 9px var(--orange),
    0 24px 56px rgba(227,88,18,0.35);
  position:relative; z-index:1;
  transition:border-radius 0.6s ease;
}
.about-img:hover {
  border-radius:60% 40% 30% 70% / 60% 30% 70% 40%;
}
/* Product bottle — no crop, no blob shape */
.about-img-product {
  border-radius:0; aspect-ratio:unset; object-fit:contain;
  object-position:center; background:transparent;
  filter:drop-shadow(0 24px 48px rgba(227,88,18,0.2));
  width:70%; max-height:420px;
}
.about-img-product:hover { border-radius:0; }
.about-text-col { display:flex; flex-direction:column; }
.about-body { font-size:16.5px; line-height:2; color:rgba(26,10,0,0.55); margin-top:20px; }
.about-body p { margin-bottom:14px; }
.about-body p:last-child { margin-bottom:0; }
.about-body strong { color:var(--dark); font-weight:700; }
/* Stats row: 3 equal columns */
.about-stats {
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}

/* stat cards — vivid orange */
.stat-card {
  background:var(--orange); border-radius:18px; padding:26px 28px;
  transition:transform 0.2s;
}
.stat-card:hover { transform:translateY(-3px); }
.stat-number { font-family:var(--fd); font-size:60px; color:var(--white); letter-spacing:2px; line-height:1; }
.stat-label { font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,0.65); margin-top:5px; }

/* ── FEATURES ─────────────────────────────────────── */
.features {
  background:var(--orange);
  padding:28px 48px 60px;
  position:relative; overflow:hidden;
}
.features-pattern {
  position:absolute; inset:0;
  background-image:url('images/orange_bg_pattern.svg');
  background-size:cover; background-repeat:no-repeat; background-position:center;
  opacity:0.15; pointer-events:none;
}
.features::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%,   rgba(255,200,80,0.4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 50% 110%,  rgba(120,20,0,0.45) 0%, transparent 55%);
  pointer-events:none;
}
.features-inner { max-width:1200px; margin:0 auto; position:relative; z-index:3; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }

/* WHITE cards on vivid orange — premium contrast */
.feature-card {
  background:var(--white); border-radius:20px; padding:32px 26px;
  box-shadow:0 8px 40px rgba(0,0,0,0.14);
  display:flex; flex-direction:column;
  transition:transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(0,0,0,0.2); }
.feature-icon {
  width:52px; height:52px; background:var(--orange);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; flex-shrink:0;
}
.feature-icon svg { width:24px; height:24px; stroke:var(--white); color:var(--white); }
.feature-title { font-family:var(--fd); font-size:26px; letter-spacing:2px; color:var(--dark); margin-bottom:10px; }
.feature-body { font-size:15px; line-height:1.9; color:rgba(26,10,0,0.5); flex:1; }

/* ── HERITAGE ─────────────────────────────────────── */
/* Orange section — same hue as features, continuous warm band */
.heritage {
  background:var(--orange);
  padding:28px 48px 60px;
  position:relative; overflow:hidden;
}
.heritage::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%,  rgba(255,200,80,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 50%,  rgba(120,20,0,0.35) 0%, transparent 55%);
  pointer-events:none;
}
.heritage-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:center; position:relative; z-index:3;
}
.heritage-quote {
  font-family:var(--fs);
  font-size:clamp(24px,3vw,42px);
  color:var(--white); line-height:1.4; font-style:normal;
}
.heritage-quote em { color:rgba(255,255,255,0.5); }
/* Visual divider line between features and heritage */
.heritage {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.heritage-body { font-size:16.5px; line-height:2; color:rgba(255,255,255,0.8); margin-top:16px; }
.heritage-body p { margin-bottom:14px; }
.heritage-body p:last-child { margin-bottom:0; }
.heritage-body strong { color:var(--white); font-weight:700; }
.heritage-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.heritage-tag {
  background:rgba(255,255,255,0.2); border:1.5px solid rgba(255,255,255,0.4);
  border-radius:100px; padding:7px 16px;
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--white);
}

/* ── KIT ──────────────────────────────────────────── */
.kit {
  background:var(--cream);
  padding:28px 48px 60px;
  position:relative; overflow:hidden;
}
.kit-pattern {
  position:absolute; inset:0;
  background-image:url('images/light_orange_bg_patten.svg');
  background-size:cover; background-repeat:no-repeat; background-position:center;
  opacity:0.18; pointer-events:none;
}
.kit-inner { max-width:1200px; margin:0 auto; position:relative; z-index:3; }

/* Product mockup showcase */
.kit-mockups {
  display:flex; justify-content:center; align-items:flex-end;
  gap:60px; margin:48px 0 12px;
}
.kit-mockup-item {
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.kit-mockup-img {
  max-height:300px; max-width:100%; width:auto; object-fit:contain;
  filter:drop-shadow(0 24px 48px rgba(227,88,18,0.22));
  transition:transform 0.35s ease, filter 0.35s ease;
}
.kit-mockup-img:hover {
  transform:translateY(-10px) scale(1.03);
  filter:drop-shadow(0 36px 60px rgba(227,88,18,0.32));
}
.kit-mockup-label {
  font-family:var(--fd); font-size:12px; letter-spacing:3px;
  color:var(--orange); text-transform:uppercase;
}

.kit-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:48px; }

/* Kit cards — white with orange top border */
.kit-item {
  background:var(--white); border-radius:20px; padding:28px;
  display:flex; gap:18px; align-items:flex-start;
  border-top:4px solid var(--orange);
  box-shadow:0 3px 20px rgba(227,88,18,0.07);
  transition:transform 0.22s, box-shadow 0.22s;
}
.kit-item:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(227,88,18,0.14); }
.kit-item-icon {
  width:48px; height:48px; min-width:48px;
  background:rgba(227,88,18,0.1); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
}
.kit-item-icon svg { width:22px; height:22px; stroke:var(--orange); color:var(--orange); }
.kit-item-icon-img {
  width:72px; height:72px; min-width:72px;
  background:transparent; border-radius:0;
}
.kit-item-icon-img img {
  width:100%; height:100%; object-fit:contain;
  filter:drop-shadow(0 4px 12px rgba(227,88,18,0.22));
}
.kit-item-title { font-family:var(--fd); font-size:20px; letter-spacing:2px; color:var(--dark); margin-bottom:7px; }
.kit-item-body  { font-size:13px; line-height:1.8; color:rgba(26,10,0,0.48); }

/* Digital badge — orange background */
.kit-digital {
  background:var(--orange); border-radius:20px; padding:28px;
  display:flex; gap:18px; align-items:flex-start;
  box-shadow:0 8px 40px rgba(227,88,18,0.28);
  transition:transform 0.22s;
  margin-top:18px;
}
.kit-digital:hover { transform:translateY(-3px); }
.kit-digital-icon  { background:rgba(255,255,255,0.2) !important; }
.kit-digital-title { color:var(--white) !important; }
.kit-digital-body  { color:rgba(255,255,255,0.75) !important; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  background:var(--cream);
  padding:28px 0 50px;
  position:relative; overflow:hidden;
}
.testimonials-inner {
  max-width:1260px; margin:0 auto; padding:0 48px;
  position:relative; z-index:3;
}
.testimonials-inner .section-title { margin-bottom:12px; }
.testimonials-sub { font-size:16px; color:rgba(26,10,0,0.55); margin:0 0 36px; line-height:1.6; }
.testimonials-pattern {
  position:absolute; inset:0;
  background-image:url('images/light_orange_bg_patten.svg');
  background-size:cover; background-repeat:no-repeat; background-position:center;
  opacity:0.18; pointer-events:none;
}
.join-pattern {
  position:absolute; inset:0;
  background-image:url('images/light_orange_bg_patten.svg');
  background-size:cover; background-repeat:no-repeat; background-position:center;
  opacity:0.18; pointer-events:none;
}
/* Digital badge icon — transparent bg */
.kit-digital .kit-item-icon-img { background:transparent; }

/* ── CAROUSEL ─────────────────────────────────────── */
.carousel-wrap { display:flex; align-items:center; gap:16px; }
.carousel-viewport { flex:1; overflow:hidden; cursor:grab; }
.carousel-viewport:active { cursor:grabbing; }
.carousel-track {
  display:flex; gap:20px; align-items:stretch;
  transition:transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select:none;
}

/* Clean white cards on cream */
.testimonial-card {
  min-width:0; flex-shrink:0;
  background:var(--white);
  border-radius:18px; padding:32px 28px 28px;
  box-shadow:0 4px 24px rgba(227,88,18,0.1);
  position:relative;
  display:flex; flex-direction:column;
  transition:transform 0.25s, box-shadow 0.25s;
  border-top:4px solid var(--orange);
}
.testimonial-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(227,88,18,0.18); }

.tcard-stars  { font-size:14px; color:var(--orange); letter-spacing:2px; margin-bottom:16px; }
.tcard-quote  {
  font-family:var(--fb); font-size:14px; font-weight:400; line-height:1.75;
  color:#3d2010; font-style:normal;
  flex:1; margin-bottom:14px;
}
.tcard-footer { display:flex; align-items:center; gap:12px; }
.tcard-avatar {
  width:44px; height:44px; min-width:44px; border-radius:50%;
  background:var(--orange); color:var(--white);
  font-family:var(--fb); font-size:12px; font-weight:700; letter-spacing:0.5px;
  display:flex; align-items:center; justify-content:center;
}
.tcard-avatar-img {
  width:44px; height:44px; min-width:44px;
  border-radius:50%; object-fit:cover; object-position:top center;
  border:2px solid var(--orange);
  box-shadow:0 2px 10px rgba(227,88,18,0.25);
}
.tcard-name     { font-family:var(--fb); font-size:14px; font-weight:700; letter-spacing:0.5px; color:var(--orange); line-height:1; }
.tcard-location { font-family:var(--fb); font-size:12px; font-weight:400; font-style:italic; color:rgba(61,32,16,0.45); margin-top:4px; letter-spacing:0.5px; }

.carousel-btn {
  width:46px; height:46px; min-width:46px; border-radius:50%;
  background:var(--white); border:1.5px solid rgba(227,88,18,0.2);
  color:var(--orange); font-size:16px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s, transform 0.2s, box-shadow 0.2s; flex-shrink:0;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
}
.carousel-btn:hover { background:var(--orange); color:var(--white); transform:scale(1.06); }
.carousel-dots { display:flex; justify-content:center; gap:7px; margin-top:28px; }
.carousel-dot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(227,88,18,0.25); border:none; cursor:pointer;
  transition:background 0.2s, width 0.2s, border-radius 0.2s; padding:0;
}
.carousel-dot.active { background:var(--orange); width:22px; border-radius:4px; }

/* ── JOIN ─────────────────────────────────────────── */
.join {
  background:var(--cream);
  padding:56px 48px 72px;
  text-align:center; position:relative; overflow:hidden;
}
.join-inner { max-width:580px; margin:0 auto; position:relative; z-index:3; }
.join-eyebrow { color:var(--orange); margin-bottom:6px; }
.join-inner .section-title { margin-bottom:0; }

.spots-remaining {
  display:inline-flex; align-items:center; gap:9px;
  background:rgba(227,88,18,0.1); border:1px solid rgba(227,88,18,0.22);
  border-radius:100px; padding:8px 18px;
  margin:10px auto 0;
}
.spots-dot {
  width:8px; height:8px; min-width:8px; background:var(--orange);
  border-radius:50%; animation:blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }
.spots-remaining-text { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--orange); }

/* Price — block, stacked, centered */
.join-price {
  display:flex; align-items:baseline; justify-content:center;
  gap:4px; margin:10px 0 0;
}
.join-from     { font-family:var(--fb); font-size:14px; font-weight:500; color:rgba(227,88,18,0.65); letter-spacing:2px; text-transform:uppercase; align-self:center; margin-right:4px; }
.join-currency { font-family:var(--fd); font-size:28px; color:var(--orange); letter-spacing:2px; }
.join-amount   { font-family:var(--fd); font-size:72px; color:var(--orange); letter-spacing:4px; line-height:1; }

.join-desc { font-size:16px; line-height:1.6; color:rgba(26,10,0,0.5); margin:10px 0 20px; }
.join-form { display:flex; flex-direction:column; gap:12px; max-width:460px; margin:0 auto; }
.field-wrap { display:flex; flex-direction:column; gap:4px; }
.field-error {
  font-size:11px; font-weight:600; letter-spacing:0.5px;
  color:#e03a00; padding-left:4px;
  display:none;
}
.field-error.visible { display:block; animation:fadeUp 0.2s ease; }
.join-input {
  background:var(--white);
  border:2px solid rgba(227,88,18,0.45);
  border-radius:12px; padding:16px 18px;
  font-family:var(--fb); font-size:14px; color:var(--dark);
  outline:none; width:100%;
  transition:border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow:0 2px 14px rgba(227,88,18,0.1), inset 0 1px 3px rgba(227,88,18,0.04);
}
.join-input::placeholder { color:rgba(26,10,0,0.38); font-size:13px; }
.join-input:hover:not(:focus) { border-color:rgba(227,88,18,0.7); }
.join-input:focus {
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(227,88,18,0.15), 0 2px 14px rgba(227,88,18,0.12);
  background:#fffdf9;
}
.join-input.input-error { border-color:#e03a00; box-shadow:0 0 0 4px rgba(224,58,0,0.12); animation:shake 0.4s ease; }
@keyframes shake {
  0%,100%{transform:translateX(0);} 20%{transform:translateX(-6px);}
  40%{transform:translateX(6px);} 60%{transform:translateX(-3px);} 80%{transform:translateX(3px);}
}
.join-submit {
  background:var(--orange); color:var(--white);
  font-family:var(--fb); font-size:13px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  padding:18px; border-radius:12px; border:none;
  cursor:pointer; width:100%; margin-top:4px;
  transition:background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.join-submit:hover { background:#c04010; transform:translateY(-2px); box-shadow:0 10px 32px rgba(227,88,18,0.38); }
.join-note { font-size:11px; color:rgba(26,10,0,0.3); margin-top:8px; letter-spacing:0.8px; }

/* ── BACK TO TOP ─────────────────────────────────── */
#backToTop {
  position:fixed; bottom:28px; right:28px; z-index:300;
  width:46px; height:46px; border-radius:50%;
  background:var(--orange); color:var(--white);
  border:none; cursor:pointer; font-size:20px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(227,88,18,0.45);
  opacity:0; pointer-events:none;
  transform:translateY(12px);
  transition:opacity 0.3s, transform 0.3s;
}
#backToTop.visible { opacity:1; pointer-events:auto; transform:translateY(0); }
#backToTop:hover   { background:var(--orange2); transform:translateY(-3px); box-shadow:0 8px 28px rgba(227,88,18,0.55); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background:#1a1a1a;
  border-top:3px solid var(--orange);
  padding:56px 8% 32px;
}
.footer-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:48px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer-brand { display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.footer-logo-img {
  height:36px; width:auto; display:block;
  filter:brightness(0) invert(1);
  margin-left:0;
}
.footer-tagline {
  font-size:13px; font-weight:600; font-style:normal;
  letter-spacing:1.5px; color:rgba(255,255,255,0.7); line-height:1.7;
}
.footer-copy { font-size:11px; color:rgba(255,255,255,0.35); letter-spacing:0.5px; }
.footer-hashtags { font-size:11px; color:rgba(255,255,255,0.25); letter-spacing:0.8px; }

/* Column headings */
.footer-col-title {
  font-family:var(--fd); font-size:16px; letter-spacing:3px;
  color:var(--orange); margin-bottom:18px; text-transform:uppercase;
}

/* Contact list */
.footer-contact-list {
  list-style:none; display:flex; flex-direction:column; gap:14px;
}
.footer-contact-list li {
  display:flex; align-items:flex-start; gap:10px;
}
.fc-icon {
  width:32px; height:32px; min-width:32px;
  background:rgba(227,88,18,0.12); border-radius:8px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  margin-top:1px;
}
.fc-icon svg { width:15px; height:15px; stroke:var(--orange); }
.fc-icon svg[fill="currentColor"] { fill:var(--orange); stroke:none; }
.footer-contact-list a,
.footer-contact-list span {
  font-size:12.5px; color:rgba(255,255,255,0.6); line-height:1.6;
  text-decoration:none; transition:color 0.2s;
}
.footer-contact-list a:hover { color:var(--orange); }

/* Social links */
.footer-socials { display:flex; flex-direction:column; gap:10px; }
.social-link {
  display:flex; align-items:center; gap:12px;
  padding:10px 14px; border-radius:10px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  text-decoration:none; color:rgba(255,255,255,0.65);
  font-size:12.5px; font-weight:600; letter-spacing:0.5px;
  transition:background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link svg { width:17px; height:17px; stroke:rgba(255,255,255,0.5); flex-shrink:0; transition:stroke 0.2s; }
.social-link:hover { background:rgba(227,88,18,0.12); color:var(--orange); border-color:rgba(227,88,18,0.3); }
.social-link:hover svg { stroke:var(--orange); }

/* ── MODAL ────────────────────────────────────────── */
.modal-overlay {
  position:fixed; inset:0; background:rgba(180,50,0,0.72);
  backdrop-filter:blur(18px); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:24px; opacity:0; pointer-events:none;
  transition:opacity 0.3s;
}
.modal-overlay.active { opacity:1; pointer-events:all; }
.modal-card {
  background:linear-gradient(145deg, var(--orange2) 0%, var(--orange) 55%, #c04010 100%);
  border:none;
  border-top:4px solid rgba(255,255,255,0.5); border-radius:24px;
  padding:48px 44px 40px; max-width:480px; width:100%;
  text-align:center; position:relative;
  transform:scale(0.88) translateY(20px);
  transition:transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow:0 40px 80px rgba(0,0,0,0.55);
}
.modal-overlay.active .modal-card { transform:scale(1) translateY(0); }
.modal-card::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:50%; height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}
.modal-icon { font-size:48px; display:block; margin-bottom:14px; animation:bounceIn 0.6s ease 0.3s both; }
@keyframes bounceIn { 0%{transform:scale(0) rotate(-15deg);} 60%{transform:scale(1.2) rotate(5deg);} 100%{transform:scale(1) rotate(0);} }
.modal-badge {
  display:inline-block; background:rgba(255,255,255,0.2); border:1px solid rgba(255,255,255,0.35);
  border-radius:100px; padding:6px 16px; font-size:10px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--white); margin-bottom:20px;
}
.modal-title { font-family:var(--fd); font-size:clamp(42px,7vw,64px); color:var(--white); letter-spacing:4px; line-height:0.93; margin-bottom:16px; }
.modal-subtitle { font-family:var(--fs); font-size:18px; color:rgba(255,255,255,0.82); font-style:normal; margin-bottom:16px; }
.modal-body { font-size:13.5px; line-height:1.9; color:rgba(255,255,255,0.78); margin-bottom:26px; }
.modal-tags { display:flex; justify-content:center; gap:8px; margin-bottom:28px; flex-wrap:wrap; }
.modal-tag {
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3);
  border-radius:100px; padding:5px 14px; font-size:10px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--white);
}
.modal-close-btn {
  background:var(--white); color:var(--orange);
  font-family:var(--fb); font-size:13px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  padding:15px 38px; border-radius:100px; border:none; cursor:pointer;
  transition:background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.modal-close-btn:hover { background:var(--cream); transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,0.2); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* Tablet: card widths handled by JS */
@media (max-width:1023px) {
}

/* ≤ 900px */
@media (max-width:900px) {
  nav { padding:0 20px; }
  .nav-logo-link { position:absolute; left:50%; transform:translateX(-50%); }
  .nav-logo-img  { height:30px; }
  .nav-cta       { margin-left:auto; font-size:10px; padding:10px 14px; }

  .hero        { padding:120px 5% 160px; }
  .hero-photo  {
    background-position:92% center;
    background-size:150% auto;
    -webkit-mask-image:
      radial-gradient(ellipse 55% 80% at 92% 50%, rgba(0,0,0,0.55) 15%, rgba(0,0,0,0.32) 42%, rgba(0,0,0,0.08) 65%, transparent 82%);
    mask-image:
      radial-gradient(ellipse 55% 80% at 92% 50%, rgba(0,0,0,0.55) 15%, rgba(0,0,0,0.32) 42%, rgba(0,0,0,0.08) 65%, transparent 82%);
  }
  .hero::before {
    background:
      linear-gradient(to right, var(--orange) 28%, rgba(227,88,18,0.78) 50%, rgba(227,88,18,0.12) 72%, transparent 100%),
      radial-gradient(ellipse 70% 50% at 50% 110%, rgba(100,15,0,0.4) 0%, transparent 55%) !important;
  }
  .hero-content { max-width:55%; }
  .about       { padding:24px 24px 60px; }
  .features    { padding:24px 24px 60px; }
  .heritage    { padding:24px 24px 60px; }
  .kit         { padding:24px 24px 60px; }
  .testimonials{ padding:24px 0 100px; }
  .join        { padding:60px 24px 80px; }

  .about-top      { grid-template-columns:1fr; gap:28px; }
  .about-image-col { max-width:320px; margin:0 auto; }
  .about-stats    { grid-template-columns:1fr; gap:14px; }
  .features-grid  { grid-template-columns:1fr; gap:16px; }
  .heritage-inner { grid-template-columns:1fr; gap:32px; }
  .kit-grid       { grid-template-columns:1fr; }
  .kit-mockups    { flex-direction:column; align-items:center; gap:36px; }
  .kit-mockup-img { max-height:220px; width:auto; max-width:60vw; }

  .kit-item    { flex-direction:column; align-items:flex-start; gap:14px; padding:22px; }
  .kit-digital { flex-direction:column; gap:14px; }

  .testimonials-inner { padding:0 24px; }

  footer { padding:40px 24px 24px; }
  .footer-inner { grid-template-columns:1fr; gap:36px; }
}

/* ≤ 639px */
@media (max-width:639px) {
  .carousel-btn      { display:none; }
  .carousel-wrap     { gap:0; }
  .testimonials-inner { padding:0 16px; }
  .carousel-viewport  { padding:0; }
  .testimonial-card  { padding:28px 22px 24px; }
  .tcard-stars  { font-size:14px; }
  .tcard-quote  { font-size:14px; }
  .tcard-name   { font-size:14px; }
  .tcard-location { font-size:12px; }
  .carousel-dots     { margin-top:18px; }
  .carousel-dot      { width:9px; height:9px; }
  .carousel-dot.active { width:24px; }
}

/* ≤ 480px */
@media (max-width:480px) {
  .nav-cta { display:none; }
  nav { justify-content:center; }
  .nav-logo-link { position:static; transform:none; }

  .hero-title { font-size:clamp(44px, 14vw, 72px); }
  .hero-content { max-width:58%; }
  .hero-subtitle { font-size:clamp(13px, 3.5vw, 18px); }
  .hero-desc { font-size:13px; line-height:1.8; }
  .hero-photo {
    background-position:calc(100% + 100px) 25%;
    background-size:220% auto;
    -webkit-mask-image: linear-gradient(to right, transparent 30%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.75) 100%);
    mask-image: linear-gradient(to right, transparent 30%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.75) 100%);
  }
  .btn-primary, .btn-secondary { padding:14px 20px; font-size:11px; }

  .about, .features, .heritage, .kit { padding-left:16px; padding-right:16px; }

  .join-amount { font-size:78px; }
  .join { padding:60px 16px 80px; }

  .modal-card { padding:36px 18px 32px; }
  .modal-title { font-size:clamp(36px, 12vw, 52px); }
  /* marquee handled by clamp() */
  .stat-number { font-size:50px; }
}

/* ── FLOATING CTA ─────────────────────────────────────────── */
.fab-wrap {
  position:fixed; bottom:90px; right:8px; z-index:400;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}

/* Main trigger — true teardrop: square + one sharp corner + rotate */
.fab-main {
  width:54px; height:54px;
  border-radius: 8% 50% 50% 50%;
  background:linear-gradient(135deg, #b84010 0%, var(--orange) 50%, #ff7a2e 100%);
  border:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:
    0 8px 24px rgba(227,88,18,0.65),
    0 0 0 4px rgba(227,88,18,0.18),
    inset 0 2px 0 rgba(255,255,255,0.22);
  transform:rotate(45deg);
  transition:transform 0.25s, box-shadow 0.25s;
  position:relative; z-index:2; flex-shrink:0;
}
/* Counter-rotate icon so it stays upright */
.fab-main svg { width:22px; height:22px; stroke:var(--white); transform:rotate(-45deg); }
.fab-main:hover {
  transform:rotate(45deg) scale(1.08) translateY(-2px);
  box-shadow:0 14px 36px rgba(227,88,18,0.8), 0 0 0 6px rgba(227,88,18,0.15), inset 0 2px 0 rgba(255,255,255,0.22);
}

/* Outer glow pulses */
.fab-main::before {
  content:'';
  position:absolute; inset:-10px;
  border-radius:8% 50% 50% 50%;
  background:rgba(227,88,18,0.22);
  animation:fabPulse 2.4s ease-in-out infinite;
  pointer-events:none;
}
.fab-main::after {
  content:'';
  position:absolute; inset:-22px;
  border-radius:8% 50% 50% 50%;
  background:rgba(227,88,18,0.08);
  animation:fabPulse 2.4s ease-in-out 0.8s infinite;
  pointer-events:none;
}
@keyframes fabPulse {
  0%,100% { transform:scale(1); opacity:1; }
  60%      { transform:scale(1.4); opacity:0; }
}

/* Hide/show the two icon states */
.fab-icon { position:absolute; display:flex; align-items:center; justify-content:center;
  transition:opacity 0.22s, transform 0.22s; }
/* Icons always counter-rotate to stay upright inside the rotated drop */
.fab-icon svg { transform:rotate(-45deg) !important; }
.fab-icon-close { opacity:0; transform:scale(0.5); }
.fab-wrap.open .fab-icon-open  { opacity:0; transform:scale(0.5); }
.fab-wrap.open .fab-icon-close { opacity:1; transform:scale(1); }
.fab-wrap.open .fab-main { transform:rotate(45deg) scale(1); }
.fab-wrap.open .fab-main::before,
.fab-wrap.open .fab-main::after { animation:none; opacity:0; }

/* Option buttons container */
.fab-options {
  display:flex; flex-direction:column; align-items:center; gap:10px;
  pointer-events:none;
}

/* Individual option button */
.fab-option {
  display:flex; align-items:center; gap:10px;
  padding:10px 16px 10px 12px;
  border-radius:100px;
  text-decoration:none; color:var(--white);
  font-family:var(--fb); font-size:12px; font-weight:700; letter-spacing:1px;
  white-space:nowrap;
  box-shadow:0 4px 18px rgba(0,0,0,0.22);
  opacity:0; transform:translateY(14px) scale(0.9);
  transition:opacity 0.22s, transform 0.22s, background 0.2s, box-shadow 0.2s;
  pointer-events:none;
}
.fab-option svg { width:20px; height:20px; flex-shrink:0; }
.fab-whatsapp { background:#25d366; }
.fab-whatsapp svg { fill:var(--white); stroke:none; }
.fab-whatsapp:hover { background:#1ebe5c; box-shadow:0 8px 28px rgba(37,211,102,0.45); transform:translateY(-2px) scale(1.03); }
.fab-call { background:var(--orange); }
.fab-call:hover { background:#c04010; box-shadow:0 8px 28px rgba(227,88,18,0.45); transform:translateY(-2px) scale(1.03); }

/* Open state — options slide in */
.fab-wrap.open .fab-options { pointer-events:auto; }
.fab-wrap.open .fab-option  { opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.fab-wrap.open .fab-call    { transition-delay:0.05s; }
.fab-wrap.open .fab-whatsapp{ transition-delay:0.1s; }

/* Close: reverse order */
.fab-wrap:not(.open) .fab-whatsapp { transition-delay:0s; }
.fab-wrap:not(.open) .fab-call     { transition-delay:0.06s; }

@media (max-width:480px) {
  .fab-wrap { bottom:84px; right:4px; }
  .fab-main { width:48px; height:48px; }
  .fab-option { font-size:11px; padding:9px 14px 9px 10px; }
  .fab-option svg { width:18px; height:18px; }
}
