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

:root {
  --green-950: #06160d;
  --green-900: #0b2819;
  --green-800: #15442c;
  --green-700: #1f5b3d;
  --green-600: #2f7a55;
  --off-white: #f5f5f0;
  --white: #ffffff;
  --ink: #111111;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(11, 40, 25, 0.15);
  --font-display: "EB Garamond", Garamond, serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.68);
  --glass-bg-soft: rgba(255, 255, 255, 0.56);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.42);
  --glass-border-dark: rgba(11, 40, 25, 0.16);
  --glass-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

@view-transition {
  navigation: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  display: block;
  flex: 1 0 auto;
}

.topbar,
.footer {
  flex-shrink: 0;
}

html.home-page,
body.home-page {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html.home-page::-webkit-scrollbar,
body.home-page::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.media-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease, visibility 320ms ease;
}

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

.page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 0.82rem;
  color: #d8efe1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
}

.page-loader-ring {
  width: 2.35rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(216, 239, 225, 0.25);
  border-top-color: rgba(216, 239, 225, 0.92);
  animation: loader-spin 850ms linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

body.intro-locked {
  overflow: hidden;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.intro-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.0));
}

.intro-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-gate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 280ms ease;
}

.intro-gate.poster-ready .intro-gate-video {
  opacity: 1;
}

.intro-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.72rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  transform: translate(-50%, -50%);
  transition: opacity 280ms ease;
}

.intro-loader p {
  margin: 0;
}

.intro-loader-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.96);
  animation: intro-spin 1s linear infinite;
}

.intro-gate.poster-ready .intro-loader {
  opacity: 0;
  pointer-events: none;
}

.intro-gate:not(.poster-ready) .intro-enter {
  opacity: 0;
  pointer-events: none;
}

.intro-enter {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.1rem, 8vw, 6rem);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.92);
  text-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.intro-enter-label {
  display: block;
  letter-spacing: 0.24em;
  margin-right: -0.24em;
  line-height: 1;
}

@media (min-width: 761px) {
  .intro-enter {
    top: 47%;
    font-size: clamp(3.6rem, 7.4vw, 7.8rem);
  }

  .intro-enter-label {
    letter-spacing: 0.12em;
    margin-right: -0.12em;
  }
}

.intro-enter:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

.intro-gate.playing .intro-enter {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  pointer-events: none;
}

@keyframes intro-spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

.container {
  width: min(1200px, calc(100% - 3.2rem));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.topbar.is-scrolled,
.topbar.topbar-solid {
  background: rgba(6, 22, 13, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}

.topbar-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.22rem 1rem;
  padding-block: 0.72rem 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  color: var(--white);
}

.brand-mark {
  width: 3.45rem;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-self: end;
}

.topbar-credit {
  grid-column: 1 / -1;
  justify-self: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hamburger {
  cursor: pointer;
  display: none;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  height: 2.1em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.topnav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding-block: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.is-active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  outline: none;
}

.topbar.nav-open {
  background: rgba(6, 22, 13, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4.6rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.8rem, 1.2rem + 1.8vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.45rem);
}

p {
  margin: 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.9rem;
}

.kicker-dark {
  color: var(--green-700);
}

.hero,
.subhero {
  position: relative;
  min-height: 94vh;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: clip;
}

.hero-bg,
.subhero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.subhero-catalogue .subhero-bg {
  background-image:
    linear-gradient(110deg, rgba(6, 22, 13, 0.92), rgba(9, 36, 23, 0.74)),
    url("../../images/Datejust1601_1.jpg");
}

.subhero-house .subhero-bg {
  background-image:
    linear-gradient(110deg, rgba(6, 22, 13, 0.92), rgba(9, 36, 23, 0.76)),
    url("../../images/Oyster_1.jpg");
}

.subhero-product .subhero-bg {
  background-image:
    linear-gradient(110deg, rgba(6, 22, 13, 0.92), rgba(9, 36, 23, 0.76)),
    url("../../images/Submariner_2.jpg");
}

.scroll-hero {
  --hero-progress: 0;
  --hero-media-width: 300px;
  --hero-media-height: 400px;
  --hero-shift: 0vw;
  --hero-text: #c8f2d6;
  position: relative;
  min-height: 100dvh;
  color: var(--hero-text);
  background: #000;
  overflow: clip;
}

body.expansion-hero-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

.scroll-hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: calc(1 - var(--hero-progress));
  transition: opacity 120ms linear;
}

.scroll-hero-bg-layer picture {
  display: block;
  width: 100%;
  height: 100%;
}

.scroll-hero-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scroll-hero-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.scroll-hero-catalogue .scroll-hero-bg-layer img {
  display: none;
}

.scroll-hero-catalogue .scroll-hero-bg-tint {
  background: #000;
}

.scroll-hero-maison .scroll-hero-bg-layer img {
  display: block;
}

.scroll-hero-maison .scroll-hero-bg-tint {
  background: linear-gradient(132deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34));
}

.scroll-hero-stage {
  position: relative;
  z-index: 2;
  min-height: 106dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-hero-center {
  position: relative;
  width: 100%;
  min-height: 106dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(5.2rem, 8vh, 7.2rem);
  padding-bottom: 2rem;
}

.scroll-hero-media-frame {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(var(--hero-media-width), 95vw);
  height: min(var(--hero-media-height), 85vh);
  max-width: 95vw;
  max-height: 85vh;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.scroll-hero-media-frame img,
.scroll-hero-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@media (max-height: 860px) and (min-width: 761px) {
  .scroll-hero-stage,
  .scroll-hero-center {
    min-height: 120dvh;
  }
}

.scroll-hero-media-shade {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: rgba(0, 0, 0, calc(0.5 - (var(--hero-progress) * 0.3)));
}

.scroll-hero-meta {
  position: absolute;
  z-index: 2;
  top: calc(50% + (min(var(--hero-media-height), 85vh) * 0.5) + 0.95rem);
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.scroll-hero-date {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.95rem + 1.25vw, 2rem);
  line-height: 1.15;
  color: var(--hero-text);
  transform: translateX(calc(-1 * var(--hero-shift)));
}

.scroll-hero-scroll {
  margin-top: 0.22rem;
  font-size: clamp(0.72rem, 0.65rem + 0.28vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--hero-text);
  transform: translateX(var(--hero-shift));
}


.scroll-hero-copy {
  position: relative;
  display: none;
}

.scroll-hero-title {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  pointer-events: none;
}

.scroll-hero-title-blend {
  mix-blend-mode: difference;
}

.scroll-hero-title-line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.3rem + 4.7vw, 5.15rem);
  line-height: 1.03;
  font-weight: 500;
  color: var(--hero-text);
  text-wrap: balance;
}

.scroll-hero-title-first {
  transform: translateX(calc(-1 * var(--hero-shift)));
}

.scroll-hero-title-second {
  transform: translateX(var(--hero-shift));
}

.hero-overlay,
.subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 42%);
}

.hero-home {
  min-height: 110vh;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-home-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-home .hero-overlay {
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
}

.hero-home-minimal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  padding-block: clamp(7rem, 13vh, 10rem) clamp(3.2rem, 8vh, 5.2rem);
}

.hero-home-minimal-content h1 {
  margin: 0;
  font-size: clamp(3rem, 1.55rem + 6.6vw, 6.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero-home-minimal-content p {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1.2rem, 0.96rem + 0.75vw, 1.7rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-home-minimal-content .btn {
  padding: 1.08rem 1.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.hero-home-minimal-content .hero-glass-btn {
  position: relative;
  min-width: clamp(14.5rem, 20vw, 18.5rem);
  padding: 1.18rem 2.35rem;
  gap: 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  color: #f6fff9;
  text-transform: none;
  font-size: clamp(0.94rem, 0.85rem + 0.32vw, 1.06rem);
  letter-spacing: 0.09em;
  font-weight: 500;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  overflow: hidden;
}

.hero-home-minimal-content .hero-glass-btn::after {
  content: "→";
  position: relative;
  z-index: 1;
  font-size: 1.02em;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.hero-home-minimal-content .hero-glass-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.06) 60%);
  opacity: 0.78;
  pointer-events: none;
}

.hero-home-minimal-content .hero-glass-btn:hover,
.hero-home-minimal-content .hero-glass-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.13));
  color: #ffffff;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.hero-home-minimal-content .hero-glass-btn:hover::after,
