@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  color-scheme: light;
  --bg: #ededed;
  --bg-elevated: #f7f7f5;
  --bg-shade: #e6e8e8;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --text: #102233;
  --heading: #00365f;
  --muted: rgba(16, 34, 51, 0.68);
  --soft: rgba(0, 54, 95, 0.48);
  --line: rgba(0, 54, 95, 0.14);
  --line-strong: rgba(0, 54, 95, 0.26);
  --brand: #00365f;
  --brand-deep: #002f52;
  --brand-bright: #2f759f;
  --ink-deep: #001f36;
  --on-brand: #ffffff;
  --radius-xl: 2rem;
  --radius-lg: 1.35rem;
  --shadow-soft: 0 28px 80px rgba(0, 54, 95, 0.16);
  --section-pad: clamp(5rem, 8vw, 8rem);
  --hero-progress: 0;
  --backdrop-zoom: 1;
  --backdrop-x: 0vw;
  --backdrop-y: 0vh;
  --backdrop-mx: 0px;
  --backdrop-my: 0px;
  --backdrop-ox: 38%;
  --backdrop-oy: 60%;
  --backdrop-opacity: 1;
  --backdrop-page-alpha: 1;
  --backdrop-overlay-alpha: 1;
  --hero-copy-alpha: 1;
  --world-progress: 0;
  --scene-strength: 1;
}

* {
  box-sizing: border-box;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

html[dir="ltr"] {
  direction: ltr;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Alexandria', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv02', 'cv11';
}

.grav-page:not(.home-page) #content {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

#page-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
  background: transparent;
}

.kitchen-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg);
  opacity: var(--backdrop-page-alpha);
  transition: opacity 180ms linear;
}

.kitchen-backdrop img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: var(--backdrop-opacity);
  transform: translate3d(calc(var(--backdrop-x) + var(--backdrop-mx)), calc(var(--backdrop-y) + var(--backdrop-my)), 0) scale(var(--backdrop-zoom));
  transform-origin: var(--backdrop-ox) var(--backdrop-oy);
  filter: saturate(0.92) contrast(1.04);
  will-change: transform;
}

#page-shell::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--backdrop-overlay-alpha);
  background:
    linear-gradient(180deg, rgba(237, 237, 237, 0.34) 0%, rgba(237, 237, 237, 0.66) 46%, rgba(237, 237, 237, 0.82) 100%),
    linear-gradient(90deg, rgba(237, 237, 237, 0.28) 0%, rgba(237, 237, 237, 0.62) 58%, rgba(237, 237, 237, 0.9) 100%);
  transition: opacity 180ms linear;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 1rem clamp(1.2rem, 4vw, 2rem) 0;
  animation: navIn 760ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    padding 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.5rem;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0.9rem 1.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled .site-header__inner,
.site-header.is-open .site-header__inner {
  background: rgba(237, 237, 237, 0.82);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(0, 54, 95, 0.14);
  backdrop-filter: blur(20px);
}

#content,
.site-footer {
  position: relative;
  z-index: 2;
}

.brandmark {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brandmark__logo {
  width: clamp(7rem, 9vw, 9rem);
  height: auto;
  object-fit: contain;
}

.brandmark__logo--footer {
  width: clamp(8rem, 12vw, 10rem);
}

.site-nav {
  grid-column: 2;
  display: inline-flex;
  justify-content: center;
  gap: 1.75rem;
  font-size: 0.94rem;
  color: rgba(0, 54, 95, 0.74);
}

.site-nav a,
.mobile-menu__nav a,
.site-footer__column a {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  display: inline-block;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: transform 220ms ease, color 220ms ease;
}

.site-nav a::after,
.mobile-menu__nav a::after,
.site-footer__column a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0.35;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.mobile-menu__nav a:hover::after,
.mobile-menu__nav a:focus-visible::after,
.site-footer__column a:hover::after,
.site-footer__column a:focus-visible::after {
  transform: scaleX(1);
}

.site-actions {
  grid-column: 3;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  padding: 0.88rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.craft-point:focus-visible {
  outline: 2px solid rgba(0, 54, 95, 0.64);
  outline-offset: 4px;
}

.button--solid {
  background: var(--brand);
  color: var(--on-brand);
  box-shadow: 0 18px 42px rgba(0, 54, 95, 0.2);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--brand-deep);
  box-shadow: 0 24px 52px rgba(0, 54, 95, 0.26);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(0, 54, 95, 0.36);
  background: rgba(255, 255, 255, 0.82);
}

.language-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.15rem;
  color: rgba(0, 54, 95, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--brand);
  transform: translateY(-1px);
}

.language-toggle__label {
  white-space: nowrap;
}

.button--text {
  padding-inline: 0;
  min-height: auto;
  border-radius: 0;
  border: 0;
  color: var(--brand);
}

.button--text:hover,
.button--text:focus-visible {
  color: var(--ink-deep);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.36rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--brand);
  cursor: pointer;
  line-height: 0;
}

.nav-toggle span {
  flex: 0 0 auto;
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle span + span {
  margin-top: 0;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  width: min(100%, 1560px);
  margin: 0.85rem auto 0;
  padding: 1.1rem 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.mobile-menu__nav {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mobile-menu__actions {
  display: grid;
  gap: 0.75rem;
}

.hero {
  position: relative;
  min-height: 480svh;
  overflow: visible;
  background: transparent;
  isolation: isolate;
}

.hero__viewport {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: max(7rem, 13vh) clamp(1.25rem, 5vw, 4.6rem) clamp(3rem, 7vh, 5rem);
  overflow: clip;
}

.hero__viewport::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 0.03) 42%, rgba(237, 237, 237, 0.48) 70%, rgba(237, 237, 237, 0.92) 100%),
    radial-gradient(circle at 88% 44%, rgba(237, 237, 237, 0.9), rgba(237, 237, 237, 0.54) 28%, transparent 54%),
    linear-gradient(180deg, rgba(0, 31, 54, 0.18) 0%, rgba(0, 31, 54, 0) 24%, rgba(0, 31, 54, 0.08) 100%);
  pointer-events: none;
}

.hero__scene,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__scene {
  z-index: 0;
  overflow: hidden;
  background: transparent;
}

.hero__scrim {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 46%, rgba(237, 237, 237, 0.94), rgba(237, 237, 237, 0.42) 28%, rgba(237, 237, 237, 0) 52%),
    linear-gradient(90deg, rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 0.22) 44%, rgba(237, 237, 237, 0.78) 72%, rgba(237, 237, 237, 0.98) 100%),
    linear-gradient(180deg, rgba(0, 31, 54, 0.16) 0%, rgba(0, 31, 54, 0) 28%, rgba(0, 31, 54, 0.13) 100%);
  opacity: 0.96;
  pointer-events: none;
}

.hero__shell {
  position: relative;
  z-index: 3;
  width: min(100%, 1560px);
  margin: 0 auto;
  display: grid;
  justify-items: start;
}

