:root {
  --black: #1a1a1a;
  --ink: #292929;
  --charcoal: #383838;
  --graphite: #4a4a4a;
  --paper: #f7f7f2;
  --mist: #ecebe6;
  --smoke: #8d8d8d;
  --silver: #cfcfcf;
  --white: #f7f7f2;
  --line: rgba(247, 247, 242, 0.16);
  --dark-line: rgba(20, 20, 20, 0.18);
  --max: 1180px;
  --hero-open: 0;
  --hero-stat-color: var(--black);
  --serif: "Playfair Display", Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  --sans: Inter, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(28, 28, 28, 0.48) 72%, transparent);
}

.brand img {
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: rgba(247, 247, 242, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a,
.footer a {
  transition: color 180ms ease;
}

.nav-links .active {
  color: #fff;
}

.nav-links a:hover,
.footer a:hover {
  color: #fff;
}

.nav-cta {
  min-width: 116px;
  padding: 11px 18px;
  border: 1px solid rgba(247, 247, 242, 0.45);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 247, 242, 0.42);
  background: rgba(247, 247, 242, 0.06);
  color: var(--white);
  padding: 0;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 96vh;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 132px clamp(22px, 6vw, 84px) 78px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("../img/luxury-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.9) 0%, rgba(28, 28, 28, 0.76) 35%, rgba(38, 38, 38, 0.24) 68%, rgba(20, 20, 20, 0.58) 100%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.08), var(--ink));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  text-align: center;
}

.hero-corner {
  position: absolute;
  z-index: 1;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  pointer-events: none;
  opacity: 0.88;
  transition: transform 80ms linear;
}

.hero-corner-top {
  top: 0;
  left: 0;
  background: rgba(247, 247, 242, 0.92);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate3d(calc(var(--hero-open) * -46%), calc(var(--hero-open) * -46%), 0);
}

.hero-corner-bottom {
  right: 0;
  bottom: 0;
  background: rgba(236, 235, 230, 0.86);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translate3d(calc(var(--hero-open) * 46%), calc(var(--hero-open) * 46%), 0);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: rgba(247, 247, 242, 0.7);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

.hero h1 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.hero-copy {
  width: min(590px, 100%);
  margin: 30px 0 0;
  color: rgba(247, 247, 242, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button.primary:hover {
  background: transparent;
  color: var(--white);
}

.button.dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.button.ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-stat {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 70px);
  bottom: 46px;
  width: min(250px, 38vw);
  padding-top: 16px;
  color: var(--hero-stat-color);
  border-top: 1px solid var(--hero-stat-color);
}

.hero-stat span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.9;
}

.hero-stat small {
  display: block;
  margin-top: 10px;
  color: inherit;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: clamp(84px, 11vw, 150px) clamp(22px, 5vw, 72px);
}

.services-intro {
  position: sticky;
  top: 0;
  z-index: 6;
  min-height: 52vh;
  display: grid;
  align-items: center;
}

.values-section {
  max-width: var(--max);
  margin: 0 auto;
}

.about-section,
.services-section,
.why-section {
  max-width: none;
  margin: 0;
}

.about-section {
  background: var(--paper);
  color: var(--black);
}

.services-section,
.why-section {
  background: var(--mist);
  color: var(--black);
}

.services-section.services-intro {
  color: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.2);
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.94) 0%, rgba(38, 38, 38, 0.84) 46%, rgba(26, 26, 26, 0.46) 100%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.24), rgba(26, 26, 26, 0.72)),
    url("../img/fragrance2.png") right center / auto 118% no-repeat,
    var(--charcoal);
}

.services-intro .section-heading {
  margin-bottom: 0;
}

.services-intro .section-kicker {
  color: rgba(247, 247, 242, 0.7);
}

.about-section .section-kicker,
.services-section .section-kicker,
.why-section .section-kicker,
.product-feature .section-kicker {
  color: rgba(26, 26, 26, 0.58);
}

.services-section.services-intro .section-kicker {
  color: rgba(247, 247, 242, 0.7);
}

.about-section .editorial-grid,
.about-section > .section-kicker,
.services-section .section-heading {
  max-width: var(--max);
  margin-inline: auto;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.editorial-grid h2,
.section-heading h2,
.feature-copy h2,
.why-intro h2,
.cta-strip h2 {
  font-size: clamp(2.4rem, 6vw, 6.5rem);
  letter-spacing: 0;
}

.copy-stack {
  color: rgba(247, 247, 242, 0.74);
  font-size: 1.04rem;
}

.about-section .copy-stack {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 56px);
  background: var(--charcoal);
  color: rgba(247, 247, 242, 0.78);
}