.hero-home-minimal-content .hero-glass-btn:focus-visible::after {
  transform: translateX(2px);
}

.poster-hero {
  position: relative;
  min-height: 84vh;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: clip;
  background: #000;
}

.poster-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.poster-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.poster-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 74% 22%, rgba(110, 181, 132, 0.12), transparent 42%);
}

.poster-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.65rem;
  padding-block: clamp(8.8rem, 14vh, 11rem) clamp(3.1rem, 7vh, 5rem);
}

.poster-hero-content .kicker {
  color: rgba(208, 236, 217, 0.94);
}

.poster-hero-content h1 {
  margin: 0;
  font-size: clamp(2.3rem, 1.24rem + 4.6vw, 4.9rem);
  line-height: 1.02;
  font-weight: 500;
  text-wrap: balance;
}

.poster-hero-content p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
}

.maison-hero .poster-hero-overlay {
  background:
    linear-gradient(118deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.4)),
    radial-gradient(circle at 72% 18%, rgba(128, 186, 144, 0.14), transparent 42%);
}

@media (min-width: 761px) {
  .maison-hero .poster-hero-overlay {
    background:
      linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.15)),
      radial-gradient(circle at 84% 20%, rgba(128, 186, 144, 0.14), transparent 42%);
  }
}

.hero-home-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: end;
  padding-block: 6.9rem 4.8rem;
}

.hero-content-home {
  padding-left: clamp(0.55rem, 1.5vw, 1.35rem);
  padding-right: clamp(0.25rem, 0.7vw, 0.7rem);
}

.hero-visual {
  position: relative;
  min-height: 31rem;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  top: 0;
  right: clamp(0.7rem, 1.8vw, 1.6rem);
  bottom: 0;
  width: 70%;
}

.hero-frame-side {
  left: 0;
  bottom: 2.2rem;
  width: 37%;
  height: 61%;
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 2;
  padding-block: 10.5rem 5.5rem;
  display: grid;
  gap: 1.2rem;
}

.hero-home .hero-content-home {
  padding-block: 0;
}

.hero-content p,
.subhero-content p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.87);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.82rem 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.69rem;
  border-radius: 999px;
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn-light {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--green-950);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
  transform: translateY(-1px);
  outline: none;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  outline: none;
}

.btn-dark {
  background: linear-gradient(135deg, rgba(11, 40, 25, 0.92), rgba(11, 40, 25, 0.76));
  color: #eef9f1;
  border-color: rgba(11, 40, 25, 0.62);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: linear-gradient(135deg, rgba(21, 68, 44, 0.95), rgba(21, 68, 44, 0.78));
  border-color: rgba(11, 40, 25, 0.72);
  transform: translateY(-1px);
  outline: none;
}

.btn-outline-dark {
  border-color: rgba(11, 40, 25, 0.28);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.45));
  color: var(--green-900);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  border-color: var(--green-900);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
  transform: translateY(-1px);
  outline: none;
}

.intro,
.editorial,
.collection-preview,
.catalogue-section,
.manifesto,
.house-editorial,
.steps,
.contact {
  padding-block: clamp(4.2rem, 6vw, 6.8rem);
}

.intro {
  background: var(--white);
}

.intro-inner {
  max-width: 68ch;
  display: grid;
  gap: 1rem;
}

.intro-inner p {
  color: rgba(17, 17, 17, 0.8);
}

.editorial {
  background: #f1f2ec;
}

.editorial-grid,
.house-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}

.editorial-media,
.house-media {
  min-height: 440px;
}

.editorial-media img,
.house-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy,
.house-copy {
  display: grid;
  gap: 1rem;
  max-width: 56ch;
}

.text-link {
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  border-bottom: 1px solid var(--green-700);
  color: var(--green-700);
  padding-bottom: 0.22rem;
}

.collection-head {
  max-width: 56ch;
  margin-bottom: 1.6rem;
}

.collection-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.collection-head-link {
  margin-bottom: 1.75rem;
  width: max-content;
  padding: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-700);
  border-bottom: 1px solid var(--green-700);
  padding-bottom: 0.22rem;
}

.collection-head-link:hover,
.collection-head-link:focus-visible {
  color: var(--green-900);
  border-color: var(--green-900);
  outline: none;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.collection-card {
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.25rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  overflow: hidden;
}

.collection-card.is-clickable {
  cursor: pointer;
}

.collection-card.is-clickable:focus-visible {
  outline: 2px solid rgba(11, 40, 25, 0.55);
  outline-offset: 2px;
}

.watch-slider {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  touch-action: pan-y;
}

.watch-slides {
  position: relative;
  display: flex;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collection-card .watch-slides {
  aspect-ratio: 5 / 4;
}

.watch-item .watch-slides {
  aspect-ratio: 4 / 3;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease, border-color 160ms ease;
  z-index: 2;
}

.slide-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid currentcolor;
  border-right: 1px solid currentcolor;
}

.slide-nav.prev {
  left: 0.65rem;
}

.slide-nav.prev::before {
  transform: rotate(-135deg);
}

.slide-nav.next {
  right: 0.65rem;
}

.slide-nav.next::before {
  transform: rotate(45deg);
}

.watch-slider:hover .slide-nav,
.watch-slider:focus-within .slide-nav {
  opacity: 1;
}

.slide-nav:hover,
.slide-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.42rem;
  z-index: 2;
}

.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: rgba(255, 255, 255, 0.96);
}

.collection-card > div:last-child {
  padding: 1.05rem;
  display: grid;
  gap: 0.45rem;
}

.catalogue-section {
  background: var(--off-white);
}

.tabs {
  display: inline-flex;
  border: 1px solid var(--glass-border-dark);
  border-radius: 999px;
  padding: 0.2rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.5));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.1rem;
}

.tab-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0.68rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(11, 40, 25, 0.62);
  cursor: pointer;
}

.tab-button.is-active,
.tab-button:hover,
.tab-button:focus-visible {
  color: var(--green-900);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  box-shadow: inset 0 0 0 1px rgba(11, 40, 25, 0.12);
  outline: none;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.watch-item {
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.25rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  overflow: hidden;
}

.watch-item.is-clickable {
  cursor: pointer;
}

.watch-item.is-clickable:focus-visible {
  outline: 2px solid rgba(11, 40, 25, 0.55);
  outline-offset: 2px;
}

.watch-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.watch-body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.watch-link {
  width: max-content;
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--green-900);
  border-bottom: 1px solid rgba(11, 40, 25, 0.4);
  padding-bottom: 0.22rem;
}

.watch-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(11, 40, 25, 0.72);
  font-size: 0.83rem;
}

.value,
.state {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.value {
  color: var(--green-900);
  font-weight: 600;
}

.state {
  color: var(--green-700);
}

.catalogue-feedback {
  margin-top: 1rem;
  border: 1px solid rgba(11, 40, 25, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(11, 40, 25, 0.72);
  padding: 0.9rem 1rem;
}

.admin-auth-page,
.admin-console-page {
  background:
    radial-gradient(circle at top, rgba(148, 163, 184, 0.08), transparent 28%),
    #020617;
  color: #e2e8f0;
}

.admin-topbar.topbar.topbar-solid {
  background: rgba(2, 6, 23, 0.88);
  border-color: rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(12px);
}

.admin-topbar .brand,
.admin-topbar .brand-name {
  color: #f8fafc;
}

.admin-auth-main,
.admin-console-main {
  min-height: 100vh;
  padding-top: 7rem;
}

.admin-auth-main {
  display: grid;
  align-items: center;
  padding-inline: 1.5rem;
  padding-bottom: 2rem;
}

.admin-auth-shell {
  width: 100%;
  display: grid;
  justify-items: center;
}

.admin-auth-card {
  width: min(420px, 100%);
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  padding: 1.5rem;
}

.admin-auth-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.admin-auth-brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  overflow: hidden;
  flex-shrink: 0;
}

.admin-auth-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-auth-brand h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.55rem, 1.2rem + 0.8vw, 1.95rem);
  color: #f8fafc;
}

.admin-auth-copy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.admin-console-main {
  padding-bottom: 3rem;
}

.admin-dashboard {
  display: grid;
  gap: 1.1rem;
}

.admin-console-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.admin-console-header h1 {
  margin-top: 0.25rem;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 2.8rem);
  color: #f8fafc;
}

.admin-console-copy,
.admin-muted {
  margin: 0.25rem 0 0;
  color: #94a3b8;
}