.hero__content {
  display: grid;
  gap: 1.05rem;
  max-width: min(31rem, 42vw);
  padding-top: clamp(1rem, 8vh, 4rem);
  opacity: var(--hero-copy-alpha);
  transform: translateY(calc(var(--hero-progress) * -2rem));
  transform-origin: right center;
  transition: opacity 180ms linear, transform 180ms linear;
  animation: heroCopyIn 980ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow,
.section-eyebrow,
.craft__kicker,
.story-panel__kicker,
.site-footer__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(0, 54, 95, 0.68);
}

.hero__title {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.35rem, 7vw, 7.6rem);
  line-height: 1.14;
  text-wrap: balance;
  color: var(--heading);
}

.hero__body,
.section-head p,
.story-panel__copy p,
.craft__detail p,
.cta-band__content p,
.site-footer__brand p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.9;
  color: var(--muted);
}

.hero__body {
  max-width: 28rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.6rem;
  animation: heroActionsIn 820ms 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  direction: ltr;
}

.social-links--hero {
  padding-top: 0.15rem;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
  animation: heroActionsIn 820ms 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.social-links--footer {
  padding-top: 0.25rem;
  justify-content: flex-end;
  justify-self: end;
  width: 100%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 999px;
  color: var(--brand);
  background: transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.82;
  background: rgba(0, 54, 95, 0.08);
}

.social-link__icon {
  display: block;
  width: 1.16rem;
  height: 1.16rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(1032%) hue-rotate(178deg) brightness(91%) contrast(102%);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(8px);
}

.hero__facts li {
  display: grid;
  gap: 0.45rem;
}

.hero__facts span {
  font-size: 0.82rem;
  color: var(--soft);
}

.hero__facts strong {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.7;
}

.hero-trust {
  position: absolute;
  z-index: 4;
  left: clamp(18rem, 36vw, 34rem);
  top: 59%;
  display: grid;
  width: min(34rem, 42vw);
  min-height: 8rem;
  color: var(--brand);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: opacity 420ms ease;
}

.hero-trust.is-visible {
  opacity: 1;
}

.hero-trust__item {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  gap: 0.15rem;
  min-height: 8rem;
  justify-content: center;
  align-content: center;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(0.75rem) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 0.9rem 3.5rem rgba(237, 237, 237, 0.92);
}

.hero-trust__item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 90ms;
}

.hero-trust__item span {
  display: block;
  color: rgba(0, 54, 95, 0.58);
  font-size: clamp(0.86rem, 1.25vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
}

.hero-trust__item strong {
  display: block;
  color: var(--heading);
  font-size: clamp(2rem, 4.25vw, 4.1rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero-trust__item small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(0, 54, 95, 0.58);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.floating-whatsapp {
  position: fixed;
  left: clamp(0.85rem, 2vw, 1.35rem);
  bottom: calc(clamp(0.85rem, 2vw, 1.35rem) + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 4vw, 3.45rem);
  height: clamp(3rem, 4vw, 3.45rem);
  border: 1px solid rgba(37, 211, 102, 0.36);
  border-radius: 999px;
  background: rgba(237, 237, 237, 0.82);
  box-shadow: 0 18px 46px rgba(0, 31, 54, 0.16);
  backdrop-filter: blur(16px);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.14);
  box-shadow: 0 22px 56px rgba(0, 31, 54, 0.22);
}

.floating-whatsapp img {
  width: 1.35rem;
  height: 1.35rem;
}

.hero-trust::after {
  content: none;
}

.world-steps {
  position: absolute;
  z-index: 3;
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 4vw, 2.6rem);
  display: grid;
  gap: 0.35rem;
  width: min(13rem, calc(100vw - 2rem));
  margin: 0;
  padding: 0;
  list-style: none;
}

.world-step {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 54, 95, 0.18);
  border-radius: 0;
  color: rgba(16, 34, 51, 0.62);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.world-step::before {
  content: '';
  position: absolute;
  inset: 0;
  right: -0.55rem;
  left: -0.55rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--hover-x, 50%) var(--hover-y, 50%), rgba(0, 54, 95, 0.1), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.world-step span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 0.9;
  color: rgba(0, 54, 95, 0.44);
  transition: color 220ms ease, transform 220ms ease;
}

.world-step strong {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--heading);
}

.world-step p {
  display: none;
}

.world-step:hover,
.world-step:focus-visible,
.world-step.is-active {
  color: rgba(16, 34, 51, 0.82);
  border-color: rgba(0, 54, 95, 0.42);
  background: transparent;
  box-shadow: none;
}

.world-step:hover::before,
.world-step:focus-visible::before,
.world-step.is-active::before {
  opacity: 1;
}

.world-step:hover span,
.world-step:focus-visible span,
.world-step.is-active span {
  color: var(--brand);
  transform: translateY(-0.12rem);
}

.world-progress {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 3vw, 2.4rem);
  top: 50%;
  width: 1px;
  height: min(34vh, 18rem);
  background: rgba(0, 54, 95, 0.16);
  transform: translateY(-50%);
  overflow: hidden;
}

.world-progress span {
  display: block;
  width: 100%;
  height: calc(var(--world-progress) * 100%);
  background: var(--brand);
  transform-origin: top;
}

.world-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(1.2rem, 4vw, 2.5rem);
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  color: rgba(0, 54, 95, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: clamp(0, calc(1 - var(--world-progress) * 4), 1);
  transition: opacity 180ms linear;
}

