/* ==========================================================================
   City Storage — site.css
   Design system + components + motion. Vanilla CSS, no build step.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --orange: #E8743A;
  --orange-deep: #E2682B;
  --orange-web: #EF7918;
  --orange-soft: #F19A6E;
  --peach: #FBE3D6;
  --peach-2: #F6C9B3;
  --cream: #FFF8F4;
  --mauve: #8B4F4F;
  --mauve-deep: #4A2A25;
  --ink: #1E1E1E;
  --ink-2: #3A3A3A;
  --muted: #6B6B6B;
  --line: rgba(30, 30, 30, .08);
  --off: #F5F5F5;
  --white: #FFFFFF;

  --font: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(30, 20, 10, .06), 0 2px 8px rgba(30, 20, 10, .06);
  --shadow-md: 0 4px 14px rgba(30, 20, 10, .08), 0 12px 32px rgba(30, 20, 10, .08);
  --shadow-lg: 0 10px 30px rgba(30, 20, 10, .12), 0 30px 70px rgba(30, 20, 10, .14);
  --shadow-orange: 0 10px 30px rgba(232, 116, 58, .35);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 84px;
  --section-y: clamp(72px, 10vw, 128px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--orange); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Cross-document page transitions (Chromium 126+; harmless elsewhere) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out .28s var(--ease-io) both; }
::view-transition-new(root) { animation: vt-in .42s var(--ease-out) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Layout utils ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 860px); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; overflow-x: clip; /* pre-reveal translateX offsets must not widen the page */ }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section--orange {
  color: #fff;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, .18), transparent 60%),
    radial-gradient(900px 500px at 100% 110%, rgba(74, 42, 37, .28), transparent 60%),
    var(--orange);
  isolation: isolate;
}
.section--orange::before {
  /* subtle diagonal weave like the corridor doors */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 22px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .35));
}
.section--cream { background: var(--cream); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); }
.section__head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); color: var(--orange); }
.section--orange .section__head h2 { color: #fff; }
.section__head p { margin-top: 14px; font-size: 1.125rem; color: var(--muted); }
.section--orange .section__head p { color: rgba(255, 255, 255, .88); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--peach); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.section--orange .eyebrow { background: rgba(255, 255, 255, .18); color: #fff; }
.text-center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ic { width: 1em; height: 1em; flex: none; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 2000; padding: 12px 18px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-weight: 700; transform: translateY(-200%); transition: transform .3s var(--ease-out); }
.skip-link:focus { transform: none; }
body.is-loading { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange); --btn-fg: #fff;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), background-color .25s, color .25s;
  will-change: transform;
}
.btn::after {
  /* light sweep */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--orange { --btn-bg: var(--orange); --btn-fg: #fff; box-shadow: var(--shadow-orange); }
.btn--orange:hover { --btn-bg: var(--orange-deep); box-shadow: 0 14px 34px rgba(232, 116, 58, .45); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--orange); }
.btn--white:hover { --btn-fg: var(--orange-deep); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--orange); box-shadow: inset 0 0 0 2px var(--orange); }
.btn--outline:hover { --btn-bg: var(--orange); --btn-fg: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55); }
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .14); box-shadow: inset 0 0 0 2px #fff; }
.btn--lg { min-height: 60px; padding: 0 36px; font-size: 1rem; }
.btn--sm { min-height: 42px; padding: 0 20px; font-size: .8rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff;
  text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .4); text-underline-offset: 6px;
  transition: text-decoration-color .25s, gap .25s;
}
.link-arrow:hover { text-decoration-color: #fff; gap: 12px; }
.link-arrow--orange { color: var(--orange); text-decoration-color: rgba(232, 116, 58, .35); }
.link-arrow--orange:hover { text-decoration-color: var(--orange); }
.link-arrow svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  color: #fff;
  transition: background-color .4s var(--ease-out), box-shadow .4s, height .4s var(--ease-out), backdrop-filter .4s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(40, 20, 12, .45), transparent);
  opacity: 1; transition: opacity .4s;
}
.site-header.is-scrolled { height: 68px; background: rgba(232, 116, 58, .86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 10px 30px rgba(74, 42, 37, .18); }
.site-header.is-scrolled::before { opacity: 0; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; background: #fff; border-radius: var(--r-pill); padding: 7px 18px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-spring); }
.brand:hover { transform: scale(1.03); }
.brand img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 14px; font-weight: 600; font-size: .95rem; border-radius: var(--r-pill);
  transition: background-color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; border-radius: 2px;
  background: #fff; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link:hover { background: rgba(255, 255, 255, .12); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, .16);
  place-items: center; position: relative;
}
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease-out), opacity .2s, top .35s var(--ease-out); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; gap: 8px;
    background: linear-gradient(160deg, var(--orange), var(--orange-deep) 60%, var(--mauve));
    padding: 100px var(--gutter) 40px;
    clip-path: circle(0 at calc(100% - 44px) 42px); transition: clip-path .6s var(--ease-io);
  }
  body.nav-open .nav { clip-path: circle(150% at calc(100% - 44px) 42px); }
  .nav__link { font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; padding: 8px 12px; opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease-out), transform .6s var(--ease-out); }
  body.nav-open .nav__link { opacity: 1; transform: none; }
  body.nav-open .nav__link:nth-child(1) { transition-delay: .18s; }
  body.nav-open .nav__link:nth-child(2) { transition-delay: .26s; }
  body.nav-open .nav__link:nth-child(3) { transition-delay: .34s; }
  body.nav-open .nav__link:nth-child(4) { transition-delay: .42s; }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 20px; opacity: 0; transform: translateY(18px); transition: opacity .5s .5s, transform .6s .5s var(--ease-out); }
  body.nav-open .nav .btn { opacity: 1; transform: none; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 901px) { .nav .btn { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: var(--orange); color: #fff;
  transition: transform .7s var(--ease-io), visibility 0s .7s;
}
.preloader__mark { width: 84px; height: 84px; animation: pre-pop 1s var(--ease-spring) both; }
.preloader__mark path, .preloader__mark rect, .preloader__mark circle { fill: #fff; }
.preloader__bar { width: 120px; height: 3px; margin-top: 22px; background: rgba(255, 255, 255, .3); border-radius: 3px; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 40%; background: #fff; border-radius: 3px; animation: pre-bar 1s var(--ease-io) infinite; }
.preloader.is-done { transform: translateY(-100%); visibility: hidden; }
.preloader.is-done .preloader__inner { opacity: 0; transition: opacity .3s; }
@keyframes pre-pop { from { transform: scale(.6) rotate(-12deg); opacity: 0; } }
@keyframes pre-bar { from { transform: translateX(-120%); } to { transform: translateX(300%); } }
.preloader__inner { display: grid; place-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 920px); display: flex; flex-direction: column;
  color: #fff; overflow: hidden; isolation: isolate;
  padding-top: calc(var(--header-h) + 8px);
}
.hero--short { min-height: min(78svh, 720px); }
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--orange); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; transform: scale(1.08); animation: kenburns 22s var(--ease-out) forwards; }
@keyframes kenburns { to { transform: scale(1) translateY(-1.5%); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(40, 18, 10, .35), rgba(40, 18, 10, .15) 40%, rgba(232, 116, 58, .55) 100%),
    radial-gradient(60% 50% at var(--mx, 50%) var(--my, 45%), rgba(255, 210, 180, .28), transparent 70%);
  transition: background .2s;
}
.hero__inner { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-block: 40px 96px; }
.hero__glass {
  position: relative; max-width: 760px; padding: clamp(28px, 4.5vw, 56px);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .08));
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 30px 80px rgba(40, 18, 10, .28), inset 0 1px 0 rgba(255, 255, 255, .5);
  transform: translate3d(calc(var(--px, 0) * 10px), calc(var(--py, 0) * 8px), 0);
  transition: transform .6s var(--ease-out);
  will-change: transform;
}
.hero__glass::before {
  /* animated edge light */
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--angle, 0deg), transparent 0 60%, rgba(255, 255, 255, .8) 75%, transparent 90%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin-angle 7s linear infinite;
}
@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spin-angle { to { --angle: 360deg; } }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.hero__tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(232, 116, 58, .7); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(232, 116, 58, 0); } 100% { box-shadow: 0 0 0 0 rgba(232, 116, 58, 0); } }
.hero__title { margin-top: 22px; font-size: clamp(2rem, 5.4vw, 4.2rem); line-height: 1.06; text-shadow: 0 6px 30px rgba(40, 18, 10, .25); }
.hero__lead { margin-top: 18px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 56ch; color: rgba(255, 255, 255, .92); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: 32px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .85);
}
.hero__scroll i { width: 1px; height: 38px; background: linear-gradient(to bottom, #fff, transparent); animation: scroll-cue 1.8s var(--ease-io) infinite; transform-origin: top; }
@keyframes scroll-cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* word-by-word title reveal (JS adds .w wrappers) */
.js .split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.js .split .w > span { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .9s var(--ease-out), opacity .6s; }
.js .split.is-in .w > span { transform: none; opacity: 1; }

/* Urgency ticker */
.ticker {
  position: relative; z-index: 2; background: var(--ink); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  overflow: hidden; height: 40px; display: flex; align-items: center;
}
.ticker__track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; padding-left: 48px; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 10px; }
.ticker__item i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Marquee strip (brand promises) */
.marquee { position: relative; overflow: hidden; background: #fff; border-block: 1px solid var(--line); padding: 18px 0; }
.marquee__track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 40s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 16px; font-weight: 800; font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: -.01em; color: var(--ink); }
.marquee__item svg { width: 22px; height: 22px; color: var(--orange); }
.marquee__item:nth-child(even) { color: var(--orange); }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 26px 24px; border-radius: var(--r-lg); background: var(--cream); border: 1px solid rgba(232, 116, 58, .12); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; inset: auto -20% -60% auto; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(232, 116, 58, .18), transparent 70%); }
.stat__num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.03em; color: var(--orange); line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.stat__num small { font-size: .5em; font-weight: 700; }
.stat__label { margin-top: 8px; font-size: .95rem; color: var(--muted); font-weight: 500; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md);
  border: 1px solid rgba(30, 30, 30, .04);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-lg); }