.admin-eyebrow,
.admin-section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.86);
  color: #cbd5e1;
  padding: 0.26rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 10rem;
}

.admin-session-chip {
  display: grid;
  gap: 0.18rem;
  min-width: min(100%, 290px);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.admin-session-label {
  color: #94a3b8;
  font-size: 0.78rem;
}

.admin-session-value {
  color: #f8fafc;
  font-weight: 600;
  word-break: break-word;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-stat-card,
.admin-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.admin-stat-card {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
}

.admin-stat-label {
  color: #94a3b8;
  font-size: 0.84rem;
}

.admin-stat-value {
  color: #f8fafc;
  font-size: clamp(1.55rem, 1.2rem + 0.9vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.admin-card {
  padding: 1.15rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.admin-panel-header,
.admin-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-panel-header h2,
.admin-toolbar h2 {
  margin: 0.45rem 0 0;
  font-size: 1.2rem;
  color: #f8fafc;
}

.admin-toolbar {
  padding: 1rem 1.15rem;
}

.admin-alert,
.admin-inline-message,
.admin-empty {
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.9);
}

.admin-alert,
.admin-empty,
.admin-inline-message {
  color: #cbd5e1;
}

.admin-inline-message {
  margin-top: 0.9rem;
}

.admin-inline-message[data-tone="success"] {
  border-color: rgba(74, 222, 128, 0.28);
  background: rgba(20, 83, 45, 0.36);
  color: #bbf7d0;
}

.admin-inline-message[data-tone="error"],
.admin-alert {
  border-color: rgba(248, 113, 113, 0.26);
  background: rgba(127, 29, 29, 0.34);
  color: #fecaca;
}

.admin-login-form,
.admin-watch-form {
  display: grid;
  gap: 1rem;
}

.admin-login-form label,
.admin-watch-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #e2e8f0;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.admin-form-span {
  grid-column: 1 / -1;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-start;
}

.admin-login-form .admin-input,
.admin-watch-form .admin-input {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.75rem;
  background: rgba(2, 6, 23, 0.78);
  color: #f8fafc;
  font: inherit;
  padding: 0.7rem 0.85rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.admin-login-form .admin-input:focus,
.admin-watch-form .admin-input:focus {
  outline: none;
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.14);
}

.admin-login-form textarea.admin-input,
.admin-watch-form textarea.admin-input {
  min-height: 7rem;
  resize: vertical;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.65rem 0.95rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.admin-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.admin-btn-primary {
  background: #f8fafc;
  border-color: #f8fafc;
  color: #020617;
}

.admin-btn-primary:hover,
.admin-btn-primary:focus-visible {
  background: #e2e8f0;
  border-color: #e2e8f0;
}

.admin-btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.16);
  color: #f8fafc;
}

.admin-btn-secondary:hover,
.admin-btn-secondary:focus-visible {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(148, 163, 184, 0.3);
}

.admin-btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.16);
  color: #f8fafc;
}

.admin-btn-ghost:hover,
.admin-btn-ghost:focus-visible {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(148, 163, 184, 0.3);
}

.admin-btn-danger {
  background: rgba(127, 29, 29, 0.12);
  border-color: rgba(248, 113, 113, 0.22);
  color: #fecaca;
}

.admin-btn-danger:hover,
.admin-btn-danger:focus-visible {
  background: rgba(127, 29, 29, 0.22);
  border-color: rgba(248, 113, 113, 0.34);
}

.admin-btn-primary,
.admin-btn-secondary,
.admin-btn-ghost,
.admin-btn-danger {
  box-shadow: none;
}

.admin-btn-primary,
.admin-btn-secondary,
.admin-btn-ghost,
.admin-btn-danger {
  text-transform: none;
  letter-spacing: 0;
}

.admin-login-form .admin-input::placeholder,
.admin-watch-form .admin-input::placeholder {
  color: #64748b;
}

.inventory-card {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 0.95rem;
  background: rgba(15, 23, 42, 0.92);
  overflow: hidden;
}

.inventory-card-media {
  min-height: 100%;
  background: rgba(2, 6, 23, 0.7);
}

.inventory-card-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.inventory-card-body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.inventory-card-topline,
.inventory-card-meta,
.inventory-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.inventory-card-topline {
  justify-content: space-between;
}

.inventory-card-body h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.05rem;
}

.inventory-card-body p {
  margin: 0;
  color: #94a3b8;
}

.inventory-ref {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.inventory-card-meta {
  color: #94a3b8;
  font-size: 0.84rem;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.admin-status-pill.is-sale {
  background: rgba(29, 78, 216, 0.16);
  border-color: rgba(96, 165, 250, 0.28);
  color: #bfdbfe;
}

.admin-status-pill.is-sold {
  background: rgba(82, 82, 91, 0.24);
  border-color: rgba(161, 161, 170, 0.22);
  color: #e4e4e7;
}

.admin-login-submit {
  width: 100%;
}

.admin-inventory-list {
  display: grid;
  gap: 0.9rem;
}


.manifesto {
  background: var(--white);
}

.manifesto-inner {
  max-width: 70ch;
  display: grid;
  gap: 1rem;
}

.house-points {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.steps {
  background: #eef1eb;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.steps-grid article {
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.25rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  padding: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.step-number {
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green-600);
}

.contact {
  background: var(--white);
}

.contact-inner {
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.3rem;
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.2rem, 2vw, 1.9rem);
}

.services-hero .poster-hero-overlay {
  background:
    linear-gradient(112deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 78% 22%, rgba(143, 207, 159, 0.18), transparent 42%);
}

.services-hero {
  min-height: 96vh;
}

.services-hero .poster-hero-content {
  max-width: 64rem;
  gap: 0.95rem;
  padding-block: clamp(9.2rem, 15vh, 12rem) clamp(4rem, 9vh, 6.2rem);
}

.services-hero .poster-hero-content h1 {
  font-size: clamp(2.7rem, 1.3rem + 5.2vw, 5.4rem);
  line-height: 1;
}

.services-hero .poster-hero-content p {
  max-width: 42ch;
  font-size: clamp(1.08rem, 0.92rem + 0.48vw, 1.36rem);
}

.services-experience {
  background:
    radial-gradient(circle at 16% 8%, rgba(8, 49, 28, 0.08), transparent 40%),
    #f4f4f0;
  padding-block: clamp(5rem, 8vw, 8.6rem);
}

.services-shell {
  border: 1px solid var(--glass-border-dark);
  background: linear-gradient(150deg, var(--glass-bg-strong), var(--glass-bg-soft));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.08);
  border-radius: 1.55rem;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.3fr);
  gap: clamp(1.4rem, 3vw, 3.1rem);
  padding: clamp(1.5rem, 3vw, 3.2rem);
}

.services-nav {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.services-nav h2 {
  font-size: clamp(2rem, 1.35rem + 1.9vw, 3.15rem);
  line-height: 1.02;
}

.services-nav > p {
  max-width: 39ch;
  font-size: 1.02rem;
  color: rgba(11, 40, 25, 0.82);
}

.services-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
  margin-top: 1rem;
}

.service-option {
  appearance: none;
  border: 1px solid rgba(11, 40, 25, 0.14);
  border-radius: 1rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  color: var(--green-900);
  padding: 1.15rem 1.2rem;
  text-align: left;
  display: grid;
  gap: 0.32rem;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-option-index {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11, 40, 25, 0.58);
}

.service-option-title {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 600;
}

.service-option-note {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(11, 40, 25, 0.74);
}

.service-option:hover,
.service-option:focus-visible,
.service-option.is-active {
  background: #0f2f1f;
  color: #e8f4eb;
  border-color: var(--green-900);
  outline: none;
  transform: translateY(-1px);
}

.service-option:hover .service-option-index,
.service-option:focus-visible .service-option-index,
.service-option.is-active .service-option-index,
.service-option:hover .service-option-note,
.service-option:focus-visible .service-option-note,
.service-option.is-active .service-option-note {
  color: rgba(232, 244, 235, 0.82);
}

.services-detail {
  background: transparent;
}

.service-panel {
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.2rem;
  padding: clamp(1.45rem, 3vw, 3rem);
  display: grid;
  gap: 1rem;
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.service-panel-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.67rem;
  color: rgba(11, 40, 25, 0.62);
}

.service-panel h3 {
  margin: 0;
  font-size: clamp(1.85rem, 1.1rem + 1.55vw, 2.75rem);
  line-height: 1.03;
}