.world-scroll i {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(0, 54, 95, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.world-scroll i::after {
  content: '';
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  margin: 0.72rem auto 0;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  animation: scrollCue 1300ms ease-in-out infinite;
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroCopyIn {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroActionsIn {
  from {
    opacity: 0;
    transform: translateY(0.9rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-0.18rem) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(0.2rem) rotate(45deg);
  }
}

.hero__serial {
  position: absolute;
  left: clamp(1.4rem, 4vw, 3rem);
  bottom: clamp(2rem, 5vw, 3rem);
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: rgba(0, 54, 95, 0.46);
}

.section {
  position: relative;
  padding: var(--section-pad) clamp(1.4rem, 4vw, 3rem);
}

.client-showcase {
  --client-title-scale: 7;
  --client-title-y: 0.45rem;
  --client-title-alpha: 1;
  --client-caption-alpha: 0;
  --client-caption-y: 0.9rem;
  position: relative;
  min-height: 560svh;
  padding: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(0, 54, 95, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(237, 237, 237, 0.94) 0%, rgba(237, 237, 237, 0.82) 48%, rgba(237, 237, 237, 0.94) 100%);
  overflow: clip;
}

.client-showcase__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(6rem, 11vh, 8.5rem) clamp(1.2rem, 4vw, 3.2rem) clamp(2rem, 6vh, 4rem);
  isolation: isolate;
}

.client-showcase__copy {
  position: relative;
  z-index: 4;
  isolation: isolate;
  display: grid;
  gap: clamp(0.7rem, 1.5vw, 1.15rem);
  justify-items: center;
  width: min(100%, 74rem);
  margin: auto;
  text-align: center;
  text-shadow: none;
  pointer-events: none;
}

.client-showcase__copy .section-eyebrow {
  color: var(--heading);
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform-origin: 50% 50%;
  opacity: var(--client-title-alpha);
  transform: translateY(var(--client-title-y)) scale(var(--client-title-scale));
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

.client-showcase__copy::before {
  display: none;
}

.client-showcase__copy h2 {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--heading);
  width: min(100%, 48rem);
  min-height: clamp(3.9rem, 8vw, 7.2rem);
  font-size: clamp(1.45rem, 2.7vw, 3.2rem);
  line-height: 1.48;
  font-weight: 800;
  text-wrap: balance;
  opacity: var(--client-caption-alpha);
  transform: translateY(var(--client-caption-y));
  transition:
    opacity 240ms linear,
    transform 240ms linear;
}

.client-caption__current {
  display: block;
  max-width: min(100%, 22ch);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
  text-shadow:
    0 1px 0 rgba(237, 237, 237, 0.42),
    0 0.65rem 1.8rem rgba(237, 237, 237, 0.78);
}

.client-caption__current.is-changing {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(0.35rem);
}

.client-showcase__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 1200px;
  isolation: isolate;
  pointer-events: none;
}

.client-showcase__stage::before {
  content: '';
  position: absolute;
  inset: clamp(6rem, 11vh, 8.5rem) clamp(1.2rem, 4vw, 3.2rem) clamp(2rem, 6vh, 4rem);
  background:
    linear-gradient(90deg, rgba(0, 54, 95, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(0, 54, 95, 0.045) 0 1px, transparent 1px 100%);
  background-size: clamp(3rem, 7vw, 7rem) clamp(3rem, 7vw, 7rem);
  opacity: 0.22;
  mask-image: radial-gradient(circle at 44% 48%, #000 0%, transparent 68%);
}

.client-showcase__cta {
  --client-cta-alpha: 0;
  position: absolute;
  left: 50%;
  bottom: clamp(2.2rem, 7vh, 4.8rem);
  z-index: 5;
  min-width: min(100%, 13rem);
  opacity: var(--client-cta-alpha);
  pointer-events: none;
  transform: translate3d(-50%, calc(0.8rem * (1 - var(--client-cta-alpha))), 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.client-showcase__cta.is-visible {
  pointer-events: auto;
}

.client-showcase__cta:hover,
.client-showcase__cta:focus-visible {
  transform: translate3d(-50%, calc((0.8rem * (1 - var(--client-cta-alpha))) - 2px), 0);
}

.client-frame {
  --tile-progress: 0;
  --tile-rest: 1;
  --tile-opacity: 0;
  --tile-xmove: 0px;
  --tile-ymove: 0px;
  --tile-yshift: 0px;
  --tile-rotate: 0deg;
  --tile-scale: 0.82;
  --tile-blur: 8px;
  --tile-saturation: 0.85;
  position: absolute;
  top: var(--tile-y);
  left: var(--tile-x);
  width: clamp(9rem, calc(var(--tile-w) * 1.16), 28rem);
  aspect-ratio: var(--tile-ar, 1 / 1);
  overflow: hidden;
  border: 1px solid rgba(0, 54, 95, 0.12);
  border-radius: clamp(0.55rem, 1vw, 0.95rem);
  background: #d9dedf;
  box-shadow: 0 18px 48px rgba(0, 31, 54, 0.14);
  opacity: var(--tile-opacity);
  filter: blur(var(--tile-blur)) saturate(var(--tile-saturation));
  transform:
    translate3d(
      var(--tile-xmove),
      calc(var(--tile-ymove) + var(--tile-yshift)),
      0
    )
    rotate(var(--tile-rotate))
    scale(var(--tile-scale));
  transform-origin: 50% 50%;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.client-frame.is-viewable {
  pointer-events: auto;
  cursor: zoom-in;
}

.client-frame.is-active {
  border-color: rgba(0, 54, 95, 0.32);
  box-shadow: 0 22px 64px rgba(0, 31, 54, 0.18);
}

.client-frame img,
.client-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--tile-media-position, center center);
}

.client-frame video {
  background: #001f36;
}

.client-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 50% 42%, rgba(237, 237, 237, 0.2), transparent 44%),
    rgba(0, 20, 36, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.client-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.client-lightbox[hidden] {
  display: none;
}

.client-lightbox__media {
  display: grid;
  place-items: center;
  width: min(100%, 82rem);
  max-height: min(78svh, 52rem);
}

.client-lightbox__media img,
.client-lightbox__media video {
  display: block;
  max-width: 100%;
  max-height: min(78svh, 52rem);
  object-fit: contain;
  border-radius: 1rem;
  background: #001f36;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.36);
}

.client-lightbox__close {
  position: fixed;
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
  border: 1px solid rgba(237, 237, 237, 0.42);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  background: rgba(237, 237, 237, 0.94);
  color: var(--heading);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.client-lightbox__caption {
  margin: 0;
  max-width: min(100%, 36rem);
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

.story {
  background:
    linear-gradient(180deg, rgba(237, 237, 237, 0.34) 0%, rgba(237, 237, 237, 0.52) 16%, rgba(237, 237, 237, 0.42) 100%),
    radial-gradient(circle at 15% 10%, rgba(0, 54, 95, 0.06), transparent 25%);
  backdrop-filter: blur(1.2px);
}

.section-head {
  width: min(100%, 1520px);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 1rem;
}

.section-head h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.24;
  text-wrap: balance;
  color: var(--heading);
}

.story__panels {
  width: min(100%, 1520px);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.story-panel {
  position: relative;
  min-height: clamp(28rem, 64vw, 46rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: clip;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.story-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 54, 95, 0.02) 0%, rgba(0, 54, 95, 0.12) 35%, rgba(0, 54, 95, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 54, 95, 0.02) 0%, rgba(0, 54, 95, 0.12) 48%, rgba(0, 54, 95, 0.72) 100%);
  pointer-events: none;
}

.story-panel img,
.story-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 1, 0.3, 1);
}

.story-panel:hover img,
.story-panel:hover video {
  transform: scale(1.035);
}

.story-panel__copy {
  position: absolute;
  inset: auto clamp(1.3rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3rem) auto;
  z-index: 1;
  display: grid;
  gap: 1rem;
  width: min(100%, 34rem);
}

.story-panel__copy h3,
.craft__detail h3,
.cta-band__content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.18;
  text-wrap: balance;
  color: var(--heading);
}

.story-panel__copy h3,
.story-panel__copy p,
.story-panel__kicker {
  color: var(--on-brand);
}

.story-panel__kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
}

.story-panel__meta {
  display: flex;
  align-items: end;
  gap: 0.85rem;
  padding-top: 0.5rem;
}

.story-panel__meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.8;
  color: var(--on-brand);
}

.story-panel__meta span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.76);
}

.craft {
  padding-inline: 0;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(237, 237, 237, 0.5) 0%, rgba(237, 237, 237, 0.2) 42%, rgba(237, 237, 237, 0.62) 100%),
    radial-gradient(circle at 80% 25%, rgba(0, 54, 95, 0.05), transparent 24%);
  backdrop-filter: blur(1.2px);
}

