:root {
  color-scheme: dark;
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.24), 0 8px 24px rgba(0, 0, 0, 0.18);
  --container: min(1200px, calc(100vw - 40px));
  --radius-lg: 38px;
  --radius-pill: 999px;
  --body-bg-top: #14161b;
  --body-bg-bottom: #0d0f14;
  --intro-bg-top: #08090c;
  --intro-bg-bottom: #0d0f14;
  --nav-text: rgba(255, 255, 255, 0.96);
  --nav-text-active: #ffffff;
  --nav-pill-top: rgba(255, 255, 255, 0.18);
  --nav-pill-bottom: rgba(166, 171, 183, 0.08);
  --nav-pill-fill: rgba(120, 126, 138, 0.12);
  --nav-pill-border: rgba(255, 255, 255, 0.16);
  --nav-pill-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.16);
  --header-glass-top: rgba(84, 84, 88, 0.48);
  --header-glass-bottom: rgba(46, 46, 48, 0.22);
  --header-glass-fill: rgba(34, 34, 36, 0.12);
  --header-glass-border: rgba(255, 255, 255, 0.1);
  --page-surface: #050505;
  --page-surface-strong: rgba(5, 5, 5, 0.96);
  --panel-bg: #050505;
  --panel-text: rgba(255, 255, 255, 0.96);
  --panel-arrow: rgba(255, 255, 255, 0.82);
  --location-meta: rgba(255, 255, 255, 0.78);
  --location-meta-soft: rgba(255, 255, 255, 0.54);
  --badge-bg: #ffffff;
  --badge-text: #050505;
  --carousel-control-top: rgba(255, 255, 255, 0.18);
  --carousel-control-bottom: rgba(255, 255, 255, 0.06);
  --carousel-control-fill: rgba(255, 255, 255, 0.08);
  --carousel-control-border: rgba(255, 255, 255, 0.18);
  --carousel-dot: rgba(255, 255, 255, 0.32);
  --carousel-dot-active: rgba(255, 255, 255, 0.96);
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --text: rgba(15, 18, 24, 0.96);
    --muted: rgba(15, 18, 24, 0.72);
    --line: rgba(15, 18, 24, 0.14);
    --body-bg-top: #f4f1eb;
    --body-bg-bottom: #ebe4d8;
    --intro-bg-top: #f7f2ea;
    --intro-bg-bottom: #ebe4d8;
    --nav-text: rgba(22, 24, 28, 0.92);
    --nav-text-active: #0f1218;
    --nav-pill-top: rgba(15, 18, 24, 0.08);
    --nav-pill-bottom: rgba(15, 18, 24, 0.03);
    --nav-pill-fill: rgba(15, 18, 24, 0.04);
    --nav-pill-border: rgba(15, 18, 24, 0.08);
    --nav-pill-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 8px 20px rgba(15, 18, 24, 0.08);
    --header-glass-top: rgba(255, 255, 255, 0.5);
    --header-glass-bottom: rgba(240, 233, 224, 0.24);
    --header-glass-fill: rgba(255, 255, 255, 0.12);
    --header-glass-border: rgba(15, 18, 24, 0.08);
    --page-surface: #f4f1eb;
    --page-surface-strong: rgba(244, 241, 235, 0.96);
    --panel-bg: #f4f1eb;
    --panel-text: rgba(15, 18, 24, 0.96);
    --panel-arrow: rgba(15, 18, 24, 0.72);
    --location-meta: rgba(15, 18, 24, 0.78);
    --location-meta-soft: rgba(15, 18, 24, 0.54);
    --badge-bg: #0f1218;
    --badge-text: #f4f1eb;
    --carousel-control-top: rgba(15, 18, 24, 0.08);
    --carousel-control-bottom: rgba(15, 18, 24, 0.02);
    --carousel-control-fill: rgba(255, 255, 255, 0.36);
    --carousel-control-border: rgba(15, 18, 24, 0.1);
    --carousel-dot: rgba(15, 18, 24, 0.28);
    --carousel-dot-active: rgba(15, 18, 24, 0.92);
  }
}

@view-transition {
  navigation: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--body-bg-top) 0%, var(--body-bg-bottom) 100%);
  color: var(--text);
  font-family: "SF Pro Display", "SF Pro Text", "Avenir Next", "Helvetica Neue", sans-serif;
}

body.is-locked {
  overflow: hidden;
}

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