.about-section .copy-stack p {
  color: rgba(247, 247, 242, 0.78);
}

.copy-stack p:first-child {
  margin-top: 0;
}

.about-title-image {
  min-height: 360px;
  margin-top: clamp(34px, 6vw, 70px);
  background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.06), rgba(26, 26, 26, 0.2)), url("../img/fragrance2.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.12);
  filter: grayscale(1) contrast(1.04);
  transition: filter 520ms ease, transform 520ms ease;
  will-change: transform;
}

.about-title-image:hover {
  filter: grayscale(0) contrast(1.02);
}

.about-fade {
  min-height: clamp(90px, 15vw, 190px);
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(247, 247, 242, 0.92) 38%, rgba(247, 247, 242, 0) 100%);
  margin-bottom: calc(clamp(90px, 15vw, 190px) * -1);
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.image-statement {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: end start;
  padding: clamp(42px, 7vw, 86px);
  overflow: hidden;
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.cleaning-bg {
  background-image: linear-gradient(90deg, rgba(28, 28, 28, 0.78), rgba(38, 38, 38, 0.1)), url("../img/Dipone-cleaning.jpg");
}

.statement-inner {
  width: min(690px, 100%);
  border-left: 1px solid rgba(247, 247, 242, 0.65);
  padding-left: clamp(18px, 3vw, 32px);
}

.statement-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 5.7rem);
  line-height: 0.98;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
  margin-bottom: clamp(38px, 6vw, 76px);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.service-panel {
  --service-image: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.52fr) minmax(250px, 0.8fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: end;
  min-height: clamp(420px, 52vw, 620px);
  padding: clamp(30px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  will-change: transform;
  background-image:
    linear-gradient(90deg, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.98) 30%, rgba(26, 26, 26, 0.82) 48%, rgba(26, 26, 26, 0.36) 72%, rgba(26, 26, 26, 0.08) 100%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.54)),
    var(--service-image);
  background-position: center, center, right center;
  background-size: cover, cover, auto 112%;
  background-repeat: no-repeat;
  background-color: var(--black);
  background-attachment: scroll, scroll, fixed;
}

.service-detergent-panel {
  --service-image: url("../img/Dipone-cleaning.jpg");
}

.service-fragrance-panel {
  --service-image: url("../img/Air-freshener.png");
}

.service-cleaning-panel {
  --service-image: url("../img/luxury-hero.png");
}

.service-number {
  color: rgba(247, 247, 242, 0.48);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.service-panel .service-number {
  color: rgba(247, 247, 242, 0.7);
}

.service-panel h3,
.value-item h3 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.service-panel h3 {
  color: var(--white);
}

.service-panel p,
.value-item p,
.feature-copy p,
.why-list {
  margin: 0;
  color: rgba(247, 247, 242, 0.72);
}

.service-panel p {
  color: rgba(247, 247, 242, 0.76);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 780px;
  background: var(--white);
  color: var(--black);
}

.feature-image {
  min-height: 780px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  will-change: transform;
}

.director-image {
  background-image: linear-gradient(180deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.22)), url("../img/director.jpeg");
  background-position: center;
}

.feature-copy {
  align-self: center;
  padding: clamp(50px, 8vw, 110px);
}

.feature-copy .section-kicker {
  color: rgba(20, 20, 20, 0.58);
}

.feature-copy p {
  color: rgba(20, 20, 20, 0.68);
  margin-top: 28px;
  font-size: 1.08rem;
}

.fragrance-parallax {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 78vh;
  overflow: hidden;
  background: var(--charcoal);
}

.fragrance-panel {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.fragrance-cologne {
  background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.28)), url("../img/perfume.jpg");
}

.fragrance-air {
  background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.24)), url("../img/Air-freshener.png");
}

.fragrance-note {
  position: absolute;
  left: 50%;
  bottom: clamp(32px, 6vw, 78px);
  width: min(680px, calc(100% - 44px));
  transform: translateX(-50%);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(247, 247, 242, 0.92);
  color: var(--black);
  text-align: center;
}

.fragrance-note .section-kicker {
  color: rgba(26, 26, 26, 0.58);
}

.fragrance-note h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.7rem);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0 clamp(72px, 10vw, 132px) clamp(22px, 6vw, 84px);
  background: var(--paper);
  color: var(--black);
}

.product-copy {
  max-width: 690px;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.8rem);
}