.craft .section-head {
  padding-inline: clamp(1.4rem, 4vw, 3rem);
}

.craft__layout {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  min-height: clamp(36rem, 56vw, 50rem);
  align-items: stretch;
}

.craft__visual {
  position: relative;
  grid-area: 1 / 1;
  min-height: inherit;
  border: 0;
  border-radius: 0;
  background: var(--bg);
  overflow: hidden;
}

.craft__visual::before,
.craft__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.craft__visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(237, 237, 237, 0.08) 0%, rgba(237, 237, 237, 0.05) 42%, rgba(237, 237, 237, 0.72) 70%, rgba(237, 237, 237, 0.9) 100%),
    linear-gradient(180deg, rgba(237, 237, 237, 0.1) 0%, rgba(237, 237, 237, 0) 48%, rgba(237, 237, 237, 0.3) 100%);
}

.craft__visual::after {
  z-index: 1;
  background: radial-gradient(circle at 76% 54%, rgba(237, 237, 237, 0.8), transparent 34%);
  opacity: 0.55;
}

.craft__cutaway {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.02);
}

.craft-point {
  position: absolute;
  z-index: 2;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--brand);
  direction: ltr;
}

.craft-point__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow:
    0 0 0 0 rgba(0, 54, 95, 0.22),
    0 0 16px rgba(0, 54, 95, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.craft-point__line {
  width: 4.6rem;
  height: 1px;
  background: rgba(0, 54, 95, 0.36);
  transform-origin: left;
  transition: transform 220ms ease, background-color 220ms ease;
}

.craft-point__label {
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 54, 95, 0.74);
  transition: color 220ms ease, transform 220ms ease;
}

.craft-point:hover .craft-point__dot,
.craft-point:focus-visible .craft-point__dot,
.craft-point.is-active .craft-point__dot {
  transform: scale(1.15);
  box-shadow:
    0 0 0 10px rgba(0, 54, 95, 0.08),
    0 0 20px rgba(0, 54, 95, 0.2);
}

.craft-point:hover .craft-point__line,
.craft-point:focus-visible .craft-point__line,
.craft-point.is-active .craft-point__line {
  transform: scaleX(1.12);
  background: rgba(0, 54, 95, 0.68);
}

.craft-point:hover .craft-point__label,
.craft-point:focus-visible .craft-point__label,
.craft-point.is-active .craft-point__label {
  color: var(--brand);
  transform: translateX(0.18rem);
}

.craft__detail {
  position: relative;
  z-index: 3;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: start;
  display: grid;
  gap: 1rem;
  width: min(32rem, 36vw);
  margin-inline: clamp(1.4rem, 7vw, 8rem);
  color: var(--text);
}

.craft__spec {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  min-height: 2.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.58);
}

.craft__mobile-slides {
  display: none;
}

.craft__pillars {
  display: grid;
  margin-top: 0.65rem;
}

.craft__pillars div {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.craft__pillars span {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--soft);
}

.craft__pillars strong {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.8;
}

.branches {
  background:
    linear-gradient(180deg, rgba(237, 237, 237, 0.58) 0%, rgba(237, 237, 237, 0.72) 100%),
    radial-gradient(circle at 18% 8%, rgba(0, 54, 95, 0.1), transparent 28%);
  backdrop-filter: blur(1.2px);
  scroll-margin-top: 7rem;
}

.branches__head {
  width: min(100%, 1520px);
  margin: 0 auto clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.branches__head h2 {
  margin: 0.65rem 0 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.18;
  color: var(--heading);
}

.branches__locator {
  width: min(100%, 1520px);
  min-height: clamp(38rem, 72vw, 48rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(23rem, 0.78fr) minmax(0, 1.22fr);
  border: 1px solid rgba(0, 54, 95, 0.18);
  border-radius: calc(var(--radius-xl) + 0.25rem);
  overflow: clip;
  background: rgba(237, 237, 237, 0.76);
  box-shadow: 0 28px 90px rgba(0, 54, 95, 0.14);
}

.branches__list {
  max-height: clamp(38rem, 72vw, 48rem);
  overflow: auto;
  background: rgba(255, 255, 255, 0.74);
  border-left: 1px solid rgba(0, 54, 95, 0.12);
}

.branch-card {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border-bottom: 1px solid rgba(0, 54, 95, 0.12);
  background: transparent;
  color: var(--text);
  text-align: right;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.branch-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 180ms ease;
}

.branch-card:hover,
.branch-card:focus-within,
.branch-card.is-active {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(0, 54, 95, 0.14);
}

.branch-card__select {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
}

.branch-card__select:focus-visible {
  outline: 2px solid rgba(0, 54, 95, 0.55);
  outline-offset: 4px;
}

.branch-card.is-active::before {
  opacity: 1;
}

.branch-card__number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0, 54, 95, 0.1);
  color: var(--brand);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.branch-card.is-active .branch-card__number {
  background: var(--brand);
  color: var(--on-brand);
}

.branch-card strong,
.branch-card small {
  display: block;
}

.branch-card strong {
  margin-top: 0.1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--heading);
}

.branch-card small {
  max-width: 20rem;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(16, 34, 51, 0.6);
}

.branch-card__hours {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.45rem;
  color: rgba(16, 34, 51, 0.58);
  font-size: 0.74rem;
  line-height: 1.65;
}

.branch-card__hours bdi {
  color: rgba(0, 54, 95, 0.72);
  font-weight: 700;
}

.branch-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) 2.35rem minmax(7.4rem, 1.25fr);
  gap: 0.45rem;
  padding-right: 2.9rem;
}

