/* ================================================================
   MINUS GROCERY — World-Class Stylesheet
   Design direction: Editorial Luxury Food Brand
   Fonts: Syne (headings) + Bricolage Grotesque (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --cream:     #FAFAF8;
  --white:     #FFFFFF;
  --ink:       #0A0A0A;
  --charcoal:  #1E1E1E;
  --mid:       #3D3D3D;
  --muted:     #7A7A72;
  --border:    #E8E4DC;
  --teal:      #09B5C4;
  --teal-dk:   #0693A0;
  --teal-lt:   #E0F7FA;
  --orange:    #FF4E1E;
  --gold:      #E8C155;
  --dark-bg:   #0D1117;
  --dark-card: #161B22;
  --dark-border: rgba(255,255,255,0.07);

  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Bricolage Grotesque', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: none; }

/* ── Custom Cursor ─────────────────────────────────────────────── */
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: transform;
}
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.2s, opacity 0.2s;
  will-change: transform;
  opacity: 0.6;
}
body.cursor-hover #cursor-dot  { width: 12px; height: 12px; background: var(--orange); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--orange); opacity: 0.35; }

/* ── Grain Overlay ─────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

/* ── Preloader ─────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark-bg);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner {
  text-align: center;
}
.preloader-word {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  display: flex;
  gap: 0.04em;
  overflow: hidden;
}
.preloader-letter {
  display: inline-block;
  transform: translateY(110%);
  animation: letterUp 0.5s var(--ease-out) forwards;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.preloader-letter.filled { color: var(--white); -webkit-text-stroke: none; }
.preloader-letter:nth-child(1) { animation-delay: 0.0s; }
.preloader-letter:nth-child(2) { animation-delay: 0.07s; }
.preloader-letter:nth-child(3) { animation-delay: 0.14s; }
.preloader-letter:nth-child(4) { animation-delay: 0.21s; }
.preloader-letter:nth-child(5) { animation-delay: 0.28s; }
.preloader-bar {
  height: 2px;
  background: var(--dark-card);
  border-radius: 2px;
  margin-top: 2rem;
  overflow: hidden;
}
.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--teal);
  border-radius: 2px;
  animation: progress 1.4s var(--ease-out) 0.3s forwards;
}
@keyframes letterUp {
  to { transform: translateY(0); }
}
@keyframes progress {
  to { width: 100%; }
}

/* ── Layout Helpers ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── Scroll Reveal ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ── NAVIGATION ────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.4rem 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  padding: 0.9rem 0;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.25s;
}
.nav-call:hover { background: var(--charcoal); transform: translateY(-1px); }
.nav-call-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;} 50%{opacity:0.3;}
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 800;
  padding: 6rem 2rem 3rem;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Dot grid bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9,181,196,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-left {
  padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2rem, 5vw, 5rem) clamp(1.25rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.hero-eyebrow-badge {
  background: var(--teal-lt);
  color: var(--teal-dk);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.hero-eyebrow-line {
  width: 40px; height: 1.5px;
  background: var(--teal);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.8rem;
  color: var(--ink);
}
.hero-title .line-wrap { overflow: hidden; display: block; }
.hero-title .line-inner { display: block; }
.hero-title .t-teal { color: var(--teal); }
.hero-title .t-outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn-cta:hover { transform: translateY(-2px); }
.btn-cta-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10,10,10,0.2);
}
.btn-cta-primary:hover { box-shadow: 0 12px 32px rgba(10,10,10,0.25); }
.btn-cta-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--mid);
}
.btn-cta-ghost:hover { border-color: var(--ink); color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-n {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.hero-stat-n em { color: var(--teal); font-style: normal; }
.hero-stat-l {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.3rem;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem 3rem 1rem;
  position: relative;
}
.hero-right img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 60px rgba(9,181,196,0.15));
  animation: heroFloat 5s var(--ease-in-out) infinite;
}
@keyframes heroFloat {
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-14px) rotate(0.5deg);}
}

/* Decorative corner accent */
.hero-right::before {
  content: '';
  position: absolute;
  top: 20%; right: 8%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,181,196,0.08) 0%, transparent 70%);
}

