/* =====================================================================
   GREAT PROSPERITY — Hotel Supplies
   "Azure Maison" design system · white / navy / royal blue
   Display: Bodoni Moda · Text: Jost · Plain CSS, no build step.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* palette */
  --paper: #ffffff;
  --cloud: #f4f7fb;
  --sky: #e8f0fa;
  --line: #dde6f0;
  --ink: #0b1d33;
  --navy: #0e2a4e;
  --navy-deep: #071a30;
  --muted: #48607c;
  --blue: #1f5fd0;
  --blue-bright: #3f83e8;
  --blue-soft: #9cc0f0;
  --glass: rgba(255, 255, 255, .72);

  /* type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', system-ui, sans-serif;

  /* rhythm */
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1200px;
  --nav-h: 74px;

  /* motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  /* z scale */
  --z-nav: 50;
  --z-dotnav: 40;
  --z-lightbox: 80;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--on-dark { color: var(--blue-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background-color .25s var(--ease-soft), color .25s var(--ease-soft),
              border-color .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.btn svg { width: 17px; height: 17px; flex: none; transition: translate .25s var(--ease-out); }
.btn:hover svg { translate: 3px 0; }

.btn--primary {
  background: linear-gradient(120deg, var(--blue) 10%, var(--blue-bright) 90%);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(31, 95, 208, .55);
}
.btn--primary:hover { box-shadow: 0 16px 34px -10px rgba(31, 95, 208, .7); }

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

/* used on dark navy surfaces */
.btn--hero-ghost,
.btn--on-dark {
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--hero-ghost:hover,
.btn--on-dark:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .65); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  z-index: calc(var(--z-nav) + 1);
  pointer-events: none;
}

/* =====================================================================
   NAVIGATION — floating glass pill
   ===================================================================== */
.nav {
  position: fixed;
  top: 14px; left: 50%;
  translate: -50% 0;
  width: min(100% - 2rem, var(--container));
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 .9rem 0 1.1rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 14px 40px -18px rgba(7, 26, 48, .35);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  z-index: var(--z-nav);
  transition: box-shadow .3s var(--ease-soft), background-color .3s var(--ease-soft);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px -18px rgba(7, 26, 48, .45);
}

.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand__logo { width: 42px; height: 42px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand__sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--blue);
}