/* Unit cards (3D tilt) */
.unit-card { padding: 28px 24px 26px; text-align: center; transform-style: preserve-3d; perspective: 900px; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.unit-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(232, 116, 58, .12), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.unit-card:hover::before { opacity: 1; }
.unit-card > * { position: relative; z-index: 1; }
.unit-card h3 { font-size: 1.5rem; color: var(--orange); min-height: 2.3em; display: flex; align-items: center; justify-content: center; }
.unit-card__img { height: 190px; display: flex; align-items: center; justify-content: center; margin: 16px auto 14px; transform: translateZ(40px); transition: transform .5s var(--ease-out); }
.unit-card__img picture { display: flex; justify-content: center; height: 100%; width: 100%; }
.unit-card__img img { height: 190px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(74, 42, 37, .22)); transition: transform .6s var(--ease-spring); }
.unit-card:hover .unit-card__img img { transform: translateY(-6px) scale(1.04); }
.unit-card__dims { font-weight: 500; color: var(--ink-2); }
.unit-card__vol { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 5px 12px; border-radius: var(--r-pill); background: var(--peach); color: var(--orange-deep); font-weight: 700; font-size: .8rem; letter-spacing: .04em; white-space: nowrap; }
.unit-card__dims { flex: 1; }
.unit-card .btn { margin-top: 18px; }
.unit-card.is-recommended { box-shadow: 0 0 0 3px var(--orange), var(--shadow-lg); }
.unit-card.is-recommended::after { content: "Rekomendasi"; position: absolute; top: 14px; right: 14px; z-index: 2; padding: 5px 10px; border-radius: var(--r-pill); background: var(--orange); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; animation: pop-in .5s var(--ease-spring) both; }
@keyframes pop-in { from { transform: scale(.5); opacity: 0; } }

