:root {
  --bg: #050302;
  --orange: #ff4b0b;
  --orange-soft: #ff7a18;
  --cream: #fff7ee;
  --muted: rgba(255, 247, 238, 0.7);
  --line: rgba(255, 92, 20, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 76, 11, .12), transparent 36%),
    radial-gradient(circle at 20% 10%, rgba(255, 112, 24, .10), transparent 28%),
    linear-gradient(180deg, #080403 0%, #020101 100%);
  overflow: hidden;
}
.site-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(900px) rotateX(58deg) translateY(-9%);
  transform-origin: top center;
  opacity: .62;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 82%, transparent 100%);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,75,11,.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,75,11,.12) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: .26;
}
.wire { position: absolute; inset: 0; opacity: .32; }
.wire-a { background: repeating-radial-gradient(circle at 50% 48%, transparent 0 58px, rgba(255,75,11,.23) 59px 60px); }
.wire-b { background: linear-gradient(115deg, transparent 0 49%, rgba(255,75,11,.22) 50%, transparent 51%); }
.orange-orb { position:absolute; border-radius:999px; filter: blur(80px); background: rgba(255,75,11,.22); }
.orb-one { width: 460px; height: 460px; left: -160px; top: 25vh; }
.orb-two { width: 520px; height: 520px; right: -200px; bottom: 8vh; }


.breather {
  position: relative;
  min-height: 34vh;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,75,11,.10), transparent 35%),
    linear-gradient(180deg, rgba(5,3,2,0) 0%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.82) 58%, rgba(5,3,2,0) 100%);
  overflow: hidden;
}
.breather.slim { min-height: 24vh; }
.breather::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .35;
  mask-image: linear-gradient(to bottom, transparent, #000 40%, #000 60%, transparent);
}
.breather-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 75vw);
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(255,75,11,.75), transparent);
  filter: blur(1px);
  box-shadow: 0 0 30px rgba(255,75,11,.35);
}

.hero {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
  display: grid;
  place-items: center;
  padding: 6rem clamp(1.25rem, 4vw, 5rem);
  isolation: isolate;
}
.topbar {
  position: absolute;
  top: 2rem;
  left: clamp(1.25rem, 4vw, 5rem);
  right: clamp(1.25rem, 4vw, 5rem);
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index: 5;
}
.brand-mark {
  width: 76px; height:76px; border: 3px solid #fff; border-radius: 50%;
  display:grid; place-items:center; font-family: Anton, sans-serif; font-size: 2rem;
  box-shadow: 0 0 28px rgba(255,75,11,.55);
}
.top-meta { font-family: Bebas Neue, sans-serif; letter-spacing:.22em; color: var(--orange-soft); font-size: 1rem; }

.hero-menu {
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.2fr);
  gap: clamp(2rem, 5vw, 6rem);
}
.eyebrow {
  color: var(--orange-soft);
  font-family: Bebas Neue, sans-serif;
  letter-spacing: .18em;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  margin-bottom: .8rem;
   margin-left: 10rem;
}
h1, h2 { margin:0; line-height:.86; text-transform: uppercase; }
h1 {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: -.03em;
  font-size: clamp(4rem, 8.5vw, 9rem);
  text-shadow: 0 0 35px rgba(255,75,11,.30);
}
h1 span, h2 span { font-family: Permanent Marker, cursive; color: var(--orange); letter-spacing: -.04em; }
.hero-copy p, .chef-copy p, .review-copy p {
  color: var(--muted);
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
   
}

.life-text {
  display: inline-block;
  transform: translateX(4rem);
}

.halide-stage {
  perspective: 1800px;
  width: min(82vw, 1250px);
  max-width: 100%;
  height: auto;
  min-height: unset;
  display: grid;
  place-items: center;
  overflow: visible;
}