.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  position: relative;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--muted);
  transition: color .2s var(--ease-soft), background-color .2s var(--ease-soft);
}
.nav__link:hover { color: var(--ink); background: rgba(31, 95, 208, .07); }
.nav__link.is-active { color: #fff; background: var(--navy); }

.nav__right { display: flex; align-items: center; gap: .6rem; }
.nav__cta { padding: .62rem 1.35rem; font-size: .86rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px; height: 46px;
  border-radius: 50%;
  transition: background-color .2s var(--ease-soft);
}
.nav__burger span {
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: rotate .3s var(--ease-out), translate .3s var(--ease-out), opacity .2s;
}
.nav__burger:hover { background: rgba(31, 95, 208, .08); }

@media (max-width: 900px) {
  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px -20px rgba(7, 26, 48, .4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    translate: 0 -8px;
    visibility: hidden;
    transition: opacity .25s var(--ease-soft), translate .25s var(--ease-out), visibility .25s;
  }
  .nav.is-open .nav__links { opacity: 1; translate: 0 0; visibility: visible; }
  .nav__link { padding: .85rem 1.1rem; text-align: center; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__burger span:nth-child(1) { rotate: 45deg; translate: 0 7px; }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { rotate: -45deg; translate: 0 -7px; }
}

/* =====================================================================
   HERO — cinematic slideshow (home)
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__slides { position: absolute; inset: 0; z-index: -3; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease-soft);
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s var(--ease-soft) forwards;
}
@keyframes kenburns {
  from { scale: 1; }
  to { scale: 1.09; }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 26, 48, .55) 0%, rgba(7, 26, 48, .18) 38%, rgba(7, 26, 48, .84) 100%),
    linear-gradient(100deg, rgba(7, 26, 48, .72) 0%, rgba(7, 26, 48, .12) 60%);
}

/* faint architectural grid over the veil */
.hero__gridlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  align-items: center;
  gap: 3rem;
  padding-block: calc(var(--nav-h) + 3rem) 4.5rem;
}

.hero__eyebrow { color: var(--blue-soft); }

.hero h1 {
  margin-top: 1.4rem;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  font-weight: 600;
  color: #fff;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue-soft);
}

/* staggered line reveal */
.hl { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hl > i {
  display: block;
  font-style: inherit;
  translate: 0 110%;
  animation: line-up 1s var(--ease-out) forwards;
}
.hl:nth-child(2) > i { animation-delay: .12s; }
.hl:nth-child(3) > i { animation-delay: .24s; }
@keyframes line-up { to { translate: 0 0; } }

.hero__sub {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .86);
  opacity: 0;
  animation: fade-up .9s var(--ease-out) .45s forwards;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.2rem;
  opacity: 0;
  animation: fade-up .9s var(--ease-out) .6s forwards;
}
@keyframes fade-up {
  from { opacity: 0; translate: 0 24px; }
  to { opacity: 1; translate: 0 0; }
}

/* glass slide console — caption + thumbs + progress */
.hero__console {
  justify-self: end;
  width: 100%;
  max-width: 330px;
  padding: 1.2rem 1.3rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(9, 28, 50, .42);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  opacity: 0;
  animation: fade-up .9s var(--ease-out) .75s forwards;
}
.hero__console-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.hero__console-title {
  margin-top: .35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  min-height: 2.1rem;
}
.hero__thumbs { display: flex; gap: .55rem; margin-top: .9rem; }
.hero__thumb {
  position: relative;
  width: 58px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: .55;
  outline: 1px solid rgba(255, 255, 255, .25);
  transition: opacity .25s var(--ease-soft), outline-color .25s var(--ease-soft);
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero__thumb.is-active,
.hero__thumb:hover { opacity: 1; outline-color: rgba(255, 255, 255, .8); }
.hero__bar {
  margin-top: .95rem;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .2);
  overflow: hidden;
}
.hero__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue-bright);
}
.hero__bar.is-running i { animation: bar-run var(--slide-ms, 6500ms) linear forwards; }
@keyframes bar-run { from { width: 0; } to { width: 100%; } }

/* scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.hero__scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .35), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scroll i::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: #fff;
  animation: scroll-drip 2s var(--ease-soft) infinite;
}
@keyframes scroll-drip {
  0% { top: -50%; }
  100% { top: 110%; }
}

@media (max-width: 900px) {
  .hero__stage { grid-template-columns: 1fr; padding-block: calc(var(--nav-h) + 4rem) 6rem; }
  .hero__console { justify-self: start; max-width: 100%; }
  .hero__scroll { display: none; }
}

/* =====================================================================
   MARQUEE — endless category ribbon
   ===================================================================== */
.marquee {
  padding-block: 1.4rem;
  border-block: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  padding-right: 3.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  white-space: nowrap;
}
.marquee__item svg { width: 10px; height: 10px; color: var(--blue); flex: none; }
@keyframes marquee {
  to { translate: -50% 0; }
}

/* =====================================================================
   JOURNEY — sticky scroll tour
   The section is several viewports tall; the inner panel sticks for the
   whole ride while JS drives .is-active chapters + the --jp progress var.
   ===================================================================== */
.journey {
  position: relative;
  height: 520vh;
  background: var(--cloud);
}
.journey__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}
.journey__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 120% at 90% -10%, var(--sky) 0%, transparent 55%),
    radial-gradient(70% 120% at 5% 110%, rgba(63, 131, 232, .1) 0%, transparent 55%),
    var(--cloud);
}
.journey__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 42, 78, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 42, 78, .045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
}

.journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

