@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #b80e25;
  --red-dark: #8b0b1d;
  --ink: #111111;
  --graphite: #545454;
  --muted: #9e9e9e;
  --line: #d9d9d9;
  --paper: #ffffff;
  --white: #ffffff;
  --accent: #ffffff;
  --header-height: 88px;
  --hero-frame-top: clamp(42px, 4svh, 54px);
  --max: 1720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Gilroy;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.018) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
  mix-blend-mode: multiply;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 118px;
  display: flex;
  align-items: flex-start;
  gap: clamp(26px, 3.2vw, 54px);
  padding: var(--hero-frame-top) clamp(34px, 4vw, 64px) 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: transform 280ms var(--ease);
}

.site-header.is-compact {
  height: 104px;
  box-shadow: none;
}

.brand {
  display: none;
  align-items: center;
  min-height: 64px;
  width: max-content;
}

.brand img {
  display: block;
  width: clamp(206px, 13.8vw, 230px);
  height: auto;
}

.main-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: 0 1 auto;
  margin-left: auto;
  min-height: 66px;
  padding: 8px 8px 8px 22px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    rgba(5, 5, 5, 0.9);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  text-transform: uppercase;
  font-family: Gilroy;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(184, 14, 37, 0.13);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 clamp(15px, 1.15vw, 22px);
  color: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 240ms ease,
    background 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  width: auto;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.main-nav a:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.07);
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  isolation: isolate;
  width: clamp(178px, 10.6vw, 202px);
  min-width: 0;
  min-height: 50px;
  margin-left: 8px;
  padding: 0 22px !important;
  overflow: hidden;
  color: #111111 !important;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 800;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.route-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 250ms ease;
}

.route-link::after {
  content: "→";
  position: static;
  display: block;
  width: auto;
  height: auto;
  background: none;
  transform: none;
  transform-origin: initial;
}

.route-link:hover {
  color: var(--white) !important;
  border-color: var(--red);
  background: rgba(184, 14, 37, 0.9);
}

.route-link:hover::before {
  transform: scaleX(1);
}

.route-link:hover::after {
  transform: none;
}

.nav-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 734px;
  height: clamp(734px, calc(100svh - 34px), 820px);
  max-width: none;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
  background: #111111;
}

.hero-slider {
  color: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition:
    opacity 820ms var(--ease),
    transform 820ms var(--ease);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide--intro {
  overflow: hidden;
  background: #111111;
}

.hero-slide--visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.hero-slide--visual .visual-experience__canvas {
  min-height: 0;
  height: 100%;
}

.hero-slide--visual .visual-experience__stats,
.hero-slide--visual .visual-experience__stats-inner {
  min-height: 154px;
}

.hero-slide--visual .visual-experience__stats-inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero-slide--visual .visual-experience__stat {
  min-height: 96px;
}

.hero-slide--visual .visual-experience__next {
  margin-right: 86px;
}

.hero-picture,
.hero-picture img,
.hero-overlays {
  position: absolute;
  inset: 0;
}

.hero-picture {
  z-index: 1;
  overflow: hidden;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 52% center;
  opacity: 0;
  transform: scale(1.025);
  animation: heroPhotoIn 1100ms var(--ease) 80ms forwards;
}

.hero-overlays {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0) 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.16) 100%),
    radial-gradient(ellipse at 17% 50%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.26) 22%, rgba(255, 255, 255, 0) 43%);
}

.hero-copy {
  position: absolute;
  z-index: 6;
  left: clamp(28px, 1.9vw, 32px);
  top: var(--hero-frame-top);
  width: clamp(520px, 33vw, 590px);
  height: clamp(626px, 68svh, 660px);
  min-height: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  opacity: 0;
  transform: translateX(-24px);
  animation: heroCardIn 820ms var(--ease) 180ms forwards;
}

.hero-shape {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.06)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.hero-shape path {
  fill: #ffffff;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.028;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.14) 1px, transparent 1px);
  background-size: 31px 31px;
  border-radius: 28px 28px 0 24px;
}

.hero-copy-inner {
  position: relative;
  z-index: 8;
  display: flex;
  flex-direction: column;
  padding: 64px 50px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 50px;
  color: var(--red);
  font-family: Gilroy;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 50px;
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero .eyebrow::before {
  display: none;
}

.hero .eyebrow svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: -1px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero .eyebrow svg circle {
  fill: currentColor;
  stroke: none;
}

.hero .eyebrow span {
  display: block;
  padding-top: 1px;
}

.hero-logo-mark {
  width: min(242px, 72%);
  margin: 0 0 30px;
}

.hero-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.6vw, 84px);
  line-height: 1.02;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 480px;
  margin-bottom: 0;
  color: #111111;
  font-family: Gilroy;
  font-size: clamp(58px, 3.5vw, 66px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.052em;
}

.hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin: 30px 0 27px;
  background: var(--red);
  transform-origin: 0 50%;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

.lead,
.text-stack p,
.split-copy p,
.founder p,
.partners p,
.visit-copy p {
  max-width: 620px;
  color: #1c1c1c;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.38;
}

.hero .lead {
  max-width: 450px;
  margin-bottom: 0;
  color: #262626;
  font-family: Gilroy;
  font-size: 17px;
  line-height: 1.46;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.hero-awards {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-awards li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #111111;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-awards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(220px, 252px);
  gap: 16px;
  align-items: start;
  margin-top: 28px;
  width: 100%;
  max-width: 252px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 36px;
  overflow: hidden;
  text-transform: uppercase;
  font-family: Gilroy;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 244px;
  color: var(--white);
  background: var(--red);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red-dark);
  transform: translateX(-101%);
  transition: transform 360ms var(--ease);
}

.button-primary:hover::before {
  transform: translateX(0);
}

.button-line {
  min-width: 210px;
  border-bottom: 2px solid var(--ink);
}

.hero-actions .button {
  min-height: 60px;
  padding: 0 16px;
  gap: 12px;
  font-size: 13px;
  border-radius: 0;
}

.hero-actions .button-primary {
  justify-content: space-between;
  min-width: 0;
}

.hero-actions .button.button-line {
  justify-content: flex-start;
  width: max-content;
  min-width: 0;
  min-height: auto;
  padding: 7px 0 10px;
  overflow: visible;
  color: var(--ink);
  border: 0;
  background: transparent;
  gap: 16px;
  transition: color 250ms ease;
}

.hero-actions .button.button-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 48px;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.42);
  transform-origin: 0 50%;
  transition: transform 320ms var(--ease), background 250ms ease;
}

.hero-actions .button.button-line .button-arrow {
  flex-basis: 34px;
  width: 34px;
}

.hero-actions .button.button-line:hover {
  color: var(--red);
  border-color: transparent;
  background: transparent;
}

.hero-actions .button.button-line:hover::after {
  transform: scaleX(1);
}

.hero-actions .button-primary {
  justify-content: space-between;
  min-width: 0;
}

.hero-actions .button:hover .button-arrow {
  transform: translateX(4px);
}

.hero-actions .button-arrow {
  flex-basis: 26px;
  width: 26px;
}

.button-arrow {
  flex: 0 0 34px;
  width: 34px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 250ms ease;
}

.button-full {
  width: 100%;
}

.arrow {
  width: 34px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 250ms ease;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform-origin: 100% 50%;
}

.arrow::before {
  transform: rotate(38deg);
}

.arrow::after {
  transform: rotate(-38deg);
}

.hero-note {
  position: absolute;
  z-index: 12;
  left: calc(100% - clamp(262px, 19vw, 350px) - clamp(390px, 28vw, 500px));
  right: auto;
  top: calc(var(--hero-frame-top) + clamp(626px, 68svh, 660px) + 18px);
  bottom: auto;
  transform: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: Gilroy;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.38em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-note::after {
  display: none;
}

.hero-plaque {
  position: absolute;
  z-index: 10;
  left: auto;
  right: clamp(262px, 19vw, 350px);
  top: calc(var(--hero-frame-top) + clamp(626px, 68svh, 660px) - 116px);
  bottom: auto;
  width: clamp(390px, 28vw, 500px);
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px 20px 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(28, 24, 21, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise 760ms var(--ease) 420ms forwards;
}

.hero-plaque-text {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 21px;
  align-items: center;
}

.hero-plaque-text span {
  width: 2px;
  height: 66px;
  background: var(--red);
}

.hero-plaque-text p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.38;
  font-weight: 500;
}

.hero-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 74px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 18px;
}

.hero-emblem::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 0;
  top: 50%;
  height: 52px;
  border-radius: 12px;
  background: #ffffff;
  transform: translateY(-50%);
}

.hero-emblem img {
  position: relative;
  z-index: 1;
  width: min(118px, 100%);
  max-height: 48px;
  object-fit: contain;
  opacity: 1;
}

.scroll-cue {
  position: absolute;
  right: clamp(56px, 4vw, 78px);
  top: calc(var(--hero-frame-top) + clamp(626px, 68svh, 660px) - 116px);
  bottom: auto;
  z-index: 14;
  display: grid;
  gap: 10px;
  place-items: center;
  width: 116px;
  height: 116px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.14), transparent 31%),
    rgba(17, 17, 17, 0.7);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: border-color 250ms ease, color 250ms ease, background 250ms ease, transform 250ms var(--ease);
}

.scroll-cue:hover {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.16), transparent 31%),
    rgba(17, 17, 17, 0.82);
  transform: translateY(-2px);
}

.scroll-cue span {
  width: auto;
  height: auto;
  border: 0;
  transform: none;
  color: currentColor;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  animation: none;
}

.scroll-cue svg {
  width: 18px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: cueDown 2000ms ease-in-out infinite;
}

.visual-stage {
  position: relative;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 44%),
    #ffffff;
  border-bottom: 0;
  font-family: Gilroy;
}

.visual-experience__canvas {
  position: relative;
  min-height: clamp(700px, 47vw, 770px);
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  gap: 0;
}

.visual-experience__intro {
  position: relative;
  z-index: 5;
  grid-column: 1 / 11;
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 3.6vw, 58px) 0 clamp(46px, 5vw, 82px) clamp(48px, 3.4vw, 64px);
}

.visual-experience__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-experience__eyebrow span:first-child {
  color: var(--red);
}

.visual-experience__rule {
  display: block;
  width: 66px;
  height: 2px;
  margin: clamp(58px, 6.2vw, 108px) 0 clamp(28px, 2vw, 38px);
  background: var(--red);
}

.visual-experience__title {
  display: grid;
  gap: 0;
  max-width: min(62vw, 1060px);
  margin: 0;
  color: #111111;
  font-family: Gilroy;
  font-size: clamp(60px, 5.2vw, 88px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.visual-experience__title span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.visual-experience__title-accent {
  color: var(--red);
}

.visual-experience__afterword {
  display: grid;
  align-items: start;
  gap: clamp(24px, 2.2vw, 34px);
  margin-top: clamp(26px, 2.6vw, 42px);
  padding-top: 0;
}

.visual-experience__afterword p {
  max-width: 420px;
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.visual-experience__link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: max-content;
  min-width: min(330px, 100%);
  min-height: 58px;
  margin-bottom: 0;
  padding: 0 22px 0 24px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--red);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(184, 14, 37, 0.16);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease, transform 260ms var(--ease);
}

.visual-experience__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red-dark);
  transform: translateX(-101%);
  transition: transform 360ms var(--ease);
}

.visual-experience__link:hover {
  color: var(--white);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.visual-experience__link:hover::before {
  transform: translateX(0);
}

.visual-experience__link svg {
  width: 38px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms ease;
}

.visual-experience__link:hover svg {
  transform: translateX(6px);
}

.visual-experience__vertical-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: min(430px, 52vw);
  margin: clamp(22px, 3vw, 42px) 0 0;
  padding: 0 0 14px;
  color: rgba(17, 17, 17, 0.66);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.visual-experience__vertical-label i {
  color: var(--red);
  font-style: normal;
  letter-spacing: 0;
}

.visual-experience__gallery {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.visual-experience__media,
.visual-experience__caption-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.visual-experience__media {
  pointer-events: auto;
}

.visual-experience__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.visual-experience__media:hover img {
  transform: scale(1.02);
}

.visual-experience__media--arch {
  left: 45.6%;
  top: 0;
  width: 22.4%;
  height: 52%;
}

.visual-experience__media--arch img {
  object-position: 54% center;
}

.visual-experience__media--texture {
  left: 68%;
  top: 0;
  right: 0;
  height: 28.5%;
}

.visual-experience__media--texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(70, 8, 14, 0.38), rgba(70, 8, 14, 0) 58%);
  pointer-events: none;
}

.visual-experience__media--texture img {
  object-position: center 44%;
}

.visual-experience__media--texture figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 2.1vw, 38px);
  top: clamp(116px, 8.4vw, 138px);
  bottom: auto;
  color: rgba(255, 255, 255, 0.92);
}

.visual-experience__media--texture strong,
.visual-experience__caption-card p {
  display: block;
  margin: 0;
  font-size: clamp(23px, 1.7vw, 28px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-transform: none;
}

.visual-experience__media--texture span,
.visual-experience__caption-card span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.visual-experience__media--touch {
  left: 68%;
  top: 29.2%;
  width: 16.4%;
  height: 22.8%;
}

.visual-experience__media--touch img {
  object-position: center center;
}

.visual-experience__caption-card {
  left: 84.4%;
  top: 29.2%;
  right: 0;
  height: 22.8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px 0 clamp(30px, 2.4vw, 42px);
  color: #111111;
  background: #ffffff;
}

.visual-experience__caption-card span {
  color: rgba(17, 17, 17, 0.68);
}

.visual-experience__media--portrait {
  left: 61.7%;
  top: 52%;
  right: 0;
  bottom: 0;
  border-top-left-radius: clamp(96px, 8vw, 138px);
}

.visual-experience__media--portrait img {
  object-position: 58% 32%;
}

.visual-experience__stats {
  min-height: 178px;
  color: #ffffff;
  background: #111111;
}

.visual-experience__stats-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr auto;
  align-items: center;
  gap: 0;
  min-height: 178px;
  padding: 32px clamp(42px, 3.2vw, 54px);
}

.visual-experience__stat {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 2vw, 34px);
  align-items: center;
  min-height: 116px;
  padding-right: clamp(30px, 2.8vw, 46px);
}

.visual-experience__stat + .visual-experience__stat {
  padding-left: clamp(30px, 2.8vw, 46px);
}