.branch-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.62rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(0, 54, 95, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.branch-card__actions .branch-card__whatsapp {
  width: 2.35rem;
  min-width: 2.35rem;
  padding: 0;
  border-color: rgba(37, 211, 102, 0.28);
  background: rgba(37, 211, 102, 0.1);
}

.branch-card__actions .branch-card__whatsapp img {
  width: 1.18rem;
  height: 1.18rem;
  object-fit: contain;
}

.branch-card__actions a:hover,
.branch-card__actions a:focus-visible {
  border-color: rgba(0, 54, 95, 0.38);
  background: rgba(0, 54, 95, 0.08);
}

.branch-card__actions a:first-child {
  background: var(--brand);
  color: var(--on-brand);
}

.branch-card__actions [data-branch-phone] {
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

.branch-card--soon {
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: start;
  cursor: default;
  opacity: 0.72;
}

.branch-card--soon .branch-card__actions {
  grid-column: 1 / -1;
  padding-right: 2.9rem;
}

.branches__map {
  --pin-x: 29%;
  --pin-y: 28%;
  position: relative;
  min-height: clamp(38rem, 72vw, 48rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(47, 117, 159, 0.24), transparent 28%),
    linear-gradient(135deg, #001f36 0%, #00365f 46%, #0a2940 100%);
  color: var(--on-brand);
}

.branches__google-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  background: #001f36;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.branches__map.is-google-loaded .branches__google-map {
  opacity: 1;
  pointer-events: auto;
}

.branches__active-card {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.35rem);
  left: clamp(0.9rem, 2vw, 1.35rem);
  z-index: 3;
  width: min(18rem, calc(100% - 1.8rem));
  padding: 0.72rem 0.9rem 0.82rem;
  border: 1px solid rgba(0, 54, 95, 0.14);
  border-radius: 0.85rem;
  background: rgba(237, 237, 237, 0.9);
  box-shadow: 0 18px 42px rgba(0, 31, 54, 0.18);
  color: var(--brand);
  direction: rtl;
  pointer-events: none;
  text-align: right;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.branches__map.has-active-branch .branches__active-card {
  opacity: 1;
  transform: translateY(0);
}

.branches__active-card span,
.branches__active-card strong {
  display: block;
}

.branches__active-card span {
  margin-bottom: 0.15rem;
  color: rgba(0, 54, 95, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
}

.branches__active-card strong {
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  line-height: 1.55;
}

.branches__map.is-google-loaded::before,
.branches__map.is-google-loaded::after,
.branches__map.is-google-loaded .branches__map-grid,
.branches__map.is-google-loaded .branches__pin {
  opacity: 0;
}

.branches__map::before,
.branches__map::after,
.branches__map-grid {
  content: '';
  position: absolute;
  inset: -8%;
  pointer-events: none;
}

.branches__map::before {
  opacity: 0.28;
  background:
    linear-gradient(20deg, transparent 0 35%, rgba(255, 255, 255, 0.24) 35.3% 35.9%, transparent 36.2% 100%),
    linear-gradient(-32deg, transparent 0 24%, rgba(255, 255, 255, 0.2) 24.3% 24.8%, transparent 25.2% 100%),
    linear-gradient(78deg, transparent 0 58%, rgba(255, 255, 255, 0.16) 58.2% 58.7%, transparent 59% 100%);
}

.branches__map::after {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: rotate(-8deg) scale(1.15);
}

.branches__map-grid {
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 26% 72%, rgba(237, 237, 237, 0.2), transparent 18%),
    radial-gradient(ellipse at 70% 36%, rgba(237, 237, 237, 0.18), transparent 18%),
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.36) 47.2% 47.9%, transparent 48.2% 100%);
}

.branches__pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 2;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.16),
    0 16px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    left 360ms cubic-bezier(0.16, 1, 0.3, 1),
    top 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.branches__map.has-active-branch:not(.is-google-loaded) .branches__pin {
  opacity: 1;
}

.cta-band {
  width: min(100%, 1520px);
  margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(2rem, 4vw, 3rem);
  padding: 0;
  scroll-margin-top: 8rem;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 0.4rem);
  overflow: clip;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 247, 245, 0.86) 100%);
  box-shadow: var(--shadow-soft);
}

.cta-band__media {
  position: relative;
  min-height: 36rem;
}

.cta-band__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 237, 237, 0.02) 0%, rgba(237, 237, 237, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 54, 95, 0.06) 0%, rgba(0, 54, 95, 0.24) 100%);
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-band__content {
  display: grid;
  align-content: center;
  gap: 1.2rem;
  padding: clamp(1.8rem, 4vw, 4rem);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.4rem;
}

.cta-band__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.cta-band__locations li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.58);
}