/* chapters stack in the same grid cell and crossfade */
.journey__stack { display: grid; margin-top: 1.8rem; }
.journey__step {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .5s var(--ease-soft), visibility .5s;
}
.journey__step h3,
.journey__step p,
.journey__step .journey__link {
  opacity: 0;
  translate: 0 34px;
  transition: opacity .6s var(--ease-out), translate .6s var(--ease-out);
}
.journey__step.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.journey__step.is-active h3 { opacity: 1; translate: 0 0; transition-delay: .08s; }
.journey__step.is-active p { opacity: 1; translate: 0 0; transition-delay: .16s; }
.journey__step.is-active .journey__link { opacity: 1; translate: 0 0; transition-delay: .24s; }

.journey__step h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--ink);
  max-width: 20ch;
}
.journey__step p {
  margin-top: 1rem;
  max-width: 30rem;
  color: var(--muted);
}
.journey__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.4rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue);
  border-bottom: 1px solid var(--blue-soft);
  padding-bottom: .2rem;
  transition: color .25s var(--ease-soft), border-color .25s var(--ease-soft);
}
.journey__link:hover { color: var(--navy); border-color: var(--navy); }

/* counter + continuous progress bar (width follows --jp every frame) */
.journey__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.8rem;
  max-width: 30rem;
}
.journey__count {
  font-family: var(--font-display);
  color: var(--muted);
  white-space: nowrap;
}
.journey__count b {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
}
.journey__count i { font-style: normal; margin-left: .35rem; font-size: .95rem; }
.journey__bar {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}
.journey__bar i {
  display: block;
  height: 100%;
  width: calc(var(--jp, 0) * 100%);
  background: var(--blue-bright);
}

/* image frame */
.journey__frame {
  position: relative;
  aspect-ratio: 4 / 4.3;
  max-height: 74svh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 90px -50px rgba(14, 42, 78, .5);
}
.journey__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  scale: 1.1;
  transition: opacity .8s var(--ease-soft), scale 4.5s var(--ease-soft);
}
.journey__img.is-active { opacity: 1; scale: 1; }
.journey__tag {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  padding: .45rem 1.05rem;
  border-radius: 999px;
  background: rgba(7, 26, 48, .6);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}

/* scroll hint — fades away as the tour progresses */
.journey__hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: calc(1 - var(--jp, 0) * 2.2);
  pointer-events: none;
}
.journey__hint i {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(14, 42, 78, .5), transparent);
}

@media (max-width: 900px) {
  .journey { height: 460vh; }
  .journey__grid { grid-template-columns: 1fr; gap: 1.6rem; align-content: center; }
  .journey__media { order: -1; }
  .journey__frame { aspect-ratio: 16 / 9.5; max-height: 34svh; }
  .journey__step h3 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .journey__meta { margin-top: 1.8rem; }
}

/* =====================================================================
   SECTIONS — shared scaffolding
   ===================================================================== */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--cloud { background: var(--cloud); }