.visual-experience__stat + .visual-experience__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 112px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.visual-experience__stat strong {
  color: #ffffff;
  font-size: clamp(78px, 5.4vw, 90px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.visual-experience__stat--wide strong {
  font-size: clamp(92px, 6.4vw, 108px);
  line-height: 0.7;
  font-weight: 700;
}

.visual-experience__stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.visual-experience__stat span {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-experience__next {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #ffffff;
  border: 1px solid var(--red);
  border-radius: 50%;
  transition: background 240ms ease, border-color 240ms ease;
}

.visual-experience__next:hover {
  background: var(--red);
  border-color: var(--red);
}

.visual-experience__next svg {
  width: 18px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms ease;
}

.visual-experience__next:hover svg {
  transform: translateY(4px);
}

.visual-experience .visual-experience__eyebrow,
.visual-experience .visual-experience__rule,
.visual-experience .visual-experience__title span,
.visual-experience .visual-experience__afterword,
.visual-experience .visual-experience__media,
.visual-experience .visual-experience__caption-card,
.visual-experience .visual-experience__stats-inner {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

.visual-experience .visual-experience__media,
.visual-experience .visual-experience__caption-card {
  transform: scale(1.02);
  transform-origin: center;
}

.visual-experience.is-visible .visual-experience__eyebrow,
.visual-experience.is-visible .visual-experience__rule,
.visual-experience.is-visible .visual-experience__title span,
.visual-experience.is-visible .visual-experience__afterword,
.visual-experience.is-visible .visual-experience__media,
.visual-experience.is-visible .visual-experience__caption-card,
.visual-experience.is-visible .visual-experience__stats-inner {
  opacity: 1;
  transform: translateY(0);
}

.visual-experience.is-visible .visual-experience__media,
.visual-experience.is-visible .visual-experience__caption-card {
  transform: scale(1);
}

.visual-experience.is-visible .visual-experience__rule {
  transition-delay: 70ms;
}

.visual-experience.is-visible .visual-experience__title span:nth-child(1) {
  transition-delay: 140ms;
}

.visual-experience.is-visible .visual-experience__title span:nth-child(2) {
  transition-delay: 220ms;
}

.visual-experience.is-visible .visual-experience__title span:nth-child(3) {
  transition-delay: 300ms;
}

.visual-experience.is-visible .visual-experience__title span:nth-child(4) {
  transition-delay: 380ms;
}

.visual-experience.is-visible .visual-experience__afterword {
  transition-delay: 480ms;
}

.visual-experience.is-visible .visual-experience__media--arch {
  transition-delay: 260ms;
}

.visual-experience.is-visible .visual-experience__media--texture {
  transition-delay: 330ms;
}

.visual-experience.is-visible .visual-experience__media--touch,
.visual-experience.is-visible .visual-experience__caption-card {
  transition-delay: 410ms;
}

.visual-experience.is-visible .visual-experience__media--portrait {
  transition-delay: 500ms;
}

.visual-experience.is-visible .visual-experience__stats-inner {
  transition-delay: 560ms;
}

section:not(.hero) {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 150px) clamp(22px, 4vw, 64px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 96px);
  margin-bottom: clamp(42px, 6vw, 84px);
}

.section-heading .section-kicker {
  margin-top: 16px;
}

.text-stack p + p {
  margin-top: 26px;
}

.nav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.nav-chips a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--graphite);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}

.nav-chips a:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--white);
}

.intro {
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(52px, 5vw, 78px) clamp(24px, 4vw, 64px) !important;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 0;
  width: 100%;
  max-width: var(--max);
  min-height: clamp(760px, 52vw, 840px);
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(20, 17, 15, 0.05);
}

.intro-media {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: #111111;
}

.intro-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: none;
  transition: opacity 620ms var(--ease);
}

.intro-photo.is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
}

.intro-photo img,
.intro-photo video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 820ms var(--ease);
}

.intro-photo.is-active img,
.intro-photo.is-active video {
  transform: scale(1);
}

.intro-photo video {
  display: block;
  background: #111111;
}

.intro-photo:nth-child(1) img {
  object-position: 48% center;
}

.intro-photo:nth-child(2) img {
  object-position: 50% 42%;
}

.intro-photo:nth-child(3) video {
  object-position: center center;
}

.intro-photo:nth-child(4) video {
  object-position: center center;
}

.intro-photo:nth-child(3) img {
  object-position: 50% 34%;
}

.intro-photo:nth-child(4) img {
  object-position: 50% 42%;
}

.intro-photo:nth-child(5) img {
  object-position: 50% 50%;
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 34%);
}

.intro-media-caption,
.senses-image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 13px 18px;
  color: var(--white);
  background: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.intro-media-caption span {
  position: static;
  display: block;
  width: 22px;
  height: 1px;
  padding: 0;
  background: currentColor;
}

.intro-media-caption [data-intro-caption-text] {
  width: auto;
  height: auto;
  background: transparent;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(48px, 3.6vw, 58px) clamp(46px, 4vw, 64px) clamp(34px, 2.7vw, 44px) clamp(58px, 4.6vw, 72px);
}

.intro-copy .section-kicker {
  margin-bottom: clamp(38px, 3vw, 46px);
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1;
}

.intro-copy h2 {
  max-width: 740px;
  margin-bottom: clamp(30px, 2.5vw, 34px);
  color: #101010;
  font-size: clamp(52px, 3.7vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.intro-copy h2 span {
  display: block;
}

.intro-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(17px, 1.15vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.intro-detail {
  max-width: 660px;
  margin-top: clamp(24px, 2vw, 32px);
  padding: clamp(20px, 1.8vw, 28px) clamp(22px, 2.2vw, 34px);
  border-left: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(184, 14, 37, 0.06), rgba(255, 255, 255, 0));
  transition: opacity 220ms ease, transform 220ms ease;
}

.intro-detail.is-changing {
  opacity: 0.42;
  transform: translateY(4px);
}

.intro-detail span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.intro-detail p {
  margin: 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.45;
  font-weight: 500;
}

.intro-detail-more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid rgba(184, 14, 37, 0.32);
  color: var(--red);
  background: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Gilroy;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 240ms ease, border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.intro-detail-more[hidden] {
  display: none;
}

.intro-detail-more i {
  position: relative;
  display: block;
  width: 38px;
  height: 12px;
}

.intro-detail-more i::before,
.intro-detail-more i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  background: currentColor;
  transform-origin: right center;
}

.intro-detail-more i::before {
  width: 38px;
  height: 1px;
  transform: translateY(-50%);
}

.intro-detail-more i::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.intro-detail-more:hover,
.intro-detail-more:focus-visible {
  color: #ffffff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.route-lines {
  display: grid;
  gap: 0;
  margin: clamp(24px, 2vw, 32px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 17, 0.13);
}

.route-lines li {
  margin: 0;
}

.route-item {
  display: grid;
  grid-template-columns: 64px minmax(240px, 0.95fr) minmax(230px, 1fr) 34px;
  column-gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 24px 0 26px;
  color: var(--ink);
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
  background: transparent;
  text-align: left;
  transition: background 260ms ease;
}

.route-item.is-active {
  background: linear-gradient(90deg, rgba(184, 14, 37, 0.055), rgba(184, 14, 37, 0.015));
}

.route-item:hover,
.route-item:focus-visible {
  background: rgba(17, 17, 17, 0.025);
}

.route-item__number {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
  color: #171717;
  font-size: clamp(17px, 1vw, 18px);
  line-height: 1;
  font-weight: 700;
}

.route-item__number::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 32px;
  background: rgba(17, 17, 17, 0.14);
  transform: translateY(-50%);
}

.route-item.is-active .route-item__number {
  color: var(--red);
}

.route-item__title {
  color: #151515;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-item__description {
  color: rgba(17, 17, 17, 0.56);
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.route-item__arrow {
  justify-self: end;
  width: 32px;
  height: 16px;
  fill: none;
  stroke: #242424;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms ease;
}

.route-item:hover .route-item__arrow,
.route-item:focus-visible .route-item__arrow {
  transform: translateX(5px);
}

.route-item.is-active .route-item__arrow {
  stroke: var(--red);
}

.route-lines i,
.sense-list i {
  width: 34px;
  height: 1px;
  background: currentColor;
  position: relative;
  justify-self: end;
}

.route-lines i::before,
.route-lines i::after,
.sense-list i::before,
.sense-list i::after {
  content: "";
  position: absolute;
  right: 0;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform-origin: 100% 50%;
}

.route-lines i::before,
.sense-list i::before {
  transform: rotate(38deg);
}

.route-lines i::after,
.sense-list i::after {
  transform: rotate(-38deg);
}

.intro-footer {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 12px;
  margin: 28px 0 0;
  color: rgba(17, 17, 17, 0.7);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: color 240ms ease;
}

.intro-footer i {
  position: relative;
  width: 44px;
  height: 1px;
  background: currentColor;
  transition: transform 240ms ease;
}

.intro-footer i::before,
.intro-footer i::after {
  content: "";
  position: absolute;
  right: 0;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform-origin: 100% 50%;
}

.intro-footer i::before {
  transform: rotate(38deg);
}

.intro-footer i::after {
  transform: rotate(-38deg);
}

.intro-footer:hover {
  color: var(--red);
}

.intro-footer:hover i {
  transform: translateX(6px);
}

.intro.is-visible .intro-photo.is-active img {
  animation: imageSettle 1200ms var(--ease) both;
}

.senses-image span {
  top: 24px;
  bottom: auto;
  z-index: 6;
  background: var(--red);
}

.senses {
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(64px, 7vw, 96px) clamp(22px, 4vw, 70px) !important;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 42%, rgba(184, 14, 37, 0.18), transparent 34%),
    #090909;
  border-bottom: 1px solid var(--line);
}

.senses > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.senses-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.senses-head p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45;
}

.senses-layout {
  display: block;
}

.senses-image {
  position: relative;
  height: clamp(500px, 42vw, 620px);
  min-height: 0;
  overflow: hidden;
  background: #111111;
}

.senses-image img,
.split-media img,
.showroom-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.16);
}

.senses-image img {
  position: absolute;
  inset: 0;
  transition: opacity 280ms var(--ease), transform 620ms var(--ease);
}

.senses-image.is-changing img {
  opacity: 0.3;
  transform: scale(1.03);
}

.senses-image p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  max-width: 560px;
  margin: 0;
  padding: 22px 24px 24px;
  color: var(--white);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.35;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.senses .senses-image > span {
  top: 24px;
  bottom: auto;
  left: 24px;
  z-index: 6;
}

.sense-list {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.sense-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sense-item:last-child {
  border-bottom: 0;
}

.sense-option {
  appearance: none;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.sense-list .sense-option {
  display: grid;
  grid-template-columns: 64px minmax(170px, 0.7fr) 1fr 44px;
  gap: clamp(14px, 3vw, 28px);
  align-items: center;
  min-height: 110px;
  padding: 24px 32px;
  transition: background 260ms var(--ease), color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.sense-list .sense-option:hover,
.sense-list .sense-option:focus-visible,
.sense-list .sense-option.is-selected {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 3px 0 0 var(--red);
  outline: 0;
}

.sense-list span {
  color: var(--red);
  font-weight: 800;
}

.sense-list h3 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
}

.sense-list p,
.faq p {
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.45;
}

.sense-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.sense-list .sense-option:hover p,
.sense-list .sense-option:focus-visible p,
.sense-list .sense-option.is-selected p {
  color: var(--white);
}

.sense-panel {
  padding: 0 32px 32px 124px;
  animation: sensePanelIn 360ms var(--ease) both;
}

.sense-panel__media {
  position: relative;
  height: clamp(260px, 28vw, 420px);
  overflow: hidden;
  background: #111111;
}

.sense-panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.7) 100%);
}

.sense-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
  transform: scale(1.01);
}

.sense-panel__media span,
.sense-panel__media p {
  position: absolute;
  z-index: 2;
}

.sense-panel__media span {
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.sense-panel__media p {
  left: 210px;
  right: 24px;
  bottom: 25px;
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

@keyframes sensePanelIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service {
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(110px, 7.4vw, 136px) clamp(28px, 4vw, 70px) !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 14, 37, 0.035), transparent 28%),
    #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.service-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.service-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr);
  gap: clamp(80px, 8vw, 138px);
  align-items: center;
  margin-bottom: clamp(56px, 4.4vw, 72px);
}

.service-head h2 {
  display: grid;
  gap: 4px;
  max-width: 780px;
  margin: 30px 0 0;
  color: #0e0e0e;
  font-family: Gilroy;
  font-size: clamp(64px, 5.2vw, 92px);
  line-height: 0.93;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.service-head h2 span {
  display: block;
  white-space: nowrap;
}

.service-head > p {
  max-width: 560px;
  margin: 0;
  align-self: end;
  padding-bottom: 10px;
  color: #252525;
  font-family: Gilroy;
  font-size: clamp(23px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.48fr);
  gap: clamp(32px, 2.4vw, 40px);
  align-items: stretch;
}

.service-note {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  padding: clamp(44px, 3.1vw, 56px);
  color: var(--white);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 100%, rgba(184, 14, 37, 0.52), transparent 45%),
    radial-gradient(circle at 78% 12%, rgba(110, 18, 27, 0.34), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 36%),
    #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-note::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 36px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(184, 14, 37, 0.34);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.service-note::after {
  content: "";
  position: absolute;
  inset: auto 36px 36px auto;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 14, 37, 0), rgba(184, 14, 37, 0.44));
}

.service-note span {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-note i {
  position: relative;
  z-index: 1;
  display: block;
  width: 2px;
  height: 62px;
  margin-top: clamp(28px, 2vw, 36px);
  background: var(--red);
}

.service-note p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: auto 0 0;
  color: #ffffff;
  font-family: Gilroy;
  font-size: clamp(26px, 1.75vw, 32px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.service-list {
  display: grid;
  align-content: stretch;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(20, 20, 20, 0.025);
}

.service-list li {
  position: relative;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  min-height: 102px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.09);
  transition: background-color 260ms var(--ease);
}

.service-list li:last-child {
  border-bottom: 0;
}

.service-list li:hover {
  background: rgba(184, 14, 37, 0.035);
}

.service-list span {
  position: relative;
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(34px, 2.3vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-list span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 1px;
  height: 64%;
  min-height: 46px;
  background: rgba(20, 20, 20, 0.1);
  transform: translateY(-50%);
}

.service-list p {
  max-width: 880px;
  margin: 0;
  color: #242424;
  font-family: Gilroy;
  font-size: clamp(19px, 1.28vw, 22px);
  font-weight: 400;
  line-height: 1.45;
}

.service-list strong {
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.split-media {
  height: clamp(440px, 62vw, 760px);
  overflow: hidden;
}

.line-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.line-list li {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.showroom {
  padding-top: clamp(34px, 3.8vw, 52px) !important;
  padding-bottom: clamp(34px, 3.8vw, 52px) !important;
  border-bottom: 1px solid var(--line);
}

.showroom-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: start;
}

.showroom-head h2 {
  max-width: 870px;
}

.showroom-head > p {
  max-width: 560px;
  margin-top: 42px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.42;
}

.showroom-line {
  margin: clamp(12px, 1.8vw, 24px) 0 18px calc(61% + 16px);
  color: var(--red);
  text-transform: uppercase;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 800;
}

.showroom-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(260px, 0.7fr) minmax(360px, 0.82fr);
  gap: 8px;
  align-items: stretch;
  height: clamp(470px, 36vw, 560px);
}

.showroom-media {
  position: relative;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #111111;
}

.showroom-media video {
  min-height: 0;
}

.showroom-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent);
}