.intro-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--intro-bg-top) 0%, var(--intro-bg-bottom) 100%);
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-logo {
  display: block;
  width: min(32vw, 320px);
  max-width: 56vw;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 400;
}

.nav-shell {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 20px;
}

.brandmark img {
  display: block;
  width: 176px;
  max-width: 100%;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  color: var(--nav-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.top-nav a.is-active {
  color: var(--nav-text-active);
}

.top-nav a.is-active .nav-pill {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--radius-pill);
  color: var(--text);
  background:
    linear-gradient(180deg, var(--nav-pill-top), var(--nav-pill-bottom)),
    var(--nav-pill-fill);
  border: 1px solid var(--nav-pill-border);
  box-shadow: var(--nav-pill-shadow);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  view-transition-name: active-nav;
}

.top-nav a .nav-label {
  position: relative;
  z-index: 1;
}

::view-transition-group(active-nav) {
  border-radius: var(--radius-pill);
  overflow: hidden;
}

::view-transition-old(active-nav),
::view-transition-new(active-nav) {
  animation-duration: 320ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

::view-transition-old(active-nav) {
  animation-name: active-nav-old;
}

::view-transition-new(active-nav) {
  animation-name: active-nav-new;
}

@keyframes active-nav-old {
  from {
    opacity: 1;
    filter: blur(0);
  }
  to {
    opacity: 0;
    filter: blur(6px);
  }
}

@keyframes active-nav-new {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.glass {
  background:
    linear-gradient(180deg, var(--header-glass-top), var(--header-glass-bottom)),
    var(--header-glass-fill);
  border: 1px solid var(--header-glass-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.squircle {
  border-radius: var(--radius-lg);
}

.site-header .nav-shell {
  border-radius: 0;
}

@supports (corner-shape: superellipse(0.8)) {
  .squircle {
    corner-shape: superellipse(0.8);
  }
}

.page-label {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 24px;
}

.page-label h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.home-body {
  background: var(--page-surface);
}

.home-page {
  min-height: 100svh;
  background: var(--page-surface);
}

.home-dashboard {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 34px 24px;
  background: var(--page-surface);
  position: relative;
  overflow: hidden;
}

.home-dashboard-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-dashboard-side {
  position: absolute;
  top: 50%;
  display: block;
  height: min(78svh, 860px);
  width: auto;
  transform: translateY(-50%);
  object-fit: contain;
  opacity: 0.96;
}

.home-dashboard-side-left {
  left: 0;
}

.home-dashboard-side-right {
  right: 0;
}

.home-dashboard-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-rows: 1fr auto 1fr auto;
  align-items: center;
  gap: 0;
}

.home-dashboard-brand {
  grid-row: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.home-dashboard-logo {
  display: block;
  width: min(45vw, 540px);
  max-width: calc(100vw - 80px);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  filter: blur(8px);
  animation: home-logo-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

.home-dashboard-metrics {
  grid-row: 4;
  align-self: end;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  padding-bottom: 6px;
}

.home-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: center;
}

.home-metric h2 {
  margin: 0;
  color: var(--panel-text);
  font-size: clamp(2.3rem, 3.7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.home-metric p {
  margin: 0;
  color: var(--location-meta);
  font-size: clamp(0.82rem, 0.96vw, 0.94rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
  max-width: 13ch;
}

.home-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.home-overview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-overview-copy {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: var(--panel-bg);
  padding: 56px 60px;
}

.home-overview-inner {
  width: 100%;
  padding-bottom: 8px;
}

.home-overview-inner h2 {
  margin: 0 0 26px;
  color: var(--panel-text);
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-align: right;
}

.home-overview-inner p {
  margin: 0 0 20px;
  color: var(--location-meta);
  font-size: clamp(1.08rem, 1.34vw, 1.28rem);
  font-weight: 500;
  line-height: 1.66;
  text-align: justify;
}

.home-overview-inner p:last-child {
  margin-bottom: 0;
}

.home-overview-alt .home-overview-copy {
  order: 1;
  justify-content: flex-start;
}

.home-overview-alt .home-overview-media {
  order: 2;
}

.home-overview-alt .home-overview-inner h2 {
  text-align: left;
}

.home-overview-alt .home-overview-copy {
  align-items: stretch;
}

.home-overview-alt .home-overview-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.home-overview-heading {
  width: 100%;
}

.home-overview-body {
  width: 100%;
  margin-top: auto;
}

@keyframes home-logo-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.management-body {
  background: var(--page-surface);
}

.management-page {
  min-height: 100vh;
}

.management-hero {
  position: relative;
  min-height: 100vh;
  background: #000000;
}

.management-hero img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.management-hero-copy {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 1;
}

.management-hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-align: right;
}

.management-founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}

.management-founder-copy {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--panel-bg);
  color: var(--panel-text);
  padding: 58px 60px;
}

.management-founder-inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.management-founder-inner h2 {
  margin: 0 0 12px;
  color: var(--panel-text);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.management-founder-inner h3 {
  margin: 0 0 26px;
  color: var(--location-meta);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
}

.management-founder-inner p {
  margin: auto 0 0;
  color: var(--location-meta);
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.72;
  text-align: justify;
}

.management-founder-inner p + p {
  margin-top: 20px;
}

.management-founder-media {
  position: relative;
}

.management-founder-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.management-founder-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
}

.management-founder-caption span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.management-founder-alt .management-founder-copy {
  align-items: flex-end;
  justify-content: flex-end;
}

.management-founder-alt .management-founder-inner h2,
.management-founder-alt .management-founder-inner h3 {
  text-align: right;
}

.management-philosophy {
  background: var(--page-surface);
  padding: 88px 0 0;
}

.management-philosophy-header {
  --management-philosophy-heading-size: clamp(2.9rem, 4.8vw, 5rem);
  padding: 0 34px 28px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.management-philosophy-header h2 {
  margin: 0;
  color: var(--panel-text);
  font-size: var(--management-philosophy-heading-size);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.management-philosophy-header img {
  display: block;
  width: auto;
  height: calc(var(--management-philosophy-heading-size) * 1.82);
  flex: 0 0 auto;
}

.management-philosophy-columns {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 78vh;
  min-height: 78vh;
}

.management-philosophy-card {
  position: relative;
  --management-philosophy-tint: #f2672c;
  flex: 1 1 0;
  height: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  appearance: none;
  background: #000000;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    flex-grow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms ease,
    filter 280ms ease;
}

.management-philosophy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--management-philosophy-tint);
  mix-blend-mode: color;
  opacity: 0.98;
  pointer-events: none;
  z-index: 1;
}

.management-philosophy-columns:hover .management-philosophy-card {
  flex-grow: 0.85;
}

.management-philosophy-columns:hover .management-philosophy-card:hover {
  flex-grow: 1.8;
}

.management-philosophy-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.management-philosophy-card-orange {
  --management-philosophy-tint: #f2672c;
}

.management-philosophy-card-red {
  --management-philosophy-tint: #ef1f24;
}

.management-philosophy-card-yellow {
  --management-philosophy-tint: #f7c61b;
}

.management-philosophy-card-green {
  --management-philosophy-tint: #abd233;
}

.management-philosophy-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
  z-index: 2;
}

.management-philosophy-copy {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  pointer-events: none;
}

.management-philosophy-card:hover .management-philosophy-copy {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 18px;
}

.management-philosophy-card:hover .management-philosophy-label {
  opacity: 0;
  transform: translateY(10px);
}

.management-philosophy-copy h3,
.management-philosophy-copy h4,
.management-philosophy-copy p {
  color: #ffffff;
}

.management-philosophy-copy h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.management-philosophy-copy h4 {
  margin: 0 0 14px;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.25;
}

.management-philosophy-copy p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.58;
}

.management-philosophy-label {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.management-founder-leadership {
  margin-top: 88px;
}

.management-founder-leadership .management-founder-copy {
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

.management-leadership-heading {
  width: 100%;
}

.management-leadership-body {
  width: 100%;
  margin-top: auto;
  padding-bottom: 0;
}

.management-founder-leadership .management-founder-inner p {
  margin: 0 0 20px;
}

.management-founder-leadership .management-founder-inner p:last-child {
  margin-bottom: 0;
}

.products-body {
  background: var(--page-surface);
}

.products-page {
  background: var(--page-surface);
}

.products-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.products-hero img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.products-hero-copy {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  width: min(680px, calc(100% - 68px));
}

.products-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.7rem, 6.8vw, 7.9rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-align: right;
  text-wrap: balance;
}

.products-section-intro {
  --products-intro-heading-size: clamp(3.4rem, 5.8vw, 6.4rem);
  padding: 124px 34px 46px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.products-section-intro h2 {
  margin: 0;
  color: var(--panel-text);
  font-size: var(--products-intro-heading-size);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.products-section-intro img {
  display: block;
  width: auto;
  height: calc(var(--products-intro-heading-size) * 1.92);
  flex: 0 0 auto;
}

.products-showcase {
  display: grid;
  gap: 0;
  padding-bottom: 40px;
}

.products-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.products-showcase-row-reverse .products-showcase-media {
  order: 2;
}

.products-showcase-row-reverse .products-showcase-copy {
  order: 1;
}

.products-showcase-media {
  position: relative;
  height: 58vh;
  min-height: 58vh;
  background: #111111;
  overflow: hidden;
}

.products-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-showcase-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #161616;
}

.products-showcase-copy {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 64px 56px;
  background: var(--panel-bg);
}

.products-showcase-copy-inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products-showcase-copy-title {
  margin: 0;
  color: var(--panel-text);
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.products-showcase-copy-body {
  width: 100%;
}

.products-showcase-copy p {
  margin: 0;
  color: var(--location-meta);
  font-size: clamp(1.08rem, 1.34vw, 1.28rem);
  font-weight: 500;
  line-height: 1.66;
  text-align: justify;
}

.products-showcase-row-reverse .products-showcase-copy {
  justify-content: flex-start;
}

.site-footer {
  padding: 56px 34px 34px;
  background: var(--page-surface);
}

.site-footer-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-footer-heading,
.site-footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-heading {
  margin: 0;
  color: var(--panel-text);
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer-icons {
  gap: 22px;
}

.site-footer-icon,
.site-footer-detail-link,
.site-footer-credit {
  color: var(--panel-text);
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
}

.site-footer-icon {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
  opacity: 1;
  transition: transform 180ms ease;
}

.site-footer-icon:hover {
  transform: translateY(-1px);
}

.site-footer-icon.is-active {
  transform: translateY(-1px);
}

.site-footer-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

.site-footer-detail[hidden] {
  display: flex;
  visibility: hidden;
}

.site-footer-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--panel-text);
  border-radius: 0;
  background: transparent;
  color: var(--panel-text);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  user-select: text;
  -webkit-user-select: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-footer-credit {
  margin: 10px 0 0;
  color: var(--panel-text);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1;
}

.locations-body {
  background: var(--page-surface);
}

.locations-page {
  padding: 120px 34px 48px;
}

.locations-header {
  margin-bottom: 34px;
}

.locations-heading {
  margin: 0;
  color: var(--panel-text);
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: clamp(3.8rem, 8vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.location-card {
  appearance: none;
  border: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.location-card-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
  color: var(--panel-text);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}

.location-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  filter: saturate(0.98);
}

.locations-detail {
  position: fixed;
  inset: 0;
  z-index: 320;
  background: var(--page-surface-strong);
  overflow-y: auto;
  padding: 108px 34px 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 320ms ease;
}

.locations-detail.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.locations-detail-shell {
  min-height: calc(100vh - 142px);
}

.locations-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.locations-detail-row-top {
  align-items: flex-start;
  margin-bottom: 18px;
}

.locations-detail-name {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.locations-detail-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.locations-detail-hours-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 6px 12px;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.locations-detail-close {
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--badge-bg);
  color: var(--badge-text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.locations-detail-row-links {
  align-items: center;
  margin-bottom: 18px;
}

.locations-detail-links-spacer {
  flex: 1;
}

.locations-detail-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.locations-detail-phone,
.locations-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--panel-text);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.contact-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.contact-icon-landline::before {
  content: "";
  position: absolute;
  inset: 2px 1px 3px;
  border: 1.7px solid var(--panel-text);
  border-radius: 3px;
}

.contact-icon-landline::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 1px;
  height: 1.7px;
  background: var(--panel-text);
}

.contact-icon-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.7px solid var(--panel-text);
  border-radius: 4px;
}

.contact-icon-mobile::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--panel-text);
  transform: translateX(-50%);
}

.locations-detail-media {
  position: relative;
}

.locations-detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.locations-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.locations-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid var(--carousel-control-border);
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--carousel-control-top), var(--carousel-control-bottom)),
    var(--carousel-control-fill);
  color: var(--panel-text);
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.locations-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.locations-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--carousel-dot);
}

