* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F6EAD8;
  --black: #17110A;
  --warm: #E8CFA6;
  --accent: #D96B32;
  --mid: #7A634B;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Arial Black', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}


/* ── NAV ── */

nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--black);
  text-decoration: none;
}

.brand-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.nav-logo span {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.5; }

.btn {
  display: inline-block;
  background: var(--black);
  color: white;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--accent);
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: white;
}

.btn-white {
  background: white;
  color: var(--black);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--black);
}


/* ── HERO ── */

.hero {
  min-height: 100vh;
  padding: 72px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -4px;
  text-transform: uppercase;
  max-width: 900px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--mid);
  max-width: 420px;
  margin-top: 32px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 80px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 40px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

/* ── FLOATING HERO KHAKHRA ── */

.hero-khakhra {
  position: absolute;
  width: 52%;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  filter: drop-shadow(0px 35px 35px rgba(0,0,0,.25));
  animation: khakhraFloat 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes khakhraFloat {
  0%, 100% { transform: translateY(-50%) rotate(-10deg); }
  50%       { transform: translateY(calc(-50% - 25px)) rotate(-10deg); }
}


/* ── MARQUEE ── */

.hero-marquee-wrap {
  background: var(--black);
  color: white;
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}

.hero-marquee {
  display: inline-block;
  animation: marquee 18s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── STATEMENT ── */

.statement {
  padding: 160px 60px;
  display: flex;
  justify-content: flex-end;
}

.statement-inner { max-width: 780px; }

.statement h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 0.95;
}

.statement h2 span { color: var(--accent); }

.statement p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 36px;
  max-width: 520px;
}


/* ── FLAVOURS ── */

.flavours {
  padding: 120px 60px;
  background: var(--black);
  color: white;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 24px;
}

.flavours-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.flavours-header h2 {
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  line-height: 0.92;
}

.flavours-header p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.flavour-card {
  background: #1a1a1a;
  padding: 35px 25px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.flavour-card:hover { background: #222; }
.flavour-card:hover .flavour-img { transform: scale(1.06) rotate(-3deg); }

.flavour-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.3;
  margin-bottom: 40px;
}

.flavour-img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  display: block;
  margin: 10px auto 50px;
  transition: transform 0.4s ease;
}

.flavour-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.flavour-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 8px;
}

.flavour-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.flavour-card:hover .flavour-bar { width: 100%; }


/* ── PROMISE ── */

.promise { padding: 160px 60px; }

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.promise-left h2 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 0.92;
}

.promise-left h2 em {
  font-style: normal;
  color: var(--accent);
}

.promise-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.pill {
  background: var(--black);
  color: white;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pill-outline {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
}

.promise-right { padding-top: 20px; }

.promise-item {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 36px 0;
}

.promise-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }

.promise-item-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--mid);
  margin-bottom: 12px;
}

.promise-item h3 {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.promise-item p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
}


/* ── CRUNCH STRIP ── */

.crunch-strip {
  background: var(--accent);
  padding: 100px 60px;
  text-align: center;
  color: white;
}

.crunch-strip h2 {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  line-height: 0.92;
}

.crunch-strip p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  margin-top: 28px;
  opacity: 0.85;
}

.crunch-strip .btn-white { margin-top: 48px; }


/* ── END / ORDER ── */