/* ── TICKER ────────────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  animation: tickerScroll 22s linear infinite;
  width: max-content;
  padding: 1rem 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.ticker-item .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}
.ticker-item.highlight { color: var(--teal); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BENTO GRID ────────────────────────────────────────────────── */
.bento { background: var(--cream); }
.bento-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.bento-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 460px;
}
.bento-title span { color: var(--teal); }
.bento-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(80px, auto);
  gap: 1rem;
}
.bento-card {
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }

/* Cells */
.bc-1 { grid-column: span 5; grid-row: span 4; background: var(--ink); color: var(--white); }
.bc-2 { grid-column: span 4; grid-row: span 2; background: var(--teal); color: var(--white); }
.bc-3 { grid-column: span 3; grid-row: span 2; background: var(--gold); color: var(--ink); }
.bc-4 { grid-column: span 4; grid-row: span 2; background: var(--white); border: 1.5px solid var(--border); }
.bc-5 { grid-column: span 3; grid-row: span 2; background: var(--orange); color: var(--white); }
.bc-6 { grid-column: span 4; grid-row: span 2; background: var(--teal-lt); color: var(--teal-dk); }
.bc-7 { grid-column: span 3; grid-row: span 2; background: var(--ink); color: var(--white); }

.bento-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1.2rem;
}
.bento-card-number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.bento-card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.8rem;
  opacity: 0.75;
}
.bento-card-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.bento-card-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  display: block;
}
.bento-card-big-icon {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 5rem;
  opacity: 0.12;
  line-height: 1;
}
.bc-1 .bento-card-big-icon { font-size: 8rem; bottom: -1rem; right: -1rem; opacity: 0.06; }

/* ── CATEGORIES / HORIZONTAL SCROLL ───────────────────────────── */
.cat-section { background: var(--white); overflow: hidden; }
.cat-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.cat-scroll-wrap {
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cat-scroll-wrap::-webkit-scrollbar { height: 4px; }
.cat-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.cat-scroll-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.cat-scroll-inner {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 0.25rem;
}
.cat-card {
  width: 220px;
  flex-shrink: 0;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  background: var(--cream);
  padding: 1.8rem 1.5rem;
  transition: all 0.35s var(--ease-out);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,181,196,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9,181,196,0.1);
}
.cat-card:hover::after { opacity: 1; }
.cat-card-em { font-size: 2.5rem; margin-bottom: 1.2rem; }
.cat-card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cat-card-count {
  font-size: 0.76rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.cat-card-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* Drag instruction */
.drag-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
}
.drag-hint-icon { font-size: 0.9rem; animation: slideX 1.5s ease-in-out infinite; }
@keyframes slideX { 0%,100%{transform:translateX(0);} 50%{transform:translateX(6px);} }

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.about-section {
  background: var(--dark-bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,181,196,0.06) 0%, transparent 70%);
}
.about-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,193,85,0.05) 0%, transparent 70%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-left-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.about-left-label::before { content:''; width:24px; height:1.5px; background:var(--teal); }
.about-big-text {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}
.about-big-text em { color: var(--teal); font-style: normal; display: block; }
.about-body {
  color: rgba(255,255,255,0.55);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.about-founders {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.founder-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.2rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  transition: border-color 0.25s;
}
.founder-pill:hover { border-color: rgba(9,181,196,0.3); }
.founder-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.founder-avatar.c { background: rgba(9,181,196,0.12); }
.founder-avatar.k { background: rgba(232,193,85,0.12); }
.founder-name { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.founder-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.about-stat-card:hover { border-color: rgba(9,181,196,0.3); transform: translateY(-3px); }
.about-stat-card:first-child {
  grid-column: span 2;
  background: rgba(9,181,196,0.06);
  border-color: rgba(9,181,196,0.15);
}
.asc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.8rem; }
.asc-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 0.9;
}
.asc-number span { color: var(--teal); }
.asc-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 0.6rem; line-height: 1.5; }
.asc-number-sm {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.9;
}
.asc-number-sm span { color: var(--gold); }