.halide-stage img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}
.depth-card {
  position:relative;
  width: 82%;
  aspect-ratio: 16 / 10;
  transform-style: preserve-3d;
  transform: rotateX(54deg) rotateZ(-24deg) scale(.95);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  animation: idleFloat 6s ease-in-out infinite alternate;
}
.depth-layer, .menu-panel, .contour-lines { position:absolute; inset:0; border-radius: 18px; }
.layer-back {
  transform: translateZ(-80px) translate(38px, 38px);
  border: 1px solid rgba(255, 75, 11, .45);
  background: rgba(255,75,11,.035);
  box-shadow: 0 0 70px rgba(255,75,11,.25);
}
.layer-grid {
  transform: translateZ(-38px) translate(18px, 18px);
  border: 1px solid rgba(255,255,255,.15);
  background-image:
    linear-gradient(to right, rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 36px 36px;
}
.menu-panel {
  transform: translateZ(40px);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 0 0 1px rgba(255,75,11,.22),
    0 30px 120px rgba(255,75,11,.34),
    inset 0 0 42px rgba(255,75,11,.22);
  background:#111;
}
.menu-panel img { width:100%; height:100%; object-fit: contain; object-position: center; display:block; filter: contrast(1.08) saturate(1.15) brightness(.92); background:#050302; }
.panel-shine {
  position:absolute; inset:-30%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.18), transparent 58%);
  transform: translateX(-55%);
  animation: shine 5s ease-in-out infinite;
}
.contour-lines {
  transform: translateZ(86px);
  pointer-events:none;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 38px, rgba(255,255,255,.10) 39px 40px);
  mix-blend-mode: screen;
  opacity:.42;
}
@keyframes idleFloat { from { translate: 0 -8px; } to { translate: 0 8px; } }
@keyframes shine { 0%, 55% { transform: translateX(-60%) rotate(8deg); } 100% { transform: translateX(60%) rotate(8deg); } }

.scroll-line { position:absolute; bottom: 1.8rem; left:50%; width:1px; height:70px; background: rgba(255,255,255,.18); }
.scroll-line span { display:block; height:32px; background: var(--orange); box-shadow:0 0 20px var(--orange); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: translateY(0) scaleY(0); transform-origin:top; } 50% { transform: translateY(20px) scaleY(1); } 100% { transform: translateY(58px) scaleY(0); transform-origin:bottom; } }

.section-inner { width:min(1200px, 100%); margin:auto; }
.two-col, .reviews-layout { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items:center; }
.chef-image-wrap {
  position:relative; border-radius: 28px; overflow:hidden; border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 70px rgba(255,75,11,.18);
  max-width: 520px;
  justify-self: center;
}
.chef-image-wrap::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 80px rgba(0,0,0,.55); }
.chef-image-wrap img { display:block; width:100%; height:clamp(520px, 74vh, 780px); object-fit:cover; object-position:center top; }
h2 { font-family: Anton, Impact, sans-serif; font-size: clamp(3.2rem, 6vw, 7rem); letter-spacing:-.03em; }
.chef-tags { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1.5rem; }
.chef-tags span { border:1px solid rgba(255,75,11,.45); color:var(--orange-soft); padding:.7rem 1rem; border-radius:999px; background:rgba(255,75,11,.07); }

