/* SHISHA DELIVERY — Premium Central London Brand System */
:root {
  --ink: #070605;
  --ink-soft: #12100e;
  --ink-raised: #1a1714;
  --gold: #c6a45a;
  --gold-bright: #e4c878;
  --gold-deep: #8f7335;
  --cream: #f3ebe0;
  --cream-mute: #b8aea0;
  --smoke: rgba(198, 164, 90, 0.12);
  --line: rgba(243, 235, 224, 0.1);
  --line-gold: rgba(198, 164, 90, 0.45);
  --danger: #c45c4a;
  --ok: #6f9e7a;
  --radius: 2px;
  --max: 1180px;
  --nav-h: 84px;
  --age: #e11d2e;
  --wa: #25d366;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(198, 164, 90, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(120, 40, 30, 0.06), transparent 50%),
    linear-gradient(180deg, #070605 0%, #0b0908 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
}

.script {
  font-family: "Parisienne", cursive;
  font-weight: 400;
  color: var(--gold-bright);
  letter-spacing: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container-wide {
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ——— NAV ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(7, 6, 5, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  min-width: 0;
  padding-block: 0.35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-copy span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
  white-space: nowrap;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav-cta .btn-ghost {
  display: none; /* Call lives in drawer / phone link */
}

.nav-cta .btn-gold {
  padding: 0.75rem 1.25rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--line-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  background: linear-gradient(145deg, rgba(198, 164, 90, 0.15), transparent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.65rem);
  list-style: none;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  padding-inline: 0.75rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-mute);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-phone {
  display: none !important; /* phone lives in drawer Call + footer — keeps header breathing */
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-drawer {
  display: none;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #120f0b;
  box-shadow: 0 10px 30px rgba(198, 164, 90, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 14px 36px rgba(198, 164, 90, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-gold);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-soft {
  background: var(--ink-raised);
  border-color: var(--line);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 5.5rem;
  overflow: hidden;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #070605;
}

.hero-media img,
.hero-media video,
.hero-video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.hero--video .hero-video-wrap {
  transform: scale(1.06);
  animation: heroVideoDrift 28s ease-in-out infinite alternate;
}

.hero-media img:not(.hero-fallback) {
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.88) 0%, rgba(7, 6, 5, 0.55) 48%, rgba(7, 6, 5, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.35) 0%, rgba(7, 6, 5, 0.15) 35%, rgba(7, 6, 5, 0.95) 100%);
}

.hero--video .hero-media::after {
  background:
    linear-gradient(105deg, rgba(7, 6, 5, 0.78) 0%, rgba(7, 6, 5, 0.45) 40%, rgba(7, 6, 5, 0.2) 70%, rgba(7, 6, 5, 0.4) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.25) 0%, rgba(7, 6, 5, 0.05) 45%, rgba(7, 6, 5, 0.85) 100%);
}

.hero-video-wrap .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: none;
  animation: none;
  /* no CSS filter — filters can freeze video on some browsers */
  filter: none;
}

.hero-play-btn {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(7, 6, 5, 0.82);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-play-btn.is-visible {
  display: inline-flex;
}

.hero-play-btn i {
  color: var(--gold);
}

.hero-play-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 720px;
  padding-bottom: 0.5rem;
}

.hero--video .hero-inner {
  margin-left: max(1.25rem, calc((100% - min(100% - 2.5rem, var(--max))) / 2));
  margin-right: auto;
}

.hero-brand {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.85rem;
  animation: riseIn 0.9s var(--ease) both;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
}

.hero-brand em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-brand {
  font-size: clamp(2.1rem, 5.5vw, 4.2rem);
}

.hero-tag {
  font-family: "Parisienne", cursive;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  animation: riseIn 0.9s 0.1s var(--ease) both;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--cream-mute);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  animation: riseIn 0.9s 0.18s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  animation: riseIn 0.9s 0.26s var(--ease) both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  animation: riseIn 0.9s 0.34s var(--ease) both;
}

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero .hero-media img {
  animation: none;
  transform: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--cream-mute);
  max-width: 38rem;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* ——— SECTIONS ——— */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section-tight {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.65), rgba(7, 6, 5, 0.2));
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--cream-mute);
  font-size: 1.05rem;
}