.service-panel > p {
  margin: 0;
  max-width: 58ch;
  font-size: 1.02rem;
  color: rgba(11, 40, 25, 0.84);
}

.service-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 0.35rem;
}

.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.service-points li {
  border-left: 1px solid rgba(11, 40, 25, 0.25);
  padding: 0.12rem 0 0.12rem 0.8rem;
  line-height: 1.45;
}

.service-panel-aside {
  border: 1px solid var(--glass-border-dark);
  border-radius: 1rem;
  background: linear-gradient(132deg, rgba(12, 46, 29, 0.08), rgba(12, 46, 29, 0.02));
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.56rem;
}

.service-panel-aside p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.63rem;
  color: rgba(11, 40, 25, 0.62);
}

.service-panel-aside strong {
  font-size: 1.14rem;
  line-height: 1.28;
  font-weight: 600;
}

.services-contact {
  background: #f4f4f0;
  padding-block: clamp(5rem, 8vw, 8.2rem);
}

.services-contact-inner {
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.55rem;
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.35rem, 2.6vw, 2.4rem);
  padding: clamp(1.5rem, 2.8vw, 3rem);
  box-shadow: 0 34px 74px rgba(0, 0, 0, 0.08);
}

.services-contact-copy {
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

.services-contact-copy h2 {
  font-size: clamp(1.9rem, 1.16rem + 1.6vw, 2.7rem);
  line-height: 1.04;
}

.services-contact .contact-form {
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.05rem;
  padding: 1.25rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
}

.services-success {
  margin-top: 0.65rem;
  border: 1px solid rgba(16, 109, 52, 0.24);
  background: rgba(16, 109, 52, 0.08);
  color: #0d5d31;
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
}

.services-hero-blank {
  background:
    radial-gradient(circle at 18% 22%, rgba(20, 76, 48, 0.08), transparent 44%),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.75), transparent 30%),
    #f5f5f1;
  padding-block: clamp(9.2rem, 15vh, 12.6rem) clamp(4.1rem, 8vh, 6.2rem);
}

.services-hero-inner {
  max-width: 66rem;
  display: grid;
  gap: 0.9rem;
}

.services-hero-inner h1 {
  font-size: clamp(2.5rem, 1.3rem + 4.7vw, 5rem);
  line-height: 1;
}

.services-hero-inner p {
  max-width: 50ch;
  font-size: clamp(1.03rem, 0.92rem + 0.35vw, 1.28rem);
  color: rgba(11, 40, 25, 0.84);
}

.services-hero-meta {
  margin-top: 0.42rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.services-hero-meta span {
  border: 1px solid rgba(11, 40, 25, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(11, 40, 25, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.36rem 0.7rem;
}

.services-sticky-section {
  background: #f5f5f1;
  padding-block: clamp(3.8rem, 7vw, 6.4rem) clamp(5rem, 9vw, 8rem);
}

.services-sticky-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.6rem, 3.3vw, 4.2rem);
  align-items: start;
}

.services-sticky-nav {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: grid;
  gap: 0.92rem;
  padding: 1.1rem;
  border: 1px solid rgba(11, 40, 25, 0.16);
  border-radius: 1.35rem;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.07);
}

.services-sticky-head {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding-bottom: 0.9rem;
}

.services-sticky-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(11, 40, 25, 0.22), rgba(11, 40, 25, 0.04));
}

.services-nav-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  color: rgba(11, 40, 25, 0.58);
}

.services-sticky-counter {
  display: grid;
  gap: 0.04rem;
}

.services-sticky-counter span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.95;
  color: var(--green-900);
}

.services-sticky-counter small {
  font-size: 0.82rem;
  color: rgba(11, 40, 25, 0.7);
}

.services-sticky-progress {
  margin-top: 0.22rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(11, 40, 25, 0.13);
  overflow: hidden;
}

.services-sticky-progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #153f29, #2d7a52);
  transition: width 250ms ease;
}

.services-nav-link {
  appearance: none;
  position: relative;
  border: 1px solid rgba(11, 40, 25, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-900);
  display: grid;
  gap: 0.22rem;
  text-align: left;
  padding: 0.86rem 0.9rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.services-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.18rem;
  background: rgba(11, 40, 25, 0.14);
  transition: background-color 170ms ease;
}

.services-nav-link span {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: rgba(11, 40, 25, 0.56);
}

.services-nav-link strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.services-nav-link small {
  font-size: 0.83rem;
  color: rgba(11, 40, 25, 0.72);
}

.services-nav-link:hover,
.services-nav-link:focus-visible,
.services-nav-link.is-active {
  background: #103222;
  border-color: #103222;
  color: #e6f3ea;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 12px 28px rgba(16, 50, 34, 0.22);
  outline: none;
}

.services-nav-link:hover::before,
.services-nav-link:focus-visible::before,
.services-nav-link.is-active::before {
  background: rgba(230, 243, 234, 0.88);
}

.services-nav-link:hover span,
.services-nav-link:focus-visible span,
.services-nav-link.is-active span,
.services-nav-link:hover small,
.services-nav-link:focus-visible small,
.services-nav-link.is-active small {
  color: rgba(230, 243, 234, 0.8);
}

.services-story {
  display: grid;
  gap: 2.6rem;
}

.services-story-block {
  min-height: 94vh;
  display: flex;
  align-items: center;
}

.services-story-card {
  width: 100%;
  border: 1px solid rgba(11, 40, 25, 0.16);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.065);
  padding: clamp(1.4rem, 2.6vw, 2.6rem);
  display: grid;
  gap: 0.86rem;
  transform: translateY(14px);
  opacity: 0.78;
  transition: transform 260ms ease, opacity 260ms ease, box-shadow 260ms ease;
}

.services-story-block.is-active .services-story-card {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.08);
}

.services-story-index {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11, 40, 25, 0.55);
}

.services-story-card h2 {
  margin: 0;
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  line-height: 1;
}

.services-story-card p {
  margin: 0;
  max-width: 60ch;
  color: rgba(11, 40, 25, 0.83);
}

.services-story-card ul {
  margin: 0.28rem 0 0;
  padding-left: 1.12rem;
  display: grid;
  gap: 0.5rem;
}

.services-story-card li::marker {
  color: rgba(11, 40, 25, 0.55);
}

.services-story-goal {
  margin-top: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(11, 40, 25, 0.12);
}

.services-contact-section {
  background: #f5f5f1;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.services-contact-wrap {
  border: 1px solid rgba(11, 40, 25, 0.16);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.07);
  padding: clamp(1.2rem, 2.3vw, 2.3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.services-form {
  border: 1px solid rgba(11, 40, 25, 0.14);
  border-radius: 1rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.66);
}

@media (prefers-reduced-motion: reduce) {
  .services-nav-link,
  .services-nav-link::before,
  .services-story-card,
  .services-sticky-progress span {
    transition: none;
  }

  .services-story-card {
    transform: none;
    opacity: 1;
  }
}

.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid var(--line);
}