.product-copy p {
  max-width: 590px;
  margin: 28px 0 34px;
  color: rgba(26, 26, 26, 0.68);
  font-size: 1.06rem;
}

.product-image {
  justify-self: stretch;
  width: 100%;
  will-change: transform;
}

.product-image img {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.16);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-item {
  min-height: 245px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    var(--charcoal);
  will-change: transform;
}

.value-item:nth-child(even) {
  background: var(--paper);
  color: var(--black);
}

.value-item:nth-child(even) h3 {
  color: var(--black);
}

.value-item:nth-child(even) p {
  color: rgba(26, 26, 26, 0.68);
}

.value-item i,
.content-panel > i,
.service-board i,
.process-steps i,
.contact-methods i {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 22px;
  color: currentColor;
  font-size: 1.55rem;
}

.value-item p {
  margin-top: 18px;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(38px, 7vw, 92px);
  border-top: 1px solid var(--line);
}

.why-section {
  border-top-color: var(--dark-line);
}

.why-intro h2 {
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  grid-column: 2;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-section .proof-grid {
  background: var(--dark-line);
  border-color: var(--dark-line);
}

.proof-grid div {
  min-height: 150px;
  padding: 26px;
  background: var(--charcoal);
}

.why-section .proof-grid div {
  background: var(--paper);
}

.why-section .proof-grid div:nth-child(even) {
  background: var(--charcoal);
  color: var(--white);
}

.proof-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.proof-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(247, 247, 242, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.why-section .proof-grid span {
  color: rgba(26, 26, 26, 0.56);
}

.why-section .proof-grid div:nth-child(even) span {
  color: rgba(247, 247, 242, 0.68);
}

.why-list {
  grid-column: 2;
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.why-section .why-list {
  color: rgba(26, 26, 26, 0.7);
}

.why-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid rgba(247, 247, 242, 0.35);
}

.why-list i {
  margin-top: 4px;
}

.why-section .why-list li {
  border-left-color: rgba(26, 26, 26, 0.28);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(42px, 7vw, 86px) clamp(22px, 6vw, 84px);
  background: var(--white);
  color: var(--black);
}

.cta-strip img {
  width: 190px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) grayscale(1) contrast(1.2);
  mix-blend-mode: multiply;
  margin-bottom: 24px;
}

.cta-strip h2 {
  max-width: 880px;
}

.cta-strip .button.dark:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.footer {
  padding: clamp(56px, 7vw, 92px) clamp(22px, 5vw, 72px) 28px;
  background: #1a1a1a;
  border-top: 1px solid var(--line);
}

.compact-footer {
  padding-top: clamp(42px, 6vw, 72px);
}

.footer-brand {
  max-width: var(--max);
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.footer-brand img {
  width: 220px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 4vw, 52px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  color: rgba(247, 247, 242, 0.66);
  font-size: 0.93rem;
}

.footer p i {
  width: 16px;
  margin-top: 5px;
  color: rgba(247, 247, 242, 0.82);
}

.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(247, 247, 242, 0.52);
  font-size: 0.84rem;
}

.page-shell {
  min-height: 100vh;
  padding: 0 0 80px;
  background: var(--paper);
  color: var(--black);
}

.page-shell > * {
  max-width: var(--max);
  margin-inline: auto;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 78vh;
  max-width: none;
  margin-inline: 0;
  padding: 150px clamp(22px, 6vw, 80px) clamp(60px, 8vw, 108px);
  color: var(--white);
  border-bottom: 0;
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.9), rgba(56, 56, 56, 0.72)),
    url("../img/luxury-hero.png") center / cover fixed;
}

.about-hero {
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.9), rgba(56, 56, 56, 0.7)),
    url("../img/luxury-hero.png") center / cover fixed;
}

.services-hero {
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.88), rgba(56, 56, 56, 0.64)),
    url("../img/Dipone-cleaning.jpg") center / cover fixed;
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.9), rgba(56, 56, 56, 0.68)),
    url("../img/luxury-hero.png") center / cover fixed;
}

.contact-page .page-hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

.contact-page .page-hero p {
  max-width: 520px;
  font-size: 1rem;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  text-align: center;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
}

