:root {
  --ink: #171816;
  --graphite: #242522;
  --graphite-soft: #30312e;
  --fog: #d8d6cf;
  --paper: #f2efe8;
  --paper-deep: #e5e1d8;
  --gold: #d8b95b;
  --gold-soft: #e6d18c;
  --olive: #9cab54;
  --line-dark: rgba(23, 24, 22, 0.2);
  --line-light: rgba(242, 239, 232, 0.2);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", Arial, sans-serif;
  --shell: 1240px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body.is-locked {
  overflow: hidden;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.96;
}

.concept-shell {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

.concept-light {
  background: var(--paper);
  color: var(--ink);
}

.concept-dark {
  background: var(--ink);
  color: var(--paper);
}

.concept-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: var(--concept-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--olive));
  pointer-events: none;
}

.concept-loader {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.concept-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.concept-loader-mark {
  position: relative;
  width: min(340px, 70vw);
  padding-block: 24px;
  overflow: hidden;
}

.concept-loader-mark img {
  width: 100%;
  opacity: 0;
  filter: saturate(0.75) brightness(0.88);
  transform: translateY(8px);
  animation: concept-mark-in 540ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.concept-loader-mark span {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--olive), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: concept-line-in 500ms 100ms ease forwards;
}

.concept-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding-inline: max(40px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.concept-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 238px;
  min-height: 48px;
  overflow: hidden;
}

.concept-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.24) 49%, transparent 72%);
  transform: translateX(-120%);
  animation: concept-logo-sheen 7s 1.2s ease-in-out infinite;
  pointer-events: none;
}

.concept-brand img {
  width: 230px;
  filter: saturate(0.9) brightness(0.96);
  transition: filter 320ms ease, transform 320ms ease;
}

.concept-brand:hover img {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-1px);
}

.concept-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.concept-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 10px;
  color: rgba(242, 239, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.concept-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.concept-nav a:hover::after,
.concept-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.concept-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.concept-button::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.24) 49%, transparent 64%);
  transform: translateX(-130%);
  transition: transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.concept-button:hover::after,
.concept-button:focus-visible::after {
  transform: translateX(130%);
}

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

.concept-button-header {
  justify-self: end;
  border-color: var(--gold-soft);
  background: transparent;
  color: var(--gold-soft);
}

.concept-button-header:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.concept-button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.concept-button-primary:hover {
  border-color: var(--paper);
  background: var(--paper);
}

.concept-button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.concept-button-dark:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.concept-menu {
  display: none;
}

.concept-hero {
  position: relative;
  min-height: 650px;
  height: min(760px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.concept-hero-image,
.concept-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concept-hero-image {
  object-fit: cover;
  object-position: center 57%;
  transform: translate3d(0, var(--concept-hero-shift, 0px), 0) scale(1.025);
  animation: concept-hero-breathe 16s ease-in-out infinite alternate;
  will-change: transform;
}

.concept-hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 16, 14, 0.92) 0%, rgba(15, 16, 14, 0.58) 48%, rgba(15, 16, 14, 0.2) 78%),
    linear-gradient(0deg, rgba(15, 16, 14, 0.68) 0%, transparent 44%);
}

.concept-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  height: 100%;
  padding-block: 90px 76px;
}

.concept-hero-copy {
  max-width: 720px;
}

.concept-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6f743d;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.concept-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.concept-reveal.is-visible .concept-kicker::before,
.concept-kicker-light::before {
  transform: scaleX(1);
}

.concept-kicker-light {
  color: var(--gold-soft);
}

.concept-hero h1 {
  max-width: 680px;
  margin-top: 28px;
  font-size: 6.25rem;
  color: var(--paper);
}

.concept-lede {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(242, 239, 232, 0.82);
  font-size: 1.16rem;
  line-height: 1.65;
}

.concept-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.concept-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(242, 239, 232, 0.52);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: border-color 200ms ease, color 200ms ease, gap 200ms ease;
}

.concept-text-link:hover {
  gap: 18px;
  border-color: var(--gold);
  color: var(--gold-soft);
}

.concept-text-link-dark {
  border-color: rgba(23, 24, 22, 0.4);
  color: var(--ink);
}

.concept-hero-note {
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 14px 0 14px 24px;
  border-left: 1px solid var(--gold);
}

.concept-hero-note span,
.concept-hero-note strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.concept-hero-note span {
  color: rgba(242, 239, 232, 0.58);
}

.concept-hero-note strong {
  color: var(--paper);
  font-weight: 500;
}