.section-head { max-width: 46rem; }
.section-head h2 {
  margin-top: 1.1rem;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
.section-head h2 em { font-style: italic; color: var(--blue); }
.section-head p { margin-top: 1rem; color: var(--muted); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Reveal choreography ---------- */
.reveal {
  opacity: 0;
  translate: 0 34px;
  transition: opacity .8s var(--ease-out), translate .8s var(--ease-out);
}
.reveal--left { translate: -40px 0; }
.reveal--right { translate: 40px 0; }
.reveal.is-in { opacity: 1; translate: 0 0; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* =====================================================================
   STATEMENT + STATS
   ===================================================================== */
.statement {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
.statement h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.statement h2 em { font-style: italic; color: var(--blue); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: 2.2rem 1.5rem;
  text-align: center;
  background: var(--paper);
  transition: background-color .3s var(--ease-soft);
}
.stat:hover { background: var(--cloud); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--navy);
}
.stat__num b { font-weight: 500; }
.stat__label {
  margin-top: .6rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   COLLECTIONS — bento grid
   ===================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  gap: 1.1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.bento__card {
  position: relative;
  grid-column: span 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.bento__card--wide { grid-column: span 2; }
.bento__card--tall { grid-row: span 2; }
.bento__card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: scale .8s var(--ease-out);
}
.bento__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(190deg, rgba(7, 26, 48, .05) 35%, rgba(7, 26, 48, .85) 100%);
}
.bento__card:hover img { scale: 1.07; }

.bento__body {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  color: #fff;
}
.bento__num {
  position: absolute;
  top: 1.2rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
  color: rgba(255, 255, 255, .85);
}
.bento__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
}
.bento__desc {
  margin-top: .25rem;
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  max-width: 26rem;
}
.bento__go {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .3s var(--ease-soft), border-color .3s var(--ease-soft), rotate .4s var(--ease-out);
}
.bento__go svg { width: 18px; height: 18px; }
.bento__card:hover .bento__go { background: var(--blue); border-color: var(--blue); rotate: -45deg; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 215px; }
  .bento__card--wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .bento__card--wide { grid-column: span 1; }
  .bento__card--tall { grid-row: span 1; }
}

/* =====================================================================
   CUSTOMISATION — live configurator
   ===================================================================== */
.custom { background: var(--cloud); }
.custom__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.custom__stage {
  position: relative;
  padding: 2.4rem 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 100% at 20% 0%, var(--sky) 0%, #fff 65%);
  border: 1px solid var(--line);
  box-shadow: 0 40px 70px -45px rgba(14, 42, 78, .4);
}
.config-tag {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.config-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: blink 1.8s var(--ease-soft) infinite;
}
@keyframes blink { 50% { opacity: .25; } }

.config-scene { display: grid; place-items: center; padding-block: 1rem; }
.config-chair { width: min(100%, 330px); height: auto; }
.config-chair .cc-uph { fill: var(--uph, #9cc0f0); transition: fill .6s var(--ease-soft); }
.config-chair .cc-sheen { fill: rgba(255, 255, 255, .22); }
.config-chair .cc-seam { stroke: rgba(7, 26, 48, .18); stroke-width: 2; fill: none; stroke-linecap: round; }
.config-chair .cc-pillow { fill: var(--navy); opacity: .85; }
.config-chair .cc-frame { fill: #223a55; }
.config-chair .cc-shadow { fill: rgba(14, 42, 78, .12); }

.config-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.config-swatches { display: flex; gap: .55rem; }
.cc-sw {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: box-shadow .25s var(--ease-soft);
}
.cc-sw:hover { box-shadow: 0 0 0 2px var(--blue-soft); }
.cc-sw.is-active { box-shadow: 0 0 0 2px var(--blue); }
.config-readout { text-align: right; }
.config-readout__label {
  display: block;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.config-readout__value { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); }

.custom__copy h2 { margin-top: 1.1rem; font-size: clamp(2rem, 4vw, 2.9rem); }
.custom__copy .lead { margin-top: 1.1rem; color: var(--muted); }
.custom__list { display: grid; gap: 1.3rem; margin-top: 2rem; }
.custom__list li { display: flex; gap: 1rem; align-items: flex-start; }
.custom__list svg {
  flex: none;
  width: 40px; height: 40px;
  padding: 9px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--sky);
}
.custom__list b { display: block; font-weight: 600; }
.custom__list span { color: var(--muted); font-size: .95rem; }

/* =====================================================================
   SHOWREEL — full-bleed project crossfade
   ===================================================================== */
.reel {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8.5rem);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.reel__media { position: absolute; inset: 0; z-index: -2; }
.reel__slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  scale: 1.04;
  transition: opacity 1.3s var(--ease-soft), scale 6s var(--ease-soft);
}
.reel__slide.is-active { opacity: 1; scale: 1; }
.reel__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 26, 48, .9) 0%, rgba(7, 26, 48, .55) 55%, rgba(7, 26, 48, .3) 100%);
}