.footer-light {
  background: var(--green-900);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-link {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-credit {
  flex-basis: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.24em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.product-page {
  background: var(--white);
  padding-block: clamp(3.3rem, 5vw, 5.8rem);
}

.product-page.product-page-no-hero {
  padding-top: clamp(6.6rem, 10vw, 8.2rem);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 3.4rem);
  align-items: start;
}

.product-slider .watch-slides {
  aspect-ratio: 1 / 1;
}

.product-details {
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.3rem;
  padding: 1.05rem;
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  display: grid;
  gap: 0.85rem;
}

.product-ref {
  color: rgba(11, 40, 25, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.product-price {
  color: var(--green-900);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-price.is-sold {
  color: var(--green-700);
}

.product-description {
  max-width: 58ch;
}

.product-specs {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.product-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-success {
  margin-bottom: 1rem;
  border: 1px solid rgba(31, 91, 61, 0.25);
  background: rgba(31, 91, 61, 0.08);
  color: var(--green-900);
  padding: 0.65rem 0.8rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-block: 0.9rem;
}

.contact-modal.is-open {
  display: block;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 2rem));
  margin: 0 auto;
  background: linear-gradient(145deg, var(--glass-bg-strong), var(--glass-bg-soft));
  border: 1px solid var(--glass-border-dark);
  border-radius: 1.2rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
  max-height: calc(100dvh - 1.8rem);
  overflow-y: auto;
}

.contact-close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--green-900);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.9rem;
  color: var(--green-900);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(11, 40, 25, 0.2);
  border-radius: 0.82rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  font: inherit;
  padding: 0.65rem 0.7rem;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form select {
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11, 40, 25, 0.42);
  box-shadow:
    0 0 0 1px rgba(11, 40, 25, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .collection-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout,
  .hero-home-grid,
  .editorial-grid,
  .house-grid,
  .catalogue-grid,
  .admin-layout,
  .services-contact-inner,
  .services-shell,
  .service-panel-grid {
    grid-template-columns: 1fr;
  }

  .services-sticky-grid {
    grid-template-columns: 1fr;
  }

  .services-sticky-nav {
    position: static;
    top: auto;
  }

  .services-story-block {
    min-height: 72vh;
  }

  .hero-visual {
    min-height: 25rem;
    max-width: 42rem;
  }

  .hero-home-grid {
    padding-block: 6.4rem 4.1rem;
  }

  .hero-frame-main {
    right: clamp(0.6rem, 2vw, 1.2rem);
    width: 74%;
  }

  .hero-frame-side {
    width: 42%;
  }

  .scroll-hero-title-line {
    font-size: clamp(2.3rem, 1.15rem + 4.45vw, 4.35rem);
  }

  .scroll-hero-date {
    font-size: clamp(1.05rem, 0.86rem + 1vw, 1.6rem);
  }

  .services-shell {
    padding: 1.25rem;
    gap: 1rem;
  }

  .services-contact-inner {
    padding: 1.25rem;
  }

  .admin-form-grid,
  .admin-stats-grid,
  .inventory-card {
    grid-template-columns: 1fr;
  }

  .inventory-card-body {
    padding: 1rem;
  }

  .admin-console-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .intro-enter {
    top: 68%;
  }

  .container {
    width: min(1200px, calc(100% - 1.6rem));
  }

  .topbar-inner {
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 0.16rem;
    padding-block: 0.65rem;
    position: relative;
  }

  .hamburger {
    display: inline-flex;
  }

  .topnav {
    position: absolute;
    top: 100%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.18rem;
    width: 100vw;
    padding: 0.55rem 1rem 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 22, 13, 0.96);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -0.35rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .topbar.nav-open .topnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .topnav a {
    width: 100%;
    padding: 0.52rem 0;
    letter-spacing: 0.18em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .topnav a:last-child {
    border-bottom: 0;
  }

  .admin-topbar.topbar.topbar-solid {
    background: rgba(250, 250, 250, 0.95);
  }

  .admin-auth-main,
  .admin-console-main {
    padding-top: 6.3rem;
  }

  .admin-auth-main {
    padding-inline: 0.8rem;
  }

  .admin-auth-card,
  .admin-card,
  .admin-stat-card,
  .admin-session-chip {
    border-radius: 0.9rem;
  }

  .admin-card,
  .admin-stat-card {
    padding: 1rem;
  }

  .admin-panel-header,
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-topbar-actions {
    min-width: auto;
  }

  .hero,
  .subhero {
    min-height: 82vh;
  }

  .hero-content,
  .subhero-content {
    padding-block: 9.4rem 4rem;
  }

  .hero-home-grid {
    padding-block: 5.8rem 3rem;
    align-items: start;
  }

  .hero-home {
    min-height: 110vh;
  }

  .hero-home-minimal-content {
    gap: 0.8rem;
    padding-block: 6.6rem 2.8rem;
  }

  .hero-home-minimal-content h1 {
    font-size: clamp(2.95rem, 1.55rem + 7.1vw, 4.95rem);
  }

  .hero-home-minimal-content p {
    max-width: 30ch;
    font-size: clamp(1.04rem, 0.92rem + 0.9vw, 1.34rem);
  }

  .hero-home-minimal-content .btn {
    padding: 1.02rem 1.85rem;
    font-size: 0.86rem;
  }

  .hero-home-minimal-content .hero-glass-btn {
    min-width: 16.2rem;
    font-size: 0.95rem;
    padding: 1.04rem 2rem;
  }

  .hero-content-home {
    padding-left: 0.25rem;
    padding-right: 0;
  }

  .hero-content-home .kicker {
    display: none;
  }

  .poster-hero {
    min-height: 74vh;
  }

  .poster-hero-content {
    gap: 0.5rem;
    padding-block: 7.2rem 2.9rem;
  }

  .poster-hero-content h1 {
    font-size: clamp(2rem, 1.05rem + 5vw, 3.25rem);
  }

  .poster-hero-content p {
    max-width: 28ch;
  }

  .scroll-hero {
    --hero-media-width: 300px;
    --hero-media-height: 400px;
  }

  .scroll-hero-center {
    min-height: 100dvh;
    padding-top: 5.15rem;
    padding-bottom: 1.4rem;
  }

  .scroll-hero-title {
    padding-inline: 0.2rem;
    gap: 0.12rem;
  }

  .scroll-hero-title-line {
    font-size: clamp(2rem, 1.08rem + 5.3vw, 3.45rem);
  }

  .scroll-hero-media-frame {
    max-height: 80vh;
  }

  .scroll-hero-meta {
    top: calc(50% + (min(var(--hero-media-height), 80vh) * 0.5) + 0.7rem);
  }

  .scroll-hero-date {
    font-size: 1.02rem;
  }

  .scroll-hero-scroll {
    margin-top: 0.12rem;
    font-size: 0.76rem;
  }

  .hero-visual {
    min-height: 20rem;
    max-width: none;
  }

  .hero-frame-main {
    right: 0.55rem;
    width: 78%;
  }

  .hero-frame-side {
    width: 48%;
    height: 66%;
    bottom: 1.2rem;
  }

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

  .services-option-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-blank {
    padding-block: 7.1rem 2.8rem;
  }

  .services-hero-inner {
    gap: 0.65rem;
  }

  .services-hero-inner h1 {
    font-size: clamp(2rem, 1.2rem + 4.3vw, 3rem);
  }

  .services-hero-inner p {
    font-size: 0.96rem;
  }

  .services-sticky-section {
    padding-block: 2.7rem 3.2rem;
  }

  .services-sticky-grid {
    gap: 0.9rem;
  }

  .services-sticky-nav {
    padding: 0.75rem;
    border-radius: 1rem;
    gap: 0.55rem;
  }

  .services-nav-link {
    padding: 0.74rem 0.78rem;
  }

  .services-nav-link strong {
    font-size: 1.05rem;
  }

  .services-nav-link small {
    font-size: 0.78rem;
  }

  .services-story {
    gap: 1rem;
  }

  .services-story-block {
    min-height: auto;
  }

  .services-story-card {
    padding: 1rem;
    border-radius: 1rem;
    gap: 0.62rem;
  }

  .services-story-card h2 {
    font-size: clamp(1.6rem, 1rem + 2.8vw, 2.05rem);
  }

  .services-story-card p {
    font-size: 0.95rem;
  }

  .services-story-card ul {
    gap: 0.34rem;
  }

  .services-contact-section {
    padding-block: 3rem;
  }

  .services-contact-wrap {
    grid-template-columns: 1fr;
    padding: 0.95rem;
    border-radius: 1rem;
    gap: 0.9rem;
  }

  .services-form {
    padding: 0.82rem;
  }

  .services-hero {
    min-height: 86vh;
  }

  .services-hero .poster-hero-content {
    padding-block: 7.1rem 3rem;
    gap: 0.72rem;
  }

  .services-hero .poster-hero-content h1 {
    font-size: clamp(2rem, 1.16rem + 4.5vw, 3.15rem);
  }

  .services-hero .poster-hero-content p {
    font-size: 1rem;
    max-width: 28ch;
  }

  .services-experience,
  .services-contact {
    padding-block: 3.3rem;
  }

  .services-shell {
    padding: 0.9rem;
  }

  .services-nav h2 {
    font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.1rem);
  }

  .service-option {
    padding: 0.88rem 0.9rem;
    gap: 0.2rem;
  }

  .service-option-title {
    font-size: 1.14rem;
  }

  .service-option-note {
    font-size: 0.84rem;
  }

  .service-panel {
    padding: 1rem;
    gap: 0.72rem;
  }

  .service-panel h3 {
    font-size: clamp(1.42rem, 1rem + 2.2vw, 1.86rem);
  }

  .service-panel > p {
    font-size: 0.96rem;
  }

  .service-panel-aside {
    padding: 0.9rem;
  }

  .services-contact-inner {
    padding: 1rem;
    gap: 0.95rem;
  }

  .services-contact .contact-form {
    padding: 0.9rem;
  }

  .collection-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .collection-head-link {
    margin-bottom: 0.85rem;
  }

  .product-slider .watch-slides {
    aspect-ratio: 4 / 3;
  }

  .contact-modal {
    padding-block: 0.4rem;
  }

  .contact-modal-panel {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 0.8rem);
    padding: 0.95rem;
  }

  .contact-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
  }

  .footer-credit {
    text-align: left;
  }

  .slide-nav {
    opacity: 1;
    width: 1.95rem;
    height: 1.95rem;
  }
}

.services-premium-page {
  background: #f2f0ea;
}

.services-premium-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 24%, rgba(149, 118, 58, 0.13), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.76), transparent 30%),
    linear-gradient(180deg, #f5f3ee 0%, #efede6 100%);
  padding-block: clamp(8.8rem, 15vh, 12rem) clamp(3rem, 6.5vh, 5rem);
}