/* Freestyle cards (on orange band) */
.free-card { background: var(--peach-2); color: var(--ink); border-radius: var(--r-xl); padding: 28px 24px 26px; text-align: center; box-shadow: 0 20px 50px rgba(74, 42, 37, .22); transition: transform .5s var(--ease-out), box-shadow .5s; }
.free-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(74, 42, 37, .3); }
.free-card h3 { color: var(--orange-deep); font-size: 1.6rem; }
.free-card__img { background: #fff; border-radius: var(--r-lg); padding: 14px; margin: 16px 0; display: flex; align-items: center; justify-content: center; height: 210px; }
.free-card__img img { height: 182px; width: auto; max-width: 100%; object-fit: contain; transition: transform .6s var(--ease-spring); }
.free-card:hover .free-card__img img { transform: rotate(-3deg) scale(1.05); }
.free-card p { font-weight: 500; }
.free-card .btn { margin-top: 18px; }

/* Feature cards (spotlight) */
.feature-card { padding: 30px 28px 32px; overflow: hidden; }
.feature-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 116, 58, .14), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-6px); }
.icon-tile {
  width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep)); box-shadow: 0 10px 22px rgba(232, 116, 58, .35);
  transition: transform .5s var(--ease-spring);
}
.icon-tile svg { width: 36px; height: 36px; }
.feature-card:hover .icon-tile { transform: rotate(-6deg) scale(1.08); }
.feature-card h3 { margin-top: 22px; font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.feature-card p { margin-top: 10px; color: var(--ink-2); }
.feature-card--center { text-align: center; }
.feature-card--center .icon-tile { margin-inline: auto; }

/* Benefit tiles (Storage page) */
.benefit { text-align: center; padding: 34px 26px; }
.benefit .icon-tile { margin: -70px auto 0; border: 6px solid #fff; width: 84px; height: 84px; border-radius: 22px; }
.benefit h3 { margin-top: 16px; color: var(--orange); font-size: 1.45rem; }
.benefit p { margin-top: 10px; color: var(--ink-2); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
@media (max-width: 1000px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* Steps (Storage page) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--peach-2); color: var(--ink); border-radius: var(--r-xl); padding: 40px 28px 32px; text-align: center; box-shadow: 0 20px 50px rgba(74, 42, 37, .22); transition: transform .5s var(--ease-out); }
.step:hover { transform: translateY(-8px); }
.step__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; border-radius: var(--r-pill); background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .14em; box-shadow: var(--shadow-md); }
.step .icon-tile { margin: 8px auto 0; background: #fff; color: var(--orange); box-shadow: var(--shadow-sm); }
.step h3 { margin-top: 18px; color: var(--orange-deep); font-size: 1.4rem; }
.step p { margin-top: 10px; font-weight: 500; }
.step .btn { margin-top: 18px; }
.steps__line { position: absolute; left: 18%; right: 18%; top: 58px; height: 2px; background: repeating-linear-gradient(to right, rgba(255, 255, 255, .7) 0 10px, transparent 10px 20px); z-index: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } .steps__line { display: none; } }

/* Size finder */
.finder { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(24px, 4vw, 48px); border-radius: var(--r-xl); background: var(--cream); border: 1px solid rgba(232, 116, 58, .14); }
.finder h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--ink); }
.finder p.lead { margin-top: 10px; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { padding: 11px 16px; border-radius: var(--r-pill); background: #fff; border: 1.5px solid rgba(30, 30, 30, .1); font-weight: 600; font-size: .92rem; transition: all .3s var(--ease-out); display: inline-flex; align-items: center; gap: 8px; }
.chip svg { width: 18px; height: 18px; color: var(--orange); }
.chip:hover { border-color: var(--orange); transform: translateY(-2px); }
.chip[aria-pressed="true"] { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.chip[aria-pressed="true"] svg { color: #fff; }
.finder__result { margin-top: 24px; padding: 18px 20px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.finder__result strong { font-size: 1.25rem; color: var(--orange); display: block; }
.finder__result span { color: var(--muted); font-size: .95rem; }
.finder__result .btn { margin-left: auto; flex: none; }
.finder__viz { position: relative; aspect-ratio: 1 / .9; display: grid; place-items: center; }
.finder__viz svg { width: 100%; height: 100%; overflow: visible; }
.finder__viz .cube { transition: opacity .5s var(--ease-out), transform .6s var(--ease-spring); transform-box: fill-box; transform-origin: center; }
.finder__viz .cube.is-off { opacity: 0; transform: translateY(-30px) scale(.6); }
.finder__meter { position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-weight: 700; font-size: .85rem; white-space: nowrap; }
.finder__meter b { color: var(--orange-soft); font-size: 1.1rem; }
@media (max-width: 900px) { .finder { grid-template-columns: 1fr; } .finder__viz { max-width: 380px; margin: 0 auto; } .finder__result { flex-wrap: wrap; } .finder__result .btn { margin-left: 0; width: 100%; } }

/* Promo banner */
.promo { position: relative; overflow: hidden; border-radius: var(--r-xl); min-height: 360px; display: grid; place-items: center; text-align: center; color: #fff; isolation: isolate; box-shadow: var(--shadow-lg); }
.promo__bg { position: absolute; inset: 0; z-index: -1; }
.promo__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.2s var(--ease-out); }
.promo:hover .promo__bg img { transform: scale(1.1); }
.promo__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(74, 42, 37, .55), rgba(74, 42, 37, .7)); }
.promo::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px; background: conic-gradient(from var(--angle, 0deg), var(--orange), #fff, var(--orange-soft), var(--orange)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin-angle 5s linear infinite; z-index: 1; pointer-events: none; }
.promo__inner { padding: 48px var(--gutter); }
.promo__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--r-pill); background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .35); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.promo__badge i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74, 222, 128, .7); animation: ping 1.6s infinite; }
.promo h2 { margin-top: 18px; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.promo h2 em { font-style: normal; color: var(--orange-soft); }
.promo .btn { margin-top: 26px; }
.promo__note { margin-top: 18px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }

/* Location cards */
.loc-card { overflow: hidden; display: flex; flex-direction: column; }
.loc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.loc-card:hover .loc-card__media img { transform: scale(1.08); }
.loc-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(74, 42, 37, .55), transparent 55%); }
.loc-card__pin { position: absolute; left: 18px; bottom: 16px; z-index: 1; display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.loc-card__pin svg { width: 18px; height: 18px; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .3)); animation: bob 2.4s var(--ease-io) infinite; }
@keyframes bob { 50% { transform: translateY(-4px); } }
.loc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.loc-card h3 { color: var(--orange); font-size: 1.5rem; }
.loc-card address { font-style: normal; margin-top: 10px; color: var(--ink-2); flex: 1; }
.loc-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.loc-card__tags span { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; padding: 6px 10px; border-radius: var(--r-pill); background: var(--peach); color: var(--orange-deep); }
.loc-card__tags svg { width: 14px; height: 14px; }
.loc-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.loc-card__actions .btn { flex: 1 1 150px; white-space: nowrap; padding: 0 16px; letter-spacing: .04em; }