.review-ring-wrap { position:relative; width:min(460px,80vw); aspect-ratio:1; justify-self:center; display:grid; place-items:center; filter: drop-shadow(0 0 40px rgba(255,75,11,.45)); }
.review-ring { width:100%; height:100%; transform: rotate(-90deg); }
.ring-track { fill:none; stroke:rgba(255,255,255,.12); stroke-width:16; }
.ring-progress { fill:none; stroke:var(--orange); stroke-width:16; stroke-linecap:round; stroke-dasharray:540; stroke-dashoffset:540; }
.ring-text { position:absolute; text-align:center; }
.ring-text strong { display:block; font-family:Anton, sans-serif; font-size:clamp(4rem,9vw,7.5rem); color:#fff; text-shadow:0 0 25px rgba(255,75,11,.55); }
.ring-text span { font-family:Bebas Neue,sans-serif; letter-spacing:.14em; color:var(--orange-soft); }

.reveal-left, .reveal-right, .reveal-up { opacity:0; transform: translateY(46px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-left { transform: translateX(-70px); }
.reveal-right { transform: translateX(70px); }
.in-view .reveal-left, .in-view .reveal-right, .reveal-up.in-view { opacity:1; transform: translate(0,0); }

@media (max-width: 900px) {
  .breather { min-height: 22vh; }
  .chef-image-wrap { max-width: min(440px, 100%); }
  .chef-image-wrap img { height: min(72vh, 680px); object-position: center top; }
  .hero-menu, .two-col, .reviews-layout { grid-template-columns:1fr; }
  .hero-menu { padding-top:9rem; }
  .halide-stage { width:100%; height:380px; }
  .topbar { align-items:flex-start; }
  .top-meta { max-width:180px; text-align:right; }
}

/* v3 scroll-reveal background corrections */
.site-bg {
  transition: opacity .8s ease;
}
body.past-main .site-bg {
  opacity: 0;
}

.hero-menu {
  overflow: hidden;
}

/* Black breathing space between hero 1 and hero 2 */
.breather {
  min-height: 48vh;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,75,11,.07), transparent 30%),
    linear-gradient(180deg, rgba(5,3,2,0) 0%, #000 36%, #000 68%, rgba(5,3,2,0) 100%);
}
.breather::before {
  opacity: 0;
}

/* Page 2 gets its own new wireframe instead of the fixed first-page background continuing */
.chef-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(255,75,11,.16), transparent 30%),
    radial-gradient(circle at 16% 70%, rgba(255,75,11,.10), transparent 28%),
    linear-gradient(180deg, #000 0%, #060302 38%, #020101 100%);
}
.chef-hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,75,11,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,75,11,.09) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px, 138px 138px, 138px 138px;
  transform: perspective(950px) rotateX(58deg) translateY(-12%);
  transform-origin: top center;
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.16,1,.3,1);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 78%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.chef-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #000 0%, transparent 22%, transparent 78%, #000 100%);
  pointer-events:none;
  z-index:-1;
}
.chef-hero.in-view::before {
  opacity: .72;
  transform: perspective(950px) rotateX(58deg) translateY(-3%);
}