/* ——— SPLIT ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-visual {
  position: relative;
}

.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-visual::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--line-gold);
  z-index: -1;
  opacity: 0.7;
}

.split-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--cream-mute);
  margin-bottom: 1rem;
}

.split-copy p + .btn,
.split-copy .btn-row {
  margin-top: 1.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— STEPS (no cards) ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-gold);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.25rem 0 1rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--cream-mute);
  font-size: 0.95rem;
}

/* ——— MENU / ORDER ITEMS ——— */
.menu-band {
  display: grid;
  gap: 1.25rem;
}

.pkg-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(18, 16, 14, 0.55);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
  cursor: pointer;
}

.pkg-row:hover,
.pkg-row.is-selected {
  border-color: var(--line-gold);
  background: rgba(198, 164, 90, 0.06);
}

.pkg-row.is-selected {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.pkg-row img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.pkg-row h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.pkg-row .price {
  font-family: "Syne", sans-serif;
  font-size: 1.85rem;
  color: var(--gold);
  font-weight: 700;
}

.pkg-row ul {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.35rem;
}

.pkg-row li {
  font-size: 0.9rem;
  color: var(--cream-mute);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pkg-row li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.45rem;
}

.pkg-row .pkg-cta {
  align-self: end;
}

.pkg-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #120f0b;
  background: var(--gold);
  padding: 0.25rem 0.55rem;
  margin-bottom: 0.5rem;
}

/* Flavour menu — editorial rows, not a stacked collage */
.flavour-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.flavour-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.flavour-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.flavour-row h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.flavour-row p {
  color: var(--cream-mute);
  font-size: 0.95rem;
  max-width: 36rem;
}

.flavour-row .flavour-meta {
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.flavour-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.flavour-featured img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .flavour-row {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
  }
  .flavour-row .flavour-meta {
    grid-column: 2;
    text-align: left;
    margin-top: 0.35rem;
  }
  .flavour-featured {
    grid-template-columns: 1fr;
  }
}

/* Feature strip — not card clutter */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-item {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  display: block;
}

.feature-item strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.feature-item span {
  font-size: 0.8rem;
  color: var(--cream-mute);
}

/* Coverage */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.area-cell {
  background: var(--ink);
  padding: 1.75rem 1.25rem;
  transition: background 0.25s;
}

.area-cell:hover {
  background: var(--ink-raised);
}

.area-cell strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.area-cell span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Extras list */
.extras-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}

.extra-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.extra-line h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.extra-line p {
  font-size: 0.9rem;
  color: var(--cream-mute);
}

.extra-line .price {
  font-family: "Syne", sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
}

/* Story moments — spaced, not cramped */
.moments {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.moment-main img,
.moment-side img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.moment-main img {
  aspect-ratio: 16 / 11;
}

.moment-side {
  display: grid;
  gap: 2rem;
}

.moment-side img {
  aspect-ratio: 16 / 10;
  height: 100%;
}

.moment-cap {
  margin-top: 0.85rem;
}

.moment-cap h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.moment-cap p {
  font-size: 0.9rem;
  color: var(--cream-mute);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-band .hero-media::after {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.75), rgba(7, 6, 5, 0.92));
}

.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.cta-band .script {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.cta-band p {
  color: var(--cream-mute);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* ——— ORDER PAGE ——— */
.order-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  gap: 2.5rem;
  align-items: start;
}

.order-panel {
  border: 1px solid var(--line);
  background: rgba(18, 16, 14, 0.7);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
}

.order-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-mute);
}

.summary-line strong {
  color: var(--cream);
  text-align: right;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.1rem 0 1.35rem;
  font-family: "Syne", sans-serif;
}

.summary-total span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

.summary-total strong {
  font-size: 2rem;
  color: var(--gold);
}

.form-stack {
  display: grid;
  gap: 0.85rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.form-stack input,
.form-stack select,
.form-stack textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
}

.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.pay-options {
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 1rem;
}

.pay-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.pay-option:has(input:checked),
.pay-option.is-active {
  border-color: var(--line-gold);
  background: rgba(198, 164, 90, 0.08);
}

