:root {
  --background: oklch(0.982 0.004 75);
  --surface: oklch(0.952 0.012 58);
  --surface-strong: oklch(0.885 0.022 50);
  --ink: oklch(0.195 0.018 60);
  --muted: oklch(0.405 0.017 65);
  --accent: oklch(0.67 0.055 52);
  --accent-deep: oklch(0.43 0.045 47);
  --dark: oklch(0.225 0.018 55);
  --dark-soft: oklch(0.31 0.021 56);
  --white: oklch(0.99 0 0);
  --line: oklch(0.78 0.02 55 / 0.55);
  --display: Montserrat, "Avenir Next", Avenir, sans-serif;
  --body: "DM Sans", Montserrat, "Helvetica Neue", Arial, sans-serif;
  --container: min(1160px, calc(100vw - 40px));
  --header-height: 78px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 20%, oklch(0.91 0.03 38 / 0.55), transparent 30rem),
    linear-gradient(145deg, var(--background), oklch(0.96 0.006 18));
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 10;
  inset-block-start: 0;
  inset-inline: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, oklch(0.12 0.015 55 / 0.32), oklch(0.12 0.015 55 / 0.12));
  backdrop-filter: blur(10px);
  transition: background 260ms ease, color 260ms ease, min-height 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: oklch(0.982 0.004 75 / 0.92);
  color: var(--ink);
  box-shadow: 0 8px 24px oklch(0.24 0.02 55 / 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 136px;
  filter: brightness(0) invert(1);
  transition: filter 260ms ease;
}

.site-header.is-scrolled .brand-mark {
  filter: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.84rem;
  letter-spacing: 0;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 220ms ease, color 220ms ease;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  background-size: 100% 1px;
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.header-action:hover {
  transform: translateY(-1px);
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .header-action:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 58%;
  scale: 1.03;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, oklch(0.16 0.018 55 / 0.74), oklch(0.25 0.02 58 / 0.42) 44%, transparent 75%),
    linear-gradient(0deg, oklch(0.12 0.018 55 / 0.44), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding-block: 18vh 8vh;
  color: var(--white);
}

.kicker {
  margin: 0 0 18px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4.6rem, 11vw, 6rem);
  font-weight: 300;
}

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  font-weight: 300;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.9vw, 1.38rem);
  line-height: 1.52;
  color: oklch(0.96 0.004 75);
  text-wrap: pretty;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid oklch(0.99 0 0 / 0.76);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.button-quiet {
  border: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-block-start: 26px;
  color: var(--accent-deep);
  font-weight: 700;
}

.intro-band,
.education-section,
.faq-section {
  padding: clamp(84px, 11vw, 150px) 0;
}

.section-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
}

.section-heading .kicker,
.brand-lab .kicker,
.gift-section .kicker,
.press-section .kicker,
.education-section .kicker,
.faq-section .kicker {
  color: var(--accent-deep);
}

.section-copy p,
.split-copy p,
.brand-lab-copy p,
.gift-copy p,
.press-copy p,
.final-content p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  text-wrap: pretty;
}

.section-dark {
  background: linear-gradient(135deg, var(--dark), oklch(0.16 0.018 58));
  color: var(--white);
}

.treatments {
  padding: clamp(76px, 10vw, 128px) 0 clamp(34px, 5vw, 66px);
  overflow: hidden;
}

.treatments-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.treatment-copy p {
  margin: 24px 0 0;
  color: oklch(0.9 0.008 67);
  text-wrap: pretty;
}

.treatment-copy .text-link {
  color: var(--accent);
}

.treatment-image {
  min-height: clamp(380px, 55vw, 680px);
  overflow: clip;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.benefit-line {
  width: var(--container);
  margin: clamp(44px, 7vw, 82px) auto 0;
  padding-block-start: 24px;
  border-block-start: 1px solid oklch(0.99 0 0 / 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  color: oklch(0.9 0.01 65);
  font-size: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  min-height: 760px;
  background: var(--surface);
}

.edge-image {
  margin: 0;
  overflow: hidden;
}

.edge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 94px);
}

.split-copy p {
  margin-block-start: 24px;
}

.brand-lab {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(86px, 12vw, 158px) 0;
}

.brand-lab-copy {
  max-width: 880px;
}

.brand-lab-copy p {
  margin-block-start: 26px;
}

.brand-gallery {
  margin-block-start: clamp(44px, 7vw, 84px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.brand-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-gallery img:first-child {
  grid-row: 1 / span 2;
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(340px, 1fr);
  align-items: center;
  background: oklch(0.925 0.018 42);
}

.gift-image {
  height: 100%;
  min-height: 620px;
}

.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-copy {
  padding: clamp(46px, 7vw, 106px);
}

.gift-copy p {
  margin-block-start: 24px;
}

.press-section {
  padding: clamp(82px, 10vw, 140px) 0;
  background: var(--dark);
  color: var(--white);
}

.press-copy,
.press-strip {
  width: var(--container);
  margin-inline: auto;
}

.press-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.press-copy p {
  color: oklch(0.88 0.006 65);
}

.press-section .kicker {
  color: var(--accent);
}

.press-strip {
  margin-block-start: 54px;
  padding: clamp(20px, 4vw, 44px);
  background: var(--white);
}

.press-strip img {
  width: min(760px, 100%);
  margin-inline: auto;
}

.instagram-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
}

.instagram-section .section-heading {
  max-width: 760px;
}

.instagram-grid {
  margin-block-start: 42px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.instagram-grid img:hover {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.instagram-link {
  margin-block-start: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border-block-end: 1px solid var(--line);
  padding-block: 18px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  font-weight: 400;
}

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

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.final-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, oklch(0.16 0.018 55 / 0.82), oklch(0.16 0.018 55 / 0.3));
}

.final-content {
  width: var(--container);
}

.final-content h2 {
  max-width: 820px;
}

.final-content p {
  max-width: 560px;
  margin-block-start: 24px;
  color: oklch(0.95 0.004 70);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

.site-footer img {
  width: 118px;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

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

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .site-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .section-grid,
  .treatments-layout,
  .split-section,
  .gift-section,
  .press-copy {
    grid-template-columns: 1fr;
  }

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

  .edge-image,
  .gift-image {
    min-height: 460px;
  }

  .brand-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .brand-gallery img,
  .brand-gallery img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 14px;
    grid-template-columns: 106px auto;
    gap: 12px;
  }

  .brand-mark {
    width: 104px;
  }

  .header-action {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 86svh;
  }

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

  .hero-scrim {
    background:
      linear-gradient(0deg, oklch(0.13 0.018 55 / 0.86), oklch(0.22 0.02 58 / 0.5) 58%, transparent),
      linear-gradient(90deg, oklch(0.12 0.018 55 / 0.42), transparent 80%);
  }

  .hero-content {
    padding-block: 24vh 5vh;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

  .button {
    width: 100%;
  }

  .benefit-line {
    display: grid;
  }

  .split-copy,
  .gift-copy {
    padding: 44px 18px;
  }

  .edge-image,
  .gift-image {
    min-height: 360px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