/* Last page: mostly black floor/ground, no overpowering repeated wireframe */
.reviews-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,75,11,.13), transparent 34%),
    linear-gradient(180deg, #000 0%, #050201 48%, #000 100%);
}
.reviews-hero::before {
  content:"";
  position:absolute;
  left:-10%; right:-10%; bottom:-15%; height:45%;
  background-image:
    linear-gradient(to right, rgba(255,75,11,.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,75,11,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(800px) rotateX(64deg);
  transform-origin: bottom center;
  opacity: 0;
  transition: opacity 1.1s ease;
  mask-image: linear-gradient(to top, #000, transparent 75%);
  pointer-events:none;
  z-index:-1;
}
.reviews-hero.in-view::before { opacity: .34; }

/* Stronger curtain reveal feel for page 2 and 3 */
.reveal-section {
  clip-path: inset(12% 0 12% 0 round 0px);
  transform: translateY(80px) scale(.985);
  opacity: .18;
  transition:
    clip-path 1.15s cubic-bezier(.16,1,.3,1),
    transform 1.15s cubic-bezier(.16,1,.3,1),
    opacity 1s ease;
}
.reveal-section.in-view {
  clip-path: inset(0 0 0 0 round 0px);
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Keep first hero visible immediately */
.hero-menu .reveal-up {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .breather { min-height: 34vh; }
  .reveal-section { clip-path: inset(8% 0 8% 0); transform: translateY(50px); }
}

/* v4 change: logo removed from hero 1; keep meta aligned cleanly */
.topbar { justify-content: flex-end; }
/* Event artwork is wider, so give the interactive panel a poster-friendly frame */
.depth-card { width: 88%; aspect-ratio: 16 / 9; }
.menu-panel img { object-fit: contain; object-position: center; background:#050302; }

/* v7 requested change: replace image logo with SMF text mark only */
.hero-smf-text {
  display: block;
  margin: 0 0 1.15rem 0;
  font-family: Permanent Marker, cursive;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: .85;
  letter-spacing: -.06em;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255,255,255,.20),
    0 0 32px rgba(255,75,11,.34);
}


/* v8 requested change: image logo above Manchester Street Food, kept proportional */
.hero-logo-image {
  display: block;
  width: clamp(86px, 8vw, 128px);
  height: auto;
  object-fit: contain;
  margin: 0 0 1.15rem 9rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.16)) drop-shadow(0 0 26px rgba(255,75,11,.22));
}

/* v8 requested change: page two image fits without cropping */
.chef-image-wrap img {
  object-fit: contain;
  object-position: center;
  background: #050505;
}


/* Page 4: neon blueprint floor plan reveal */
.blueprint-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(255,75,11,.15), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(255,75,11,.08), transparent 24%),
    linear-gradient(180deg, #000 0%, #060302 46%, #000 100%);
}
.blueprint-hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,75,11,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,75,11,.08) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 144px 144px, 144px 144px;
  transform: perspective(980px) rotateX(58deg) translateY(-9%);
  transform-origin: top center;
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.16,1,.3,1);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 80%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.blueprint-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #000 0%, transparent 20%, transparent 78%, #000 100%);
  pointer-events:none;
  z-index:-1;
}
.blueprint-hero.in-view::before {
  opacity: .58;
  transform: perspective(980px) rotateX(58deg) translateY(-2%);
}
.blueprint-layout {
  display:grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem,5vw,5rem);
  align-items:center;
}
.blueprint-board {
  position: relative;
  width: min(720px, 100%);
  justify-self: center;
  border-radius: 26px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    linear-gradient(145deg, rgba(255,75,11,.08), rgba(255,255,255,.025)),
    rgba(0,0,0,.42);
  border: 1px solid rgba(255,75,11,.34);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 0 70px rgba(255,75,11,.20),
    inset 0 0 38px rgba(255,75,11,.08);
  overflow: hidden;
}
.blueprint-board::before {
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.10), transparent 56%);
  transform: translateX(-55%) rotate(8deg);
  animation: shine 6.5s ease-in-out infinite;
  pointer-events:none;
}
.blueprint-drawing {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 0 14px rgba(255,75,11,.45));
}
.blueprint-drawing .line,
.blueprint-drawing .thin,
.blueprint-drawing .dim,
.blueprint-drawing .draw-line {
  fill: none !important;
  stroke: var(--orange) !important;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 8px rgba(255,75,11,.72));
}
.blueprint-drawing .line { stroke-width: 2.25px !important; }
.blueprint-drawing .thin,
.blueprint-drawing .dim { stroke-width: 1.55px !important; }
.blueprint-drawing text {
  fill: rgba(255,247,238,.86) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  text-anchor: middle !important;
  dominant-baseline: middle !important;
  filter: drop-shadow(0 0 8px rgba(255,75,11,.45));
  opacity: 0;
  transition: opacity 1s ease 2.35s;
}
.blueprint-drawing .small { font-size: 15px !important; }
.blueprint-drawing .tiny { font-size: 13px !important; }
.blueprint-drawing .dark {
  font-size: 18px !important;
  font-weight: 700 !important;
  text-anchor: start !important;
}
.blueprint-drawing .footer,
.blueprint-drawing .dimtxt {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.blueprint-hero.in-view .blueprint-drawing text { opacity: 1; }
.blueprint-drawing .draw-line {
  stroke-dasharray: var(--line-length, 1000);
  stroke-dashoffset: var(--line-length, 1000);
}
.blueprint-hero.in-view .blueprint-drawing .draw-line {
  animation: blueprintDraw 4.8s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--line-delay, 0s);
}
@keyframes blueprintDraw { to { stroke-dashoffset: 0; } }