.concept-scroll-cue {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: rgba(242, 239, 232, 0.7);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.concept-scroll-cue i {
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(242, 239, 232, 0.34);
}

.concept-scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  animation: concept-scroll-line 2.4s ease-in-out infinite;
}

.concept-service-belt {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: transparent;
  color: #555b30;
}

.concept-service-belt::before,
.concept-service-belt::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(8vw, 120px);
  pointer-events: none;
}

.concept-service-belt::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.concept-service-belt::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.concept-service-belt-track {
  display: flex;
  width: max-content;
  animation: concept-service-belt 38s linear infinite;
  will-change: transform;
}

.concept-service-belt-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
  min-height: 68px;
}

.concept-service-belt-group > span {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  min-height: 44px;
  padding-inline: 38px;
  font-size: 0.69rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.concept-service-belt-group > span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(85, 91, 48, 0.68);
  transform: rotate(45deg);
}

.concept-service-belt-group .concept-service-belt-logo {
  width: 198px;
  padding-inline: 18px 30px;
}

.concept-service-belt-logo img {
  width: 164px;
  filter: saturate(0.72) brightness(0.78) contrast(1.04);
}

.concept-intro {
  padding-block: 0 130px;
}

.concept-intro-grid {
  padding-top: 130px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  gap: 110px;
  align-items: end;
}

.concept-intro h2,
.concept-section-head h2,
.concept-studio-copy h2,
.concept-closing h2 {
  margin-top: 24px;
  font-size: 4rem;
}

.concept-intro-copy {
  padding-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.concept-intro-copy p {
  color: #4e4f4a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.concept-intro-copy .concept-text-link {
  margin-top: 24px;
}

.concept-services {
  padding-block: 50px 130px;
}

.concept-section-head {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  padding-bottom: 64px;
}

.concept-section-head h2 {
  max-width: 760px;
  margin-top: 0;
}

.concept-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.concept-service-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 174px;
  padding: 32px 36px 32px 0;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  transition: background 320ms ease, padding 320ms ease;
}

.concept-service-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--olive), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.concept-service-row:hover::after,
.concept-service-row:focus-visible::after {
  transform: scaleX(1);
}

.concept-service-row:nth-child(odd) {
  padding-right: 44px;
  border-right: 1px solid var(--line-dark);
}

.concept-service-row:nth-child(even) {
  padding-left: 44px;
}

.concept-service-row:hover {
  background: rgba(216, 185, 91, 0.1);
}

.concept-service-number {
  align-self: start;
  color: #8b7a43;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.concept-service-row h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.concept-service-row p {
  margin-top: 10px;
  color: #5c5d57;
  font-size: 0.9rem;
  line-height: 1.5;
}

.concept-service-arrow {
  color: #7a6d41;
  font-size: 1.25rem;
  transition: transform 220ms ease;
}

.concept-service-row:hover .concept-service-arrow {
  transform: translateX(7px);
}

.concept-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 42px;
}

.concept-service-footer p {
  color: #6b6b65;
  font-size: 0.82rem;
}

.concept-media-feature {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.concept-media-feature > img,
.concept-media-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concept-media-feature > img {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--concept-media-shift, 0px), 0) scale(1.015);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
  will-change: transform;
}

.concept-media-feature-massage > img {
  object-position: center 58%;
}

.concept-media-feature:hover > img {
  filter: saturate(1.04) contrast(1.02);
}

.concept-media-shade {
  background: linear-gradient(90deg, rgba(14, 15, 13, 0.82), rgba(14, 15, 13, 0.16) 68%);
}

.concept-media-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 720px;
}

.concept-media-copy h2 {
  max-width: 660px;
  margin-top: 26px;
  color: var(--paper);
  font-size: 5rem;
}

.concept-media-copy .concept-text-link {
  margin-top: 32px;
}

.concept-approach {
  padding-block: 130px;
}

.concept-section-head-dark {
  border-bottom: 1px solid var(--line-light);
}

.concept-section-head-dark h2 {
  color: var(--paper);
}

.concept-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-steps li {
  position: relative;
  min-height: 260px;
  padding: 44px 36px 0 0;
  border-right: 1px solid var(--line-light);
}

.concept-steps li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 82%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.concept-steps li:hover::after {
  transform: scaleX(1);
}

.concept-steps li:not(:first-child) {
  padding-left: 36px;
}

.concept-steps li:last-child {
  border-right: 0;
}

