/* ==========================================================================
   Ice Cold Company — icecoldpurified.co.za
   Built from the client's own banner: white → sky → royal blue, an ice pile
   rising from the bottom, bright-blue "WHAT WE OFFER" label boxes, a white
   slanted "Call / WhatsApp" tag and big outlined phone numbers. Montserrat.
   ========================================================================== */

:root {
  --ice-50: #F3F8FE;
  --ice-100: #E2EFFC;
  --ice-200: #C9E0F8;
  --sky: #9CC5F3;
  --blue: #2E8BE6;
  --blue-600: #1B6FD1;
  --blue-700: #1457AE;
  --navy: #0B2A66;
  --navy-900: #061a42;
  --ink: #0A1B3D;
  --muted: #45597A;
  --line: rgba(11, 42, 102, .14);
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --gutter: clamp(16px, 4.4vw, 72px);
  --max: 1400px;
  --header-h: 80px;
  --r: 14px;
  --ease: cubic-bezier(.7, 0, .2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0; background: var(--ice-50); color: var(--ink);
  font: 500 1.0625rem/1.65 var(--font);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
::selection { background: var(--blue); color: #fff; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 12px; z-index: 300; background: var(--navy); color: #fff; padding: 12px 16px; text-decoration: none; border-radius: 6px; }
.skip:focus { left: 12px; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(80px, 10vw, 150px) 0; position: relative; }

/* ---------- the banner's devices ---------- */
.tag {
  display: inline-block;
  background: var(--blue); color: #fff;
  font: italic 800 clamp(.8rem, 1vw, .95rem)/1 var(--font);
  letter-spacing: .04em; text-transform: uppercase;
  padding: .7em 1.1em .72em; border-radius: 4px;
  margin-bottom: 22px;
}
.tag--white { background: #fff; color: var(--blue-600); }
.tag--slant {
  background: #fff; color: var(--blue-600); border-radius: 0;
  text-transform: none; font-size: clamp(1.1rem, 1.8vw, 1.6rem); letter-spacing: 0;
  padding: .45em 1.4em .5em .9em;
  clip-path: polygon(0 0, 100% 0, calc(100% - .7em) 100%, 0 100%);
}
.h2 {
  font: 900 clamp(2.3rem, 4.8vw, 4.4rem)/1 var(--font);
  letter-spacing: -.03em; color: var(--navy);
}
.h2 em, .h1 em { font-style: italic; font-weight: 800; color: var(--blue); }
.on-dark .h2, .on-dark h3 { color: #fff; }
.on-dark .h2 em { color: var(--sky); }
.lede { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--muted); max-width: 36em; }
.on-dark .lede, .on-dark p { color: rgba(255, 255, 255, .84); }
.shout { font: 800 .82rem/1.9 var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.shout .sep { color: var(--blue); margin: 0 .55em; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--blue-600); --fg: #fff; --hover: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .65em;
  min-height: 56px; padding: 0 1.6em;
  font: 800 .86rem/1 var(--font); letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  color: var(--fg); background: var(--bg); border: 2px solid var(--bg); border-radius: 8px;
  transition: background .3s, border-color .3s, color .3s;
}
.btn:hover { background: var(--hover); border-color: var(--hover); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--white { --bg: #fff; --fg: var(--navy); --hover: var(--ice-100); }
.btn--white:hover { color: var(--navy); }
.btn--line { --bg: transparent; --fg: var(--navy); border-color: var(--navy); }
.btn--line:hover { background: var(--navy); color: #fff; }
.btn--line-light { --bg: transparent; --fg: #fff; border-color: #fff; }
.btn--line-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font: 800 .86rem/1 var(--font); letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; color: var(--blue-600); padding: 8px 0;
  border-bottom: 2px solid currentColor;
}
.textlink:hover { color: var(--navy); }
.textlink .arr { transition: transform .3s var(--ease); }
.textlink:hover .arr { transform: translateX(4px); }
.on-dark .textlink { color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 80; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, transform .45s var(--ease);
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand__mark { width: 54px; }
.brand__word { width: 120px; }
.brand .on-dark-logo { display: none; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font: 800 .82rem/1 var(--font); letter-spacing: .09em; text-transform: uppercase; text-decoration: none; color: var(--navy); padding: 10px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 3px; background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { font: 800 1rem/1 var(--font); text-decoration: none; color: var(--navy); white-space: nowrap; }
.header-phone:hover { color: var(--blue-600); }
.site-header .btn { min-height: 48px; padding: 0 1.2em; }
.menu-btn { display: none; align-items: center; gap: 10px; background: none; border: 0; padding: 10px 0; cursor: pointer; color: var(--navy); font: 800 .82rem/1 var(--font); letter-spacing: .08em; text-transform: uppercase; }
.menu-btn__bars { width: 24px; height: 12px; position: relative; }
.menu-btn__bars::before, .menu-btn__bars::after { content: ""; position: absolute; left: 0; right: 0; height: 2.5px; background: currentColor; border-radius: 2px; }
.menu-btn__bars::before { top: 0; } .menu-btn__bars::after { bottom: 0; }

/* header over a dark hero (Our Ice) */
.header-light .site-header:not(.is-scrolled) .nav a,
.header-light .site-header:not(.is-scrolled) .header-phone,
.header-light .site-header:not(.is-scrolled) .menu-btn { color: #fff; text-shadow: 0 1px 10px rgba(6, 26, 66, .7); }
.header-light .site-header:not(.is-scrolled) .nav a::after { background: #fff; }
.header-light .site-header:not(.is-scrolled) .on-light-logo { display: none; }
.header-light .site-header:not(.is-scrolled) .on-dark-logo { display: block; }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: linear-gradient(180deg, var(--blue-600), var(--navy) 80%);
  color: #fff; display: flex; flex-direction: column; padding: 20px var(--gutter) 30px;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .7s var(--ease), visibility 0s linear .7s; visibility: hidden;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); visibility: visible; transition: clip-path .7s var(--ease), visibility 0s; }
.menu__top { display: flex; justify-content: space-between; align-items: center; }
.menu__top img { width: 50px; }
.menu__close { background: #fff; color: var(--navy); border: 0; border-radius: 6px; font: 800 .8rem/1 var(--font); letter-spacing: .08em; text-transform: uppercase; padding: 12px 16px; cursor: pointer; }
.menu nav { margin: auto 0; }
.menu nav a { display: block; text-decoration: none; color: #fff; font: 900 clamp(2.6rem, 12vw, 4.4rem)/1.1 var(--font); letter-spacing: -.03em; padding: 4px 0; }
.menu nav a[aria-current="page"] { font-style: italic; color: var(--sky); }
.menu nav a .n { font: 800 .8rem/1 var(--font); vertical-align: top; margin-right: 12px; color: var(--sky); }
.menu__contact { border-top: 1px solid rgba(255,255,255,.25); padding-top: 18px; display: grid; gap: 4px; color: rgba(255,255,255,.8); font-size: .95rem; }
.menu__contact a { color: #fff; text-decoration: none; font: 900 1.6rem/1.2 var(--font); }

/* mobile action bar */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; grid-template-columns: 1fr 1.4fr; background: #fff; box-shadow: 0 -1px 0 var(--line); padding-bottom: env(safe-area-inset-bottom); }
.action-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; height: 62px; font: 800 .82rem/1 var(--font); letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: var(--navy); }
.action-bar a + a { background: var(--blue-600); color: #fff; }
.action-bar svg { width: 20px; height: 20px; }

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .nav, .header-phone, .site-header .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .brand__mark { width: 44px; }
  .brand__word { width: 100px; }
  .action-bar { display: grid; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
}

/* ---------- HOME hero: the banner, as a page ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: max(100svh, 720px);
  background: linear-gradient(180deg, #F6FAFF 0%, #E6F1FD 34%, #B5D5F7 62%, #5D9BE6 86%, #2E7AD6 100%);
  display: flex; align-items: stretch;
}
.hero__ice, .hero__ice-front {
  position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none;
  background: url("../../images/shared/ice-pile.jpg") center 100% / cover no-repeat;
  mix-blend-mode: multiply;
}
.hero__ice { height: 34%; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%); mask-image: linear-gradient(to bottom, transparent 0%, #000 60%); mix-blend-mode: luminosity; opacity: .9; }
.hero__ice-front { height: 11%; z-index: 4; mix-blend-mode: luminosity; opacity: .7; background-position: center 100%; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%); mask-image: linear-gradient(to bottom, transparent 0%, #000 60%); }
.hero .wrap { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3vw; align-items: center; padding-top: calc(var(--header-h) + clamp(40px, 8vh, 84px)); padding-bottom: 22vh; }
.hero__text { position: relative; z-index: 5; }
.hero h1 {
  font: 900 clamp(2.8rem, 5.3vw, 5.5rem)/.95 var(--font);
  letter-spacing: -.035em; color: var(--navy); margin-bottom: .32em;
}
.hero h1 em { display: block; font-style: italic; font-weight: 800; color: var(--blue-600); }
.hero__lede { color: var(--muted); font-size: clamp(1.05rem, 1.3vw, 1.2rem); max-width: 31em; margin-bottom: 1.6em; }
.hero .shout { margin-top: 26px; }
.hero__people { position: absolute; z-index: 3; right: 0; bottom: 0; width: 52%; height: 100%; pointer-events: none; }
.hero__people img { position: absolute; bottom: 0; width: auto; max-width: none; filter: drop-shadow(0 24px 30px rgba(6, 26, 66, .25)); }
.hero__p1 { height: min(78vh, 760px); right: -5%; }
.hero__p2 { height: min(90vh, 880px); right: 21%; }
.cube { position: absolute; pointer-events: none; z-index: 4; }
.cube img { width: 100%; animation: bob 7s ease-in-out infinite; }
.cube--b img { animation-duration: 9s; animation-delay: -3s; }
.cube--c img { animation-duration: 8s; animation-delay: -5s; }
.cube--d img { animation-duration: 10s; animation-delay: -2s; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(6deg); } }
.hero .cube--a { width: clamp(64px, 6.5vw, 112px); left: 47%; top: 20%; }
.hero .cube--b { width: clamp(80px, 8vw, 140px); right: 3%; top: 13%; }
.hero .cube--c { width: clamp(50px, 4.6vw, 84px); left: 58%; top: 9%; }

@media (max-width: 980px) {
  .hero { min-height: 0; display: flex; flex-direction: column; }
  .hero .wrap { order: 1; grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 40px); padding-bottom: 0; }
  .hero__people { order: 2; position: relative; width: 100%; height: min(112vw, 620px); margin-top: 18px; }
  .hero__p1 { height: 84%; right: -14%; }
  .hero__p2 { height: 100%; right: 22%; }
  .hero__ice { height: 34%; }
  .hero__ice-front { height: 12%; }
  .hero .cube--a { left: 4%; right: auto; top: auto; bottom: 22%; }
  .hero .cube--b, .hero .cube--c { display: none; }
}

/* ---------- HOME: what we offer (dark blue) ---------- */
.offer { background: var(--navy); color: #fff; overflow: hidden; }
.offer::before { content: ""; position: absolute; inset: 0; background: url("../../images/shared/ice-glow.jpg") center / cover; opacity: .18; mix-blend-mode: screen; }
.offer .wrap { position: relative; }
.offer__head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 40px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.offer__head .lede { margin: 0; }
.bags { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.bag { border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); min-height: 420px; }
.bag--light { background: var(--ice-100); color: var(--ink); }
.bag--bright { background: var(--blue); color: #fff; }
.bag__img { position: relative; overflow: hidden; }
.bag__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bag:hover .bag__img img { transform: scale(1.05); }
.bag__body { padding: clamp(24px, 2.8vw, 40px); display: flex; flex-direction: column; }
.bag .bag__num { font: italic 900 clamp(4.6rem, 8vw, 7.4rem)/.85 var(--font); letter-spacing: -.05em; margin: 0 0 .1em; }
.bag__num small { font-size: .36em; font-style: normal; font-weight: 800; letter-spacing: 0; margin-left: .08em; }
.bag--light .bag__num { color: var(--blue-600); }
.bag--bright .bag__num { color: #fff; }
.bag h3 { font: 800 1.35rem/1.2 var(--font); margin: 0 0 .5em; }
.bag--light h3 { color: var(--navy); }
.bag p { font-size: 1rem; }
.bag--light p { color: var(--muted); }
.bag--bright p { color: rgba(255,255,255,.9); }
.bag .bag__uses { font: 800 .74rem/1.9 var(--font); letter-spacing: .1em; text-transform: uppercase; }
.bag--light .bag__uses { color: var(--blue-600); }
.bag--bright .bag__uses { color: #fff; }
.bag .btn { margin-top: auto; align-self: flex-start; }
.bag--bright .btn { --bg: #fff; --fg: var(--navy); --hover: var(--navy); }
.bag--bright .btn:hover { color: #fff; }
.bulk { margin-top: clamp(16px, 2vw, 28px); border-radius: 20px; border: 2px solid rgba(255,255,255,.22); padding: clamp(28px, 4vw, 56px); display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: center; justify-content: space-between; }
.bulk p { margin: 0; font: 800 clamp(1.4rem, 2.6vw, 2.3rem)/1.2 var(--font); color: #fff; max-width: 26em; letter-spacing: -.01em; }
.bulk p span { color: var(--sky); font-style: italic; }
@media (max-width: 1100px) { .bag { grid-template-columns: 1fr; } .bag__img { aspect-ratio: 4 / 3; } }
@media (max-width: 760px) { .offer__head, .bags { grid-template-columns: 1fr; } }

/* ---------- HOME: temperature drop (pinned) ---------- */
.chill { background: #DCEBFB; position: relative; color: var(--navy); overflow: hidden; transition: color .6s; }
.chill__glow { position: absolute; inset: 0; background: url("../../images/shared/ice-glow.jpg") center / cover; opacity: 0; mix-blend-mode: screen; pointer-events: none; }
.chill__pin { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 90px); align-items: center; padding: calc(var(--header-h) + 3vh) var(--gutter) 6vh; max-width: var(--max); margin-inline: auto; position: relative; }
.chill__read .tag { margin-bottom: 8px; }
.chill__temp { font: italic 900 clamp(6rem, 18vw, 17rem)/.85 var(--font); letter-spacing: -.06em; margin: 0; color: var(--blue-600); white-space: nowrap; font-variant-numeric: tabular-nums; }
.chill__temp .deg { font-size: .36em; vertical-align: 1.2em; letter-spacing: 0; margin-left: .06em; }
.sign { display: inline-block; position: relative; width: .42em; height: .1em; background: currentColor; border-radius: .05em; vertical-align: .32em; margin-right: .07em; transform: skewX(-10deg); }
.sign.plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: .1em; height: .42em; background: currentColor; border-radius: .05em; transform: translate(-50%, -50%); }
.sign.zero { width: 0; margin: 0; }
.chill__where { font: italic 800 clamp(1.2rem, 1.9vw, 1.7rem)/1.2 var(--font); margin: .3em 0 0; min-height: 1.3em; }
.chill__steps { list-style: none; margin: 0; padding: 0; }
.chill__step { padding: clamp(16px, 2.2vw, 28px) 0; border-top: 2px solid currentColor; border-color: rgba(11, 42, 102, .18); transition: opacity .5s; }
.chill__step .n { font: 900 .9rem/1 var(--font); color: var(--blue-600); letter-spacing: .1em; }
.chill__step h3 { font: 900 clamp(1.7rem, 2.8vw, 2.5rem)/1.05 var(--font); letter-spacing: -.02em; margin: .3em 0 .3em; }
.chill__step p { margin: 0; max-width: 30em; opacity: .85; }
.chill.is-cold { color: #fff; }
.chill.is-cold .chill__step { border-color: rgba(255,255,255,.25); }
.chill.is-cold .chill__step .n { color: var(--sky); }
.js-motion .chill__step { opacity: .25; }
.js-motion .chill__step.is-on { opacity: 1; }
@media (max-width: 980px) {
  .chill__pin { grid-template-columns: 1fr; min-height: 0; padding-top: 90px; padding-bottom: 90px; }
  .js-motion .chill__step { opacity: 1; }
}

/* ---------- HOME: who we keep cold (horizontal) ---------- */
.uses { background: var(--ice-50); overflow: hidden; }
.uses__pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 2vh) 0 5vh; }
.uses__track { display: flex; gap: clamp(18px, 2.4vw, 36px); padding-inline: var(--gutter); will-change: transform; align-items: stretch; }
.uses__intro { flex: 0 0 clamp(280px, 30vw, 440px); display: flex; flex-direction: column; justify-content: center; padding-right: 2vw; }
.uses__intro .lede { margin: 1em 0 1.2em; }
.uses__intro .textlink, .uses__intro .tag { align-self: flex-start; }
.use { flex: 0 0 clamp(270px, 29vw, 440px); margin: 0; background: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.use__img { aspect-ratio: 4 / 3.4; overflow: hidden; position: relative; }
.use__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.use__img .tag { position: absolute; left: 16px; top: 16px; margin: 0; z-index: 2; }
.use figcaption { padding: 22px 24px 26px; }
.use h3 { font: 900 clamp(1.3rem, 1.8vw, 1.6rem)/1.15 var(--font); color: var(--navy); margin: 0 0 .35em; letter-spacing: -.01em; }
.use p { color: var(--muted); margin: 0; font-size: 1rem; }
.use--blue { background: var(--blue); }
.use--blue h3, .use--blue p { color: #fff; }
.use--blue .use__img { background: var(--blue-600) url("../../images/shared/ice-glow.jpg") center / cover; }
.uses__bar { margin: clamp(26px, 4vh, 48px) var(--gutter) 0; height: 4px; background: var(--ice-200); border-radius: 4px; position: relative; overflow: hidden; }
.uses__bar i { position: absolute; inset: 0; background: var(--blue); transform-origin: left; transform: scaleX(0); }
.uses__track { overflow-x: auto; scrollbar-width: none; }
.uses__track::-webkit-scrollbar { display: none; }
.js-motion .uses__track { overflow: visible; }
@media (max-width: 980px) {
  .uses__pin { min-height: 0; padding: 80px 0 70px; }
  .js-motion .uses__track, .uses__track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .uses__intro { flex-basis: 84vw; scroll-snap-align: start; }
  .use { flex-basis: 78vw; scroll-snap-align: start; }
  .uses__bar { display: none; }
  .use__img img { transform: none; }
}

/* ---------- HOME: team (bright blue) ---------- */
.team { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 55%, var(--blue-700) 100%); color: #fff; overflow: hidden; }
.team__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(36px, 6vw, 100px); align-items: center; }
.team__photo { position: relative; }
.team__photo .frame { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; }
.team__photo img { width: 100%; height: 115%; object-fit: cover; object-position: 50% 35%; }
.team__photo .cube { width: clamp(80px, 8vw, 130px); right: -5%; top: -6%; }
.team .h2 { color: #fff; }
.team .h2 em { color: var(--navy); }
.team p { color: rgba(255,255,255,.92); }
.addr { font-style: normal; display: grid; gap: 2px; margin: 1.6em 0; padding: 1.2em 1.4em; border-radius: 12px; background: rgba(255,255,255,.14); }
.addr strong { font: 800 .76rem/1.6 var(--font); letter-spacing: .12em; text-transform: uppercase; }
.addr a { font-weight: 800; text-decoration: none; }
.light .addr { background: #fff; color: var(--ink); }
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr; } }

/* ---------- HOME: how to order ---------- */
.order-sec { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); margin: clamp(36px, 5vw, 60px) 0; counter-reset: s; }
.step { background: var(--ice-50); border-radius: 20px; padding: clamp(26px, 3vw, 40px); position: relative; overflow: hidden; }
.step__n { font: italic 900 clamp(4rem, 6.5vw, 6rem)/.8 var(--font); color: var(--blue); letter-spacing: -.05em; margin: 0 0 .25em; }
.step h3 { font: 900 1.3rem/1.2 var(--font); color: var(--navy); margin: 0 0 .5em; }
.step p { color: var(--muted); margin: 0; }
.order-foot { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Call / WhatsApp band (the bottom of their banner) ---------- */
.callband {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(180deg, #A9CDF6 0%, #5E9BE6 45%, #2E7AD6 100%);
  padding: clamp(90px, 12vw, 170px) 0 clamp(110px, 14vw, 200px);
}
.callband__ice { position: absolute; inset: 0; background: url("../../images/shared/ice-pile.jpg") center bottom / cover; mix-blend-mode: luminosity; opacity: .75; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%); mask-image: linear-gradient(to bottom, transparent 0%, #000 60%); }
.callband .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.callband h2 { font: 900 clamp(2.2rem, 4.6vw, 4rem)/1 var(--font); letter-spacing: -.03em; color: #fff; margin: 0 0 .35em; text-shadow: 0 2px 0 var(--navy-900), 0 0 24px rgba(6,26,66,.35); }
.callband__num {
  display: block; text-decoration: none; color: #fff;
  font: 900 clamp(2.9rem, 9vw, 8.4rem)/1 var(--font); letter-spacing: -.01em;
  -webkit-text-stroke: .09em var(--ink); paint-order: stroke fill;
  margin: .25em 0 .35em;
  transition: transform .4s var(--ease);
}
.callband__num:hover { transform: scale(1.03); }
.callband__addr { display: inline-flex; align-items: center; gap: 12px; font: italic 800 clamp(1.1rem, 1.9vw, 1.6rem)/1.2 var(--font); color: #fff; -webkit-text-stroke: .1em var(--ink); paint-order: stroke fill; margin-bottom: 1.6em; }
.callband__addr svg { width: 1.3em; height: 1.3em; color: var(--ink); }
.callband .ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding: clamp(64px, 8vw, 110px) 0 26px; font-size: .97rem; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { width: 140px; margin-bottom: 20px; }
.footer__brand p { max-width: 20em; }
.site-footer h3 { font: 800 .8rem/1.4 var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin: 6px 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--sky); }
.footer__big { font: 900 1.5rem/1.2 var(--font); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: clamp(44px, 6vw, 72px); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer__bottom a { color: rgba(255,255,255,.85); }
.footer__bottom .sep { color: var(--blue); margin: 0 .5em; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- OUR ICE: hero ---------- */
.ice-hero { position: relative; min-height: clamp(540px, 72svh, 740px); color: #fff; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); }
.ice-hero__bg { position: absolute; inset: 0; }
.ice-hero::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 170px; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(6, 26, 66, .6), rgba(6, 26, 66, 0)); }
.ice-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ice-hero__frost { position: absolute; inset: 0; z-index: 1; background: rgba(11, 42, 102, .55); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3); clip-path: polygon(0 0, 60% 0, 44% 100%, 0 100%); }
.ice-hero__content { position: relative; z-index: 3; width: 100%; max-width: var(--max); margin-inline: auto; padding: calc(var(--header-h) + 40px) var(--gutter) clamp(44px, 8vh, 84px); }
.ice-hero__content > * { max-width: min(34rem, 44vw); }
.h1 { font: 900 clamp(2.9rem, 6vw, 5.8rem)/.95 var(--font); letter-spacing: -.035em; margin: 0 0 .35em; color: var(--navy); }
.ice-hero .h1 { color: #fff; font-size: clamp(2.6rem, 4.9vw, 4.6rem); }
.ice-hero .h1 em { color: var(--sky); display: block; }
.ice-hero p { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.3vw, 1.2rem); }
@media (max-width: 760px) {
  .ice-hero { min-height: 0; }
  .ice-hero__frost { clip-path: polygon(0 30%, 100% 20%, 100% 100%, 0 100%); }
  .ice-hero__content > * { max-width: none; }
}

/* dropping cubes on Our Ice + Contact */
.ice-hero .cube { z-index: 2; }
.ice-hero .cube img, .order-hero .cube--disc img { filter: grayscale(1) sepia(1) hue-rotate(172deg) saturate(2.4) brightness(1.75) contrast(1.1) drop-shadow(0 0 1px rgba(255, 255, 255, .95)) drop-shadow(0 0 16px rgba(190, 225, 255, .6)); }
.ice-hero .cube--a { width: clamp(80px, 7.5vw, 124px); right: 30%; top: 20%; }
.ice-hero .cube--b { width: clamp(96px, 9vw, 150px); right: 7%; top: 46%; }
.ice-hero .cube--c { width: clamp(56px, 5vw, 86px); right: 16%; top: 14%; }
.ice-hero .cube--d { width: clamp(64px, 5.6vw, 96px); right: 38%; top: 64%; }
.order-hero { position: relative; overflow: hidden; }
.order-hero .cube--a { width: clamp(64px, 5.6vw, 96px); left: 41%; top: 13%; }
.order-hero .cube--disc { width: clamp(60px, 5vw, 84px); right: 34%; top: 50%; z-index: 3; }
@media (max-width: 760px) {
  .ice-hero .cube--b, .ice-hero .cube--d { display: none; }
  .ice-hero .cube--a { right: 8%; top: 14%; }
  .ice-hero .cube--c { right: 42%; top: 9%; }
  .order-hero .cube--a { left: auto; right: 6%; top: 11%; }
  .order-hero .cube--disc { display: none; }
}

/* ---------- OUR ICE: calculator (dark blue) ---------- */
.calc { background: var(--navy); color: #fff; overflow: hidden; }
.calc::before { content: ""; position: absolute; inset: 0; background: url("../../images/shared/ice-glow.jpg") center / cover; opacity: .22; mix-blend-mode: screen; }
.calc .wrap { position: relative; }
.calc__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: stretch; }
.calc__form { display: grid; gap: 26px; margin-top: 30px; }
.field > label { display: flex; justify-content: space-between; align-items: baseline; font: 800 .8rem/1.4 var(--font); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; color: var(--sky); }
.field output { font: 900 2rem/1 var(--font); color: #fff; letter-spacing: -.02em; text-transform: none; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 30px; background: transparent; cursor: pointer; }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; background: rgba(255,255,255,.25); border-radius: 6px; }
input[type="range"]::-moz-range-track { height: 6px; background: rgba(255,255,255,.25); border-radius: 6px; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; margin-top: -10px; background: #fff; border: 5px solid var(--blue); border-radius: 50%; }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; background: #fff; border: 5px solid var(--blue); border-radius: 50%; }
.switch { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; margin-bottom: 10px; border-radius: 12px; background: rgba(255,255,255,.08); cursor: pointer; }
.switch span { font-weight: 700; }
.switch small { display: block; color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 500; }
.switch input { -webkit-appearance: none; appearance: none; flex: none; width: 54px; height: 30px; border-radius: 30px; background: rgba(255,255,255,.25); position: relative; cursor: pointer; transition: background .3s; margin: 0; }
.switch input::after { content: ""; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: transform .35s var(--ease); }
.switch input:checked { background: var(--blue); }
.switch input:checked::after { transform: translateX(24px); }
.calc__result { background: #fff; color: var(--ink); border-radius: 22px; padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.calc__result .tag { align-self: flex-start; }
.calc .calc__kg { font: italic 900 clamp(5rem, 10vw, 9rem)/.85 var(--font); letter-spacing: -.05em; margin: .05em 0 .12em; color: var(--blue-600); }
.calc__kg small { font-size: .3em; font-style: normal; font-weight: 800; letter-spacing: 0; margin-left: .15em; color: var(--navy); }
.calc .calc__bags { font: 900 clamp(1.4rem, 2.2vw, 1.9rem)/1.2 var(--font); color: var(--navy); margin: 0 0 .9em; }
.calc .calc__note { color: var(--muted); font-size: .92rem; margin-top: 1em; }
@media (max-width: 860px) { .calc__grid { grid-template-columns: 1fr; } }

/* ---------- OUR ICE: sizes ---------- */
.sizes .bags { margin-top: clamp(36px, 5vw, 60px); }
.sizes .bulk { border-color: var(--ice-200); background: #fff; }
.sizes .bulk p { color: var(--navy); }
.sizes .bulk p span { color: var(--blue-600); }

/* ---------- OUR ICE: why clear ---------- */
.clear__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 100px); align-items: center; }
.clear__photo { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: #fff; }
.clear__photo img { width: 100%; height: 112%; object-fit: cover; }
.points { list-style: none; margin: clamp(28px, 4vw, 48px) 0 0; padding: 0; display: grid; gap: 14px; }
.points li { display: grid; grid-template-columns: auto 1fr; gap: 4px 22px; padding: 22px 24px; border-radius: 16px; background: #fff; }
.points .n { font: italic 900 2.8rem/.9 var(--font); color: var(--blue); grid-row: span 2; letter-spacing: -.04em; }
.points h3 { font: 900 1.25rem/1.25 var(--font); color: var(--navy); }
.points p { margin: 0; color: var(--muted); }
@media (max-width: 860px) { .clear__grid { grid-template-columns: 1fr; } .clear__photo { aspect-ratio: 4 / 3; } }

/* ---------- OUR ICE: collect / deliver ---------- */
.get__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); margin-top: clamp(32px, 4vw, 56px); }
.get__col { border-radius: 22px; padding: clamp(28px, 4vw, 56px); }
.get__col--light { background: var(--ice-100); }
.get__col--bright { background: var(--blue); color: #fff; }
.get__col h3 { font: italic 900 clamp(2.4rem, 4.4vw, 3.8rem)/1 var(--font); letter-spacing: -.04em; margin: 0 0 .35em; color: var(--navy); }
.get__col--bright h3 { color: #fff; }
.get__col p { color: var(--muted); max-width: 30em; }
.get__col--bright p { color: rgba(255,255,255,.92); }
.get__col--light .addr { background: #fff; }
.areas { list-style: none; padding: 0; margin: 1.2em 0 1.6em; display: flex; flex-wrap: wrap; gap: 8px; }
.areas li { background: #fff; color: var(--navy); font: 800 .8rem/1 var(--font); letter-spacing: .06em; text-transform: uppercase; padding: 10px 14px; border-radius: 30px; }
.get__col--bright .textlink { color: #fff; }
@media (max-width: 760px) { .get__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: #fff; }
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 100px); }
.faq details { border-radius: 14px; background: var(--ice-50); margin-bottom: 10px; transition: background .3s; }
.faq details[open] { background: var(--ice-100); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; font: 800 1.1rem/1.35 var(--font); color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--blue); position: relative; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 9px; right: 9px; top: 50%; height: 2.5px; margin-top: -1.25px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease); }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq .ans { padding: 0 24px 22px; color: var(--muted); }
.faq .ans p { margin: 0; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }

/* ---------- CONTACT: order builder ---------- */
.order-hero { background: linear-gradient(180deg, #F6FAFF 0%, #E6F1FD 60%, #D3E6FB 100%); padding-top: calc(var(--header-h) + clamp(28px, 6vh, 70px)); padding-bottom: clamp(60px, 8vw, 110px); }
.order-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 90px); align-items: start; }
.order-hero .h1 { font-size: clamp(3rem, 7vw, 6.2rem); margin-bottom: .2em; }
.order-hero .lede { margin-bottom: 1.8em; }
.form { display: grid; gap: 22px; background: #fff; border-radius: 22px; padding: clamp(22px, 3vw, 40px); }
.form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.form legend, .flabel { font: 800 .8rem/1.4 var(--font); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; padding: 0; color: var(--navy); }
.qty { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qty__item { border-radius: 14px; padding: 16px; background: var(--ice-50); }
.qty__item .sz { font: italic 900 2.4rem/.9 var(--font); letter-spacing: -.04em; display: block; margin-bottom: 12px; color: var(--blue-600); }
.qty__item .sz small { font-size: .38em; font-style: normal; font-weight: 800; letter-spacing: .02em; color: var(--navy); margin-left: .3em; }
.stepper { display: flex; align-items: stretch; height: 52px; background: #fff; border-radius: 10px; border: 2px solid var(--ice-200); overflow: hidden; }
.stepper button { width: 52px; flex: none; background: var(--blue-600); border: 0; color: #fff; font: 700 1.5rem/1 var(--font); cursor: pointer; transition: background .25s; }
.stepper button:hover { background: var(--navy); }
.stepper input { flex: 1; min-width: 0; border: 0; text-align: center; font: 900 1.3rem var(--font); background: transparent; color: var(--navy); -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg span { display: flex; align-items: center; justify-content: center; height: 54px; border-radius: 10px; border: 2px solid var(--ice-200); font: 800 .85rem/1 var(--font); letter-spacing: .05em; text-transform: uppercase; color: var(--navy); transition: background .25s, color .25s, border-color .25s; }
.seg input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.seg input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inp { display: grid; gap: 8px; }
.inp span { font: 800 .8rem/1.4 var(--font); letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.inp input, .inp select, .inp textarea { width: 100%; font: 600 1rem/1.4 var(--font); color: var(--ink); background: var(--ice-50); border: 2px solid transparent; border-radius: 10px; padding: 14px 14px; -webkit-appearance: none; appearance: none; }
.inp select { background: var(--ice-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230B2A66' stroke-width='2'/%3E%3C/svg%3E") right 14px center no-repeat; }
.inp input:focus, .inp select:focus { outline: none; border-color: var(--blue); background-color: #fff; }
.order-sum { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 20px; align-items: center; border-top: 2px solid var(--ice-100); padding-top: 20px; }
.order-sum p { margin: 0; font: 800 1.1rem/1.35 var(--font); color: var(--navy); }
.form-error { color: #B3261E; font-weight: 700; margin: 0; min-height: 1.4em; }
.is-hidden { display: none !important; }
.order-side__stage { position: relative; height: clamp(420px, 60vh, 620px); }
.order-side__disc { position: absolute; left: 50%; top: 50%; width: 86%; aspect-ratio: 1; transform: translate(-50%, -48%); border-radius: 50%; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-700) 100%); overflow: hidden; }
.order-side__disc::after { content: ""; position: absolute; inset: 0; background: url("../../images/shared/ice-glow.jpg") center / cover; opacity: .35; mix-blend-mode: screen; }
.order-side__stage > img { position: absolute; bottom: 0; left: 50%; height: 100%; width: auto; max-width: none; transform: translateX(-50%); z-index: 2; filter: drop-shadow(0 24px 30px rgba(6,26,66,.3)); }
.order-side .cube { width: 90px; right: 2%; top: 6%; z-index: 3; }
.direct { margin-top: 20px; display: grid; gap: 10px; }
.direct a { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 14px; background: #fff; text-decoration: none; transition: background .3s, color .3s; }
.direct a:hover { background: var(--navy); color: #fff; }
.direct .k { font: 800 .8rem/1.4 var(--font); letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); }
.direct a:hover .k { color: var(--sky); }
.direct .v { font: 900 1.2rem/1.2 var(--font); text-align: right; }
@media (max-width: 980px) { .order-grid { grid-template-columns: 1fr; } .order-side__stage { height: 440px; } }
@media (max-width: 520px) { .row2, .qty { grid-template-columns: 1fr; } }

/* ---------- CONTACT: visit ---------- */
.visit__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 80px); align-items: stretch; }
.map { position: relative; min-height: 440px; border-radius: 22px; overflow: hidden; background: var(--ice-100); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .visit__grid { grid-template-columns: 1fr; } .map { min-height: 360px; } }

/* ---------- simple pages ---------- */
.simple { background: linear-gradient(180deg, #F6FAFF 0%, #E2EFFC 100%); padding-top: calc(var(--header-h) + clamp(40px, 9vh, 110px)); padding-bottom: clamp(70px, 10vw, 140px); }
.sitemap-list { list-style: none; padding: 0; margin: clamp(30px, 4vw, 50px) 0 0; display: grid; gap: 14px; }
.sitemap-list > li { background: #fff; border-radius: 18px; padding: 24px 28px; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 16px; }
.sitemap-list a.top { font: 900 clamp(1.5rem, 2.4vw, 2rem)/1.1 var(--font); color: var(--navy); text-decoration: none; }
.sitemap-list a.top:hover { color: var(--blue-600); }
.sitemap-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.sitemap-list ul a { text-decoration: none; color: var(--muted); font-weight: 600; }
.sitemap-list ul a:hover { color: var(--blue-600); }
@media (max-width: 640px) { .sitemap-list > li { grid-template-columns: 1fr; } }

/* ---------- motion helpers ---------- */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .04em .1em; margin: 0 -.04em -.1em; }
.w > span { display: inline-block; will-change: transform; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; } }