.showroom-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.showroom-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 1.5vw, 24px);
  min-height: 0;
  height: 100%;
  padding: clamp(18px, 2vw, 30px);
  color: var(--white);
  background: linear-gradient(145deg, var(--red), #97091d);
  overflow: hidden;
}

.showroom-panel__intro {
  display: grid;
  gap: 12px;
  padding-bottom: clamp(14px, 1.2vw, 18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.showroom-panel__intro span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showroom-panel__intro p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;
  font-weight: 500;
}

.showroom-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.2vw, 16px) clamp(16px, 1.5vw, 22px);
  align-content: start;
  min-height: 0;
}

.showroom-brands article {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.showroom-brands h3 {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.showroom-brands p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.42;
  font-weight: 500;
}

.showroom-panel .button {
  min-height: 48px;
  padding: 0 18px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

body.modal-open {
  overflow: hidden;
}

.showroom-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 46px);
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.showroom-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.showroom-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.68);
  backdrop-filter: blur(12px);
}

.showroom-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(820px, 88dvh);
  overflow: auto;
  padding: clamp(34px, 4vw, 62px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 0%, rgba(184, 14, 37, 0.34), transparent 34%),
    linear-gradient(145deg, #151313, #070707 72%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
}

.showroom-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.showroom-modal__close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 1px;
  background: #ffffff;
}

.showroom-modal__close span:first-child {
  transform: rotate(45deg);
}

.showroom-modal__close span:last-child {
  transform: rotate(-45deg);
}

.showroom-modal__close:hover,
.showroom-modal__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(184, 14, 37, 0.76);
  transform: rotate(90deg);
}

.showroom-modal__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  padding-right: 42px;
}

.showroom-modal__kicker {
  margin: 0 0 18px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.showroom-modal__head h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.showroom-modal__lead {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.35;
  font-weight: 500;
}

.showroom-modal__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  margin-top: clamp(34px, 4.4vw, 64px);
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.showroom-modal__body--rent {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.rent-gallery {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.rent-gallery__viewport {
  position: relative;
  height: clamp(270px, 32vw, 410px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b0b0b;
}

.rent-gallery__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04) 46%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.rent-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 820ms ease, transform 1600ms ease;
}

.rent-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.rent-gallery__overlay {
  position: absolute;
  left: clamp(18px, 2.4vw, 32px);
  right: clamp(18px, 2.4vw, 32px);
  bottom: clamp(18px, 2.3vw, 30px);
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.rent-gallery__overlay span {
  color: var(--red);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  font-weight: 300;
}

.rent-gallery__overlay p {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  text-align: right;
  text-transform: uppercase;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.25;
  font-weight: 800;
}

.rent-gallery__progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.rent-gallery__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--red);
}

.rent-gallery__progress span.is-running {
  animation: rentGalleryProgress 5s linear forwards;
}

@keyframes rentGalleryProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.showroom-modal__copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.showroom-modal__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.48;
  font-weight: 500;
}

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

.showroom-modal__brands article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.showroom-modal__brands article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 140px;
}