.locations-carousel-dot.is-active {
  background: var(--carousel-dot-active);
}

.locations-carousel-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.locations-detail-copy {
  padding: 24px 0 0;
  color: var(--panel-text);
}

.locations-detail-excerpt {
  max-width: none;
  margin: 0;
  color: var(--location-meta);
  font-size: 1.02rem;
  line-height: 1.55;
}

.sustainability-body {
  background: var(--page-surface);
}

.sustainability-page {
  min-height: 100vh;
}

.sustainability-hero {
  position: relative;
  min-height: 100vh;
  background: #000000;
}

.sustainability-hero-video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.sustainability-hero-copy {
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 1;
}

.sustainability-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
  opacity: 0;
  transform: translateY(18px);
  animation: sustainability-copy-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.sustainability-solar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.sustainability-solar-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-solar-copy {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: var(--panel-bg);
  color: var(--panel-text);
  padding: 56px 60px;
}

.sustainability-solar-inner {
  width: 100%;
  padding-bottom: 8px;
}

.sustainability-solar-inner h2 {
  margin: 0 0 12px;
  color: var(--panel-text);
  font-size: clamp(5rem, 8.4vw, 8.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-align: right;
  opacity: 0;
  transform: translateY(22px);
  animation: sustainability-copy-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 140ms forwards;
}

.sustainability-solar-inner h3 {
  margin: 0 0 30px;
  color: var(--panel-text);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  opacity: 0;
  transform: translateY(18px);
  animation: sustainability-copy-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards;
}

.sustainability-solar-inner p {
  margin: 0;
  color: var(--location-meta);
  font-size: clamp(1.14rem, 1.55vw, 1.48rem);
  font-weight: 500;
  line-height: 1.72;
  text-align: right;
  opacity: 0;
  transform: translateY(18px);
  animation: sustainability-copy-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 380ms forwards;
}

.sustainability-local {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}

.sustainability-local-copy {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: var(--panel-bg);
  color: var(--panel-text);
  padding: 56px 60px;
}

.sustainability-local-inner {
  width: 100%;
  padding-bottom: 8px;
}

.sustainability-local-inner h2 {
  margin: 0 0 26px;
  color: var(--panel-text);
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-align: right;
}

.sustainability-local-inner p {
  margin: 0;
  color: var(--location-meta);
  font-size: clamp(1.14rem, 1.5vw, 1.42rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

.sustainability-local-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-logistics .sustainability-local-media {
  background: var(--page-surface);
}

.sustainability-logistics {
  min-height: auto;
  align-items: stretch;
}

.sustainability-logistics .sustainability-local-copy {
  align-items: flex-end;
}

.sustainability-logistics .sustainability-local-media img {
  height: auto;
  object-fit: contain;
  object-position: center;
}

.sustainability-packaging {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
}

.sustainability-packaging-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-packaging-copy {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: var(--panel-bg);
  color: var(--panel-text);
  padding: 56px 60px;
}

.sustainability-packaging-inner {
  width: 100%;
  padding-bottom: 8px;
}

.sustainability-packaging-inner h2 {
  margin: 0 0 26px;
  color: var(--panel-text);
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-align: right;
}

.sustainability-packaging-inner p {
  margin: 0;
  color: var(--location-meta);
  font-size: clamp(1.14rem, 1.5vw, 1.42rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

@keyframes sustainability-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.production-page {
  min-height: 100vh;
  padding-top: 0;
}

.production-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.production-media {
  width: 100%;
}

.production-media img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.production-copy {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100%;
  padding: 48px 56px;
  background: var(--panel-bg);
}

.production-copy-inner {
  width: 100%;
  padding-bottom: 10px;
}

.production-copy h1 {
  margin: 0;
  width: 100%;
  color: var(--panel-text);
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: clamp(4.6rem, 8.4vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.88;
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
  animation: production-copy-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.production-copy p {
  margin: 18px 0 0;
  max-width: none;
  width: 100%;
  color: var(--panel-text);
  font-family: "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
  opacity: 0;
  transform: translateY(18px);
  animation: production-copy-in 920ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
}

@keyframes production-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.production-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
}

.production-overview-alt .production-overview-media {
  order: 1;
}

.production-overview-alt .production-overview-copy {
  order: 2;
}

.production-overview-copy {
  background: var(--panel-bg);
  padding: 64px 56px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}

.production-overview-inner {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.production-overview h2 {
  margin: 0 0 28px;
  color: var(--panel-text);
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: clamp(2.9rem, 4.2vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.production-overview p {
  margin: 0 0 20px;
  color: var(--panel-text);
  font-family: "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: clamp(1.08rem, 1.34vw, 1.28rem);
  font-weight: 500;
  line-height: 1.66;
}

.production-overview p:last-child {
  margin-bottom: 0;
}

.production-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.production-overview-media {
  min-width: 0;
}

.production-overview-logistics .production-overview-media {
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  align-self: stretch;
  background: transparent;
}

.production-overview-logistics {
  align-items: stretch;
}

.production-overview-logistics .production-overview-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.production-overview-logistics h2 {
  font-size: clamp(2.3rem, 3.3vw, 3.8rem);
}

.production-brand-strip {
  width: 100%;
  overflow: hidden;
  background: var(--panel-bg);
}

.production-brand-strip-inner {
  width: 100%;
  padding: 14px 0 16px;
  overflow: hidden;
}

.production-brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: production-brand-marquee 36s linear infinite;
  will-change: transform;
}

.production-brand-sequence {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 17px;
  flex: 0 0 auto;
}

.production-brand-sequence img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.96;
}

.production-brand-sequence img[src*="williams_refridgeration"] {
  height: 42px;
}

.production-overview-precision .production-overview-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.production-overview-precision .production-brand-strip {
  margin-bottom: 28px;
}

.production-overview-precision h2 {
  margin-top: auto;
}

@keyframes production-brand-marquee {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 14px;
    padding: 0;
  }

  .nav-shell {
    width: 100%;
    padding: 8px 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brandmark img {
    width: 144px;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .intro-logo {
    width: min(56vw, 240px);
  }

  .production-page {
    padding-top: 0;
  }

  .production-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .production-media img {
    height: 56vh;
  }

  .production-overview {
    grid-template-columns: 1fr;
  }

  .production-overview-copy {
    padding: 36px 24px;
  }

  .production-overview-media img {
    height: 56vh;
  }

  .production-brand-strip-inner {
    padding: 16px 0;
  }

  .production-brand-sequence {
    gap: 24px;
    padding: 0 12px;
  }

  .production-brand-sequence img {
    height: 26px;
  }

  .production-brand-sequence img[src*="williams_refridgeration"] {
    height: 32px;
  }

  .production-copy {
    padding: 32px 24px;
  }

  .locations-page {
    padding: 120px 16px 32px;
  }

  .management-hero-copy {
    right: 16px;
    bottom: 20px;
  }

  .management-founder {
    grid-template-columns: 1fr;
  }

  .management-founder-copy {
    padding: 34px 24px;
  }

  .home-dashboard {
    padding: 80px 16px 28px;
  }

  .home-dashboard-side {
    height: min(48svh, 420px);
    opacity: 0.9;
  }

  .home-dashboard-side-left {
    left: -36px;
  }

  .home-dashboard-side-right {
    right: -36px;
  }

  .home-dashboard-inner {
    min-height: calc(100svh - 108px);
  }

  .home-dashboard-logo {
    width: min(78vw, 520px);
    max-width: calc(100vw - 32px);
  }

  .home-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .home-overview {
    grid-template-columns: 1fr;
  }

  .home-overview-copy {
    padding: 34px 24px;
  }

  .home-overview-inner h2,
  .home-overview-inner p {
    text-align: left;
  }

  .products-section-intro {
    padding: 72px 16px 28px;
  }

  .products-showcase-row {
    grid-template-columns: 1fr;
  }

  .products-showcase-row-reverse .products-showcase-media,
  .products-showcase-row-reverse .products-showcase-copy {
    order: initial;
  }

  .products-showcase-media {
    min-height: 52vh;
  }

  .products-showcase-copy {
    padding: 34px 24px;
  }

  .products-showcase-row-reverse .products-showcase-copy h3 {
    text-align: left;
  }

  .site-footer {
    padding: 42px 16px 28px;
  }

  .site-footer-shell {
    gap: 16px;
  }

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

  .locations-detail-image {
    aspect-ratio: 1 / 1.05;
  }

  .locations-detail {
    padding: 104px 16px 20px;
  }

  .locations-detail-shell {
    min-height: calc(100vh - 124px);
  }

  .locations-detail-topline {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .locations-detail-row,
  .locations-detail-links {
    display: grid;
    gap: 10px;
  }

  .locations-carousel-controls {
    bottom: 12px;
  }

  .sustainability-hero-copy {
    left: 16px;
    bottom: 20px;
  }

  .sustainability-solar {
    grid-template-columns: 1fr;
  }

  .sustainability-solar-copy {
    padding: 34px 24px;
  }

  .sustainability-local {
    grid-template-columns: 1fr;
  }

  .sustainability-local-copy {
    padding: 34px 24px;
  }

  .sustainability-packaging {
    grid-template-columns: 1fr;
  }

  .sustainability-packaging-copy {
    padding: 34px 24px;
  }
}