.concept-steps span {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.concept-steps h3 {
  margin-top: 48px;
  color: var(--paper);
  font-size: 2.4rem;
}

.concept-steps p {
  margin-top: 18px;
  color: rgba(242, 239, 232, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.concept-method-carousel {
  width: min(820px, 100%);
  margin: 64px auto 0;
}

.concept-method-viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(215, 185, 85, 0.32);
  background: #080908;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
  -webkit-user-drag: none;
}

.concept-method-viewport:active {
  cursor: grabbing;
}

.concept-method-track,
.concept-method-slide {
  position: absolute;
  inset: 0;
}

.concept-method-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition: none;
}

.concept-method-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 520ms ease, transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.concept-method-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.concept-method-controls {
  display: grid;
  grid-template-columns: 48px auto minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  border-bottom: 1px solid rgba(242, 239, 232, 0.18);
}

.concept-method-arrow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.concept-method-arrow:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.concept-method-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(242, 239, 232, 0.66);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.concept-method-status i {
  width: 32px;
  height: 1px;
  background: rgba(242, 239, 232, 0.28);
}

.concept-method-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.concept-method-dot {
  position: relative;
  width: 28px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.concept-method-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(242, 239, 232, 0.24);
  transform: translateY(-50%);
  transition: background 200ms ease, transform 200ms ease;
}

.concept-method-dot:hover::before,
.concept-method-dot.is-active::before {
  background: var(--gold);
  transform: translateY(-50%) scaleY(2);
}

.concept-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  min-height: 720px;
}

.concept-studio-image {
  min-height: 720px;
  overflow: hidden;
}

.concept-studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--concept-studio-shift, 0px), 0) scale(1.012);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
  will-change: transform;
}

.concept-studio-image:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: translate3d(0, var(--concept-studio-shift, 0px), 0) scale(1.025);
}

.concept-studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(48px, calc((100vw - var(--shell)) / 2));
  border-top: 1px solid var(--line-dark);
}

.concept-studio-copy h2 {
  max-width: 580px;
}

.concept-studio-copy > p:not(.concept-kicker) {
  max-width: 520px;
  margin-top: 28px;
  color: #555650;
  font-size: 1rem;
  line-height: 1.8;
}

.concept-studio-copy address {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  color: #44453f;
  font-style: normal;
  line-height: 1.8;
}

.concept-studio-copy address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.concept-studio-copy .concept-text-link {
  align-self: flex-start;
  margin-top: 28px;
}

.concept-map {
  padding: 112px 0 0;
  border-top: 1px solid var(--line-dark);
}

.concept-map-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 80px;
  padding-bottom: 54px;
}

.concept-map-head h2 {
  max-width: 720px;
}

.concept-map-details {
  display: grid;
  justify-items: start;
  gap: 22px;
  min-width: 240px;
}

.concept-map-details p {
  color: #555650;
  line-height: 1.7;
}

.concept-map-frame {
  position: relative;
  height: clamp(440px, 38vw, 640px);
  border-block: 1px solid var(--line-dark);
  overflow: hidden;
  background: #d8d7d0;
}

.concept-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) contrast(0.94) sepia(0.08);
  pointer-events: none;
}

.concept-map-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  cursor: pointer;
}

.concept-map-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -7px;
}

.concept-closing {
  padding-block: 130px;
}

.concept-closing-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.concept-closing-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  border-right: 1px solid var(--line-light);
  overflow: hidden;
}

.concept-closing-mark::before,
.concept-closing-mark::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(216, 185, 91, 0.16);
  border-radius: 50%;
  animation: concept-orbit 12s linear infinite;
}

.concept-closing-mark::after {
  width: 210px;
  height: 210px;
  border-color: rgba(156, 171, 84, 0.18);
  animation-direction: reverse;
  animation-duration: 16s;
}

.concept-closing-mark img {
  position: relative;
  z-index: 1;
  width: min(320px, 72%);
  filter: saturate(0.8) brightness(0.92);
  animation: concept-logo-float 6s ease-in-out infinite;
}

.concept-closing h2 {
  color: var(--paper);
  font-size: 4.6rem;
}

.concept-footer {
  padding-block: 48px;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: rgba(242, 239, 232, 0.62);
}

.concept-footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 44px;
}

.concept-footer img {
  width: 210px;
  filter: saturate(0.75) brightness(0.86);
}

.concept-footer p,
.concept-footer a {
  font-size: 0.76rem;
}

.concept-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.concept-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.concept-footer a:hover {
  color: var(--paper);
  border-color: var(--gold);
}

.concept-credit {
  color: var(--gold-soft);
  gap: 10px;
}

.concept-footer .concept-credit-logo {
  width: 62px;
  height: auto;
  filter: none;
  flex: 0 0 auto;
}