.reel__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 3rem;
  align-items: end;
}
.reel__label {
  margin-top: 1.4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.reel__title {
  margin-top: .7rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  max-width: 22ch;
}
.reel__sub { margin-top: 1rem; max-width: 34rem; font-weight: 300; color: rgba(255, 255, 255, .85); }
.reel__meta { display: flex; gap: 2.2rem; margin-top: 1.8rem; }
.reel__meta span { display: flex; flex-direction: column; }
.reel__meta b { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.reel__meta small {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.reel__controls { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.reel__nav {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  cursor: pointer;
  transition: background-color .25s var(--ease-soft), border-color .25s var(--ease-soft);
}
.reel__nav:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .7); }
.reel__nav svg { width: 18px; height: 18px; }
.reel__dots { display: flex; gap: .5rem; }
.reel__dots button {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background-color .25s var(--ease-soft);
}
.reel__dots button.is-active { background: #fff; }

.reel__thumbs { display: grid; gap: .8rem; justify-self: end; width: 100%; max-width: 380px; }
.reel-thumb {
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: .55rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(9, 28, 50, .35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background-color .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.reel-thumb:hover { background: rgba(9, 28, 50, .6); }
.reel-thumb.is-active { border-color: rgba(255, 255, 255, .65); background: rgba(9, 28, 50, .65); }
.reel-thumb img { width: 74px; height: 54px; object-fit: cover; border-radius: 10px; flex: none; }
.reel-thumb b { display: block; font-weight: 500; font-size: .96rem; }
.reel-thumb small { font-size: .74rem; font-weight: 300; color: rgba(255, 255, 255, .7); }

@media (max-width: 900px) {
  .reel__content { grid-template-columns: 1fr; }
  .reel__thumbs { justify-self: start; }
}

/* =====================================================================
   PROCESS — 4 steps
   ===================================================================== */
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.process__step {
  position: relative;
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.process__step:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 26px 48px -30px rgba(14, 42, 78, .4);
}
.process__step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--blue-bright);
}
.process__step h3 { margin-top: 1.1rem; font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }
.process__step p { margin-top: .5rem; font-size: .94rem; color: var(--muted); }
.process__step > svg {
  position: absolute;
  top: 1.9rem; right: 1.5rem;
  width: 26px; height: 26px;
  color: var(--blue);
  opacity: .75;
}

/* =====================================================================
   WHY US — split
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split__media { position: relative; }
.split__media-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 50px 80px -50px rgba(7, 26, 48, .55);
}
.split__media-badge {
  position: absolute;
  bottom: 1.6rem; left: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.split__media-badge svg { width: 20px; height: 20px; color: var(--blue); }

.split h2 { margin-top: 1.1rem; font-size: clamp(2rem, 4vw, 2.9rem); }
.split__list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.split__item { display: flex; gap: 1rem; }
.split__item svg {
  flex: none;
  width: 38px; height: 38px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}
.split__item b { display: block; font-weight: 600; }
.split__item span { color: var(--muted); font-size: .95rem; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.8rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 140% at 85% -20%, rgba(63, 131, 232, .5) 0%, transparent 55%),
    radial-gradient(70% 120% at 10% 120%, rgba(63, 131, 232, .28) 0%, transparent 55%),
    var(--navy-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: #fff;
}
.cta-band h2 em { font-style: italic; color: var(--blue-soft); }
.cta-band p {
  position: relative;
  margin: 1rem auto 0;
  max-width: 34rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
}
.cta-band .hero__cta {
  position: relative;
  justify-content: center;
  margin-top: 2.2rem;
  opacity: 1;
  animation: none;
}

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(5rem, 10vw, 8rem)) 0 clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
  background:
    radial-gradient(60% 90% at 50% -20%, var(--sky) 0%, transparent 70%),
    var(--paper);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 42, 78, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 42, 78, .045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 10%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  margin-top: 1.3rem;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero > .container > p {
  position: relative;
  margin: 1.2rem auto 0;
  max-width: 40rem;
  color: var(--muted);
}
.page-hero__deck {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.4rem;
}
.page-hero__deck span {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 150px;
  padding: 1rem 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px -24px rgba(14, 42, 78, .35);
}
.page-hero__deck b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--navy); }
.page-hero__deck small {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================================
   CATALOGUE
   ===================================================================== */
.cat-note {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.2rem;
  border-radius: var(--radius);
  background: var(--sky);
  border: 1px solid var(--blue-soft);
}
.cat-note__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--blue);
}
.cat-note__icon svg { width: 22px; height: 22px; }
.cat-note p { color: var(--navy); font-size: .98rem; }
.cat-note a { font-weight: 600; color: var(--blue); white-space: nowrap; }
.cat-note a:hover { text-decoration: underline; }

/* filter chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.2rem;
}
.chip {
  padding: .55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background-color .25s var(--ease-soft), color .25s var(--ease-soft), border-color .25s var(--ease-soft);
}
.chip:hover { border-color: var(--blue-soft); color: var(--blue); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.4rem;
}
.cat-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.cat-card:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 34px 60px -34px rgba(14, 42, 78, .45);
}
.cat-card.is-filtered { display: none; }

.cat-card__media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--cloud);
}
.cat-card__slides { position: absolute; inset: 0; }
.cat-card__slides img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s var(--ease-soft), scale .8s var(--ease-out);
}
.cat-card__slides img.is-active { opacity: 1; }
.cat-card:hover .cat-card__slides img.is-active { scale: 1.05; }

.cat-card__badge {
  position: absolute;
  top: .9rem; left: .9rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(7, 26, 48, .72);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cat-card__zoom {
  position: absolute;
  top: .9rem; right: .9rem;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: var(--navy);
  opacity: 0;
  translate: 0 -6px;
  transition: opacity .3s var(--ease-soft), translate .3s var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cat-card__zoom svg { width: 18px; height: 18px; }
.cat-card:hover .cat-card__zoom { opacity: 1; translate: 0 0; }

.cat-card__body { padding: 1.4rem 1.5rem 1.5rem; }
.cat-card__eyebrow {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
}
.cat-card__title { margin-top: .45rem; font-size: 1.45rem; }
.cat-card__desc { margin-top: .4rem; font-size: .94rem; color: var(--muted); }
.cat-card__action {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--navy);
  transition: color .25s var(--ease-soft);
}
.cat-card__action svg { width: 16px; height: 16px; transition: translate .25s var(--ease-out); }
.cat-card:hover .cat-card__action { color: var(--blue); }
.cat-card:hover .cat-card__action svg { translate: 4px 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease-soft), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 48, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox__panel {
  position: relative;
  width: min(100%, 880px);
  max-height: calc(100vh - 2.4rem);
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--paper);
  scale: .96;
  transition: scale .35s var(--ease-out);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .6);
}
.lightbox.is-open .lightbox__panel { scale: 1; }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(7, 26, 48, .6);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color .25s var(--ease-soft);
}
.lightbox__close:hover { background: var(--blue); }
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--cloud);
}
.lightbox__img { width: 100%; height: 100%; object-fit: contain; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(7, 26, 48, .5);
  transition: background-color .25s var(--ease-soft), color .25s var(--ease-soft);
}
.lightbox__nav:hover { background: var(--blue); color: #fff; }
.lightbox__nav svg { width: 18px; height: 18px; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--line);
}
.lightbox__eyebrow {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
}
.lightbox__title { font-size: 1.35rem; margin-top: .15rem; }
.lightbox__dots { display: flex; gap: .45rem; margin-top: .7rem; }
.lightbox__dots button {
  width: 22px; height: 3px;
  border-radius: 3px;
  background: var(--line);
  cursor: pointer;
  transition: background-color .25s var(--ease-soft);
}
.lightbox__dots button.is-active { background: var(--blue); }
.lightbox__pdf { flex: none; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-lead { font-size: 1.12rem; }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.about-value {
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.about-value:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 30px 55px -35px rgba(14, 42, 78, .45);
}
.about-value svg {
  width: 46px; height: 46px;
  padding: 11px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--sky);
}
.about-value h3 { margin-top: 1.2rem; font-size: 1.3rem; font-family: var(--font-body); font-weight: 600; }
.about-value p { margin-top: .55rem; font-size: .95rem; color: var(--muted); }

.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.3rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.loc-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.loc-card:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 34px 60px -35px rgba(14, 42, 78, .45);
}
.loc-card__map { aspect-ratio: 16 / 9.5; background: var(--cloud); }
.loc-card__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-card__body { padding: 1.5rem 1.6rem 1.7rem; }
.loc-card__region {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
}
.loc-card__body h3 { margin-top: .45rem; font-size: 1.55rem; }
.loc-card__role { margin-top: .2rem; font-weight: 500; color: var(--muted); font-size: .95rem; }
.loc-card__addr {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  margin-top: .9rem;
  font-size: .9rem;
  color: var(--muted);
}
.loc-card__addr svg { flex: none; width: 17px; height: 17px; margin-top: .2rem; color: var(--blue); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.contact__info { display: grid; gap: 1rem; }
.info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.info-card:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 26px 48px -32px rgba(14, 42, 78, .4);
}
.info-card__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
}
.info-card__ic svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.info-card p { margin-top: .2rem; color: var(--muted); font-size: .95rem; }
.info-card a { transition: color .2s var(--ease-soft); }
.info-card a:hover { color: var(--blue); }

.form {
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: radial-gradient(120% 100% at 100% 0%, var(--sky) 0%, #fff 55%);
  box-shadow: 0 40px 80px -50px rgba(14, 42, 78, .4);
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0 1.1rem;
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  margin-bottom: .45rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  transition: border-color .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.field input::placeholder,
.field textarea::placeholder { color: #93a5ba; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31, 95, 208, .12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2348607c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.captcha-field small { display: block; margin-top: .45rem; color: var(--muted); font-size: .82rem; }
.captcha-widget { min-height: 78px; }

.form__note {
  margin-top: .9rem;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}
.form__success,
.form__error {
  display: none;
  margin-top: 1.1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-size: .95rem;
}
.form__success.is-visible,
.form__error.is-visible { display: block; }
.form__success { background: #e8f6ee; border: 1px solid #b3dfc4; color: #14532d; }
.form__error { background: #fdeeee; border: 1px solid #f2c4c4; color: #7f1d1d; }
.form__error a { font-weight: 600; text-decoration: underline; }

/* =====================================================================
   DOTNAV — right rail section navigator (injected by JS)
   ===================================================================== */
.dotnav {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  z-index: var(--z-dotnav);
}
.dotnav__track { display: none; }
.dotnav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .6rem;
  cursor: pointer;
}
.dotnav__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
  transition: background-color .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.dotnav__item.is-active .dotnav__dot { background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.dotnav__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, .92);
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  opacity: 0;
  translate: 6px 0;
  transition: opacity .25s var(--ease-soft), translate .25s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}