.page-hero p {
  max-width: 590px;
  margin: 28px auto 0;
  color: rgba(247, 247, 242, 0.72);
  font-size: 1.12rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.content-panel {
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
}

.content-grid .content-panel:nth-child(even) {
  background: var(--charcoal);
  color: var(--white);
}

.page-grid {
  margin-inline: auto;
}

.content-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.content-panel p,
.content-panel li {
  color: rgba(26, 26, 26, 0.7);
}

.content-grid .content-panel:nth-child(even) p,
.content-grid .content-panel:nth-child(even) li {
  color: rgba(247, 247, 242, 0.72);
}

.content-panel ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.page-band,
.process-band,
.contact-methods,
.contact-layout,
.service-showcase {
  width: min(var(--max), calc(100% - 44px));
  max-width: var(--max);
  margin-inline: auto;
}

.page-grid {
  width: min(var(--max), calc(100% - 44px));
}

.page-band,
.process-band {
  padding: clamp(66px, 9vw, 118px) 0 0;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 6vw, 74px);
  color: rgba(26, 26, 26, 0.68);
  font-size: 1.08rem;
}

.two-column-copy p {
  margin: 0;
}

.contrast-band {
  color: var(--white);
  background: var(--charcoal);
  width: auto;
  max-width: none;
  margin-top: clamp(66px, 9vw, 118px);
  padding: clamp(66px, 9vw, 118px) clamp(22px, 6vw, 84px);
}

.contrast-band > * {
  width: min(var(--max), calc(100% - 44px));
  max-width: var(--max);
  margin-inline: auto;
}

.contrast-band .section-kicker {
  color: rgba(247, 247, 242, 0.68);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.icon-row div {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
  background: var(--charcoal);
}

.icon-row i {
  font-size: 1.35rem;
}

.icon-row span {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.proof-band h2,
.process-band h2,
.service-showcase h2,
.contact-form h2,
.map-panel h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
}

.stat-strip,
.service-board,
.process-steps,
.contact-methods {
  display: grid;
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.stat-strip {
  grid-template-columns: repeat(3, 1fr);
}

.stat-strip div,
.service-board article,
.process-steps div,
.contact-methods a,
.contact-methods div {
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.service-board article {
  padding: 0;
  overflow: hidden;
}

.service-board article > i,
.service-board article > h2,
.service-board article > p {
  margin-inline: clamp(24px, 4vw, 42px);
}

.service-board article > i {
  margin-top: clamp(24px, 4vw, 42px);
}

.stat-strip div:nth-child(even),
.service-board article:nth-child(even),
.process-steps div:nth-child(even),
.contact-methods a:nth-child(even),
.contact-methods div:nth-child(even) {
  background: var(--charcoal);
  color: var(--white);
}

.stat-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.stat-strip span,
.process-steps span,
.contact-methods span {
  display: block;
  margin-top: 12px;
  color: rgba(26, 26, 26, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-strip div:nth-child(even) span,
.process-steps div:nth-child(even) span,
.contact-methods a:nth-child(even) span,
.contact-methods div:nth-child(even) span {
  color: rgba(247, 247, 242, 0.68);
}

.service-board {
  grid-template-columns: repeat(3, 1fr);
}

.service-board img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.service-board h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.service-board p,
.service-showcase p {
  color: rgba(26, 26, 26, 0.68);
}

.service-board p {
  padding-bottom: clamp(24px, 4vw, 42px);
}

.service-board article:nth-child(even) p {
  color: rgba(247, 247, 242, 0.72);
}

.process-band {
  padding-bottom: clamp(66px, 9vw, 118px);
}

.process-steps {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.process-steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  padding: clamp(66px, 9vw, 118px) 0;
  border-top: 1px solid var(--dark-line);
}

.service-showcase img {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 520px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.14);
}

.contact-methods {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.contact-methods strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.9rem);
  line-height: 1.05;
}

.contact-page .content-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
}

.contact-page .content-panel p {
  overflow-wrap: anywhere;
}

.contact-page .contact-form h2,
.contact-page .map-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.9rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.contact-form,
.map-panel {
  background: #fff;
  padding: clamp(28px, 5vw, 56px);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  color: rgba(26, 26, 26, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.22);
  background: var(--paper);
  color: var(--black);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 12px;
}

.map-panel iframe {
  width: 100%;
  min-height: 440px;
  margin-top: 28px;
  border: 0;
  filter: grayscale(1) contrast(0.95);
}

.section-reveal {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.section-reveal > * {
  position: relative;
  z-index: 1;
}

.section-reveal::before,
.section-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: 4;
  pointer-events: none;
  background: var(--charcoal);
  transition: transform 950ms cubic-bezier(0.76, 0, 0.24, 1);
}

.section-reveal::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translate3d(-50%, 0, 0);
}

.section-reveal::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translate3d(-50%, 0, 0);
}