.concept-credit span {
  white-space: nowrap;
}

.concept-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--concept-delay, 0ms);
}

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

@keyframes concept-mark-in {
  to {
    opacity: 1;
    filter: saturate(0.98) brightness(1);
    transform: translateY(0);
  }
}

@keyframes concept-line-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes concept-logo-sheen {
  0%, 68% {
    transform: translateX(-120%);
  }
  82%, 100% {
    transform: translateX(120%);
  }
}

@keyframes concept-hero-breathe {
  from {
    transform: translate3d(0, var(--concept-hero-shift, 0px), 0) scale(1.025);
  }
  to {
    transform: translate3d(0, var(--concept-hero-shift, 0px), 0) scale(1.045);
  }
}

@media (min-width: 1600px) {
  :root {
    --shell: 1400px;
    --header-height: 92px;
  }

  .concept-shell {
    width: min(calc(100% - 144px), var(--shell));
  }

  .concept-header {
    padding-inline: max(72px, calc((100vw - var(--shell)) / 2));
  }

  .concept-hero {
    min-height: 720px;
    height: min(820px, calc(100svh - var(--header-height)));
  }

  .concept-hero-image {
    object-position: center 49%;
  }

  .concept-hero-copy {
    max-width: 760px;
  }

  .concept-hero h1 {
    font-size: 6.6rem;
  }

  .concept-intro-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.72fr);
    gap: 150px;
  }

  .concept-media-feature,
  .concept-media-copy {
    min-height: clamp(860px, 52vw, 1180px);
  }

  .concept-media-feature > img {
    object-position: center 40%;
  }

  .concept-media-feature-massage > img {
    object-position: center 58%;
  }

  .concept-studio {
    grid-template-columns: minmax(0, 1.55fr) minmax(620px, 0.85fr);
    min-height: 780px;
    max-width: 2400px;
    margin-inline: auto;
  }

  .concept-studio-image {
    min-height: 780px;
  }

  .concept-studio-image img {
    object-position: center 52%;
  }

  .concept-studio-copy {
    min-width: 0;
    padding: 96px clamp(72px, 5vw, 112px);
  }

  .concept-studio-copy h2 {
    max-width: 520px;
    font-size: 4.15rem;
  }

  .concept-studio-copy > p:not(.concept-kicker),
  .concept-studio-copy address {
    max-width: 470px;
  }

  .concept-map {
    padding-top: 132px;
  }

  .concept-map-head {
    padding-bottom: 64px;
  }
}

@keyframes concept-scroll-line {
  0% {
    transform: translateX(-110%);
  }
  55%, 100% {
    transform: translateX(110%);
  }
}

@keyframes concept-service-belt {
  to {
    transform: translateX(-50%);
  }
}