.end {
  min-height: 100vh;
  background: var(--black);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.end-bg-text {
  position: absolute;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -10px;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.end h2 {
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -5px;
  text-transform: uppercase;
  line-height: 0.9;
  position: relative;
  z-index: 1;
}

.end p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.end .btn {
  margin-top: 56px;
  font-size: 15px;
  padding: 18px 42px;
  position: relative;
  z-index: 1;
}


/* ── FOOTER ── */

footer {
  background: var(--black);
  color: rgba(255,255,255,0.3);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

footer a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}


/* ── ABOUT SPECIFIC ── */

.about-hero {
  min-height: 100vh;
  background: var(--black);
  color: white;
  padding: 72px 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.about-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.about-hero h1 {
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -6px;
  text-transform: uppercase;
  line-height: 0.88;
  max-width: 900px;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.about-hero-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  margin-top: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.about-hero-img {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.7;
}

.about-values { padding: 160px 60px; }
.about-values-header { margin-bottom: 100px; }

.about-values-header h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  line-height: 0.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.value-card {
  background: var(--warm);
  padding: 56px 40px;
}

.value-card:nth-child(2) { background: #ede0cc; }
.value-card:nth-child(3) { background: #e4d2b8; }

.value-icon {
  font-size: 40px;
  margin-bottom: 32px;
}

.value-card h3 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.value-card p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
}

.about-story {
  background: var(--black);
  color: white;
  padding: 160px 60px;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.about-story-sticky {
  position: sticky;
  top: 120px;
}

.about-story-sticky h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 0.92;
}

.about-story-text p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.about-story-text p strong {
  color: white;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
}

.about-story-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 48px 0;
}


/* ══════════════════════════════
   TABLET  (max 900px)
══════════════════════════════ */

@media (max-width: 900px) {

  nav {
    padding: 0 24px;
  }

  .nav-logo span {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 72px 24px 0;
  }

  .hero-headline {
    font-size: 60px;
    letter-spacing: -3px;
  }

  .hero-khakhra {
    width: 55%;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    animation: khakhraFloat 4s ease-in-out infinite;
  }

  .statement { padding: 100px 24px; }
  .flavours  { padding: 80px 24px; }

  .flavours-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .flavours-header p { text-align: left; }
  .flavour-grid { grid-template-columns: repeat(2, 1fr); }

  .promise { padding: 100px 24px; }
  .promise-grid { grid-template-columns: 1fr; gap: 60px; }

  .crunch-strip { padding: 80px 24px; }
  .end { padding: 100px 24px; }

  footer {
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about-hero { padding: 72px 24px 80px; }
  .about-hero-img { display: none; }
  .about-values { padding: 100px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-story { padding: 100px 24px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-story-sticky { position: static; }
  .hero-bottom { flex-wrap: wrap; gap: 32px; }
}


/* ══════════════════════════════
   MOBILE  (max 600px)
══════════════════════════════ */

@media (max-width: 600px) {

  /* NAV — stack logo + links */
  nav {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 10px;
  }

  .nav-logo span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .nav-links .btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  /* HERO — text on top, image faded below */
  .hero {
    min-height: 100vh;
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

  .hero-headline {
    font-size: 52px;
    letter-spacing: -2px;
    line-height: 0.95;
    position: relative;
    z-index: 2;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 15px;
    max-width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
  }

  /* Khakhra: bottom-right, mostly behind content, reduced opacity */
  .hero-khakhra {
    position: absolute;
    width: 90%;
    right: -30px;
    top: auto;
    bottom: 80px;
    transform: rotate(-12deg);
    opacity: 0.25;
    animation: none;
    z-index: 1;
    pointer-events: none;
  }

  /* Stats row: 2x2 grid */
  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-top: 40px;
    padding-top: 28px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
  }

  .hero-stat-num { font-size: 36px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 2px; }

  /* FLAVOURS */
  .flavours { padding: 60px 20px; }
  .flavours-header { margin-bottom: 40px; }
  .flavour-grid { grid-template-columns: 1fr; }
  .flavour-img { height: 260px; margin-bottom: 28px; }

  /* STATEMENT */
  .statement { padding: 80px 20px; }

  /* PROMISE */
  .promise { padding: 80px 20px; }
  .promise-grid { grid-template-columns: 1fr; gap: 40px; }
  .promise-pills { gap: 8px; }
  .pill { font-size: 10px; padding: 8px 16px; }

  /* CRUNCH STRIP */
  .crunch-strip { padding: 60px 20px; }

  /* END */
  .end { padding: 80px 20px; min-height: auto; }

  /* FOOTER */
  footer {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 10px;
  }

  /* ABOUT */
  .about-hero { padding: 80px 20px 60px; }
  .about-hero h1 { font-size: 52px; letter-spacing: -3px; }
  .about-hero-sub { font-size: 16px; }
  .about-values { padding: 60px 20px; }
  .about-values-header { margin-bottom: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 36px 24px; }
  .about-story { padding: 60px 20px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-story-sticky { position: static; }
  .about-story-text p { font-size: 16px; }
}