/* ── LOCATIONS ─────────────────────────────────────────────────── */
.locations-section { background: var(--cream); }
.locations-header { margin-bottom: 3rem; }
.section-tag-line {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-tag-line::before { content:''; width:20px; height:1.5px; background:var(--teal); }
.section-big-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.section-big-title span { color: var(--teal); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.loc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.loc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
  border-color: var(--teal);
}
.loc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.loc-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  background: var(--teal-lt);
  color: var(--teal-dk);
}
.loc-badge.flagship { background: rgba(232,193,85,0.15); color: #9A6E00; }
.loc-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.loc-city {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.loc-address {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.loc-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s;
}
.loc-phone:hover { gap: 0.8rem; }

/* ── DELIVERY ──────────────────────────────────────────────────── */
.delivery-section {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}
.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.delivery-tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}
.delivery-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.delivery-headline em { font-style: normal; display: block; opacity: 0.5; }
.delivery-zones {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.zone-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}
.zone-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--white); }
.delivery-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.delivery-feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.25s;
}
.delivery-feature:hover { background: rgba(255,255,255,0.14); }
.delivery-feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.delivery-feature-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.delivery-feature-desc { font-size: 0.78rem; opacity: 0.65; line-height: 1.5; }

/* ── BRANDS ────────────────────────────────────────────────────── */
.brands-section {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.brand-chip {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.brand-chip:hover { border-color: var(--teal); color: var(--teal-dk); background: var(--teal-lt); }
.brand-chip.featured { background: var(--teal-lt); border-color: var(--teal); color: var(--teal-dk); }

/* ── INSTAGRAM ─────────────────────────────────────────────────── */
.insta-section { background: var(--cream); }
.insta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  text-decoration: none;
}
.insta-tile:hover { transform: scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.insta-tile:nth-child(1) { background: linear-gradient(135deg,#E0F7FA,#B2EBF2); }
.insta-tile:nth-child(2) { background: linear-gradient(135deg,#FFF3E0,#FFE0B2); }
.insta-tile:nth-child(3) { background: linear-gradient(135deg,#E8F5E9,#C8E6C9); }
.insta-tile:nth-child(4) { background: linear-gradient(135deg,#FCE4EC,#F8BBD9); }
.insta-tile-em { font-size: 3rem; }
.insta-tile-label { font-size: 0.72rem; font-weight: 700; color: var(--mid); margin-top: 0.6rem; }
.insta-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  border-radius: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.insta-tile:hover .insta-tile-overlay { opacity: 1; }

/* ── BIG CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(9,181,196,0.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.cta-headline em { color: var(--teal); font-style: normal; }
.cta-sub {
  color: rgba(255,255,255,0.45);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(9,181,196,0.25);
}
.btn-cta-teal:hover { box-shadow: 0 14px 40px rgba(9,181,196,0.35); }
.btn-cta-outline-white {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  background: transparent;
}
.btn-cta-outline-white:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}
.footer-col-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-contact-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}
.footer-contact-icon { font-size: 0.9rem; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.65; }
.footer-contact-text a { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-contact-text a:hover { color: var(--teal); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.55); }

/* ── SCROLL-TO-TOP + FLOAT ─────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 42px; height: 42px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); background: var(--charcoal); }
.whatsapp-btn {
  position: fixed; bottom: 5.2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  transition: transform 0.3s var(--ease-out);
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.12); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width:1024px) {
  .bento-grid { grid-template-columns: repeat(6,1fr); }
  .bc-1{grid-column:span 3;grid-row:span 3;}
  .bc-2{grid-column:span 3;grid-row:span 2;}
  .bc-3{grid-column:span 2;grid-row:span 2;}
  .bc-4{grid-column:span 2;grid-row:span 2;}
  .bc-5{grid-column:span 2;grid-row:span 2;}
  .bc-6{grid-column:span 3;grid-row:span 2;}
  .bc-7{grid-column:span 3;grid-row:span 2;}
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  body { cursor: auto; }
  #cursor-dot,#cursor-ring { display: none; }
  .hero { grid-template-columns: 1fr; min-height: unset; padding-bottom: 3rem; }
  .hero-right { padding: 2rem 1.25rem; }
  .hero-right img { max-width: 360px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .delivery-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7 { grid-column: span 1; grid-row: span 1; }
  .bc-1 { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .about-right { grid-template-columns: 1fr; }
  .cta-headline { font-size: clamp(2.2rem,10vw,3.5rem); }
}