.services-premium-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 20, 20, 0.2), transparent);
}

.services-premium-hero-inner {
  display: grid;
  gap: 0.95rem;
  max-width: 60rem;
}

.services-premium-title {
  font-family: "GFS Didot", var(--font-display);
  font-size: clamp(2.9rem, 1.4rem + 5vw, 5.45rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #121212;
  max-width: none;
}

.services-premium-subtitle {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(1.08rem, 0.95rem + 0.35vw, 1.28rem);
  color: rgba(18, 18, 18, 0.9);
}

.services-premium-copy {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(0.98rem, 0.86rem + 0.25vw, 1.1rem);
  color: rgba(18, 18, 18, 0.74);
}

.services-divider-section {
  background: linear-gradient(180deg, #efede6 0%, #f2f0ea 100%);
  padding-block: clamp(1.3rem, 3vh, 2.2rem) clamp(0.8rem, 2.6vh, 1.8rem);
}

.services-divider-wrap {
  --divider-progress: 0;
  display: grid;
  justify-items: center;
  gap: 0.52rem;
  opacity: 0.72;
}

.services-divider-line {
  width: 1px;
  height: clamp(5.8rem, 13vh, 9.6rem);
  background: linear-gradient(to bottom, rgba(36, 36, 36, 0), rgba(36, 36, 36, 0.75), rgba(36, 36, 36, 0));
  transform-origin: center top;
  transform: scaleY(calc(0.06 + (var(--divider-progress) * 0.94)));
  opacity: calc(0.2 + (var(--divider-progress) * 0.72));
  transition: transform 140ms linear, opacity 160ms linear;
}

.services-divider-dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(137, 107, 51, 0.72);
  box-shadow: 0 0 0 0.22rem rgba(137, 107, 51, 0.12);
  opacity: calc(0.42 + (var(--divider-progress) * 0.48));
  transform: scale(calc(0.72 + (var(--divider-progress) * 0.28)));
  transition: opacity 180ms linear, transform 180ms linear;
}

.services-divider-caption {
  margin: 0;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(18, 18, 18, 0.53);
}

.services-divider-wrap.is-revealed .services-divider-line {
  opacity: calc(0.26 + (var(--divider-progress) * 0.66));
}

.services-divider-wrap.is-revealed .services-divider-dot {
  opacity: 0.9;
  transform: scale(1);
}

.services-cards-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.5), transparent 26%),
    linear-gradient(180deg, #f2f0ea 0%, #ece9e2 100%);
  padding-block: clamp(2rem, 5vh, 3.2rem) clamp(4.2rem, 8.6vh, 7.2rem);
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 780ms ease, transform 780ms ease;
}

.services-cards-section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.services-cards-shell {
  max-width: 76rem;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.92rem, 1.9vw, 1.45rem);
}

.service-photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.2rem;
  aspect-ratio: 15 / 10;
  min-height: clamp(16.5rem, 32vw, 23rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 540ms cubic-bezier(0.2, 0.68, 0.2, 1), box-shadow 540ms ease;
}

.service-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1600ms cubic-bezier(0.16, 0.58, 0.2, 1);
}

.service-photo-card .service-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.64) 10%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(120deg, rgba(188, 147, 67, 0.12), transparent 54%);
  transition: background 760ms ease;
}

.service-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.service-photo-title {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1.2rem, 2.6vw, 1.8rem);
  z-index: 2;
  margin: 0;
  color: #f7f5ef;
  font-family: "GFS Didot", var(--font-display);
  font-size: clamp(1.7rem, 1.15rem + 1.9vw, 2.9rem);
  line-height: 0.98;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  transition: transform 520ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.service-photo-discover {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(0.9rem, 1.9vw, 1.25rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(250, 247, 239, 0.9);
  opacity: 0;
  transform: translateY(0.45rem);
  transition: opacity 420ms ease, transform 420ms ease;
}

.service-photo-discover span {
  display: inline-block;
  transition: transform 420ms ease;
}

.service-photo-card:hover,
.service-photo-card:focus-visible {
  transform: translateY(-0.12rem);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  outline: none;
}

.service-photo-card:hover img,
.service-photo-card:focus-visible img {
  transform: scale(1.055);
}

.service-photo-card:hover .service-photo-overlay,
.service-photo-card:focus-visible .service-photo-overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.77) 8%, rgba(0, 0, 0, 0.34) 60%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(120deg, rgba(188, 147, 67, 0.16), transparent 54%);
}

.service-photo-card:hover .service-photo-title,
.service-photo-card:focus-visible .service-photo-title {
  transform: translateY(-0.32rem);
}

.service-photo-card:hover .service-photo-discover,
.service-photo-card:focus-visible .service-photo-discover {
  opacity: 1;
  transform: translateY(0);
}

.service-photo-card:hover .service-photo-discover span,
.service-photo-card:focus-visible .service-photo-discover span {
  transform: translateX(0.1rem);
}

@media (max-width: 1040px) {
  .services-cards-grid {
    gap: 0.9rem;
  }

  .service-photo-card {
    border-radius: 1rem;
    min-height: clamp(14rem, 38vw, 18rem);
  }
}

@media (max-width: 760px) {
  .services-premium-hero {
    padding-block: 7rem 2.4rem;
  }

  .services-premium-hero-inner {
    gap: 0.72rem;
  }

  .services-premium-subtitle,
  .services-premium-copy {
    max-width: 32ch;
  }

  .services-divider-section {
    padding-block: 0.8rem 1rem;
  }

  .services-cards-section {
    padding-block: 1.3rem 3rem;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .service-photo-card {
    aspect-ratio: 4 / 3;
    min-height: 13.6rem;
  }

  .service-photo-title {
    bottom: 2.35rem;
    right: 1rem;
    font-size: clamp(1.45rem, 1.05rem + 3vw, 2rem);
    line-height: 1.02;
  }

  .service-photo-discover {
    left: 1rem;
    bottom: 0.82rem;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }
}

@media (hover: none) {
  .service-photo-discover {
    opacity: 0.88;
    transform: translateY(0);
  }

  .service-photo-card:hover,
  .service-photo-card:focus-visible {
    transform: none;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
  }

  .service-photo-card:hover img,
  .service-photo-card:focus-visible img {
    transform: scale(1);
  }

  .service-photo-card:hover .service-photo-overlay,
  .service-photo-card:focus-visible .service-photo-overlay {
    background:
      linear-gradient(to top, rgba(0, 0, 0, 0.64) 10%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.24) 100%),
      linear-gradient(120deg, rgba(188, 147, 67, 0.12), transparent 54%);
  }

  .service-photo-card:hover .service-photo-title,
  .service-photo-card:focus-visible .service-photo-title {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-divider-line,
  .services-divider-dot,
  .services-cards-section,
  .service-photo-card,
  .service-photo-card img,
  .service-photo-card .service-photo-overlay,
  .service-photo-title,
  .service-photo-discover,
  .service-photo-discover span {
    transition: none;
    animation: none;
  }

  .services-divider-line {
    transform: scaleY(1);
    opacity: 0.9;
  }

  .services-divider-dot {
    opacity: 0.9;
    transform: scale(1);
  }

  .services-cards-section {
    opacity: 1;
    transform: none;
  }

  .service-photo-card:hover,
  .service-photo-card:focus-visible {
    transform: none;
  }

  .service-photo-card:hover img,
  .service-photo-card:focus-visible img {
    transform: none;
  }

  .service-photo-card:hover .service-photo-title,
  .service-photo-card:focus-visible .service-photo-title {
    transform: none;
  }
}

.services-route-leaving {
  overflow: hidden;
}

.service-route-veil,
.service-route-ghost,
.service-route-entry-ghost {
  position: fixed;
  z-index: 170;
  pointer-events: none;
}

.service-route-veil {
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.24);
  transition: opacity 560ms ease;
}