/* Map section (Locations page) */
.map-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.map-tabs button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--r-pill); background: #fff; border: 1.5px solid rgba(30, 30, 30, .1); font-weight: 700; transition: all .3s var(--ease-out); }
.map-tabs button svg { width: 18px; height: 18px; }
.map-tabs button[aria-selected="true"] { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: var(--shadow-orange); }
.map-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 8; background: var(--cream); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; transition: opacity .6s; }
.map-frame iframe.is-active { opacity: 1; }
.map-frame__hint { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-weight: 600; }
@media (max-width: 700px) { .map-frame { aspect-ratio: 4 / 3; } }

/* Testimonials */
.testi { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.testi__badge { background: #fff; border-radius: var(--r-xl); padding: 22px; display: grid; place-items: center; box-shadow: 0 20px 50px rgba(74, 42, 37, .25); }
.testi__badge img { width: 200px; }
.testi__stage { position: relative; min-height: 220px; }
.testi__quote { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out), transform .7s var(--ease-out); pointer-events: none; }
.testi__quote.is-active { opacity: 1; transform: none; pointer-events: auto; }
.testi__quote blockquote { margin: 0; font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 600; line-height: 1.4; letter-spacing: -.01em; }
.testi__quote figcaption { margin-top: 18px; font-weight: 600; color: rgba(255, 255, 255, .85); display: flex; align-items: center; gap: 10px; }
.testi__quote figcaption::before { content: ""; width: 34px; height: 2px; background: #fff; border-radius: 2px; }
.testi__mark { position: absolute; top: -40px; left: -10px; font-size: 9rem; line-height: 1; font-weight: 900; color: rgba(255, 255, 255, .16); pointer-events: none; font-family: Georgia, serif; }
.testi__controls { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.testi__btn { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .4); backdrop-filter: blur(6px); transition: transform .3s var(--ease-spring), background .3s; }
.testi__btn:hover { background: #fff; color: var(--orange); transform: scale(1.08); }
.testi__btn svg { width: 20px; height: 20px; }
.testi__dots { display: flex; gap: 8px; margin-left: 6px; }
.testi__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .45); transition: all .3s; }
.testi__dots button[aria-selected="true"] { background: #fff; width: 28px; border-radius: 6px; }
.testi__progress { height: 3px; background: rgba(255, 255, 255, .25); border-radius: 3px; overflow: hidden; margin-top: 20px; max-width: 320px; }
.testi__progress i { display: block; height: 100%; background: #fff; width: 0; }
.testi__progress.is-running i { animation: progress 6s linear forwards; }
@keyframes progress { to { width: 100%; } }
@media (max-width: 860px) { .testi { grid-template-columns: 1fr; } .testi__badge { max-width: 300px; } }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 30, 30, .05); overflow: hidden; transition: box-shadow .3s; }
.faq__item.is-open { box-shadow: var(--shadow-md); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-weight: 700; font-size: 1.05rem; }
.faq__q span:first-child { display: flex; align-items: center; gap: 14px; }
.faq__q .n { font-size: .75rem; font-weight: 800; color: var(--orange); letter-spacing: .1em; }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--peach); color: var(--orange); display: grid; place-items: center; transition: transform .4s var(--ease-spring), background .3s, color .3s; }
.faq__icon svg { width: 16px; height: 16px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 24px 22px 62px; color: var(--ink-2); }
@media (max-width: 560px) { .faq__a p { padding-left: 24px; } }