.showroom-modal__brands span {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.showroom-modal__brands p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.coffee-section {
  padding: clamp(64px, 5vw, 90px) clamp(54px, 4vw, 78px) clamp(58px, 5vw, 84px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.coffee-section__inner {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(400px, 1fr) minmax(390px, 0.95fr);
  gap: clamp(32px, 2.7vw, 52px);
  max-width: 1720px;
  min-height: 760px;
  height: clamp(760px, 52vw, 900px);
  margin: 0 auto;
}

.coffee-section__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.coffee-section__eyebrow {
  margin: 0 0 54px;
  color: #111111;
  font-family: Gilroy;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.coffee-section__title {
  margin: 0;
  color: #0e0e0e;
  font-family: Gilroy;
  font-size: clamp(64px, 5.15vw, 92px);
  line-height: 0.91;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.coffee-section__accent-line {
  width: 94px;
  height: 3px;
  margin-top: clamp(34px, 2.4vw, 40px);
  background: var(--red);
}

.coffee-section__description {
  max-width: 430px;
  margin: clamp(38px, 2.8vw, 44px) 0 0;
  color: #111111;
  font-family: Gilroy;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.coffee-section__visual {
  min-width: 0;
  min-height: 760px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.coffee-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
}

.coffee-section__features {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.2vw, 18px);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coffee-section__features::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 42%;
  width: 2px;
  height: 44%;
  background: var(--red);
}

.coffee-section__feature {
  display: grid;
  grid-template-columns: 120px 1px minmax(0, 1fr);
  column-gap: 34px;
  align-items: center;
  min-height: clamp(148px, 9.2vw, 165px);
  padding: 22px 36px;
  cursor: default;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.88)),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.035);
}

.coffee-section__number {
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(52px, 4vw, 72px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.coffee-section__divider {
  width: 1px;
  height: clamp(86px, 6vw, 104px);
  background: rgba(17, 17, 17, 0.12);
}

.coffee-section__feature-title {
  color: #111111;
  font-family: Gilroy;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.coffee-section__intro,
.coffee-section__visual,
.coffee-section__feature {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.coffee-section.is-visible .coffee-section__intro,
.coffee-section.is-visible .coffee-section__visual,
.coffee-section.is-visible .coffee-section__feature {
  opacity: 1;
  transform: translateY(0);
}

.coffee-section.is-visible .coffee-section__visual {
  transition-delay: 110ms;
}

.coffee-section.is-visible .coffee-section__feature:nth-child(1) {
  transition-delay: 170ms;
}

.coffee-section.is-visible .coffee-section__feature:nth-child(2) {
  transition-delay: 230ms;
}

.coffee-section.is-visible .coffee-section__feature:nth-child(3) {
  transition-delay: 290ms;
}

.coffee-section.is-visible .coffee-section__feature:nth-child(4) {
  transition-delay: 350ms;
}

.art-section {
  width: 100%;
  padding: 0 !important;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.art-section__inner {
  width: calc(100% - 64px);
  max-width: 1720px;
  margin-inline: auto;
  padding-top: clamp(48px, 4vw, 72px);
  padding-bottom: clamp(46px, 4vw, 72px);
}

.art-section__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  column-gap: clamp(56px, 5vw, 86px);
}

.art-section__visual {
  position: relative;
  height: clamp(500px, 34vw, 590px);
  margin: 0;
  overflow: hidden;
  border-top-right-radius: clamp(100px, 10vw, 170px);
  box-shadow: none;
}

.art-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 52%;
}

.art-section__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-top: 22px;
  padding-bottom: 28px;
}

.art-section__eyebrow {
  margin: 0 0 clamp(44px, 3vw, 54px);
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.art-section__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #0e0e0e;
  font-family: Gilroy;
  font-size: clamp(66px, 5vw, 92px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.art-section__description {
  max-width: 520px;
  margin: clamp(36px, 2.7vw, 44px) 0 0;
  color: #252525;
  font-family: Gilroy;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.art-section__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(32px, 2.4vw, 38px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 17, 0.13);
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
}

.art-fact {
  min-height: clamp(230px, 14.8vw, 260px);
  padding: 28px 36px 32px;
  cursor: default;
}

.art-fact + .art-fact {
  border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.art-fact__number {
  display: block;
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(52px, 4vw, 72px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.art-fact__accent {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 18px;
  margin-bottom: 20px;
  background: var(--red);
}

.art-fact__title {
  margin: 0 0 12px;
  color: #0e0e0e;
  font-family: Gilroy;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.art-fact__description {
  max-width: 260px;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-family: Gilroy;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.art-section__visual,
.art-section__eyebrow,
.art-section__title,
.art-section__description,
.art-section__facts,
.art-fact {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.art-section__visual {
  transform: scale(1.018);
}

.art-section.is-visible .art-section__visual,
.art-section.is-visible .art-section__eyebrow,
.art-section.is-visible .art-section__title,
.art-section.is-visible .art-section__description,
.art-section.is-visible .art-section__facts,
.art-section.is-visible .art-fact {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.art-section.is-visible .art-section__eyebrow {
  transition-delay: 80ms;
}

.art-section.is-visible .art-section__title {
  transition-delay: 150ms;
}

.art-section.is-visible .art-section__description {
  transition-delay: 220ms;
}

.art-section.is-visible .art-section__facts {
  transition-delay: 280ms;
}

.art-section.is-visible .art-fact:nth-child(1) {
  transition-delay: 340ms;
}

.art-section.is-visible .art-fact:nth-child(2) {
  transition-delay: 410ms;
}

.art-section.is-visible .art-fact:nth-child(3) {
  transition-delay: 480ms;
}

.art-section.is-visible .art-fact:nth-child(4) {
  transition-delay: 550ms;
}

@media (hover: hover) {
  .art-fact:hover {
    background: rgba(184, 14, 37, 0.018);
  }
}

.story-section {
  max-width: none !important;
  padding: 0 !important;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 16%, rgba(190, 14, 37, 0.16), transparent 28%),
    radial-gradient(circle at 74% 48%, rgba(190, 14, 37, 0.08), transparent 32%),
    #070707;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story-section__inner {
  width: calc(100% - 112px);
  max-width: var(--max);
  margin-inline: auto;
  padding-top: clamp(68px, 5.4vw, 98px);
  padding-bottom: clamp(68px, 5.4vw, 98px);
}

.story-section__layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(680px, 1.18fr);
  column-gap: clamp(48px, 4.4vw, 78px);
  align-items: end;
}

.story-section__left,
.story-section__right {
  min-width: 0;
}

.story-section__eyebrow {
  margin: 0 0 clamp(56px, 4.5vw, 76px);
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-section__header {
  margin-bottom: clamp(24px, 2.1vw, 34px);
}

.story-section__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #ffffff;
  font-family: Gilroy;
  font-size: clamp(62px, 5.4vw, 92px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.story-card {
  overflow: hidden;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #101010;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.26);
}

.story-card--01 {
  display: flex;
  flex-direction: column;
  border-radius: 9px;
  background: #0e0e0e;
}

.story-card__visual {
  margin: 0;
  overflow: hidden;
  background: #141210;
}

.story-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 900ms var(--ease);
}

.story-card--01 .story-card__visual {
  height: clamp(500px, 34vw, 600px);
}

.story-card--01 .story-card__visual img {
  object-position: 50% 43%;
}

.story-card--02 .story-card__visual {
  height: clamp(225px, 15.3vw, 285px);
}

.story-card--02 .story-card__visual img {
  object-position: 50% 56%;
}

.story-card--03 .story-card__visual {
  height: clamp(178px, 12.4vw, 220px);
}

.story-card--03 .story-card__visual img {
  object-position: 52% 54%;
}

.story-card__caption {
  display: grid;
  grid-template-columns: 62px 1px minmax(0, 1fr);
  column-gap: 24px;
  align-items: center;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.98), rgba(39, 13, 17, 0.9));
}

.story-card--01 .story-card__caption {
  min-height: 134px;
  padding: 28px 34px;
}

.story-card--02 .story-card__caption {
  min-height: 88px;
  grid-template-columns: 48px 1px minmax(0, 1fr);
  column-gap: 22px;
  padding: 20px 28px;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.98), rgba(43, 13, 17, 0.76));
}

.story-card--03 .story-card__caption {
  min-height: 92px;
  grid-template-columns: 48px 1px minmax(0, 1fr);
  column-gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(105deg, rgba(190, 14, 37, 0.95), rgba(108, 11, 19, 0.92));
}

.story-card__number {
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(30px, 2.25vw, 40px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.story-card--03 .story-card__number {
  color: #ffffff;
}

.story-card__divider {
  width: 1px;
  height: 44px;
  background: var(--red);
  opacity: 0.85;
}

.story-card--03 .story-card__divider {
  background: rgba(255, 255, 255, 0.72);
}

.story-card__title {
  margin: 0;
  color: #ffffff;
  font-family: Gilroy;
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.13;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.story-section__bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  margin-top: 20px;
}

.story-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(290px, 19vw, 340px);
  padding: 34px 38px 38px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(145deg, #141414, #0b0b0b);
}

.story-summary__word {
  position: absolute;
  top: 28px;
  left: 28px;
  color: rgba(255, 255, 255, 0.055);
  font-family: Gilroy;
  font-size: clamp(88px, 7.6vw, 132px);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.story-summary__accent {
  position: relative;
  z-index: 1;
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--red);
}

.story-summary__text {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: Gilroy;
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.story-section__eyebrow,
.story-section__title,
.story-card,
.story-summary {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.story-section.is-visible .story-section__eyebrow,
.story-section.is-visible .story-section__title,
.story-section.is-visible .story-card,
.story-section.is-visible .story-summary {
  opacity: 1;
  transform: translateY(0);
}

.story-section.is-visible .story-card__visual img {
  transform: scale(1);
}

.story-section.is-visible .story-section__title {
  transition-delay: 90ms;
}

.story-section.is-visible .story-card--01 {
  transition-delay: 180ms;
}

.story-section.is-visible .story-card--02 {
  transition-delay: 270ms;
}

.story-section.is-visible .story-card--03 {
  transition-delay: 360ms;
}

.story-section.is-visible .story-summary {
  transition-delay: 450ms;
}

@media (hover: hover) {
  .story-card:hover .story-card__visual img {
    transform: scale(1.012);
  }
}

.founder-section {
  max-width: none !important;
  padding: 0 !important;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.founder-section__inner {
  width: calc(100% - 128px);
  max-width: 1640px;
  min-height: clamp(720px, 50vw, 860px);
  margin-inline: auto;
  padding-top: clamp(70px, 6vw, 100px);
  padding-bottom: clamp(64px, 5vw, 90px);
}

.founder-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  column-gap: clamp(80px, 7vw, 130px);
  align-items: center;
  min-height: inherit;
}

.founder-section__content,
.founder-section__media {
  min-width: 0;
}

.founder-section__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 720px;
  margin-bottom: clamp(54px, 5vw, 76px);
}

.founder-section__name {
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.founder-section__meta-line {
  display: block;
  flex: 1;
  width: min(100%, 440px);
  height: 1px;
  background: var(--red);
  opacity: 0.75;
}

.founder-section__title {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0;
  color: #0e0e0e;
  font-family: Gilroy;
  font-size: clamp(62px, 5vw, 86px);
  line-height: 0.93;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.founder-section__description {
  max-width: 620px;
  margin: 42px 0 0;
  color: #292929;
  font-family: Gilroy;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.founder-section__signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
}

.founder-section__signature-line {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--red);
}

.founder-section__signature-text {
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.founder-section__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.2;
  min-height: 580px;
  max-height: 720px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: linear-gradient(145deg, #fdfcfa, #f7f4ef);
  box-shadow: 0 18px 60px rgba(35, 25, 18, 0.035);
}

.founder-section__media picture,
.founder-section__media img,
.founder-section__media video {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-section__media img,
.founder-section__media video {
  object-fit: cover;
}

.founder-section__portrait {
  object-position: center 32%;
}

.founder-section__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.founder-section__placeholder-plus {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
}

.founder-section__placeholder-plus::before,
.founder-section__placeholder-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--red);
  opacity: 0.65;
  transform: translate(-50%, -50%);
}

.founder-section__placeholder-plus::before {
  width: 48px;
  height: 1px;
}

.founder-section__placeholder-plus::after {
  width: 1px;
  height: 48px;
}

.founder-section__placeholder-text {
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.founder-section__meta,
.founder-section__title,
.founder-section__description,
.founder-section__signature,
.founder-section__media {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 780ms var(--ease),
    transform 780ms var(--ease);
}

.founder-section.is-visible .founder-section__meta,
.founder-section.is-visible .founder-section__title,
.founder-section.is-visible .founder-section__description,
.founder-section.is-visible .founder-section__signature,
.founder-section.is-visible .founder-section__media {
  opacity: 1;
  transform: translateY(0);
}

.founder-section.is-visible .founder-section__title {
  transition-delay: 80ms;
}

.founder-section.is-visible .founder-section__media {
  transition-delay: 120ms;
}

.founder-section.is-visible .founder-section__description {
  transition-delay: 160ms;
}

.founder-section.is-visible .founder-section__signature {
  transition-delay: 220ms;
}

.proof {
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.proof-grid span {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
}

.proof-grid span:nth-child(3n) {
  border-right: 0;
}

.partners {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.86fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  border-bottom: 1px solid var(--red);
}

.partners .button {
  min-width: 260px;
}

.faq {
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 46px;
  border-top: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  font-size: 21px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  text-align: right;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-bottom: 26px;
  padding-right: 36px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  padding-bottom: clamp(82px, 10vw, 170px) !important;
}

.visit-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.08);
}

dl {
  margin: 0 0 30px;
}

dl div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 0;
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 3.7vw, 64px);
  border-top: 2px solid var(--red);
  background: var(--white);
}

.brand-small img {
  width: clamp(170px, 16vw, 230px);
}

.site-footer p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@keyframes imageSettle {
  to {
    transform: scale(1);
  }
}

@keyframes heroPhotoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCardIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cueFloat {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }

  50% {
    transform: translateY(2px) rotate(45deg);
  }
}

@keyframes cueDown {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(7px);
  }
}

.hero .eyebrow,
.hero-logo-mark,
.hero h1,
.hero .lead,
.hero-awards,
.hero-actions {
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 680ms var(--ease) forwards;
}

.hero-logo-mark {
  animation-delay: 80ms;
}

.hero h1 {
  animation-delay: 160ms;
}

.hero .lead {
  animation-delay: 240ms;
}

.hero-awards,
.hero-actions {
  animation-delay: 320ms;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .section-reveal {
    opacity: 1;
    transform: none;
  }

  .hero .eyebrow,
  .hero-logo-mark,
  .hero h1,
  .hero .lead,
  .hero-awards,
  .hero-actions,
  .hero-copy,
  .hero-plaque,
  .hero-picture img {
    opacity: 1;
    animation: none !important;
  }

  .hero .eyebrow,
  .hero-logo-mark,
  .hero h1,
  .hero .lead,
  .hero-awards,
  .hero-actions,
  .hero-copy,
  .hero-plaque,
  .hero-picture img {
    transform: none;
  }

  .scroll-cue svg {
    animation: none !important;
  }

  .visual-experience .visual-experience__eyebrow,
  .visual-experience .visual-experience__rule,
  .visual-experience .visual-experience__title span,
  .visual-experience .visual-experience__afterword,
  .visual-experience .visual-experience__media,
  .visual-experience .visual-experience__caption-card,
  .visual-experience .visual-experience__stats-inner {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }

  .coffee-section__intro,
  .coffee-section__visual,
  .coffee-section__feature,
  .art-section__visual,
  .art-section__eyebrow,
  .art-section__title,
  .art-section__description,
  .art-section__facts,
  .art-fact,
  .story-section__eyebrow,
  .story-section__title,
  .story-card,
  .story-summary {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }

  .story-card__visual img {
    transform: none !important;
  }
}

@media (max-width: 1280px) {
  .site-header {
    padding-right: 28px;
    padding-left: 28px;
    gap: 22px;
  }

  .brand img {
    width: clamp(176px, 14.5vw, 196px);
  }

  .main-nav {
    gap: 2px;
    min-height: 62px;
    padding-right: 7px;
    padding-left: 17px;
    font-size: 12px;
  }

  .main-nav::before {
    margin-right: 5px;
  }

  .main-nav a {
    min-height: 46px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .route-link {
    width: 172px;
    min-height: 46px;
    margin-left: 5px;
    padding: 0 18px !important;
    font-size: 12px;
  }

  .art-section__inner {
    width: calc(100% - 48px);
  }

  .art-section__hero {
    column-gap: clamp(42px, 4vw, 54px);
  }

  .art-section__visual {
    height: clamp(470px, 35vw, 520px);
  }

  .art-section__title {
    font-size: clamp(58px, 5vw, 70px);
  }

  .art-fact {
    min-height: clamp(210px, 16vw, 230px);
    padding: 26px 28px 30px;
  }

  .art-fact__number {
    font-size: clamp(48px, 4.2vw, 58px);
  }

  .story-section__inner {
    width: calc(100% - 76px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .story-section__layout {
    grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
    column-gap: clamp(30px, 3vw, 42px);
  }

  .story-section__title {
    font-size: clamp(50px, 4.75vw, 72px);
  }

  .story-card--01 .story-card__visual {
    height: clamp(460px, 35vw, 540px);
  }

  .story-card--02 .story-card__visual {
    height: clamp(240px, 18vw, 300px);
  }

  .story-summary__text {
    font-size: clamp(16px, 1.18vw, 18px);
  }

  .founder-section__inner {
    width: calc(100% - 80px);
  }

  .founder-section__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    column-gap: 50px;
  }

  .founder-section__meta {
    margin-bottom: 50px;
  }

  .founder-section__name {
    font-size: 15px;
  }

  .founder-section__title {
    font-size: clamp(48px, 4.8vw, 64px);
  }

  .founder-section__description {
    max-width: 560px;
    margin-top: 36px;
    font-size: clamp(17px, 1.35vw, 18px);
  }

  .founder-section__signature {
    margin-top: 42px;
  }

  .founder-section__media {
    min-height: 500px;
    max-height: 640px;
  }

  .coffee-section {
    padding-right: 38px;
    padding-left: 38px;
  }

  .coffee-section__inner {
    grid-template-columns: minmax(320px, 0.98fr) minmax(330px, 0.92fr) minmax(320px, 1fr);
    gap: 28px;
    min-height: 700px;
    height: clamp(700px, 56vw, 790px);
  }

  .coffee-section__eyebrow {
    margin-bottom: 40px;
  }

  .coffee-section__title {
    font-size: clamp(58px, 5vw, 72px);
  }

  .coffee-section__description {
    max-width: 380px;
    font-size: clamp(16px, 1.28vw, 18px);
  }

  .coffee-section__visual {
    min-height: 700px;
  }

  .coffee-section__feature {
    grid-template-columns: 84px 1px minmax(0, 1fr);
    column-gap: 24px;
    min-height: 138px;
    padding: 20px 24px;
  }

  .coffee-section__number {
    font-size: clamp(48px, 4.5vw, 60px);
  }

  .coffee-section__feature-title {
    font-size: clamp(18px, 1.7vw, 23px);
  }

  .hero {
    min-height: 780px;
    height: clamp(780px, 100svh, 840px);
  }

  .hero-slide--visual .visual-experience__stats,
  .hero-slide--visual .visual-experience__stats-inner {
    min-height: 150px;
  }

  .hero-slide--visual .visual-experience__next {
    margin-right: 74px;
  }

  .hero-copy {
    top: var(--hero-frame-top);
    width: clamp(500px, 41vw, 530px);
    height: 620px;
  }

  .hero-copy-inner {
    padding: 48px 38px 0 44px;
  }

  .hero .eyebrow {
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(52px, 4.2vw, 58px);
  }

  .hero-actions {
    gap: 14px;
    margin-top: 28px;
    width: 100%;
    max-width: 248px;
  }

  .hero-actions .button {
    min-height: 58px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .hero-plaque {
    right: 220px;
    top: calc(var(--hero-frame-top) + 620px - 110px);
    bottom: auto;
    width: 430px;
    min-height: 110px;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 18px;
    padding: 18px 20px 18px 24px;
  }

  .hero-plaque-text p {
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-emblem {
    width: 132px;
    height: 68px;
    padding-left: 18px;
  }

  .hero-emblem::before {
    left: 18px;
    height: 52px;
  }

  .hero-emblem img {
    width: 104px;
    max-height: 44px;
  }

  .scroll-cue {
    right: 34px;
    top: calc(var(--hero-frame-top) + 620px - 110px);
    bottom: auto;
    width: 110px;
    height: 110px;
  }

  .hero-note {
    left: calc(100% - 220px - 430px);
    right: auto;
    top: calc(var(--hero-frame-top) + 620px + 18px);
    bottom: auto;
    font-size: 10px;
    letter-spacing: 0.32em;
  }

  .visual-experience__canvas {
    min-height: 700px;
  }

  .visual-experience__intro {
    grid-column: 1 / 12;
    padding-left: 42px;
    padding-top: 34px;
    padding-bottom: 62px;
  }

  .visual-experience__rule {
    margin-top: 38px;
    margin-bottom: 22px;
  }

  .visual-experience__title {
    max-width: 58vw;
    font-size: clamp(56px, 4.65vw, 70px);
    letter-spacing: -0.048em;
  }

  .visual-experience__afterword {
    gap: 16px;
    margin-top: 24px;
    padding-top: 0;
  }

  .visual-experience__afterword p {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.36;
  }

  .visual-experience__link {
    font-size: 12px;
    letter-spacing: 0.15em;
    padding-top: 8px;
  }

  .visual-experience__vertical-label {
    display: inline-flex;
    max-width: 430px;
    margin-top: 26px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .visual-experience__media--arch {
    left: 46.2%;
    width: 21.8%;
    height: 51%;
  }

  .visual-experience__stats,
  .visual-experience__stats-inner {
    min-height: 168px;
  }

  .visual-experience__stats-inner {
    padding: 28px 36px;
  }

  .visual-experience__stat,
  .visual-experience__stat + .visual-experience__stat {
    gap: 22px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .visual-experience__stat:first-child {
    padding-left: 0;
  }

  .visual-experience__stat strong {
    font-size: clamp(70px, 5vw, 80px);
  }

  .visual-experience__stat--wide strong {
    font-size: clamp(82px, 6vw, 96px);
  }

  .visual-experience__next {
    width: 68px;
    height: 68px;
  }

  .intro-copy {
    padding-right: 46px;
    padding-left: 56px;
  }

  .intro-copy h2 {
    font-size: clamp(50px, 4.4vw, 58px);
  }

  .route-item {
    grid-template-columns: 54px minmax(220px, 0.95fr) minmax(190px, 1fr) 30px;
    column-gap: 16px;
    min-height: 72px;
    padding: 0 20px 0 22px;
  }

  .route-item__arrow {
    width: 30px;
  }
}

@media (max-height: 820px) and (min-width: 1181px) {
  .hero {
    min-height: 720px;
    height: max(720px, calc(100svh - 34px));
  }

  .hero-slide--visual .visual-experience__stats,
  .hero-slide--visual .visual-experience__stats-inner {
    min-height: 142px;
  }

  .hero-copy {
    top: var(--hero-frame-top);
    height: 600px;
  }

  .hero-copy-inner {
    padding-top: 44px;
    padding-left: 48px;
    padding-right: 38px;
  }

  .hero .eyebrow {
    margin-bottom: 30px;
    font-size: 14px;
  }

  h1 {
    font-size: 54px;
    line-height: 0.94;
  }

  .hero h1::after {
    margin-top: 24px;
    margin-bottom: 22px;
  }

  .hero .lead {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 28px;
    max-width: 430px;
  }

  .hero-actions .button {
    min-height: 58px;
  }

  .hero-plaque {
    top: calc(var(--hero-frame-top) + 600px - 116px);
    bottom: auto;
    min-height: 116px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-plaque-text p {
    font-size: 15px;
    line-height: 1.34;
  }

  .hero-note {
    top: calc(var(--hero-frame-top) + 600px + 18px);
    bottom: auto;
    letter-spacing: 0.36em;
  }

  .scroll-cue {
    top: calc(var(--hero-frame-top) + 600px - 116px);
    bottom: auto;
    width: 116px;
    height: 116px;
  }

  .hero-note {
    left: calc(100% - clamp(262px, 19vw, 350px) - clamp(390px, 28vw, 500px));
  }

  .visual-experience__intro {
    grid-column: 1 / 12;
    padding-top: 30px;
    padding-left: clamp(52px, 4.8vw, 88px);
    padding-bottom: 54px;
  }

  .visual-experience__rule {
    margin-top: 32px;
    margin-bottom: 18px;
  }

  .visual-experience__title {
    max-width: min(58vw, 980px);
    font-size: clamp(56px, 4.7vw, 72px);
    line-height: 0.88;
  }

  .visual-experience__afterword {
    gap: 18px;
    margin-top: 22px;
    padding-top: 0;
  }

  .visual-experience__afterword p {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.34;
  }

  .visual-experience__link {
    min-width: 296px;
    min-height: 50px;
    padding: 0 18px 0 20px;
    font-size: 11px;
  }

  .visual-experience__vertical-label {
    max-width: 410px;
    margin-top: 24px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    position: absolute;
    height: 104px;
    padding: 28px 32px 0;
    align-items: flex-start;
  }

  .nav-toggle {
    position: relative;
    z-index: 110;
    display: grid;
    place-items: center;
    margin-left: auto;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(15, 15, 15, 0.34);
    backdrop-filter: blur(8px);
  }

  .nav-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 260ms var(--ease);
  }

  .nav-toggle span:first-child {
    transform: translateY(-5px);
  }

  .nav-toggle span:last-child {
    transform: translateY(5px);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 110px 28px 44px;
    background: rgba(17, 17, 17, 0.98);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 360ms var(--ease);
  }

  .main-nav::before {
    display: none;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 22px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: clamp(28px, 7vw, 52px);
  }

  .route-link {
    margin-top: 22px;
    margin-left: 0;
    width: 100%;
    min-height: 66px;
    color: var(--white) !important;
    border-color: var(--red);
    border-radius: 0 !important;
    background: var(--red);
  }

  .hero,
  .section-grid,
  .section-heading,
  .intro,
  .senses-layout,
  .senses-head,
  .service-head,
  .service-layout,
  .split,
  .showroom-head,
  .showroom-layout,
  .coffee,
  .partners,
  .visit {
    grid-template-columns: 1fr;
  }

  .visual-strip,
  .visual-facts {
    grid-template-columns: 1fr 1fr;
  }

  .visual-experience__canvas {
    display: block;
    min-height: 0;
    padding: 58px 28px 0;
  }

  .visual-experience__intro {
    padding: 0 0 42px;
  }

  .visual-experience__rule {
    margin-top: 58px;
  }

  .visual-experience__title {
    max-width: 100%;
    font-size: clamp(50px, 8vw, 64px);
  }

  .visual-experience__afterword {
    display: grid;
    gap: 26px;
    margin-top: 28px;
    padding-top: 0;
  }

  .visual-experience__vertical-label {
    display: inline-flex;
    max-width: 100%;
    margin-top: 26px;
  }

  .visual-experience__gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 6px;
    inset: auto;
  }

  .visual-experience__media,
  .visual-experience__caption-card {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .visual-experience__media--arch {
    height: 460px;
  }

  .visual-experience__media--texture,
  .visual-experience__media--touch,
  .visual-experience__caption-card {
    height: 224px;
  }

  .visual-experience__media--portrait {
    grid-column: 1 / -1;
    height: 520px;
    border-top-left-radius: 96px;
  }

  .visual-experience__caption-card {
    padding: 34px;
  }

  .visual-experience__stats-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 30px 28px;
  }

  .visual-experience__stat,
  .visual-experience__stat + .visual-experience__stat {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .visual-experience__stat:first-child {
    padding-left: 0;
  }

  .visual-experience__stat strong {
    font-size: 66px;
  }

  .visual-experience__stat--wide strong {
    font-size: 76px;
  }

  .visual-experience__next {
    display: none;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero {
    min-height: 780px;
    height: clamp(780px, 100svh, 860px);
    max-width: 100%;
  }

  .hero-slide--visual {
    overflow-y: auto;
  }

  .hero-slide--visual .visual-experience__canvas {
    height: auto;
    min-height: 0;
  }

  .hero-slide--visual .visual-experience__stats,
  .hero-slide--visual .visual-experience__stats-inner {
    min-height: 0;
  }

  .hero-copy {
    top: 118px;
    left: 24px;
    width: min(70vw, 520px);
    height: 560px;
  }

  .hero-copy-inner {
    padding: 46px 34px 0 42px;
  }

  .hero-picture img {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(44px, 7vw, 56px);
  }

  .hero .eyebrow {
    margin-bottom: 28px;
  }

  .hero-note {
    left: auto;
    right: 146px;
    top: auto;
    bottom: 154px;
    transform: none;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .scroll-cue {
    right: 24px;
    top: auto;
    bottom: 24px;
    display: grid;
    width: 100px;
    height: 100px;
    padding: 14px;
  }

  .scroll-cue span {
    font-size: 8px;
  }

  .scroll-cue svg {
    height: 36px;
  }

  .hero-plaque {
    right: 136px;
    left: auto;
    top: auto;
    bottom: 24px;
    width: min(380px, calc(100% - 184px));
    min-height: 104px;
    grid-template-columns: minmax(0, 1fr) 86px;
    padding: 18px 18px 18px 22px;
  }

  .hero-emblem {
    width: 86px;
    height: 60px;
    padding-left: 12px;
  }

  .hero-emblem::before {
    left: 12px;
    height: 42px;
  }

  .hero-emblem img {
    width: 70px;
    max-height: 34px;
  }

  .partners {
    align-items: start;
  }

  .partners .button {
    width: max-content;
  }

  .intro {
    padding: 54px 24px !important;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intro-media {
    min-height: 520px;
  }

  .intro-copy {
    padding: 46px 38px 42px;
  }

  .intro-copy h2 {
    font-size: clamp(46px, 8vw, 72px);
  }

  .route-item {
    grid-template-columns: 50px minmax(0, 1fr) 30px;
    column-gap: 16px;
    min-height: 82px;
    padding: 0 20px;
  }

  .route-item__title,
  .route-item__description {
    grid-column: 2;
  }

  .route-item__title {
    align-self: end;
    white-space: normal;
  }

  .route-item__description {
    align-self: start;
    margin-top: 6px;
  }

  .route-item__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    width: 30px;
  }

  .route-item__number {
    grid-row: 1 / 3;
    align-self: center;
  }

  .showroom-line {
    margin-left: 0;
  }

  .showroom-head > p {
    margin-top: 0;
  }

  .story-section__inner {
    width: calc(100% - 48px);
  }

  .story-section__layout {
    display: block;
  }

  .story-section__eyebrow {
    margin-bottom: 28px;
  }

  .story-section__header {
    margin-bottom: 28px;
  }

  .story-section__title {
    max-width: 880px;
    font-size: clamp(46px, 7vw, 66px);
  }

  .story-section__left {
    margin-bottom: 20px;
  }

  .story-section__right {
    display: grid;
  }

  .story-section__right .story-section__header {
    order: -1;
  }

  .story-section__right .story-card--02 {
    order: 0;
  }

  .story-section__right .story-section__bottom {
    order: 1;
  }

  .story-card--01 {
    margin-bottom: 20px;
  }

  .story-card--01 .story-card__visual {
    height: clamp(480px, 56vw, 590px);
  }

  .story-card--02 .story-card__visual {
    height: clamp(260px, 32vw, 330px);
  }

  .story-section__bottom {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }

  .founder-section__inner {
    width: calc(100% - 48px);
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .founder-section__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .founder-section__meta {
    max-width: 680px;
    margin-bottom: 48px;
  }

  .founder-section__title {
    max-width: 720px;
    font-size: clamp(48px, 7vw, 64px);
  }

  .founder-section__description {
    max-width: 620px;
  }

  .founder-section__media {
    width: min(100%, 560px);
    min-height: 0;
    max-height: none;
    margin-top: 54px;
    aspect-ratio: 4 / 5;
  }

  .art-section__inner {
    width: calc(100% - 48px);
  }

  .art-section__hero {
    grid-template-columns: 52% 48%;
    column-gap: 34px;
  }

  .art-section__visual {
    height: clamp(440px, 45vw, 520px);
  }

  .art-section__intro {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .art-section__eyebrow {
    margin-bottom: 34px;
  }

  .art-section__title {
    font-size: clamp(50px, 5.4vw, 58px);
  }

  .art-section__description {
    margin-top: 30px;
    font-size: 17px;
  }

  .art-section__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-fact {
    min-height: 190px;
  }

  .art-fact:nth-child(3) {
    border-left: 0;
  }

  .art-fact:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 17, 17, 0.12);
  }

  .showroom-layout {
    height: auto;
  }

  .showroom-media {
    height: clamp(260px, 42vw, 360px);
  }

  .showroom-panel {
    height: auto;
    min-height: clamp(360px, 52vw, 440px);
  }

  .coffee-section {
    padding: 54px 24px;
  }

  .coffee-section__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    height: auto;
  }

  .coffee-section__intro {
    justify-content: center;
  }

  .coffee-section__eyebrow {
    margin-bottom: 34px;
  }

  .coffee-section__title {
    font-size: clamp(52px, 7.6vw, 74px);
  }

  .coffee-section__description {
    max-width: 460px;
  }

  .coffee-section__visual {
    min-height: 560px;
    height: 62vw;
    max-height: 660px;
  }

  .coffee-section__features {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
  }

  .coffee-section__features::before {
    display: none;
  }

  .coffee-section__feature {
    min-height: 132px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    height: 82px;
    padding: 18px 14px 0;
    align-items: flex-start;
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .brand img {
    width: min(170px, 44vw);
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .hero {
    display: block;
    min-height: 0;
    height: min(1180px, calc(100svh + 560px));
    padding-top: 0;
    overflow: hidden;
    background: var(--paper);
  }

  .hero-slide {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-slide--intro {
    padding-top: 52svh;
  }

  .hero-picture {
    height: 52svh;
    min-height: 380px;
    max-height: 520px;
    bottom: auto;
  }

  .hero-picture img {
    object-position: 57% center;
  }

  .hero-overlays {
    height: 52svh;
    min-height: 380px;
    max-height: 520px;
    bottom: auto;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.18) 100%);
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 24px);
    height: auto;
    min-height: 0;
    margin: -58px 12px 0;
    transform: none;
    animation: none;
    opacity: 1;
    z-index: 12;
  }

  .hero-shape {
    display: none;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #ffffff;
    border-radius: 22px 22px 34px 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  }

  .hero-copy-inner {
    padding: 34px 20px 24px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 30px;
  }

  .hero .eyebrow {
    margin-bottom: 30px;
    font-size: 13px;
    gap: 10px;
  }

  .hero .eyebrow svg {
    width: 17px;
    height: 17px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.98;
  }

  .hero h1::after {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .lead,
  .text-stack p,
  .split-copy p,
  .founder p,
  .partners p,
  .visit-copy p {
    font-size: 18px;
  }

  .hero .lead {
    max-width: 100%;
    font-size: 16px;
  }

  .story-section__inner {
    width: calc(100% - 32px);
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .story-section__title {
    font-size: clamp(38px, 10.8vw, 52px);
    line-height: 0.95;
  }

  .story-section__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
  }

  .story-card--01,
  .story-card--02 {
    margin-bottom: 14px;
  }

  .story-card--01 .story-card__visual {
    height: clamp(430px, 120vw, 560px);
  }

  .story-card--02 .story-card__visual {
    height: clamp(250px, 74vw, 320px);
  }

  .story-card--03 .story-card__visual {
    height: clamp(230px, 68vw, 300px);
  }

  .story-card__caption,
  .story-card--01 .story-card__caption,
  .story-card--02 .story-card__caption,
  .story-card--03 .story-card__caption {
    grid-template-columns: 42px 1px minmax(0, 1fr);
    column-gap: 16px;
    padding: 22px 20px;
  }

  .story-card--02 .story-card__caption {
    min-height: 76px;
  }

  .story-card--03 .story-card__caption {
    min-height: 110px;
  }

  .story-card__number {
    font-size: 28px;
  }

  .story-card__title {
    font-size: clamp(16px, 4.5vw, 18px);
  }

  .story-summary {
    min-height: 280px;
    padding: 28px 24px 30px;
  }

  .story-summary__word {
    font-size: clamp(60px, 18vw, 80px);
  }

  .story-summary__text {
    font-size: 17px;
  }

  .founder-section__inner {
    width: calc(100% - 32px);
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .founder-section__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .founder-section__meta {
    gap: 16px;
    margin-bottom: 38px;
  }

  .founder-section__name {
    font-size: 13px;
  }

  .founder-section__title {
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 0.94;
  }

  .founder-section__description {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
  }

  .founder-section__signature {
    margin-top: 34px;
  }

  .founder-section__signature-line {
    width: 54px;
  }

  .founder-section__media {
    width: 100%;
    min-height: 0;
    max-height: none;
    margin-top: 44px;
    border-radius: 12px;
    aspect-ratio: 4 / 5;
  }

  .art-section__inner {
    width: calc(100% - 32px);
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .art-section__hero {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .art-section__intro {
    order: 1;
    padding: 0;
  }

  .art-section__visual {
    order: 2;
    height: clamp(520px, 72vw, 620px);
    border-top-right-radius: clamp(92px, 14vw, 130px);
  }

  .art-section__eyebrow {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .art-section__title {
    font-size: clamp(42px, 11.5vw, 56px);
    line-height: 0.94;
  }

  .art-section__description {
    max-width: 100%;
    margin-top: 28px;
    font-size: 17px;
  }

  .art-section__facts {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .art-fact,
  .art-fact + .art-fact,
  .art-fact:nth-child(3) {
    border-left: 0;
  }

  .art-fact {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 20px;
    min-height: auto;
    padding: 22px 10px 24px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  }

  .art-fact:last-child {
    border-bottom: 0;
  }

  .art-fact__number {
    grid-row: 1 / 4;
    font-size: 42px;
  }

  .art-fact__accent {
    width: 36px;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .art-fact__title {
    font-size: 20px;
  }

  .art-fact__description {
    max-width: 100%;
    font-size: 17px;
  }

  .coffee-section {
    padding: 48px 16px 56px;
  }

  .coffee-section__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .coffee-section__eyebrow {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .coffee-section__title {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.94;
  }

  .coffee-section__accent-line {
    width: 84px;
    margin-top: 28px;
  }

  .coffee-section__description {
    max-width: 100%;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.5;
  }

  .coffee-section__visual {
    order: 2;
    min-height: 0;
    height: clamp(440px, 120vw, 570px);
    border-right: 0;
    border-left: 0;
  }

  .coffee-section__features {
    order: 3;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .coffee-section__feature {
    grid-template-columns: 74px 1px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 112px;
    padding: 18px 18px;
  }

  .coffee-section__number {
    font-size: 42px;
  }

  .coffee-section__divider {
    height: 72px;
  }

  .coffee-section__feature-title {
    font-size: 20px;
  }

  .hero-actions,
  .nav-chips {
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
    width: 100%;
    max-width: none;
  }

  .button,
  .button-primary,
  .button-line {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 24px;
  }

  .button-line {
    justify-content: space-between;
  }

  .hero-note {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hero-plaque {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 118px;
    grid-template-columns: 1fr 118px;
    gap: 14px;
    margin-top: 18px;
    padding: 18px 18px 18px 20px;
    border-radius: 15px;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-plaque-text {
    gap: 15px;
  }

  .hero-plaque-text span {
    height: 58px;
  }

  .hero-plaque-text p {
    font-size: 15px;
  }

  .hero-emblem {
    width: 118px;
    height: 64px;
    padding-left: 14px;
  }

  .hero-emblem::before {
    left: 14px;
    height: 46px;
    border-radius: 10px;
  }

  .hero-emblem img {
    width: 94px;
    max-height: 42px;
  }

  section:not(.hero) {
    padding: 72px 22px;
  }

  .visual-stage {
    padding: 0 !important;
  }

  .visual-experience__canvas {
    padding: 44px 16px 0;
  }

  .visual-experience__intro {
    padding-bottom: 32px;
  }

  .visual-experience__eyebrow {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .visual-experience__rule {
    width: 62px;
    margin: 42px 0 28px;
  }

  .visual-experience__title {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.94;
    letter-spacing: -0.05em;
  }

  .visual-experience__afterword {
    gap: 22px;
    margin-top: 28px;
    padding-top: 0;
  }

  .visual-experience__afterword p {
    max-width: none;
    font-size: 16px;
  }

  .visual-experience__link {
    width: fit-content;
    white-space: normal;
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.13em;
  }

  .visual-experience__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .visual-experience__media--arch {
    grid-column: 1 / -1;
    height: 430px;
  }

  .visual-experience__media--texture,
  .visual-experience__media--touch,
  .visual-experience__caption-card {
    height: 210px;
  }

  .visual-experience__caption-card {
    grid-column: 1 / -1;
    height: 118px;
    padding: 24px 22px;
  }

  .visual-experience__media--texture figcaption {
    left: 18px;
    top: auto;
    bottom: 18px;
  }

  .visual-experience__media--texture strong,
  .visual-experience__caption-card p {
    font-size: 24px;
  }

  .visual-experience__media--portrait {
    grid-column: 1 / -1;
    height: 430px;
    border-top-left-radius: 72px;
  }

  .visual-experience__stats {
    min-height: 0;
  }

  .visual-experience__stats-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 20px 34px;
  }

  .visual-experience__stat,
  .visual-experience__stat + .visual-experience__stat {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .visual-experience__stat:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .visual-experience__stat + .visual-experience__stat::before {
    display: none;
  }

  .visual-experience__stat strong {
    width: 74px;
    font-size: 64px;
  }

  .visual-experience__stat--wide strong {
    font-size: 70px;
  }

  .visual-experience__next {
    display: grid;
    justify-self: end;
    width: 62px;
    height: 62px;
    margin-top: 8px;
  }

  .senses-image,
  .split-media,
  .showroom-media {
    min-height: 0;
    height: 180px;
  }

  .intro-inner {
    border-left: 0;
    border-right: 0;
  }

  .intro-copy {
    padding: 34px 22px 34px;
  }

  .intro-copy .section-kicker {
    margin-bottom: 22px;
  }

  .intro-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 0.98;
  }

  .intro-lead {
    font-size: 16px;
  }

  .intro-detail {
    margin-top: 22px;
    padding: 18px 18px 18px 20px;
  }

  .intro-detail p {
    font-size: 14px;
  }

  .intro-detail-more {
    width: 100%;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 11px;
  }

  .showroom-modal {
    padding: 12px;
  }

  .showroom-modal__panel {
    max-height: calc(100dvh - 24px);
    padding: 54px 20px 24px;
  }

  .showroom-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .showroom-modal__head,
  .showroom-modal__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showroom-modal__head {
    padding-right: 0;
  }

  .showroom-modal__head h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .showroom-modal__lead,
  .showroom-modal__copy p {
    font-size: 16px;
  }

  .rent-gallery__viewport {
    height: min(260px, 58vw);
  }

  .rent-gallery__overlay {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .rent-gallery__overlay p {
    max-width: 100%;
    text-align: left;
    font-size: 12px;
  }

  .showroom-modal__brands {
    grid-template-columns: 1fr;
  }

  .showroom-modal__brands article {
    min-height: 0;
    padding: 18px;
  }

  .intro-media,
  .showroom-media,
  .showroom-panel {
    min-height: 180px;
  }

  .intro-media-caption {
    left: 16px;
    bottom: 16px;
    padding: 12px 15px;
    font-size: 11px;
  }

  .sense-list,
  .proof-grid,
  .faq-list,
  .line-list {
    grid-template-columns: 1fr;
  }

  .sense-list .sense-option,
  .sense-list .sense-option:nth-child(odd),
  .sense-list .sense-option:nth-child(even),
  .proof-grid span {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .sense-list .sense-option {
    grid-template-columns: 42px 1fr 36px;
    gap: 14px;
    min-height: 108px;
    padding: 20px 18px;
  }

  .sense-list .sense-option p {
    grid-column: 2 / 4;
  }

  .sense-list .sense-option i {
    grid-column: 3;
    grid-row: 1;
  }

  .sense-panel {
    padding: 0 18px 20px 60px;
  }

  .sense-panel__media {
    height: 220px;
  }

  .sense-panel__media span {
    left: 14px;
    bottom: 14px;
    min-height: 38px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .sense-panel__media p {
    left: 14px;
    right: 14px;
    bottom: 62px;
    max-width: none;
    font-size: 14px;
    line-height: 1.3;
  }

  .service {
    padding: 76px 18px !important;
  }

  .service-head {
    gap: 24px;
    margin-bottom: 38px;
  }

  .service-head h2 {
    margin-top: 24px;
    font-size: clamp(42px, 12vw, 60px);
    line-height: 0.96;
  }

  .service-head > p {
    max-width: 620px;
    padding-bottom: 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .service-layout {
    gap: 18px;
  }

  .service-note {
    min-height: 360px;
    padding: 32px 26px;
    border-radius: 24px;
  }

  .service-note span {
    font-size: 13px;
  }

  .service-note i {
    height: 54px;
    margin-top: 26px;
  }

  .service-note p {
    max-width: 540px;
    font-size: clamp(22px, 5.6vw, 28px);
    line-height: 1.42;
  }

  .service-list {
    border-radius: 24px;
  }

  .service-list li {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 98px;
    padding: 22px 20px;
  }

  .service-list span {
    font-size: 28px;
  }

  .service-list span::after {
    right: 18px;
    min-height: 42px;
  }

  .service-list p {
    font-size: 17px;
    line-height: 1.43;
  }

  .route-lines {
    margin-top: 28px;
  }

  .route-item {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 12px;
    min-height: 86px;
    padding: 14px 12px;
  }

  .route-item__number {
    font-size: 14px;
  }

  .route-item__title {
    font-size: 17px;
  }

  .route-item__description {
    grid-column: 2 / 3;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.03em;
  }

  .route-item__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    width: 26px;
    height: 14px;
  }

  .intro-footer {
    align-self: flex-start;
    font-size: 11px;
  }

  .showroom-panel {
    padding: 26px 22px;
  }

  .showroom-brands {
    grid-template-columns: 1fr;
  }

  .showroom-brands article {
    padding-top: 10px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visit-card {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(37px, 10.5vw, 40px);
  }

  h2 {
    font-size: 34px;
  }

  summary {
    font-size: 19px;
  }
}

/* Premium first screen refresh */
.site-header {
  position: absolute;
  top: clamp(14px, 1.7vw, 28px);
  left: clamp(14px, 1.7vw, 28px);
  right: clamp(14px, 1.7vw, 28px);
  z-index: 40;
  height: clamp(76px, 5.4vw, 92px);
  padding: 0 clamp(18px, 2vw, 34px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 44px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: clamp(22px, 2vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 56px rgba(34, 28, 22, 0.12);
  backdrop-filter: blur(14px);
}

.site-header.is-compact {
  height: clamp(70px, 4.8vw, 82px);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(34, 28, 22, 0.13);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 0;
}

.brand img {
  width: clamp(166px, 12vw, 238px);
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  position: static;
  margin-left: auto;
  min-height: 54px;
  width: auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  transform: none;
  opacity: 1;
  visibility: visible;
}

.main-nav::before {
  display: none;
}

.main-nav a {
  position: relative;
  min-height: 54px;
  padding: 0 clamp(18px, 1.65vw, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 800;
  letter-spacing: 0.035em;
  border-radius: 0;
  white-space: nowrap;
}

.main-nav a::after {
  bottom: 8px;
  background: var(--red);
}

.main-nav a:not(.route-link) + a:not(.route-link)::before,
.main-nav a:not(.route-link) + .route-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 24px;
  background: rgba(17, 17, 17, 0.22);
  transform: translateY(-50%);
}

.route-link {
  min-width: clamp(176px, 12.5vw, 218px);
  margin-left: clamp(10px, 1.2vw, 22px);
  padding: 0 clamp(18px, 1.8vw, 30px) !important;
  gap: 11px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: 0 12px 30px rgba(34, 28, 22, 0.12);
}

.route-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-link::before,
.route-link::after {
  display: none;
}

.route-link:hover {
  transform: translateY(-1px);
  background: #fff;
  color: var(--red) !important;
  box-shadow: 0 18px 36px rgba(190, 14, 37, 0.16);
}

.nav-toggle {
  color: var(--ink);
}

.hero {
  min-height: 100dvh;
  padding: clamp(106px, 8.2vw, 130px) clamp(14px, 1.7vw, 28px) clamp(14px, 1.7vw, 28px);
  background: #fff;
  color: var(--ink);
}

.hero .hero-slide {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: calc(100dvh - clamp(134px, 10.9vw, 186px));
  display: grid;
  grid-template-columns: minmax(390px, 0.39fr) minmax(0, 0.61fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: clamp(26px, 2.4vw, 40px);
  background: #fff;
  box-shadow: 0 22px 70px rgba(34, 28, 22, 0.14);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide--intro {
  max-width: none;
}

.hero-picture {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  min-height: 640px;
  height: 100%;
  overflow: hidden;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  animation: none;
  filter: none;
}

.hero-overlays {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.06) 38%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.05));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  inset: auto;
  top: auto;
  left: auto;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  max-width: none;
  min-height: 0;
  padding: clamp(20px, 1.8vw, 34px);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-shape,
.hero-logo-mark,
.hero-copy::after,
.hero-copy-inner::before,
.hero h1::after,
.hero-note,
.scroll-cue {
  display: none !important;
}

.hero-copy-inner {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(32px, 3.2vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: clamp(22px, 2.1vw, 32px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 62px rgba(34, 28, 22, 0.12);
}

.hero .eyebrow {
  margin: 0 0 clamp(24px, 2.2vw, 38px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-size: clamp(13px, 0.94vw, 17px);
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  display: none;
}

.hero .eyebrow svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero .eyebrow span {
  max-width: none;
}

.hero h1 {
  max-width: 570px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 5.2vw, 92px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-rule {
  width: clamp(72px, 5.1vw, 104px);
  height: 3px;
  margin: clamp(22px, 2vw, 34px) 0 clamp(16px, 1.6vw, 26px);
  display: block;
  background: var(--red);
}

.hero .lead {
  max-width: 510px;
  margin: 0;
  color: #3f3f3f;
  font-size: clamp(16px, 1.08vw, 20px);
  font-weight: 500;
  line-height: 1.44;
}

.hero .hero-sublead {
  max-width: 560px;
  margin: 10px 0 0;
  color: #555;
  font-size: clamp(14px, 0.96vw, 17px);
  font-weight: 500;
  line-height: 1.48;
}

.hero-awards {
  max-width: 100%;
  margin: clamp(20px, 1.8vw, 30px) 0 0;
  display: grid;
  gap: 10px;
}

.hero-awards li {
  min-height: clamp(66px, 4.8vw, 82px);
  padding: 12px clamp(14px, 1.2vw, 20px);
  display: grid;
  grid-template-columns: clamp(44px, 3.2vw, 54px) minmax(0, 1fr) 18px;
  align-items: center;
  gap: clamp(12px, 1.1vw, 18px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(34, 28, 22, 0.07);
  color: #242424;
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 500;
  line-height: 1.3;
}

.hero-awards li::before {
  display: none;
}

.award-list {
  display: grid;
  gap: 5px;
}

.award-list > span {
  position: relative;
  padding-left: 14px;
}

.award-list > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.hero-award-icon {
  width: clamp(42px, 3vw, 50px);
  height: clamp(42px, 3vw, 50px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 14, 37, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
}

.hero-award-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-awards i {
  width: 9px;
  height: 9px;
  justify-self: end;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
}

.hero-actions {
  margin-top: clamp(22px, 2.1vw, 36px);
  display: grid;
  grid-template-columns: minmax(190px, 246px) minmax(190px, 246px);
  gap: clamp(12px, 1.2vw, 18px);
}

.hero-actions .button {
  min-height: clamp(58px, 4.4vw, 72px);
  width: 100%;
  padding: 0 clamp(18px, 1.4vw, 26px);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 10px;
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-actions .button-primary {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(190, 14, 37, 0.22);
}

.hero-actions .button-primary::before {
  display: none;
}

.hero-actions .button-primary .button-arrow,
.hero-actions .button-outline-pin svg {
  width: 34px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions .button-outline-pin {
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #fff;
  color: var(--ink);
}

.hero-actions .button-outline-pin svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.hero-actions .button:hover {
  transform: translateY(-2px);
}

.hero-plaque {
  position: absolute;
  right: clamp(34px, 4vw, 72px);
  bottom: clamp(34px, 3.4vw, 62px);
  top: auto;
  z-index: 4;
  width: min(520px, 34vw);
  min-height: clamp(104px, 7.2vw, 132px);
  padding: clamp(20px, 1.6vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 1.8vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: clamp(18px, 1.6vw, 26px);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 20px 54px rgba(34, 28, 22, 0.16);
  backdrop-filter: blur(12px);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-plaque-text {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 1.4vw, 24px);
}

.hero-plaque-text span {
  width: 3px;
  height: clamp(50px, 4.2vw, 72px);
  background: var(--red);
}

.hero-plaque-text p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 500;
  line-height: 1.32;
}

.hero-emblem {
  width: clamp(122px, 9.6vw, 170px);
  min-height: clamp(58px, 4.4vw, 72px);
  padding: 12px 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.hero-emblem::before {
  display: none;
}

.hero-emblem img {
  width: 100%;
  height: auto;
  filter: none;
  opacity: 1;
}

@media (max-width: 1180px) {
  .site-header {
    height: 76px;
    padding: 0 18px 0 22px;
  }

  .brand img {
    width: 170px;
  }

  .main-nav a {
    padding: 0 14px;
    font-size: 12px;
  }

  .route-link {
    min-width: 170px;
  }

  .hero .hero-slide {
    grid-template-columns: minmax(350px, 0.44fr) minmax(0, 0.56fr);
  }

  .hero-copy-inner {
    padding: 34px 30px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.5vw, 72px);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-plaque {
    width: min(440px, 42vw);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    height: 70px;
    border-radius: 24px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
  }

  .nav-toggle span {
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    width: auto;
    min-height: 0;
    padding: 14px;
    display: grid;
    gap: 8px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 52px rgba(34, 28, 22, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a,
  .route-link {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    margin: 0;
    justify-content: flex-start;
    padding: 0 16px !important;
    border-radius: 14px !important;
  }

  .main-nav a:not(.route-link) + a:not(.route-link)::before,
  .main-nav a:not(.route-link) + .route-link::before {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 12px 12px;
  }

  .hero .hero-slide {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .hero-picture {
    grid-column: 1;
    grid-row: 2;
    min-height: 430px;
  }

  .hero-overlays {
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0));
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 14px;
  }

  .hero-copy-inner {
    padding: clamp(26px, 7vw, 40px) clamp(20px, 5vw, 34px);
    justify-content: flex-start;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-awards li {
    grid-template-columns: 46px minmax(0, 1fr) 14px;
  }

  .hero-plaque {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1;
    grid-row: 3;
    width: auto;
    margin: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 12px 0 16px;
  }

  .brand img {
    width: 138px;
  }

  .hero .eyebrow {
    align-items: flex-start;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 50px);
    line-height: 0.96;
  }

  .hero .lead {
    font-size: 15px;
  }

  .hero-awards li {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }

  .hero-awards i {
    display: none;
  }

  .hero-actions .button {
    min-height: 56px;
  }

  .hero-picture {
    min-height: 360px;
  }

  .hero-plaque {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-emblem {
    width: 150px;
    justify-self: start;
  }
}

/* Hero layout hardening: keeps the first screen compact and prevents old slider rules from washing out the image. */
@media (min-width: 901px) {
  .hero {
    min-height: 100dvh;
    padding: clamp(112px, 7.3vw, 126px) clamp(14px, 1.7vw, 28px) clamp(14px, 1.7vw, 28px);
  }

  .hero .hero-slide {
    position: relative !important;
    display: block !important;
    min-height: clamp(660px, calc(100dvh - 154px), 820px);
    height: clamp(660px, calc(100dvh - 154px), 820px);
    overflow: hidden;
    background: #fff;
  }

  .hero-picture {
    position: absolute !important;
    inset: 0 0 0 39% !important;
    z-index: 0 !important;
    display: block;
    min-height: 0 !important;
    height: 100% !important;
    background: #fff;
  }

  .hero-picture img {
    position: absolute !important;
    inset: 0 !important;
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
  }

  .hero-overlays {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0) 72%),
      linear-gradient(0deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.02));
  }

  .hero-copy {
    position: absolute !important;
    inset: clamp(20px, 1.8vw, 34px) auto clamp(20px, 1.8vw, 34px) clamp(20px, 1.8vw, 34px) !important;
    z-index: 3 !important;
    width: min(37.5%, 670px) !important;
    height: auto !important;
    padding: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-copy-inner {
    min-height: 100%;
    height: 100%;
    padding: clamp(28px, 2.5vw, 46px);
    justify-content: center;
  }

  .hero .eyebrow {
    margin-bottom: clamp(18px, 1.6vw, 28px);
    font-size: clamp(12px, 0.82vw, 15px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 4.05vw, 76px);
    line-height: 0.95;
  }

  .hero .lead {
    max-width: 100%;
    font-size: clamp(15px, 0.96vw, 18px);
    line-height: 1.42;
  }

  .hero-awards {
    margin-top: clamp(16px, 1.4vw, 24px);
    gap: 8px;
  }

  .hero-awards li {
    min-height: clamp(58px, 4.2vw, 74px);
    padding: 10px clamp(12px, 1vw, 18px);
    grid-template-columns: clamp(38px, 2.7vw, 48px) minmax(0, 1fr) 16px;
    font-size: clamp(12px, 0.82vw, 15px);
  }

  .hero-award-icon {
    width: clamp(38px, 2.7vw, 48px);
    height: clamp(38px, 2.7vw, 48px);
  }

  .hero-actions {
    margin-top: clamp(16px, 1.6vw, 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    min-height: clamp(54px, 3.8vw, 66px);
    border-radius: 10px;
  }

  .hero-plaque {
    position: absolute !important;
    right: clamp(34px, 4vw, 72px) !important;
    bottom: clamp(34px, 3.4vw, 58px) !important;
    top: auto !important;
    z-index: 4 !important;
    width: min(500px, 34vw);
    min-height: clamp(94px, 6.4vw, 122px);
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .site-header {
    height: 72px;
  }

  .brand img {
    width: clamp(154px, 10.8vw, 208px);
    max-height: 50px;
  }

  .hero {
    padding-top: 102px;
  }

  .hero .hero-slide {
    min-height: 640px;
    height: max(640px, calc(100dvh - 124px));
  }

  .hero-copy-inner {
    padding: 26px 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 3.55vw, 66px);
  }

  .hero-rule {
    margin: 18px 0 14px;
  }

  .hero-awards li {
    min-height: 56px;
  }
}

/* Stable geometry for the "02 · О пространстве" route tabs. */
.intro-detail {
  display: flex;
  flex-direction: column;
  min-height: 214px;
  box-sizing: border-box;
}

.intro-detail p {
  min-height: 70px;
}

.intro-detail-more {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  box-sizing: border-box;
}

.intro-detail-more[hidden] {
  display: inline-flex;
  visibility: hidden;
  pointer-events: none;
}

.route-lines {
  width: 100%;
}

.route-item {
  box-sizing: border-box;
  grid-template-columns: 58px minmax(156px, 184px) minmax(0, 1fr) 34px;
  width: 100%;
  height: 74px;
  min-height: 74px;
  max-height: 74px;
  overflow: hidden;
}

.route-item__title,
.route-item__description {
  min-width: 0;
}

.route-item__title {
  overflow: hidden;
  text-overflow: ellipsis;
}

.route-item__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1180px) {
  .route-item {
    grid-template-columns: 48px minmax(150px, 180px) minmax(0, 1fr) 30px;
    height: 78px;
    min-height: 78px;
    max-height: 78px;
  }
}

@media (max-width: 680px) {
  .intro-detail {
    min-height: 236px;
  }

  .intro-detail p {
    min-height: 94px;
  }

  .intro-detail-more {
    width: 100%;
  }

  .route-item {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    height: 86px;
    min-height: 86px;
    max-height: 86px;
  }
}

/* Final first-screen polish: clean crop, lighter controls, stable premium hover states. */
.site-header {
  height: clamp(74px, 4.9vw, 82px);
  padding: 0 clamp(18px, 1.8vw, 30px);
  border-radius: 30px;
}

.site-header.is-compact {
  height: clamp(70px, 4.5vw, 78px);
}

.brand img {
  width: auto;
  height: clamp(44px, 3.2vw, 56px);
  max-height: none;
  object-fit: contain;
}

.main-nav a {
  color: var(--ink) !important;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.main-nav a:not(.route-link)::after {
  left: clamp(18px, 1.65vw, 32px);
  right: clamp(18px, 1.65vw, 32px);
  bottom: 10px;
  display: block;
  width: auto;
  height: 1px;
  background: var(--red);
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}

.main-nav a:not(.route-link):hover,
.main-nav a:not(.route-link):focus-visible {
  color: var(--red) !important;
  background: transparent !important;
}

.main-nav a:not(.route-link):hover::after,
.main-nav a:not(.route-link):focus-visible::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible,
.route-link:focus-visible,
.hero-actions .button:focus-visible,
.hero-awards li:focus-visible {
  outline: 2px solid rgba(184, 14, 37, 0.34);
  outline-offset: 4px;
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--red) !important;
  border-color: rgba(184, 14, 37, 0.34) !important;
  background: rgba(184, 14, 37, 0.035) !important;
  box-shadow: 0 14px 32px rgba(184, 14, 37, 0.12);
}

.route-link:hover svg,
.route-link:focus-visible svg {
  stroke: var(--red);
}

.button-arrow {
  transition: transform 200ms ease;
}

@media (min-width: 901px) {
  .hero {
    padding-top: clamp(104px, 6.7vw, 116px);
  }

  .hero .hero-slide {
    min-height: clamp(636px, calc(100dvh - 136px), 780px);
    height: clamp(636px, calc(100dvh - 136px), 780px);
    border-color: rgba(17, 17, 17, 0.05);
    border-radius: 32px;
    box-shadow: 0 20px 62px rgba(34, 28, 22, 0.11);
  }

  .hero-picture {
    inset: 0 0 0 38.6% !important;
  }

  .hero-picture img {
    object-position: 43% 50% !important;
    filter: none !important;
  }

  .hero-overlays {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0) 48%),
      linear-gradient(0deg, rgba(17, 17, 17, 0.025), rgba(17, 17, 17, 0));
  }

  .hero-copy {
    inset: clamp(18px, 1.6vw, 30px) auto clamp(18px, 1.6vw, 30px) clamp(18px, 1.6vw, 30px) !important;
    width: min(37.4%, 650px) !important;
  }

  .hero-copy-inner {
    padding: clamp(26px, 2.25vw, 42px);
    border-color: rgba(17, 17, 17, 0.055);
    border-radius: 32px;
    box-shadow: 0 18px 46px rgba(34, 28, 22, 0.09);
    justify-content: center;
  }

  .hero .eyebrow {
    margin-bottom: clamp(16px, 1.4vw, 24px);
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(46px, 3.85vw, 72px);
  }

  .hero-rule {
    margin: clamp(18px, 1.45vw, 26px) 0 clamp(13px, 1.05vw, 20px);
  }

  .hero .lead {
    max-width: 540px;
    color: #4b4b4b;
    font-size: clamp(15px, 0.9vw, 17px);
    line-height: 1.5;
  }

  .hero-awards {
    margin-top: clamp(14px, 1.25vw, 22px);
    gap: 10px;
  }

  .hero-awards li {
    min-height: clamp(56px, 3.8vw, 68px);
    border-color: rgba(20, 20, 20, 0.065);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(20, 20, 20, 0.025);
    transition:
      border-color 200ms ease,
      box-shadow 200ms ease,
      transform 200ms ease;
  }

  .hero-awards li:hover {
    transform: translateY(-1px);
    border-color: rgba(184, 14, 37, 0.18);
    box-shadow: 0 10px 25px rgba(20, 20, 20, 0.05);
  }

  .hero-awards li:hover i {
    transform: translateX(3px) rotate(45deg);
  }

  .hero-award-icon {
    width: clamp(40px, 2.6vw, 46px);
    height: clamp(40px, 2.6vw, 46px);
    border-color: rgba(184, 14, 37, 0.18);
  }

  .hero-actions {
    margin-top: clamp(16px, 1.35vw, 24px);
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(220px, 1.05fr) minmax(190px, 0.95fr);
  }

  .hero-actions .button {
    min-height: clamp(52px, 3.55vw, 62px);
    min-width: 0;
    padding-right: clamp(16px, 1.25vw, 22px);
    padding-left: clamp(16px, 1.25vw, 22px);
    border-radius: 14px;
    font-size: clamp(12px, 0.78vw, 14px);
    transition:
      color 200ms ease,
      border-color 200ms ease,
      background 200ms ease,
      box-shadow 200ms ease;
  }

  .hero-actions .button:hover {
    transform: none;
  }

  .hero-actions .button-primary:hover,
  .hero-actions .button-primary:focus-visible {
    border-color: #a90d22;
    background: #a90d22;
    box-shadow: 0 18px 38px rgba(184, 14, 37, 0.24);
  }

  .hero-actions .button:hover .button-arrow,
  .hero-actions .button:focus-visible .button-arrow {
    transform: translateX(4px);
  }

  .hero-actions .button-outline-pin:hover,
  .hero-actions .button-outline-pin:focus-visible {
    color: var(--red);
    border-color: rgba(184, 14, 37, 0.34);
    background: rgba(184, 14, 37, 0.025);
  }

  .hero-plaque {
    right: clamp(28px, 2.5vw, 40px) !important;
    bottom: clamp(28px, 2.5vw, 40px) !important;
    width: clamp(420px, 28vw, 480px);
    min-height: clamp(96px, 6vw, 112px);
    padding: clamp(18px, 1.25vw, 22px);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(34, 28, 22, 0.13);
  }

  .hero-plaque-text {
    gap: clamp(14px, 1.1vw, 20px);
  }

  .hero-plaque-text span {
    height: clamp(48px, 3.6vw, 62px);
  }

  .hero-plaque-text p {
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.28;
  }

  .hero-emblem {
    width: clamp(132px, 8.4vw, 158px);
    min-height: 0;
    padding: 0 0 0 clamp(18px, 1.4vw, 26px);
    border: 0;
    border-left: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .hero-emblem img {
    width: 100%;
    max-height: 46px;
    object-fit: contain;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .site-header {
    height: 70px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero .hero-slide {
    min-height: 640px;
    height: max(640px, calc(100dvh - 118px));
  }

  .hero-copy-inner {
    padding: 24px 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 3.45vw, 64px);
  }

  .hero-rule {
    margin: 16px 0 12px;
  }

  .hero-awards {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-plaque {
    width: clamp(390px, 27vw, 440px);
    min-height: 92px;
  }
}

@media (max-width: 900px) {
  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--red) !important;
    background: transparent !important;
  }

  .route-link:hover,
  .route-link:focus-visible {
    background: rgba(184, 14, 37, 0.035) !important;
  }

  .hero-picture img {
    object-position: 47% 50% !important;
    filter: none !important;
  }

  .hero-overlays {
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.025), rgba(17, 17, 17, 0));
  }

  .hero-emblem {
    min-height: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 0;
    background: transparent;
  }

  .hero-actions .button:hover {
    transform: none;
  }

  .hero-copy,
  .hero-copy-inner,
  .hero-plaque {
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-copy {
    width: 100% !important;
  }

  .hero-copy-inner {
    width: 100% !important;
  }

  .hero-plaque {
    width: auto !important;
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 12px !important;
  }

  .hero-copy-inner {
    padding-right: clamp(18px, 5vw, 28px);
    padding-left: clamp(18px, 5vw, 28px);
  }

  .hero-plaque {
    margin-right: 12px;
    margin-left: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Final mobile lock for the updated static BIART hero. */
@media (max-width: 900px) {
  .hero {
    padding: 96px 12px 14px !important;
  }

  .hero .hero-slide {
    display: flex !important;
    flex-direction: column;
    padding-top: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden;
    border-radius: 28px;
  }

  .hero-copy {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    padding: 12px !important;
    order: 1;
  }

  .hero-slide--intro {
    padding-top: 0 !important;
  }

  .hero-copy-inner {
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(24px, 6.4vw, 36px) clamp(20px, 5.4vw, 30px) !important;
    justify-content: flex-start !important;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(34px, 9.8vw, 46px) !important;
    line-height: 0.98 !important;
    overflow-wrap: normal;
  }

  .hero .lead {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.48 !important;
  }

  .hero-awards {
    margin-top: 18px !important;
  }

  .hero-awards li {
    grid-template-columns: 42px minmax(0, 1fr) 12px !important;
    min-height: 0 !important;
    padding: 12px !important;
    font-size: 13px !important;
  }

  .hero-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  .hero-actions .button {
    min-height: 54px !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
    font-size: 13px !important;
  }

  .hero-picture {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: clamp(300px, 76vw, 430px) !important;
    min-height: 0 !important;
    order: 2;
  }

  .hero-picture img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 58% 50% !important;
  }

  .hero-plaque {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    min-height: 0 !important;
    margin: 12px !important;
    padding: 18px !important;
    order: 3;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 16px;
  }

  .hero-emblem {
    width: 124px !important;
    padding-left: 16px !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(31px, 9.1vw, 38px) !important;
  }

  .hero .eyebrow {
    gap: 10px !important;
    font-size: 11px !important;
  }

  .hero-awards li {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  .hero-awards i {
    display: none !important;
  }

  .hero-plaque {
    grid-template-columns: 1fr !important;
  }

  .hero-emblem {
    width: 148px !important;
    justify-self: start;
  }
}

/* Final service section redesign */
#service.service {
  scroll-margin-top: 112px;
  background: #ffffff !important;
  font-family: Gilroy;
}

#service .section-kicker {
  color: var(--red);
  font-family: Gilroy;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

#service .service-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr) !important;
}

#service .service-layout {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.48fr) !important;
  align-items: stretch !important;
}

@media (max-width: 980px) {
  #service.service {
    padding: 84px 18px !important;
  }

  #service .service-head,
  #service .service-layout {
    grid-template-columns: 1fr !important;
  }

  #service .service-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  #service .service-head h2 span {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  #service.service {
    padding: 70px 14px !important;
  }

  #service .service-head h2 {
    margin-top: 22px;
    font-size: clamp(40px, 13vw, 54px);
    letter-spacing: -0.04em;
  }

  #service .service-head > p {
    font-size: 18px;
  }

  #service .service-note {
    min-height: 340px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  #service .service-note p {
    font-size: clamp(21px, 6vw, 26px);
  }

  #service .service-list {
    border-radius: 22px;
  }

  #service .service-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 104px;
    padding: 22px 18px;
  }

  #service .service-list span {
    font-size: 26px;
  }

  #service .service-list span::after {
    right: 15px;
  }

  #service .service-list p {
    font-size: 16.5px;
  }
}

/* Mobile audit pass: compact long sections and prevent sideways clipping. */
@media (max-width: 760px) {
  html,
  body,
  main {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-shell {
    overflow-x: clip;
  }

  .hero {
    padding: 84px 8px 10px !important;
  }

  .site-header {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    height: 66px !important;
    border-radius: 22px !important;
  }

  .brand img {
    width: 148px !important;
    max-height: 42px !important;
  }

  .nav-toggle {
    width: 44px !important;
    height: 44px !important;
  }

  .hero-copy {
    width: auto !important;
    padding: 8px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .hero-copy-inner {
    min-height: 0 !important;
    padding: 22px 20px !important;
    border-radius: 24px !important;
  }

  .hero .eyebrow {
    margin-bottom: 18px !important;
    font-size: 11px !important;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 42px) !important;
    line-height: 0.96 !important;
  }

  .hero-rule {
    margin: 18px 0 16px !important;
  }

  .hero .lead {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .hero-awards {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .hero-awards li {
    grid-template-columns: 40px minmax(0, 1fr) 10px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .hero-picture {
    height: clamp(240px, 64vw, 360px) !important;
  }

  .hero-plaque {
    grid-template-columns: minmax(0, 1fr) 116px !important;
    gap: 14px !important;
    padding: 16px !important;
  }

  .hero-emblem {
    width: 116px !important;
    padding-left: 14px !important;
  }

  .intro,
  .senses,
  #service.service,
  .founder-section,
  .partners,
  .faq,
  .visit {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .intro {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .intro-copy {
    padding: 28px 16px 24px !important;
    overflow: hidden;
  }

  .intro-copy h2 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 0.98 !important;
  }

  .intro-media {
    min-height: 240px !important;
    height: 240px !important;
  }

  .intro-detail {
    min-height: 0 !important;
  }

  .intro-detail p {
    min-height: 0 !important;
  }

  .route-item {
    grid-template-columns: 34px minmax(0, 1fr) 22px !important;
    column-gap: 10px !important;
    min-height: 78px !important;
    max-height: none !important;
    height: auto !important;
    padding: 14px 10px !important;
    overflow: hidden !important;
  }

  .route-item__number,
  .route-item__title,
  .route-item__description {
    min-width: 0 !important;
  }

  .route-item__title {
    font-size: 15px !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .route-item__description {
    grid-column: 2 / 3 !important;
    max-width: 100%;
    font-size: 11px !important;
    line-height: 1.28 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .route-item__arrow {
    width: 22px !important;
    min-width: 22px !important;
  }

  .senses {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .senses-head {
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .senses-head h2 {
    font-size: clamp(36px, 10vw, 46px) !important;
    line-height: 0.98 !important;
  }

  .senses-head p:last-child {
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  .senses-layout {
    gap: 16px !important;
  }

  .sense-list .sense-option {
    grid-template-columns: 32px minmax(0, 1fr) 22px !important;
    gap: 10px !important;
    min-height: 76px !important;
    padding: 14px 10px !important;
    overflow: hidden !important;
  }

  .sense-list span,
  .sense-list h3,
  .sense-list p {
    min-width: 0 !important;
  }

  .sense-list h3 {
    font-size: 20px !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }

  .sense-list p {
    grid-column: 2 / 3 !important;
    max-width: 100%;
    font-size: 12px !important;
    line-height: 1.26 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .sense-list .sense-option i {
    grid-column: 3 !important;
    grid-row: 1 / 3 !important;
    align-self: center;
    width: 22px !important;
    min-width: 22px !important;
  }

  .sense-panel {
    padding: 0 10px 16px 52px !important;
  }

  .sense-panel__media {
    height: 210px !important;
  }

  .sense-panel__media span {
    left: 12px !important;
    bottom: 12px !important;
    min-height: 36px !important;
    padding: 9px 11px !important;
    font-size: 10px !important;
  }

  .sense-panel__media p {
    left: 12px !important;
    right: 12px !important;
    bottom: 58px !important;
    font-size: 13px !important;
    line-height: 1.28 !important;
  }

  .senses-image {
    height: 220px !important;
  }

  .senses-image p {
    right: 14px !important;
    bottom: 14px !important;
    left: 14px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .senses .senses-image > span {
    bottom: 64px !important;
    left: 14px !important;
    padding: 10px 14px !important;
    font-size: 11px !important;
  }

  .proof {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .intro-copy h2,
  .senses-head h2 {
    overflow-wrap: normal;
  }

  .route-item__title {
    font-size: 14px !important;
  }

  .sense-list h3 {
    font-size: 19px !important;
  }
}

/* Publish QA: keep the hero photo visible on mobile and soften its join with the white panel on desktop. */
.hero-picture {
  isolation: isolate;
}

.hero-picture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.92) 6%,
    rgba(255, 255, 255, 0.58) 17%,
    rgba(255, 255, 255, 0.18) 30%,
    rgba(255, 255, 255, 0) 46%
  );
}

.hero-picture img {
  z-index: 0;
}

@media (max-width: 900px) {
  html,
  body,
  .site-shell,
  main,
  .hero {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .hero .hero-slide {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .hero-picture {
    order: 1 !important;
    display: block !important;
    width: auto !important;
    height: clamp(210px, 58vw, 320px) !important;
    min-height: 0 !important;
    margin: 8px 8px 0 !important;
    border-radius: 24px 24px 12px 12px !important;
    overflow: hidden !important;
  }

  .hero-picture::before {
    background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.08) 0%,
      rgba(17, 17, 17, 0) 42%,
      rgba(255, 255, 255, 0.16) 100%
    );
  }

  .hero-picture img {
    object-position: 78% 50% !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-copy {
    order: 2 !important;
    width: calc(100vw - 52px) !important;
    max-width: calc(100vw - 52px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 0 !important;
    overflow: hidden !important;
  }

  .hero-copy-inner {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .hero-copy-inner,
  .hero .lead,
  .hero .hero-sublead,
  .hero-awards,
  .hero-awards li,
  .hero-awards span,
  .hero-actions,
  .hero-actions .button {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .hero .lead,
  .hero .hero-sublead,
  .hero-awards span {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .hero .lead {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .hero .hero-sublead {
    font-size: 13px !important;
    line-height: 1.42 !important;
    margin-top: 8px !important;
  }

  .hero-awards li {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 14px !important;
    gap: 10px !important;
    padding: 13px 12px !important;
    padding-left: 12px !important;
    overflow: visible !important;
  }

  .hero-awards li::before {
    content: none !important;
  }

  .hero-awards i {
    width: 42px !important;
    height: 42px !important;
  }

  .hero-awards span {
    font-size: 12.5px !important;
    line-height: 1.22 !important;
    display: block !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  .hero h1 {
    overflow-wrap: anywhere;
  }

  .hero-plaque {
    order: 3 !important;
  }

  .hero-overlays {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .hero-picture {
    height: clamp(190px, 56vw, 260px) !important;
  }
}

/* Coffee modal and gallery */
.coffee-modal__panel {
  width: min(1180px, 100%);
  transform: translateY(0) scale(1);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coffee-modal[aria-hidden="true"] .coffee-modal__panel {
  transform: translateY(14px) scale(0.985);
}

.coffee-modal__body {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
  margin-top: clamp(32px, 4vw, 58px);
  padding-top: clamp(26px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.coffee-gallery {
  display: grid;
  gap: 12px;
  touch-action: pan-y;
}

.coffee-gallery__viewport {
  position: relative;
  height: clamp(270px, 32vw, 410px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b0b0b;
}

.coffee-gallery__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(7, 7, 7, 0.24));
  pointer-events: none;
}

.coffee-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coffee-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.coffee-gallery__slide:nth-child(1) {
  object-position: center 46%;
}

.coffee-gallery__slide:nth-child(5) {
  object-position: center 37%;
}

.coffee-gallery__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.coffee-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #f7f7f5;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.5);
  backdrop-filter: blur(8px);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.coffee-gallery__arrow--previous {
  left: clamp(14px, 2vw, 24px);
}

.coffee-gallery__arrow--next {
  right: clamp(14px, 2vw, 24px);
}

.coffee-gallery__arrow:hover,
.coffee-gallery__arrow:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(184, 14, 37, 0.78);
  transform: translateY(-50%) scale(1.05);
}

.coffee-gallery__arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.coffee-gallery__status {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.coffee-gallery__count {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coffee-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.coffee-gallery__dots button {
  width: 28px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.coffee-gallery__dots button::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 180ms ease, transform 180ms ease;
}

.coffee-gallery__dots button:hover::before,
.coffee-gallery__dots button:focus-visible::before {
  background: rgba(255, 255, 255, 0.68);
  transform: scaleY(2);
}

.coffee-gallery__dots button.is-active::before {
  background: var(--red);
  transform: scaleY(2);
}

.coffee-gallery__progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.coffee-gallery__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

.coffee-gallery__progress span.is-running {
  animation: coffeeGalleryProgress 5s linear forwards;
}

@keyframes coffeeGalleryProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.coffee-modal__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 58px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.coffee-modal__features li {
  position: relative;
  min-height: 112px;
  padding: 22px 0 22px 34px;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.45;
  font-weight: 500;
}

.coffee-modal__features li::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--red);
}

.events-modal__features li:last-child {
  grid-column: 1 / -1;
}

.events-gallery__slide:nth-child(4) {
  object-position: center 28%;
}

.events-gallery__slide:nth-child(5) {
  object-position: center 52%;
}

.events-gallery__slide:nth-child(6) {
  object-position: center 40%;
}

.events-gallery__slide:nth-child(7) {
  object-position: center 56%;
}

.art-modal__manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 76px);
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.art-modal__manifesto p {
  margin: 0;
}

.art-modal__statement {
  max-width: 18ch;
  color: #f7f7f5;
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.art-modal__copy {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.58;
}

.art-gallery-carousel__slide:nth-child(2) {
  object-position: center 48%;
}

.art-gallery-carousel__slide:nth-child(3) {
  object-position: center 50%;
}

.art-gallery-carousel__slide:nth-child(4) {
  object-position: center 38%;
}

.art-gallery-carousel__slide:nth-child(5) {
  object-position: center 48%;
}

.art-gallery-carousel__slide:nth-child(6) {
  object-position: center 34%;
}

.art-gallery-carousel__slide:nth-child(7) {
  object-position: center 38%;
}

@media (max-width: 760px) {
  .coffee-modal__body {
    gap: 24px;
  }

  .coffee-gallery__viewport {
    height: min(260px, 58vw);
  }

  .coffee-gallery__arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .coffee-gallery__dots {
    gap: 4px;
  }

  .coffee-gallery__dots button {
    width: 16px;
  }

  .coffee-modal__features {
    grid-template-columns: 1fr;
  }

  .events-modal__features li:last-child {
    grid-column: auto;
  }

  .art-modal__manifesto {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .art-modal__statement {
    max-width: 20ch;
    font-size: clamp(24px, 8vw, 34px);
  }

  .art-modal__copy {
    font-size: 15px;
  }

  .coffee-modal__features li {
    min-height: 0;
    padding: 18px 0 18px 28px;
    font-size: 15px;
  }

  .coffee-modal__features li::before {
    top: 27px;
    width: 12px;
  }
}

@media (max-width: 420px) {
  .coffee-gallery__viewport {
    height: 220px;
  }

  .coffee-gallery__count {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coffee-modal__panel,
  .coffee-gallery__slide,
  .coffee-gallery__arrow,
  .coffee-gallery__dots button::before {
    transition: none;
  }

  .coffee-gallery__progress span.is-running {
    animation: none;
  }
}

/* Taste panel photo composition */
.sense-panel__media--taste .sense-panel__triptych {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  gap: 3px;
  width: 100%;
  height: 100%;
}

.sense-panel__media--taste .sense-panel__triptych img {
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08);
  transform: scale(1.01);
}

.sense-panel__media--taste .sense-panel__triptych img:nth-child(1) {
  object-position: center 54%;
}

.sense-panel__media--taste .sense-panel__triptych img:nth-child(2) {
  object-position: center 48%;
}

.sense-panel__media--taste .sense-panel__triptych img:nth-child(3) {
  object-position: center 43%;
}

@media (max-width: 640px) {
  .sense-panel__media--taste .sense-panel__triptych {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .sense-panel__media--taste .sense-panel__triptych img:first-child {
    grid-row: 1 / 3;
  }
}

/* Touch panel photo composition */
.sense-panel__media--touch img {
  object-position: center 48%;
}

@media (max-width: 640px) {
  .sense-panel__media--touch img {
    object-position: center 46%;
  }
}

/* Hear panel photo composition */
.sense-panel__media--hear img {
  object-position: center 58%;
}

/* Keep button labels centered independently from trailing icons. */
.button,
.hero-actions .button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  justify-content: stretch;
  gap: 0;
  text-align: center;
}

.button > span:first-child,
.hero-actions .button > span:first-child {
  grid-column: 2;
  justify-self: center;
}

.button > .button-arrow,
.button > .arrow,
.hero-actions .button-outline-pin > svg {
  grid-column: 3;
  justify-self: end;
}

.intro-detail-more {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  width: min(100%, 620px);
  max-width: 620px;
  box-sizing: border-box;
  align-items: center;
  justify-content: stretch;
  gap: 0;
  padding-right: 22px;
  padding-left: 22px;
  text-align: center;
}

.intro-detail-more > span {
  position: static;
  grid-column: 2;
  justify-self: center;
  display: block;
  width: max-content;
  max-width: 100%;
  line-height: 1.15;
  text-align: center;
  transform: none;
}

.intro-detail-more > .intro-detail-more__arrow {
  position: static;
  grid-column: 3;
  justify-self: end;
  width: 42px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: none;
}

@media (max-width: 640px) {
  .intro-detail-more {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .intro-detail-more > span {
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.055em;
  }

  .intro-detail-more > .intro-detail-more__arrow {
    width: 34px;
    height: 16px;
  }
}