.section-reveal-soft::before,
.section-reveal-soft::after {
  background: var(--paper);
}

.section-reveal.is-visible::before {
  transform: translate3d(-152%, -28%, 0);
}

.section-reveal.is-visible::after {
  transform: translate3d(52%, 28%, 0);
}

.section-reveal.image-statement,
.section-reveal.fragrance-parallax,
.section-reveal.product-feature,
.section-reveal.split-feature,
.section-reveal.service-panel {
  overflow: hidden;
}

.animate-item {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 760ms ease var(--item-delay, 0ms), filter 760ms ease var(--item-delay, 0ms);
}

.animate-item.is-visible {
  opacity: 1;
  filter: blur(0);
}

.reduced-motion .section-reveal::before,
.reduced-motion .section-reveal::after {
  display: none;
}

.reduced-motion .animate-item {
  opacity: 1;
  filter: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 140px 1fr;
  }

  .nav-links {
    justify-content: end;
    gap: 18px;
  }

  .nav-cta {
    display: none;
  }

  .editorial-grid,
  .section-heading,
  .split-feature,
  .fragrance-parallax,
  .product-feature,
  .why-section,
  .proof-band,
  .service-showcase,
  .contact-layout,
  .footer-brand,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    grid-template-columns: 70px 1fr;
    min-height: 500px;
  }

  .service-panel p {
    grid-column: 2;
  }

  .values-grid,
  .icon-row,
  .service-board,
  .process-steps,
  .contact-methods,
  .stat-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid,
  .why-list {
    grid-column: auto;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: fixed;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    padding: 12px 16px;
    background: rgba(26, 26, 26, 0.94);
    border-bottom: 1px solid rgba(247, 247, 242, 0.12);
    backdrop-filter: blur(16px);
  }

  .brand img {
    width: 126px;
    height: 42px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    border-top: 1px solid transparent;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, border-color 180ms ease, padding 180ms ease;
  }

  .nav-open .nav-links {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    border-top-color: rgba(247, 247, 242, 0.14);
    padding-top: 8px;
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(247, 247, 242, 0.1);
  }

  .hero {
    min-height: 92svh;
    padding: 124px 18px 54px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-stat {
    position: absolute;
    right: 12px;
    bottom: 14px;
    width: min(46vw, 178px);
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    margin: 0;
    padding: 16px 10px 0;
    border-top: 0;
    text-align: center;
  }

  .hero-stat span {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .hero-stat small {
    max-width: 140px;
    margin-inline: auto;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .button {
    width: 100%;
  }

  .service-panel,
  .proof-grid,
  .values-grid,
  .icon-row,
  .service-board,
  .process-steps,
  .contact-methods,
  .stat-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-panel p {
    grid-column: auto;
  }

  .service-panel {
    grid-template-columns: 1fr;
    align-content: end;
    min-height: 520px;
    padding: 28px;
    background-image:
      linear-gradient(180deg, rgba(26, 26, 26, 0.18) 0%, rgba(26, 26, 26, 0.68) 48%, rgba(26, 26, 26, 0.96) 100%),
      var(--service-image);
    background-position: center, center top;
    background-size: cover, cover;
  }

  .split-feature {
    min-height: 0;
  }

  .feature-copy {
    padding: 54px 24px;
  }

  .feature-image,
  .fragrance-panel,
  .product-image img,
  .service-showcase img {
    min-height: 430px;
    height: 56vh;
  }

  .product-feature {
    padding: 64px 0 64px 24px;
  }

  .parallax-bg,
  .page-hero,
  .service-panel {
    background-attachment: scroll, scroll;
  }

  .services-intro {
    position: relative;
    top: auto;
    min-height: auto;
    padding-block: 70px;
  }

  .page-hero {
    min-height: 74svh;
    padding: 124px 18px 66px;
  }

  .page-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.9rem);
  }

  .page-hero p {
    font-size: 0.98rem;
  }

  .hero-corner {
    width: 62vw;
    height: 62vw;
  }

  .page-band,
  .process-band,
  .contact-methods,
  .contact-layout,
  .service-showcase,
  .page-grid,
  .contrast-band > * {
    width: min(var(--max), calc(100% - 32px));
  }

  .two-column-copy {
    grid-template-columns: 1fr;
  }

  .contact-form h2,
  .map-panel h2,
  .proof-band h2,
  .process-band h2,
  .service-showcase h2 {
    font-size: clamp(2.1rem, 12vw, 3.8rem);
  }

  .footer-bottom {
    flex-direction: column;
  }
}