.service-route-veil.is-visible {
  opacity: 1;
}

.service-route-ghost {
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  transition:
    left 560ms cubic-bezier(0.2, 0.7, 0.2, 1),
    top 560ms cubic-bezier(0.2, 0.7, 0.2, 1),
    width 560ms cubic-bezier(0.2, 0.7, 0.2, 1),
    height 560ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-radius 560ms ease,
    filter 560ms ease;
}

.service-route-ghost.is-expanding {
  left: 0 !important;
  top: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0;
  filter: brightness(0.84);
}

.service-route-entry-ghost {
  left: 0;
  top: 0;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.9);
  will-change: left, top, width, height, border-radius, opacity, filter;
  transition:
    left 620ms cubic-bezier(0.2, 0.68, 0.2, 1),
    top 620ms cubic-bezier(0.2, 0.68, 0.2, 1),
    width 620ms cubic-bezier(0.2, 0.68, 0.2, 1),
    height 620ms cubic-bezier(0.2, 0.68, 0.2, 1),
    border-radius 620ms cubic-bezier(0.2, 0.68, 0.2, 1),
    opacity 240ms ease,
    filter 620ms ease;
}

.service-route-entry-ghost-morph {
  position: fixed;
  z-index: 170;
  pointer-events: none;
}

.service-route-entry-ghost-morph.is-morphing {
  filter: brightness(0.98);
}

.service-route-entry-ghost.is-fading {
  opacity: 0;
  transition-delay: 0ms;
}

.service-detail-page {
  background: #f1eee8;
}

.service-detail-hero {
  position: relative;
  min-height: min(96vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #f8f6ef;
  overflow: clip;
}

.service-detail-hero-media {
  position: absolute;
  inset: 0;
}

.service-detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1300ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.service-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 80% 20%, rgba(188, 147, 67, 0.16), transparent 42%);
}

.service-detail-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  padding-block: clamp(8.8rem, 14vh, 11.5rem) clamp(3rem, 7vh, 4.8rem);
}

.service-detail-hero-content h1 {
  max-width: 12ch;
  font-family: "GFS Didot", var(--font-display);
  font-size: clamp(2.8rem, 1.35rem + 5.2vw, 5.2rem);
  line-height: 0.95;
}

.service-detail-hero-subtitle {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.1rem, 0.95rem + 0.4vw, 1.32rem);
  color: rgba(248, 246, 239, 0.9);
}

.service-detail-hero-copy {
  margin: 0;
  max-width: 56ch;
  color: rgba(248, 246, 239, 0.8);
}

.service-detail-hero-content [data-hero-line] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.service-detail-hero-content [data-hero-line]:nth-child(1) {
  transition-delay: 120ms;
}

.service-detail-hero-content [data-hero-line]:nth-child(2) {
  transition-delay: 200ms;
}

.service-detail-hero-content [data-hero-line]:nth-child(3) {
  transition-delay: 280ms;
}

.service-detail-hero-content [data-hero-line]:nth-child(4) {
  transition-delay: 360ms;
}

.service-detail-hero-content [data-hero-line]:nth-child(5) {
  transition-delay: 460ms;
}

.service-detail-page.is-ready .service-detail-hero-media img {
  transform: scale(1);
}

.service-detail-page.is-ready .service-detail-hero-content [data-hero-line] {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-cta {
  margin-top: 0.35rem;
  justify-self: start;
  gap: 0.45rem;
}

.service-detail-cta span,
.service-submit span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 260ms ease;
}

.service-detail-cta:hover,
.service-detail-cta:focus-visible,
.service-submit:hover,
.service-submit:focus-visible {
  transform: translateY(-1px);
}

.service-detail-cta:hover span,
.service-detail-cta:focus-visible span,
.service-submit:hover span,
.service-submit:focus-visible span {
  transform: translateX(2px);
}

.service-detail-section {
  padding-block: clamp(3.5rem, 7vw, 6.6rem);
}

.service-detail-intro {
  background: #f3f1ea;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(1rem, 2.4vw, 2.2rem);
  align-items: center;
}

.service-detail-grid h2,
.service-detail-steps h2,
.service-detail-benefits h2,
.service-detail-info h2,
.service-form-copy h2 {
  margin-bottom: 0.75rem;
}

.service-detail-grid p {
  color: rgba(18, 18, 18, 0.82);
}

.service-intro-points {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.48rem;
}

.service-intro-points li::marker {
  color: rgba(18, 18, 18, 0.48);
}

.service-detail-image {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.13);
  margin: 0;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: clamp(16rem, 28vw, 24rem);
  transition: transform 520ms ease;
}

.service-detail-steps {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.6), transparent 32%),
    #eeebe4;
}

.service-timeline {
  --timeline-progress: 0;
  position: relative;
  margin-top: 1.55rem;
  padding-left: clamp(2.6rem, 4.2vw, 3.7rem);
  display: grid;
  gap: 1rem;
}

.service-timeline::before,
.service-timeline::after {
  content: "";
  position: absolute;
  left: clamp(1.2rem, 2.15vw, 1.95rem);
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
}

.service-timeline::before {
  background: rgba(22, 22, 22, 0.16);
}

.service-timeline::after {
  bottom: auto;
  height: calc((100% - 0.8rem) * var(--timeline-progress));
  background: linear-gradient(to bottom, rgba(126, 97, 43, 0.88), rgba(22, 22, 22, 0.85));
  transition: height 150ms linear;
}

.service-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.service-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-step-number {
  margin: 0;
  font-family: "GFS Didot", var(--font-display);
  font-size: clamp(1.55rem, 1.2rem + 1vw, 2.25rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: rgba(22, 22, 22, 0.38);
  transition: color 340ms ease;
}

.service-step.is-active .service-step-number {
  color: rgba(22, 22, 22, 0.86);
}

.service-step-copy {
  border: 1px solid rgba(22, 22, 22, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
  padding: 0.95rem 1rem;
}

.service-step-copy h3 {
  margin: 0 0 0.3rem;
}

.service-step-copy p {
  margin: 0;
  color: rgba(22, 22, 22, 0.78);
}

.service-detail-benefits {
  background: #f3f1ea;
}

.service-benefits-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.2rem);
}

.service-benefit-item {
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.service-benefit-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-benefit-item h3 {
  margin: 0 0 0.32rem;
}

.service-benefit-item p {
  margin: 0;
  color: rgba(22, 22, 22, 0.75);
}

.service-detail-info {
  background: #ece8e0;
}

.service-info-panel {
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.08);
  padding: clamp(1.2rem, 2.2vw, 2rem);
}

.service-info-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.service-info-list li {
  border-left: 1px solid rgba(22, 22, 22, 0.24);
  padding: 0.15rem 0 0.15rem 0.75rem;
  color: rgba(22, 22, 22, 0.8);
}

.service-detail-form-section {
  background: #f3f0e9;
}