.site-footer {
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 3rem) clamp(2rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(0, 0.75fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.site-footer__brand,
.site-footer__column {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: grid;
  gap: 0.75rem;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.site-footer__column a {
  width: fit-content;
  color: rgba(16, 34, 51, 0.74);
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: rgba(16, 34, 51, 0.56);
  font-size: 0.92rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 700ms cubic-bezier(0.2, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__content.reveal-on-scroll,
.hero__content.reveal-on-scroll.is-visible {
  opacity: var(--hero-copy-alpha);
  transform: translateY(calc(var(--hero-progress) * -2rem));
}

@media (max-width: 1180px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .craft__layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .branches__locator {
    grid-template-columns: 1fr;
  }

  .branches__list {
    max-height: 28rem;
    border-left: 0;
    border-bottom: 1px solid rgba(0, 54, 95, 0.12);
  }

  .branches__map {
    min-height: 32rem;
  }

  .story-panel {
    min-height: clamp(26rem, 70vw, 38rem);
  }

  .cta-band__media {
    min-height: 25rem;
    order: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: clamp(3.6rem, 10vw, 5.25rem);
  }

  .section-head h2 {
    line-height: 1.6;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.8rem 1.15rem;
    gap: 0.75rem;
  }

  .site-actions .button--ghost {
    display: none;
  }

  .site-actions .language-toggle {
    min-height: 2.55rem;
    padding-inline: 0.1rem;
  }

  .site-actions {
    grid-column: 3;
    justify-self: start;
  }

  .hero {
    min-height: 380svh;
  }

  .hero__viewport {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding: max(6.5rem, 12vh) 1rem clamp(2rem, 8vh, 4rem);
    align-items: end;
  }

  .hero__viewport::before {
    background:
      linear-gradient(180deg, rgba(237, 237, 237, 0.02) 0%, rgba(237, 237, 237, 0.08) 34%, rgba(237, 237, 237, 0.8) 68%, rgba(237, 237, 237, 0.98) 100%),
      linear-gradient(90deg, rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 0.38) 100%);
  }

  .kitchen-backdrop img {
    object-position: center center;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 0.18) 38%, rgba(237, 237, 237, 0.9) 74%, rgba(237, 237, 237, 1) 100%),
      radial-gradient(circle at 76% 76%, rgba(237, 237, 237, 0.96), transparent 42%);
  }

  .hero__shell {
    justify-items: start;
  }

  .hero__serial {
    display: none;
  }

  .hero__content {
    max-width: min(100%, 30rem);
    padding: 0 0 0.5rem;
  }

  .hero__title {
    max-width: 8.5ch;
    font-size: clamp(2.75rem, 9.4vw, 4.25rem);
    line-height: 1.22;
  }

  .hero__body {
    max-width: 31rem;
  }

  .world-steps,
  .world-scroll,
  .world-progress {
    display: none;
  }

  .hero-trust {
    top: 57%;
    left: clamp(9rem, 31vw, 18rem);
    right: auto;
    bottom: auto;
    width: min(20rem, 43vw);
    min-height: 0;
    gap: 0.34rem;
    text-align: right;
  }

  .hero-trust__item {
    grid-area: auto;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    justify-content: start;
    gap: 0.04rem;
    padding: 0;
    border-top: 1px solid rgba(0, 54, 95, 0);
    text-align: right;
    transition:
      max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 520ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 360ms ease,
      opacity 360ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero-trust__item.is-shown {
    max-height: 5.4rem;
    padding-block: 0.42rem;
    border-color: rgba(0, 54, 95, 0.14);
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .hero-trust__item span {
    font-size: 0.78rem;
  }

  .hero-trust__item strong {
    font-size: clamp(1.45rem, 5.5vw, 2.55rem);
    line-height: 1.3;
  }

  .hero-trust__item small {
    font-size: 0.82rem;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .section,
  .site-footer {
    padding-inline: 1rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .cta-band {
    margin-top: 1rem;
  }

  .branches {
    scroll-margin-top: 6rem;
  }

  .branches__head {
    align-items: stretch;
    flex-direction: column;
  }

  .branches__head .button {
    width: fit-content;
  }

  .branches__locator {
    border-radius: 1.5rem;
  }

  .branches__list {
    max-height: 24rem;
  }

  .branch-card {
    min-height: 5.9rem;
  }

  .branches__map {
    min-height: 30rem;
  }


  .section-head h2,
  .cta-band__content h2,
  .story-panel__copy h3,
  .craft__detail h3 {
    max-width: none;
  }

  .section-head h2 {
    font-size: clamp(2rem, 8.4vw, 3.3rem);
  }

  .section-head p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .craft__layout {
    min-height: clamp(34rem, 112vw, 44rem);
  }

  .craft__visual {
    min-height: inherit;
  }

  .craft__visual::before {
    background:
      linear-gradient(180deg, rgba(237, 237, 237, 0.04) 0%, rgba(237, 237, 237, 0.1) 36%, rgba(237, 237, 237, 0.92) 78%, rgba(237, 237, 237, 0.98) 100%),
      linear-gradient(90deg, rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 0.08) 46%, rgba(237, 237, 237, 0.52) 100%);
  }

  .craft__cutaway {
    width: 100%;
    height: 100%;
    transform: none;
    object-position: 34% center;
  }

  .craft__detail {
    align-self: end;
    justify-self: stretch;
    width: auto;
    max-width: 38rem;
    margin-inline: clamp(1rem, 5vw, 2rem);
    margin-bottom: clamp(2rem, 8vw, 4rem);
    gap: 0.7rem;
  }

  .craft-point {
    gap: 0.45rem;
  }

  .craft-point__line {
    width: 2.7rem;
  }

  .craft-point__label {
    font-size: 0.72rem;
  }

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

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: clamp(3rem, 9vw, 4.25rem);
  }

  .brandmark__logo {
    width: 5.65rem;
  }

  .site-header {
    padding: 0.65rem 0.7rem 0;
  }

  .site-header__inner {
    padding: 0.62rem 0.72rem;
    gap: 0.5rem;
  }

  .site-actions {
    grid-column: 3;
    justify-self: start;
  }

  .site-actions .button--solid {
    width: auto;
    min-height: 2.55rem;
    padding-inline: 0.86rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .site-actions .language-toggle {
    min-height: 2.55rem;
    font-size: 0.76rem;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 260svh;
  }

  .hero__viewport {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 100svh;
    padding: 5.15rem 1rem 1.55rem;
  }

  .hero__viewport::before {
    background:
      linear-gradient(180deg, rgba(237, 237, 237, 0.16) 0%, rgba(237, 237, 237, 0.1) 30%, rgba(237, 237, 237, 0.72) 70%, rgba(237, 237, 237, 0.96) 100%),
      linear-gradient(90deg, rgba(237, 237, 237, 0.02) 0%, rgba(237, 237, 237, 0.36) 100%);
  }

  .kitchen-backdrop img {
    object-position: 31% center;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(237, 237, 237, 0.06) 0%, rgba(237, 237, 237, 0.08) 36%, rgba(237, 237, 237, 0.76) 78%, rgba(237, 237, 237, 1) 100%),
      radial-gradient(circle at 62% 48%, rgba(237, 237, 237, 0.5), transparent 44%);
  }

  .hero__shell {
    min-height: auto;
    align-content: start;
  }

  .hero__content {
    gap: 0.68rem;
    max-width: min(100%, 22rem);
    padding: 0;
  }

  .hero__title {
    max-width: 9ch;
    font-size: clamp(2.35rem, 10.8vw, 3.12rem);
    line-height: 1.18;
  }

  .hero__body {
    max-width: 20.5rem;
    font-size: 0.88rem;
    line-height: 1.78;
  }

  .hero__actions {
    gap: 0.65rem;
    padding-top: 0.2rem;
  }

  .hero__actions .button {
    min-height: 3rem;
  }

  .social-links--hero {
    gap: 0.45rem;
  }

  .social-link {
    width: 2.05rem;
    height: 2.05rem;
  }

  .social-link__icon {
    width: 0.95rem;
    height: 0.95rem;
  }

  .hero-trust {
    position: relative;
    inset: auto;
    align-self: flex-start;
    width: min(100%, 22rem);
    min-height: 0;
    margin-top: 0.8rem;
    gap: 0.28rem;
    opacity: 0;
    text-align: right;
    transform: none;
  }

  .hero-trust__item {
    grid-area: auto;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    justify-content: start;
    align-content: center;
    gap: 0.04rem;
    padding-block: 0;
    border-top: 1px solid rgba(0, 54, 95, 0);
    opacity: 0;
    transform: translateY(0.45rem) scale(0.985);
    text-shadow: 0 0.75rem 2rem rgba(237, 237, 237, 0.86);
  }

  .hero-trust__item.is-shown {
    max-height: 4.8rem;
    padding-block: 0.42rem;
    border-color: rgba(0, 54, 95, 0.14);
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .hero-trust__item.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .hero-trust__item strong {
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
    line-height: 1.38;
  }

  .hero-trust__item span,
  .hero-trust__item small {
    font-size: 0.7rem;
  }

  .section {
    padding-block: 3.15rem;
  }

  .cta-band {
    margin-top: 0.75rem;
    scroll-margin-top: 6.5rem;
  }

  .section-head {
    margin-bottom: 1.45rem;
    gap: 0.75rem;
  }

  .section-head h2 {
    font-size: clamp(1.72rem, 7.4vw, 2.45rem);
    line-height: 1.18;
  }

  .section-head p {
    font-size: 0.9rem;
    line-height: 1.78;
  }

  .section-eyebrow,
  .craft__kicker,
  .story-panel__kicker,
  .site-footer__label {
    font-size: 0.72rem;
  }

  .hero__actions,
  .cta-band__actions,
  .mobile-menu__actions {
    display: grid;
  }

  .story-panel {
    min-height: 23rem;
    border-radius: 1.15rem;
  }

  .story-panel::after {
    background:
      linear-gradient(180deg, rgba(0, 54, 95, 0.04) 0%, rgba(0, 54, 95, 0.14) 36%, rgba(0, 54, 95, 0.84) 100%),
      linear-gradient(90deg, rgba(0, 54, 95, 0.06) 0%, rgba(0, 54, 95, 0.34) 100%);
  }

  .story-panel__copy,
  .cta-band__content {
    padding: 1rem;
  }

  .story-panel__copy {
    inset: auto 0 0;
    width: 100%;
    gap: 0.55rem;
  }

  .story-panel__copy h3 {
    font-size: clamp(1.25rem, 6.3vw, 1.75rem);
    line-height: 1.18;
  }

  .story-panel__copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .story-panel__meta {
    gap: 0.55rem;
    padding-top: 0.2rem;
  }

  .story-panel__meta strong {
    font-size: 2.2rem;
  }

  .story-panel__meta span {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .craft__layout {
    min-height: 31rem;
  }

  .craft__visual {
    min-height: inherit;
    border-radius: 0;
  }

  .craft-point {
    gap: 0;
    transform: translate(-50%, -50%);
  }

  .craft-point__line,
  .craft-point__label {
    display: none;
  }

  .craft-point[data-craft-point]:nth-of-type(2) {
    left: 25%;
    top: 44%;
  }

  .craft-point[data-craft-point]:nth-of-type(3) {
    left: 41%;
    top: 23%;
  }

  .craft-point[data-craft-point]:nth-of-type(4) {
    left: 57%;
    right: auto;
    top: 53%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .craft__detail {
    margin-inline: 1rem;
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(0, 54, 95, 0.1);
    border-radius: 1rem;
    background: rgba(237, 237, 237, 0.78);
    backdrop-filter: blur(14px);
  }

  .craft__detail h3 {
    font-size: clamp(1.35rem, 6.4vw, 1.85rem);
    line-height: 1.18;
  }

  .craft__detail p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .craft__spec {
    min-height: 2.35rem;
    padding: 0.64rem 0.82rem;
    font-size: 0.78rem;
  }

  .craft__mobile-slides {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.25rem;
    direction: rtl;
  }

  .craft__slide-button {
    display: inline-grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    flex: 0 0 auto;
    border: 1px solid rgba(0, 54, 95, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--brand);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
  }

  .craft__slide-button:active {
    transform: scale(0.94);
  }

  .craft__slide-button:disabled {
    opacity: 0.34;
    cursor: default;
    transform: none;
  }

  .craft__slide-button:focus-visible {
    border-color: var(--brand);
    background: rgba(255, 255, 255, 0.86);
    outline: 2px solid rgba(0, 54, 95, 0.18);
    outline-offset: 2px;
  }

  .craft__slide-button span {
    display: grid;
    place-items: center;
    width: 1.2rem;
    height: 1.2rem;
    font-size: 1.9rem;
    line-height: 1;
  }

  .craft__slide-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    min-width: 6.4rem;
    min-height: 2.85rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
  }

  .craft__slide-dots button {
    width: 0.48rem;
    height: 0.48rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 54, 95, 0.24);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
  }

  .craft__slide-dots button.is-active {
    width: 1.45rem;
    background: var(--brand);
  }

  .craft__slide-dots button:focus-visible {
    outline: 2px solid rgba(0, 54, 95, 0.22);
    outline-offset: 3px;
  }

  .craft__pillars {
    display: none;
  }

  .cta-band {
    border-radius: 1.5rem;
  }

  .cta-band__media {
    min-height: 18rem;
  }

  .branches__head .button {
    width: 100%;
  }

  .branches__head h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.35rem);
    line-height: 1.18;
  }

  .branches__locator {
    border-radius: 1.1rem;
  }

  .branches__list {
    max-height: 19.5rem;
  }

  .branch-card {
    min-height: 5rem;
    padding: 0.75rem;
    gap: 0.62rem;
  }

  .branch-card__actions {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 2.25rem;
      gap: 0.4rem;
      padding-right: 0;
    }
  
  .branch-card__actions [data-branch-phone] {
      grid-column: 1 / -1;
    }

  .branch-card__number {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.92rem;
  }

  .branch-card strong {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .branch-card small {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .branch-card__hours {
    gap: 0.18rem;
    margin-top: 0.34rem;
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .branch-card__actions a {
      min-height: 2.1rem;
      padding: 0.5rem 0.48rem;
      font-size: 0.72rem;
    }

  .branch-card__actions .branch-card__whatsapp {
      min-height: 2.1rem;
      min-width: 2.25rem;
      width: 2.25rem;
      padding: 0;
    }

  .branch-card--soon .branch-card__actions {
    padding-right: 0;
  }

  .branches__map {
    min-height: 25rem;
  }

  .branches__active-card {
    top: 0.7rem;
    left: 0.7rem;
    width: min(14rem, calc(100% - 1.4rem));
    padding: 0.58rem 0.68rem;
    border-radius: 0.7rem;
  }

  .branches__active-card span {
    font-size: 0.64rem;
  }

  .branches__active-card strong {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .cta-band__content h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.18;
  }

  .cta-band__content p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .site-footer {
    gap: 0.7rem;
    padding-inline: 1rem;
  }

  .site-footer__brand,
  .site-footer__column {
    padding: 1rem 0;
  }

  .cta-band__locations li {
    width: calc(50% - 0.375rem);
    text-align: center;
  }

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

@media (max-width: 1180px) {
  .client-showcase__copy {
    width: min(100%, 56rem);
  }

  .client-showcase__copy h2 {
    width: min(100%, 38rem);
  }
}

@media (max-width: 900px) {
  .client-showcase {
    --client-title-scale: 4.75;
    min-height: 620svh;
  }

  .client-showcase__sticky {
    align-items: start;
    padding: 5.8rem 1rem 1.6rem;
  }

  .client-showcase__copy {
    justify-items: center;
    width: min(100%, 27rem);
    margin: 0 auto;
    gap: 0.65rem;
    text-align: center;
  }

  .client-showcase__copy h2 {
    width: min(100%, 26rem);
    min-height: clamp(4.8rem, 17vw, 7rem);
    font-size: clamp(1.42rem, 5.8vw, 2.25rem);
    line-height: 1.48;
  }

  .client-showcase__copy .section-eyebrow {
    font-size: clamp(0.68rem, 2.8vw, 0.82rem);
    text-align: center;
  }

  .client-showcase__stage::before {
    inset: 5.8rem 1rem 1.6rem;
    background-size: 3.2rem 3.2rem;
  }

  .client-frame {
    top: var(--tile-my, var(--tile-y));
    left: var(--tile-mx, var(--tile-x));
    width: clamp(9rem, calc(var(--tile-mw, 40vw) * 1.12), 62vw);
  }

}

@media (min-width: 761px) and (max-width: 900px) {
  .client-showcase__sticky {
    padding-bottom: 2.4rem;
  }

  .client-frame {
    width: clamp(8.25rem, calc(var(--tile-mw, 40vw) * 0.72), 36vw);
  }

  .client-frame:nth-child(1) {
    top: 18%;
    left: 7%;
  }

  .client-frame:nth-child(2) {
    top: 4%;
    left: 28%;
  }

  .client-frame:nth-child(3) {
    top: 65%;
    left: 31%;
  }

  .client-frame:nth-child(4) {
    top: 7%;
    left: 48%;
  }

  .client-frame:nth-child(5) {
    top: 59%;
    left: 64%;
  }

  .client-frame:nth-child(6) {
    top: 16%;
    left: 78%;
  }

  .client-frame:nth-child(7) {
    top: 60%;
    left: 8%;
  }

  .client-frame:nth-child(8) {
    top: 72%;
    left: 48%;
    width: clamp(9.25rem, calc(var(--tile-mw, 40vw) * 0.82), 40vw);
  }

  .client-frame:nth-child(9) {
    top: 61%;
    left: 80%;
  }
}

@media (max-width: 760px) {
  .client-showcase {
    min-height: 760svh;
    --client-title-scale: 4.2;
  }

  .craft {
    padding-top: clamp(3rem, 9vw, 4rem);
  }

  .craft .section-head {
    margin-bottom: 1.2rem;
    padding-inline: 1rem;
  }

  .craft__layout {
    display: block;
    min-height: 0;
  }

  .craft__visual {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .craft__visual::before {
    background:
      linear-gradient(180deg, rgba(237, 237, 237, 0.05) 0%, rgba(237, 237, 237, 0) 52%, rgba(237, 237, 237, 0.18) 100%);
  }

  .craft__visual::after {
    display: none;
  }

  .craft__cutaway {
    object-position: 44% center;
  }

  .craft__detail {
    grid-area: auto;
    justify-self: auto;
    width: auto;
    margin: 1rem;
  }

  .client-showcase__sticky {
    align-items: center;
    padding: 5.4rem 1rem 2rem;
  }

  .client-showcase__copy {
    position: absolute;
    top: clamp(5.15rem, 11svh, 6.5rem);
    left: 50%;
    transform: translateX(-50%);
    align-self: start;
    width: min(100%, 23rem);
    margin-top: 0;
    gap: 0.4rem;
  }

  .client-showcase__copy.reveal-on-scroll,
  .client-showcase__copy.reveal-on-scroll.is-visible {
    transform: translateX(-50%);
  }

  .client-showcase__copy::before {
    display: none;
  }

  .client-showcase__copy h2 {
    width: min(100%, calc(100vw - 2rem));
    min-height: clamp(3.8rem, 15vw, 5.2rem);
    font-size: clamp(1.1rem, 5.4vw, 1.64rem);
    line-height: 1.56;
  }

  .client-showcase__stage::before {
    opacity: 0.1;
    mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 78%, transparent 100%);
  }

  .client-frame {
    top: auto;
    left: 50%;
    bottom: clamp(2rem, 7vh, 4.2rem);
    width: min(82vw, 23rem);
    max-height: 46svh;
    border-radius: 1.1rem;
    box-shadow: 0 18px 50px rgba(0, 31, 54, 0.18);
    transform:
      translate3d(
        calc(-50% + var(--tile-xmove)),
        calc(var(--tile-ymove) + var(--tile-yshift)),
        0
      )
      rotate(var(--tile-rotate))
      scale(var(--tile-scale));
  }

  .client-frame:not(.is-active) {
    opacity: 0;
    pointer-events: none;
  }

  .client-frame:nth-child(8) {
    width: min(88vw, 24rem);
  }

  .client-showcase__cta {
    bottom: clamp(1.5rem, 5vh, 3rem);
    width: min(82vw, 23rem);
  }
}

@media (max-width: 640px) {
  .client-showcase {
    --client-title-scale: 4.4;
    min-height: 780svh;
  }

  .client-showcase__sticky {
    min-height: 100svh;
    padding: 5.2rem 0.85rem 1.6rem;
  }

  .client-showcase__copy {
    width: min(100%, calc(100vw - 1.3rem));
    margin-top: clamp(2.4rem, 10vh, 4.2rem);
  }

  .client-showcase__copy h2 {
    width: min(100%, calc(100vw - 1.6rem));
    min-height: clamp(4.1rem, 18vw, 5.7rem);
    font-size: clamp(1rem, 5.2vw, 1.42rem);
    line-height: 1.58;
  }

  .client-showcase__copy .section-eyebrow {
    font-size: clamp(0.58rem, 2.3vw, 0.7rem);
  }

  .client-frame {
    bottom: clamp(1.5rem, 5.5vh, 3rem);
    width: min(84vw, 20.5rem);
  }

  .client-frame:nth-child(8) {
    width: min(88vw, 22rem);
  }

  .client-caption__current {
    max-width: min(100%, 18ch);
  }

}

@media (max-width: 380px) {
  .client-showcase {
    --client-title-scale: 3.9;
  }

  .client-showcase__copy h2 {
    font-size: clamp(0.98rem, 5.1vw, 1.34rem);
    line-height: 1.62;
  }
}

@media (max-width: 760px) {
  .social-links--hero,
  .social-links--footer {
    justify-content: center;
    justify-self: center;
  }

  .client-showcase {
    min-height: auto;
    padding: 0 0 2.6rem;
    overflow: visible;
    --client-title-scale: 1;
  }

  .client-showcase__sticky {
    position: relative;
    display: block;
    min-height: auto;
    padding: 5.35rem 0.85rem 2rem;
    overflow: visible;
  }

  .client-showcase__copy {
    position: sticky;
    top: 5.2rem;
    left: auto;
    z-index: 8;
    width: min(100%, 23rem);
    margin: 0 auto 1rem;
    padding: 0.6rem 0.85rem 0.7rem;
    border: 1px solid rgba(0, 54, 95, 0.1);
    border-radius: 1rem;
    background: rgba(237, 237, 237, 0.78);
    box-shadow: 0 16px 42px rgba(0, 31, 54, 0.08);
    transform: none;
    backdrop-filter: blur(16px);
  }

  .client-showcase__copy.reveal-on-scroll,
  .client-showcase__copy.reveal-on-scroll.is-visible {
    transform: none;
  }

  .client-showcase__copy::before,
  .client-showcase__stage::before {
    display: none;
  }

  .client-showcase__copy .section-eyebrow {
    font-size: 0.74rem;
    opacity: 0.82;
    transform: none !important;
  }

  .client-showcase__copy h2 {
    width: 100%;
    min-height: 3.5rem;
    font-size: clamp(1.08rem, 5vw, 1.42rem);
    line-height: 1.65;
    text-wrap: balance;
    opacity: 1 !important;
    transform: none !important;
  }

  .client-caption__current {
    max-width: min(100%, 19ch);
  }

  .client-showcase__stage {
    position: relative;
    inset: auto;
    display: grid;
    gap: 1.05rem;
    min-height: auto;
    pointer-events: auto;
    perspective: none;
  }

  .client-frame,
  .client-frame:nth-child(8) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: block;
    width: min(100%, 28rem) !important;
    height: min(64svh, 31rem);
    max-height: none;
    margin: 0 auto;
    border-radius: 1.15rem;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: 0 18px 48px rgba(0, 31, 54, 0.15);
  }

  .client-frame:not(.is-active) {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .client-frame img,
  .client-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .kitchen-backdrop img,
  .hero__content,
  .hero__actions,
  .site-header {
    transform: none !important;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__viewport {
    position: relative;
  }

  .client-showcase {
    min-height: auto;
    padding-block: var(--section-pad);
    padding-inline: clamp(1.4rem, 4vw, 3rem);
  }

  .client-showcase__sticky {
    position: relative;
    min-height: auto;
    display: grid;
    gap: 1.2rem;
    padding: 0;
  }

  .client-showcase__stage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 0.8rem;
    min-height: auto;
  }

  .client-showcase__stage::before {
    display: none;
  }

  .client-frame {
    position: relative;
    top: auto;
    left: auto;
    inset: auto;
    width: 100%;
    opacity: 1;
    filter: none;
    transform: none !important;
  }

}