/* Split intro (Storage page) */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-2 h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--orange); }
.split-2 p { margin-top: 16px; color: var(--ink-2); font-size: 1.1rem; }
.split-2__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.split-2__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.2s var(--ease-out); }
.split-2__media:hover img { transform: scale(1); }
.split-2__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(232, 116, 58, .35), transparent 50%); }
.split-2__float { position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: var(--r-md); padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); animation: float-y 4s var(--ease-io) infinite; }
.split-2__float .icon-tile { width: 40px; height: 40px; border-radius: 12px; }
.split-2__float .icon-tile svg { width: 20px; height: 20px; }
.split-2__float small { display: block; color: var(--muted); font-weight: 500; }
@keyframes float-y { 50% { transform: translateY(-6px); } }
@media (max-width: 860px) { .split-2 { grid-template-columns: 1fr; } .split-2--flip .split-2__media { order: -1; } }

/* Price ribbon */
.ribbon { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: var(--r-pill); background: var(--orange); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; box-shadow: var(--shadow-orange); }
.ribbon svg { width: 16px; height: 16px; }

/* Help / contact card */
.help { text-align: center; }
.help h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); color: var(--orange); }
.help p { margin: 16px auto 0; max-width: 60ch; color: var(--ink-2); font-size: 1.1rem; }
.help__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }

/* ---------- CTA + Footer ---------- */
.footer { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.footer__bg { position: absolute; inset: 0; z-index: -1; }
.footer__bg img { width: 100%; height: 100%; object-fit: cover; }
.footer__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(139, 79, 79, .92), rgba(74, 42, 37, .96)); }
.cta { text-align: center; padding: clamp(64px, 9vw, 110px) 0 clamp(40px, 6vw, 72px); }
.cta .brand { pointer-events: none; }
.cta h2 { margin-top: 26px; font-size: clamp(1.9rem, 4.2vw, 3rem); }
.cta .btn { margin-top: 28px; }
.footer__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px 40px; padding: 40px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.footer__col { grid-column: span 2; }
.footer__col--wide { grid-column: span 3; }
.footer__col address { font-style: normal; font-size: .95rem; color: rgba(255, 255, 255, .92); line-height: 1.7; }
.footer__col h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin-bottom: 14px; }
.footer__col li { padding: 4px 0; font-size: .95rem; color: rgba(255, 255, 255, .92); }
.footer__col li a { position: relative; transition: color .2s; }
.footer__col li a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer__col li span { color: rgba(255, 255, 255, .6); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 200px 28px 0; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .85rem; color: rgba(255, 255, 255, .75); }
@media (max-width: 560px) { .footer__bottom { padding-right: 0; padding-bottom: 80px; } }
.footer__bottom b { color: var(--orange-soft); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__col, .footer__col--wide { grid-column: auto; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; height: 58px; padding: 0 18px 0 12px; border-radius: var(--r-pill);
  background: #25D366; color: #fff; font-weight: 700; box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transform: translateY(120px); transition: transform .6s var(--ease-spring), box-shadow .3s;
}
.wa-float.is-visible { transform: none; }
.wa-float:hover { box-shadow: 0 16px 40px rgba(37, 211, 102, .55); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: ping 2.2s infinite; z-index: -1; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float span { font-size: .9rem; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 0 14px; } }

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); transition-delay: calc(var(--i, 0) * 90ms); will-change: opacity, transform; }
.js [data-reveal="left"] { transform: translateX(-36px); }
.js [data-reveal="right"] { transform: translateX(36px); }
.js [data-reveal="scale"] { transform: scale(.92); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Scroll-driven parallax where supported */
@supports (animation-timeline: view()) {
  .parallax-slow { animation: para-slow linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
  .parallax-fast { animation: para-fast linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
  @keyframes para-slow { from { transform: translateY(30px); } to { transform: translateY(-30px); } }
  @keyframes para-fast { from { transform: translateY(60px); } to { transform: translateY(-60px); } }
}
@media (prefers-reduced-motion: reduce) { .parallax-slow, .parallax-fast { animation: none !important; } }

/* Section divider curves */
.curve-top { position: relative; }
.curve-top::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 48px; background: #fff; clip-path: ellipse(60% 100% at 50% 0); }

/* Page hero heading sizes for sub-pages */
.hero--short .hero__title { font-size: clamp(2.2rem, 5.4vw, 4rem); }

/* Print */
@media print { .site-header, .wa-float, .preloader, .ticker, .marquee { display: none !important; } .hero { min-height: auto; color: #000; } }