.service-form-wrap {
  border: 1px solid rgba(22, 22, 22, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.08);
  padding: clamp(1rem, 2.2vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.service-form-copy {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.service-contact-form {
  border: 1px solid rgba(22, 22, 22, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem;
}

.service-contact-form label {
  font-size: 0.88rem;
  color: rgba(20, 20, 20, 0.82);
}

.service-contact-form input:focus,
.service-contact-form textarea:focus {
  outline: none;
  border-color: rgba(22, 22, 22, 0.44);
  box-shadow:
    0 0 0 1px rgba(22, 22, 22, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-submit {
  margin-top: 0.2rem;
  gap: 0.4rem;
  justify-self: start;
}

.service-form-success {
  margin-top: 0.35rem;
  border: 1px solid rgba(18, 18, 18, 0.2);
  background: rgba(255, 255, 255, 0.54);
  color: rgba(18, 18, 18, 0.82);
  padding: 0.58rem 0.68rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.service-form-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .service-detail-grid,
  .service-form-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .service-detail-hero {
    min-height: 86vh;
  }

  .service-detail-hero-content {
    gap: 0.55rem;
    padding-block: 7rem 2.7rem;
  }

  .service-detail-hero-subtitle,
  .service-detail-hero-copy {
    max-width: 30ch;
  }

  .service-detail-section {
    padding-block: 2.8rem;
  }

  .service-timeline {
    padding-left: 1.95rem;
    gap: 0.75rem;
  }

  .service-timeline::before,
  .service-timeline::after {
    left: 0.8rem;
  }

  .service-step {
    gap: 0.64rem;
  }

  .service-step-copy {
    padding: 0.78rem 0.82rem;
  }

  .service-form-wrap {
    padding: 0.9rem;
    border-radius: 1rem;
  }

  .service-contact-form {
    padding: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-route-veil,
  .service-route-ghost,
  .service-route-entry-ghost,
  .service-detail-hero-media img,
  .service-detail-hero-content [data-hero-line],
  .service-timeline::after,
  .service-step,
  .service-benefit-item,
  .service-detail-cta span,
  .service-submit span,
  .service-form-success {
    transition: none;
    animation: none;
  }

  .service-detail-page .service-detail-hero-content [data-hero-line],
  .service-step,
  .service-benefit-item {
    opacity: 1;
    transform: none;
  }

  .service-step-number {
    color: rgba(22, 22, 22, 0.86);
  }
}

.about-brand-page {
  background: #f1eee7;
}

.about-brand-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 860ms ease, transform 860ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

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

.about-hero {
  position: relative;
  min-height: min(98vh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: clip;
  color: #f7f5ef;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1400ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 80% 20%, rgba(188, 147, 67, 0.16), transparent 42%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  padding-block: clamp(8.6rem, 14vh, 11.8rem) clamp(3rem, 7vh, 4.8rem);
}

.about-hero-content h1 {
  margin: 0;
  font-family: "GFS Didot", var(--font-display);
  font-size: clamp(2.9rem, 1.4rem + 5vw, 5.5rem);
  line-height: 0.95;
}

.about-hero-subtitle {
  margin: 0;
  max-width: 56ch;
  color: rgba(247, 245, 239, 0.9);
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.3rem);
}

.about-hero-signature {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247, 245, 239, 0.8);
}

.about-hero-cta {
  margin-top: 0.35rem;
  justify-self: start;
  gap: 0.45rem;
}

.about-hero-cta span,
.about-appointment-actions .btn span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 220ms ease;
}

.about-hero-content [data-hero-line] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.about-hero-content [data-hero-line]:nth-child(1) {
  transition-delay: 120ms;
}

.about-hero-content [data-hero-line]:nth-child(2) {
  transition-delay: 240ms;
}

.about-hero-content [data-hero-line]:nth-child(3) {
  transition-delay: 350ms;
}

.about-hero-content [data-hero-line]:nth-child(4) {
  transition-delay: 460ms;
}

.about-brand-page.is-ready .about-hero-media img {
  transform: scale(1);
}

.about-brand-page.is-ready .about-hero-content [data-hero-line] {
  opacity: 1;
  transform: translateY(0);
}

.about-hero-cta:hover span,
.about-hero-cta:focus-visible span,
.about-appointment-actions .btn:hover span,
.about-appointment-actions .btn:focus-visible span {
  transform: translateX(2px);
}

.about-section {
  padding-block: clamp(3.8rem, 7vw, 6.8rem);
}

.about-story {
  background: #f3f0e9;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.95fr);
  gap: clamp(1.15rem, 2.5vw, 2.35rem);
  align-items: center;
}

.about-story-grid article {
  display: grid;
  gap: 0.8rem;
}

.about-story-grid p {
  color: rgba(20, 20, 20, 0.82);
}

.about-story-media {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(16rem, 30vw, 24rem);
  object-fit: cover;
}

.about-signature {
  background: #ece8df;
}

.about-pillars {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}

.about-pillar {
  border: 1px solid rgba(20, 20, 20, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.68, 0.2, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

.about-pillar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-pillar h3 {
  margin: 0 0 0.32rem;
}

.about-pillar p {
  margin: 0;
  color: rgba(20, 20, 20, 0.74);
}

.about-pillar:hover,
.about-pillar:focus-within {
  transform: translateY(-2px);
  border-color: rgba(20, 20, 20, 0.3);
  background: rgba(255, 255, 255, 0.82);
}

.about-method {
  background: #f3f0e9;
}

.about-method-timeline {
  --method-progress: 0;
  position: relative;
  margin-top: 1.4rem;
  padding-left: clamp(2.5rem, 4vw, 3.6rem);
  display: grid;
  gap: 0.95rem;
}

.about-method-timeline::before,
.about-method-timeline::after {
  content: "";
  position: absolute;
  left: clamp(1.15rem, 2vw, 1.9rem);
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
}

.about-method-timeline::before {
  background: rgba(20, 20, 20, 0.17);
}

.about-method-timeline::after {
  bottom: auto;
  height: calc((100% - 0.7rem) * var(--method-progress));
  background: linear-gradient(to bottom, rgba(128, 99, 45, 0.9), rgba(20, 20, 20, 0.86));
  transition: height 150ms linear;
}

.about-method-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.about-method-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-method-number {
  margin: 0;
  font-family: "GFS Didot", var(--font-display);
  font-size: clamp(1.5rem, 1.15rem + 1.1vw, 2.2rem);
  line-height: 0.95;
  color: rgba(20, 20, 20, 0.38);
  transition: color 320ms ease;
}

.about-method-step.is-active .about-method-number {
  color: rgba(20, 20, 20, 0.88);
}

.about-method-copy {
  border: 1px solid rgba(20, 20, 20, 0.11);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.055);
  padding: 0.95rem 1rem;
}

.about-method-copy h3 {
  margin: 0 0 0.3rem;
}

.about-method-copy p {
  margin: 0;
  color: rgba(20, 20, 20, 0.78);
}

.about-trust {
  background: #ece8df;
}

.about-trust-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.7vw, 1.1rem);
}

.about-trust-item {
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.68, 0.2, 1),
    border-color 220ms ease;
}

.about-trust-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-trust-item:hover,
.about-trust-item:focus-within {
  border-color: rgba(20, 20, 20, 0.3);
}

.about-trust-item h3 {
  margin: 0 0 0.3rem;
}

.about-trust-item p {
  margin: 0;
  color: rgba(20, 20, 20, 0.76);
}

.about-appointment {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.44), transparent 28%),
    #f3f0e9;
}

.about-appointment-wrap {
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  padding: clamp(1rem, 2.2vw, 2rem);
  display: grid;
  gap: 1rem;
}

.about-appointment-copy {
  display: grid;
  gap: 0.62rem;
}

.about-appointment-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.about-appointment-meta li {
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 999px;
  padding: 0.52rem 0.72rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(20, 20, 20, 0.78);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.about-appointment-meta li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-appointment-mail {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.72);
}

@media (max-width: 1040px) {
  .about-story-grid,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-appointment-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: 84vh;
  }

  .about-hero-content {
    gap: 0.6rem;
    padding-block: 7rem 2.8rem;
  }

  .about-hero-subtitle {
    max-width: 30ch;
  }

  .about-hero-signature {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .about-section {
    padding-block: 3rem;
  }

  .about-method-timeline {
    padding-left: 1.95rem;
    gap: 0.75rem;
  }

  .about-method-timeline::before,
  .about-method-timeline::after {
    left: 0.8rem;
  }

  .about-method-step {
    gap: 0.64rem;
  }

  .about-method-copy {
    padding: 0.8rem 0.85rem;
  }

  .about-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-brand-page .reveal,
  .about-hero-media img,
  .about-hero-content [data-hero-line],
  .about-pillar,
  .about-trust-item,
  .about-method-step,
  .about-method-timeline::after,
  .about-appointment-meta li,
  .about-hero-cta span,
  .about-appointment-actions .btn span {
    transition: none;
    animation: none;
  }

  .about-brand-page .reveal,
  .about-brand-page .reveal.is-visible,
  .about-hero-content [data-hero-line],
  .about-pillar,
  .about-trust-item,
  .about-method-step,
  .about-appointment-meta li {
    opacity: 1;
    transform: none;
  }

  .about-brand-page .about-hero-media img {
    transform: scale(1);
  }

  .about-method-timeline {
    --method-progress: 1;
  }

  .about-method-number {
    color: rgba(20, 20, 20, 0.86);
  }
}