.pay-option input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.pay-option strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
}

.pay-option span {
  font-size: 0.8rem;
  color: var(--cream-mute);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.addon-checks {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.addon-checks label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream-mute);
  font-weight: 400;
  cursor: pointer;
}

.addon-checks input {
  accent-color: var(--gold);
}

.order-note {
  font-size: 0.78rem;
  color: var(--cream-mute);
  margin-top: 0.85rem;
  line-height: 1.5;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 4000;
  max-width: 360px;
  padding: 1.1rem 1.25rem;
  background: var(--ink-raised);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

/* Flavour picker chips */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

.chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-mute);
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover,
.chip.is-active {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(198, 164, 90, 0.1);
}

/* ——— BLOG ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  transition: transform 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 1.1rem;
}

.blog-card .meta {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.blog-card p {
  color: var(--cream-mute);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.blog-card .read {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.prose {
  max-width: 42rem;
  margin-inline: auto;
}

.prose h2 {
  font-size: 1.65rem;
  margin: 2rem 0 0.85rem;
}

.prose p {
  color: var(--cream-mute);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.prose ul {
  margin: 0 0 1.25rem 1.2rem;
  color: var(--cream-mute);
}

.prose li {
  margin-bottom: 0.45rem;
}

.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin: 0 auto 2.5rem;
  display: block;
}

/* ——— CONTACT ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.contact-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-block p,
.contact-block a {
  color: var(--cream-mute);
}

.contact-block a:hover {
  color: var(--gold);
}

.contact-block .big {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin: 0.35rem 0 0.75rem;
}

/* ——— FOOTER ——— */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-gold);
  padding: 4.75rem 0 1.75rem;
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(198, 164, 90, 0.08), transparent 55%),
    #040302;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand-block .brand {
  margin-bottom: 1.25rem;
}