.dotnav__item:hover .dotnav__label,
.dotnav__item.is-active .dotnav__label { opacity: 1; translate: 0 0; }
@media (max-width: 1320px) { .dotnav { display: none; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .8);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 90% -30%, rgba(63, 131, 232, .22) 0%, transparent 60%);
  pointer-events: none;
}
.footer__top {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

.footer__logo { width: 48px; height: 48px; object-fit: contain; }
.footer__name {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
}
.footer__brand p { margin-top: .7rem; font-size: .92rem; font-weight: 300; max-width: 26rem; }
.footer__col h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 1.1rem;
}
.footer__col a,
.footer__col p {
  display: block;
  margin-bottom: .55rem;
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .8);
  transition: color .2s var(--ease-soft);
}
.footer__col p a { display: inline; margin: 0; }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
}
.footer__social { display: flex; gap: .6rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .75);
  transition: background-color .25s var(--ease-soft), color .25s var(--ease-soft), border-color .25s var(--ease-soft);
}
.footer__social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer__social svg { width: 17px; height: 17px; }

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__slide.is-active { animation: none; scale: 1; }
  .marquee__track { animation: none; }
  .hl > i { translate: 0 0; animation: none; }
  .hero__sub, .hero__cta, .hero__console { opacity: 1; animation: none; }
}