@media (max-width: 900px) {
  .blueprint-layout { grid-template-columns:1fr; }
  .blueprint-board { width: 100%; }
}


/* Page 5: brand presence lighting and signage reveal */
.brand-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 36%, rgba(255,75,11,.20), transparent 30%),
    radial-gradient(circle at 16% 72%, rgba(255,75,11,.10), transparent 24%),
    linear-gradient(180deg, #000 0%, #080302 48%, #000 100%);
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,75,11,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,75,11,.08) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 144px 144px, 144px 144px;
  transform: perspective(980px) rotateX(58deg) translateY(-9%);
  transform-origin: top center;
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.16,1,.3,1);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 80%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.brand-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #000 0%, transparent 20%, transparent 78%, #000 100%);
  pointer-events:none;
  z-index:-1;
}
.brand-hero.in-view::before {
  opacity: .58;
  transform: perspective(980px) rotateX(58deg) translateY(-2%);
}

.brand-layout {
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
}

.brand-image-card {
  width: min(780px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: visible;
}

.brand-image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58vh;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  filter: contrast(1.08) saturate(1.12) brightness(.92);
}
.brand-image-card::after {
  content:"";
  position:absolute;
  inset:0;
  box-shadow: inset 0 0 80px rgba(0,0,0,.48);
  pointer-events:none;
}
.brand-image-glow {
  position:absolute;
  left: 10%;
  right: 10%;
  bottom: -12px;
  height: 22px;
  background: rgba(255,75,11,.72);
  filter: blur(24px);
  opacity: .72;
}
.brand-copy p {
  color: var(--muted);
  max-width: 560px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .brand-layout { grid-template-columns:1fr; }
  .brand-image-card { width: 100%; }
  .brand-image-card img { height: min(58vh, 520px); }
}


/* Page 6: sustainability scroll reveal */
.sustainability-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 38%, rgba(94, 255, 160, .18), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(255,75,11,.10), transparent 24%),
    linear-gradient(180deg, #000 0%, #03110a 48%, #000 100%);
}
.sustainability-hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(to right, rgba(94,255,160,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(94,255,160,.08) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 144px 144px, 144px 144px;
  transform: perspective(980px) rotateX(58deg) translateY(-9%);
  transform-origin: top center;
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.2s cubic-bezier(.16,1,.3,1);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 80%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.sustainability-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #000 0%, transparent 20%, transparent 78%, #000 100%);
  pointer-events:none;
  z-index:-1;
}
.sustainability-hero.in-view::before {
  opacity: .58;
  transform: perspective(980px) rotateX(58deg) translateY(-2%);
}
.sustainability-layout {
  display:grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem,5vw,5rem);
  align-items:center;
}
.sustainability-copy p {
  color: var(--muted);
  max-width: 590px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}