.footer-lead {
  color: var(--cream-mute);
  max-width: 28rem;
  margin-bottom: 1.35rem;
  font-size: 0.98rem;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-contact-row a {
  color: var(--gold);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-contact-row a:hover {
  color: var(--gold-bright);
}

.footer-order-btn {
  margin-top: 0.25rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-cols h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.1rem;
}

.footer-cols ul {
  list-style: none;
}

.footer-cols li {
  color: var(--cream-mute);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-cols a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--cream-mute);
}

.age-note {
  color: var(--gold);
}

/* Hero video support */
.hero-media video,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-wrap:not(.is-playing) .hero-video {
  opacity: 0;
}

.hero-video-wrap.is-playing .hero-video {
  opacity: 1;
}

img[loading="lazy"] {
  background: var(--ink-soft);
}

/* ——— REVEAL MOTION ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-2%); }
}

@keyframes heroVideoDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.2%, -0.8%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero--video .hero-video-wrap,
  .hero-media img:not(.hero-fallback) {
    animation: none !important;
    transform: none !important;
  }
}


/* Collapse early — long brand + 7 links need room */
@media (max-width: 1280px) {
  .nav-toggle { display: inline-flex; }
  .nav-bar > .nav-links { display: none; }
  .nav-bar > .nav-cta { display: none !important; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand-copy { min-width: 0; }
  .brand-copy strong {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .brand-copy span {
    display: block;
    font-size: 0.52rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header.is-open .nav-drawer {
    display: block;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7, 6, 5, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.35rem 1.25rem 1.35rem;
    z-index: 30;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  .site-header.is-open .nav-drawer .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding-inline: 0;
  }

  .site-header.is-open .nav-drawer .nav-links a {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    font-size: 0.9rem;
  }

  .site-header.is-open .nav-drawer .nav-cta {
    display: flex !important;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .site-header.is-open .nav-drawer .nav-cta .btn {
    flex: 1;
  }

  .site-header.is-open .nav-drawer .nav-cta .btn-ghost {
    display: inline-flex;
  }
}

/* ——— MOBILE LAYOUT ——— */
@media (max-width: 980px) {
  .split,
  .split.reverse,
  .order-layout,
  .contact-grid,
  .moments,
  .footer-top,
  .footer-cols,
  .blog-grid,
  .steps,
  .feature-strip,
  .extras-list,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .pkg-row {
    grid-template-columns: 1fr;
  }

  .order-panel {
    position: static;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding-bottom: 3.5rem;
  }

  .hero--video .hero-inner {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
  }

  .hero-media::after,
  .hero--video .hero-media::after {
    background:
      linear-gradient(180deg, rgba(7, 6, 5, 0.55) 0%, rgba(7, 6, 5, 0.35) 40%, rgba(7, 6, 5, 0.94) 100%),
      linear-gradient(90deg, rgba(7, 6, 5, 0.75) 0%, rgba(7, 6, 5, 0.35) 100%);
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .area-grid,
  .blog-grid,
  .extras-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— AGE / TRUST / PAYMENTS ——— */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.55rem;
  padding: 0 0.4rem;
  background: var(--age);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 3px;
  line-height: 1;
}

.age-badge--sm {
  min-width: 1.7rem;
  height: 1.25rem;
  font-size: 0.62rem;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--cream-mute);
}

.pay-accept {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream-mute);
  font-size: 0.78rem;
}

.pay-accept i {
  font-size: 1.65rem;
  color: var(--cream);
}

.cash-pill {
  border: 1px solid var(--line);
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.pay-icons {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.35rem;
  font-size: 1.45rem;
  color: var(--cream);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-pay {
  margin-bottom: 1.15rem;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1.15rem;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

body.checkout-open .wa-float,
body.nav-open .wa-float {
  opacity: 0;
  pointer-events: none;
}

/* ——— SHOP GRID ——— */
.shop-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.35rem;
}

.shop-head p {
  color: var(--cream-mute);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(18, 16, 14, 0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease);
  cursor: pointer;
}

.product-card:hover,
.product-card.is-selected {
  border-color: var(--line-gold);
}

.product-card .pkg-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
}

.product-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.product-card-body h3 {
  font-size: 1.25rem;
}

.product-blurb {
  color: var(--cream-mute);
  font-size: 0.92rem;
}

.product-card-body ul {
  list-style: none;
  margin: 0.35rem 0 0.75rem;
  display: grid;
  gap: 0.3rem;
}

.product-card-body li {
  font-size: 0.86rem;
  color: var(--cream-mute);
  display: flex;
  gap: 0.45rem;
}

.product-card-body li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.4rem;
}

.product-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card-foot .price {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
}

.page-hero--shop {
  min-height: 34vh;
}

/* ——— CHECKOUT DRAWER ——— */
.checkout-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.checkout-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.checkout-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 440px);
  height: 100%;
  background: #0c0b0a;
  border-left: 1px solid var(--line-gold);
  z-index: 2100;
  transform: translateX(105%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.checkout-drawer.is-open {
  transform: translateX(0);
}

.checkout-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.checkout-drawer-head h2 {
  font-size: 1.35rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.checkout-summary {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 16, 14, 0.7);
}

.checkout-form {
  padding: 1.1rem 1.25rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.addon-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--cream-mute);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.addon-row em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.82rem;
}

.age-confirm {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--cream-mute);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  line-height: 1.45;
}

.age-confirm input {
  margin-top: 0.2rem;
  accent-color: var(--age);
}

.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(7, 6, 5, 0.98);
  border-top: 1px solid var(--line-gold);
}

.cart-bar.is-visible {
  display: flex;
}

.cart-bar strong {
  display: block;
  font-size: 0.92rem;
}

.cart-bar span {
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

body.checkout-open {
  overflow: hidden;
}

body.checkout-open .cart-bar {
  display: none;
}

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

  .checkout-drawer {
    width: 100%;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .wa-float {
    bottom: 5.25rem;
  }

  body:not(.checkout-open) .cart-bar.is-visible ~ .wa-float,
  .cart-bar.is-visible + * {
    /* keep float above cart bar handled via bottom offset */
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-band-item {
  background: var(--ink);
  padding: 1.35rem 1.1rem;
  text-align: center;
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}

.trust-band-item i {
  color: var(--gold);
  font-size: 1.15rem;
}

.trust-band-item strong {
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
}

.trust-band-item span {
  font-size: 0.78rem;
  color: var(--cream-mute);
}

@media (max-width: 800px) {
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }
}