@keyframes concept-orbit {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.035);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes concept-logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .concept-shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .concept-header {
    grid-template-columns: 1fr auto auto;
    padding-inline: 24px;
  }

  .concept-nav {
    display: none;
  }

  .concept-button-header {
    margin-right: 12px;
  }

  .concept-menu {
    position: relative;
    display: block;
  }

  .concept-scroll-cue {
    display: none;
  }

  .concept-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 48px;
    padding: 8px 14px;
    border: 1px solid rgba(242, 239, 232, 0.4);
    color: var(--paper);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    list-style: none;
  }

  .concept-menu summary::-webkit-details-marker {
    display: none;
  }

  .concept-menu nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 12px 20px;
    border: 1px solid rgba(242, 239, 232, 0.2);
    background: rgba(23, 24, 22, 0.98);
  }

  .concept-menu nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(242, 239, 232, 0.12);
    color: var(--paper);
    font-size: 0.82rem;
  }

  .concept-menu nav a:last-child {
    border-bottom: 0;
  }

  .concept-hero h1 {
    font-size: 5rem;
  }

  .concept-intro-grid {
    gap: 64px;
  }

  .concept-intro h2,
  .concept-section-head h2,
  .concept-studio-copy h2 {
    font-size: 3.25rem;
  }

  .concept-service-row h3 {
    font-size: 1.7rem;
  }

  .concept-media-copy h2 {
    font-size: 4.25rem;
  }

  .concept-studio {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .concept-shell {
    width: calc(100% - 32px);
  }

  .concept-header {
    grid-template-columns: 1fr auto;
    padding-inline: 14px;
  }

  .concept-brand {
    width: 142px;
    min-height: 44px;
  }

  .concept-brand img {
    width: 136px;
  }

  .concept-button-header {
    display: none;
  }

  .concept-menu summary {
    min-width: 66px;
    min-height: 44px;
  }

  .concept-hero {
    min-height: 600px;
    height: min(640px, calc(100svh - var(--header-height)));
  }

  .concept-hero-image {
    object-position: 62% center;
  }

  .concept-hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 16, 14, 0.9) 0%, rgba(15, 16, 14, 0.48) 86%),
      linear-gradient(0deg, rgba(15, 16, 14, 0.78) 0%, transparent 60%);
  }

  .concept-hero-layout {
    grid-template-columns: 1fr;
    align-items: end;
    padding-block: 72px 50px;
  }

  .concept-kicker {
    gap: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.2em;
  }

  .concept-kicker::before {
    width: 26px;
  }

  .concept-hero h1 {
    margin-top: 20px;
    font-size: 4.15rem;
  }

  .concept-lede {
    max-width: 340px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .concept-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .concept-actions .concept-button,
  .concept-actions .concept-text-link {
    width: 100%;
  }

  .concept-actions .concept-text-link {
    justify-content: center;
  }

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

  .concept-service-belt-group {
    min-height: 58px;
  }

  .concept-service-belt-group > span {
    padding-inline: 28px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .concept-service-belt-group .concept-service-belt-logo {
    width: 166px;
    padding-inline: 14px 24px;
  }

  .concept-service-belt-logo img {
    width: 142px;
  }

  .concept-intro,
  .concept-approach,
  .concept-closing {
    padding-block: 88px;
  }

  .concept-method-carousel {
    width: min(680px, 100%);
    margin-top: 48px;
  }

  .concept-intro {
    padding-block: 0 88px;
  }

  .concept-intro-grid {
    padding-top: 88px;
  }

  .concept-services {
    padding-block: 20px 88px;
  }

  .concept-intro-grid,
  .concept-section-head,
  .concept-closing-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .concept-intro h2,
  .concept-section-head h2,
  .concept-studio-copy h2,
  .concept-closing h2 {
    font-size: 3rem;
  }

  .concept-intro-copy {
    padding-top: 26px;
  }

  .concept-section-head {
    padding-bottom: 44px;
  }

  .concept-service-grid {
    grid-template-columns: 1fr;
  }

  .concept-service-row,
  .concept-service-row:nth-child(odd),
  .concept-service-row:nth-child(even) {
    min-height: 150px;
    padding: 26px 2px;
    border-right: 0;
  }

  .concept-service-row {
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .concept-service-row h3 {
    font-size: 1.8rem;
  }

  .concept-service-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .concept-service-footer .concept-button {
    width: 100%;
  }

  .concept-media-feature,
  .concept-media-copy {
    min-height: 600px;
  }

  .concept-media-feature > img {
    object-position: 34% center;
  }

  .concept-media-feature-massage > img {
    object-position: center 54%;
  }

  .concept-media-shade {
    background: linear-gradient(0deg, rgba(14, 15, 13, 0.88), rgba(14, 15, 13, 0.18) 78%);
  }

  .concept-media-copy {
    justify-content: flex-end;
    padding-bottom: 60px;
  }

  .concept-media-copy h2 {
    font-size: 3.35rem;
  }

  .concept-steps {
    grid-template-columns: 1fr;
  }

  .concept-steps li,
  .concept-steps li:not(:first-child) {
    display: grid;
    grid-template-columns: 38px 110px 1fr;
    align-items: start;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .concept-steps h3,
  .concept-steps p {
    margin-top: 0;
  }

  .concept-steps h3 {
    font-size: 1.9rem;
  }

  .concept-method-carousel {
    margin-top: 36px;
  }

  .concept-method-controls {
    grid-template-columns: 44px auto minmax(0, 1fr) 44px;
    gap: 8px;
    min-height: 64px;
  }

  .concept-method-arrow {
    width: 44px;
    height: 44px;
  }

  .concept-method-status i {
    width: 18px;
  }

  .concept-method-dots {
    gap: 3px;
  }

  .concept-method-dot {
    width: 16px;
  }

  .concept-studio {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .concept-studio-image {
    min-height: 430px;
  }

  .concept-studio-copy {
    padding: 78px 16px 88px;
  }

  .concept-map {
    padding-top: 78px;
  }

  .concept-map-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding-bottom: 42px;
  }

  .concept-map-details {
    gap: 16px;
  }

  .concept-map-frame {
    height: 430px;
  }

  .concept-closing-mark {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .concept-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .concept-footer-links {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

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

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

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

  .concept-service-belt-track {
    animation: none;
  }

  .concept-method-slide {
    transition: none;
  }
}