.sustainability-tags span {
  border-color: rgba(94,255,160,.42);
  color: rgba(210,255,228,.92);
  background: rgba(94,255,160,.07);
}
.eco-infographic {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 34px;
  border: 1px solid rgba(94,255,160,.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(94,255,160,.13), transparent 38%),
    linear-gradient(145deg, rgba(94,255,160,.07), rgba(255,255,255,.025));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.055),
    0 0 80px rgba(94,255,160,.14),
    inset 0 0 42px rgba(94,255,160,.07);
  overflow: hidden;
}
.eco-infographic::before {
  content:"";
  position:absolute;
  inset:-35%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.10), transparent 56%);
  transform: translateX(-55%) rotate(8deg);
  animation: shine 7s ease-in-out infinite;
  pointer-events:none;
}
.eco-orbit {
  position:absolute;
  inset: clamp(1.3rem, 4vw, 2.2rem);
}
.eco-core {
  position:absolute;
  left:50%;
  top:50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display:grid;
  place-items:center;
  align-content:center;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(94,255,160,.48);
  box-shadow: 0 0 45px rgba(94,255,160,.24), inset 0 0 30px rgba(94,255,160,.10);
  z-index: 3;
}
.eco-core span {
  font-family: Bebas Neue, sans-serif;
  letter-spacing: .18em;
  color: rgba(210,255,228,.85);
  font-size: 1rem;
}
.eco-core strong {
  font-family: Anton, Impact, sans-serif;
  color: #fff;
  font-size: 2.45rem;
  line-height: .9;
  text-shadow: 0 0 24px rgba(94,255,160,.38);
}
.eco-ring {
  position:absolute;
  inset: 13%;
  border: 1px solid rgba(94,255,160,.20);
  border-radius: 50%;
  animation: ecoPulse 4.5s ease-in-out infinite alternate;
}
.ring-two {
  inset: 25%;
  border-color: rgba(255,75,11,.22);
  animation-delay: .7s;
}
.eco-node {
  position:absolute;
  width: 154px;
  min-height: 92px;
  display:flex;
  gap:.75rem;
  align-items:center;
  padding: .9rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(94,255,160,.34);
  background: rgba(0,0,0,.55);
  box-shadow: 0 0 34px rgba(94,255,160,.12), inset 0 0 22px rgba(94,255,160,.05);
  z-index: 4;
  animation: ecoFloat 4.2s ease-in-out infinite alternate;
}
.eco-node b {
  font-family: Anton, Impact, sans-serif;
  color: rgba(94,255,160,.95);
  font-size: 1.4rem;
}
.eco-node span {
  font-family: Bebas Neue, sans-serif;
  color: rgba(255,247,238,.9);
  letter-spacing: .055em;
  line-height: 1.05;
  font-size: 1.05rem;
}
.node-packaging { left: 50%; top: 0; transform: translateX(-50%); }
.node-recycled { right: 0; top: 50%; transform: translateY(-50%); animation-delay: .35s; }
.node-single-use { left: 50%; bottom: 0; transform: translateX(-50%); animation-delay: .7s; }
.node-air-miles { left: 0; top: 50%; transform: translateY(-50%); animation-delay: 1.05s; }
.eco-arrows {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  fill:none;
  stroke: rgba(94,255,160,.58);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(94,255,160,.38));
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  opacity: .92;
}
.sustainability-hero.in-view .eco-arrows {
  animation: ecoDraw 4.8s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes ecoDraw { to { stroke-dashoffset: 0; } }
@keyframes ecoPulse { from { transform: scale(.97); opacity: .38; } to { transform: scale(1.03); opacity: .72; } }
@keyframes ecoFloat { from { translate: 0 -5px; } to { translate: 0 7px; } }

@media (max-width: 900px) {
  .sustainability-layout { grid-template-columns:1fr; }
  .eco-infographic { width: 100%; max-width: 560px; }
  .eco-node { width: 138px; min-height: 84px; padding: .75rem .85rem; }
  .eco-node span { font-size: .95rem; }
}

@media (max-width: 560px) {
  .eco-infographic { aspect-ratio: .82; }
  .eco-core { width: 126px; height: 126px; }
  .eco-core strong { font-size: 2rem; }
  .eco-node { width: 126px; }
}


/* Footer contact links */
.site-footer {
  min-height: 26vh;
  scroll-snap-align: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1.5rem;
  background: #000;
  border-top: 1px solid rgba(255,75,11,.20);
}
.footer-icon-link {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,75,11,.42);
  border-radius: 999px;
  background: rgba(255,75,11,.055);
  box-shadow: 0 0 28px rgba(255,75,11,.16);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.footer-icon-link:hover {
  transform: translateY(-4px);
  color: var(--orange-soft);
  border-color: rgba(255,75,11,.85);
  box-shadow: 0 0 34px rgba(255,75,11,.34);
}
.footer-icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
