:root {
  --ink: #11100f;
  --ivory: #f4efe8;
  --paper: #fbf7f1;
  --taupe: #a58b7b;
  --sand: #d9c7b8;
  --mahogany: #6e302b;
  --copper: #b88a58;
  --muted: #6f625a;
  --line: rgba(17, 16, 15, 0.16);
  --light-line: rgba(244, 239, 232, 0.18);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(18px, 4vw, 64px);
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

::selection {
  color: var(--ivory);
  background: var(--mahogany);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--ivory);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  padding: 14px var(--gutter);
  color: var(--ink);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ivory);
  background: rgba(17, 16, 15, 0.92);
  border-bottom: 1px solid rgba(244, 239, 232, 0.08);
  backdrop-filter: blur(8px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.logo-mark img {
  width: 48px;
  height: auto;
  object-fit: contain;
  transition: filter 240ms ease, opacity 240ms ease;
}

.logo-mark span {
  display: inline-block;
}

.site-header.is-scrolled .logo-mark img,
.site-header.menu-active .logo-mark img,
.site-footer .logo-mark img {
  filter: brightness(0) invert(1) sepia(0.08) saturate(0.7);
  opacity: 0.92;
}

.footer-logo img {
  width: 62px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a,
.header-cta,
.site-footer nav a,
.mobile-menu a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after,
.mobile-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 14px;
  border: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.header-cta:hover {
  color: var(--ivory);
  background: var(--ink);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.menu-active .header-cta:hover {
  color: var(--ink);
  background: var(--ivory);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  min-width: 52px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: calc(var(--header) + 36px) var(--gutter) 36px;
  color: var(--ivory);
  background: var(--ink);
}

.mobile-menu.is-open {
  display: grid;
  align-content: center;
  gap: 24px;
}

.mobile-menu a {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 12vw, 4.8rem);
  line-height: 0.95;
}

.curl-line {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 5200px;
  opacity: 0.9;
}

.curl-line path {
  fill: none;
  stroke: rgba(184, 138, 88, 0.46);
  stroke-width: 1.8;
  stroke-linecap: round;
}

section {
  position: relative;
  z-index: 3;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 76px);
  padding: calc(var(--header) + 30px) var(--gutter) 54px;
  background:
    linear-gradient(90deg, rgba(244, 239, 232, 1) 0%, rgba(244, 239, 232, 0.9) 55%, rgba(217, 199, 184, 0.36) 100%);
}

.hero-copy {
  align-self: center;
  max-width: 780px;
  padding-top: 30px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--mahogany);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ink-section .eyebrow {
  color: var(--copper);
}

.hero-title,
.display-title,
.section-title,
.compare-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(4rem, 9.3vw, 9.6rem);
  line-height: 0.84;
}

.hero-title em,
.section-title em {
  font-style: italic;
  color: var(--mahogany);
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line-wrap > span {
  display: block;
  transform: translateY(110%);
  animation: lineIn 850ms var(--ease) forwards;
}

.line-wrap:nth-child(2) > span {
  animation-delay: 130ms;
}

.hero-text,
.section-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-text {
  margin: 28px 0 0;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

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

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

.button-text {
  min-height: 44px;
  padding-inline: 0;
  border-color: transparent;
  color: var(--ink);
}

.button-text:hover {
  color: var(--mahogany);
}

.button-light {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.big {
  min-height: 62px;
  padding-inline: 26px;
}

.trust {
  margin: clamp(38px, 8vh, 84px) 0 0;
  color: var(--mahogany);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}

.hero-media {
  justify-self: end;
  align-self: end;
  width: min(47vw, 650px);
  height: calc(100svh - var(--header) - 56px);
  min-height: 590px;
  margin: 0 calc(var(--gutter) * -1) 0 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
}

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue::before {
  content: "";
  width: clamp(34px, 5vw, 70px);
  height: 1px;
  background: currentColor;
}

.ink-section {
  color: var(--ivory);
  background: var(--ink);
}

.manifesto {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(90px, 12vw, 160px) var(--gutter);
}

.display-title {
  font-size: clamp(4.2rem, 10.5vw, 12rem);
  line-height: 0.82;
}

.manifesto-shift {
  margin: 24px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 5.6rem);
  line-height: 0.92;
  color: var(--sand);
}

.ink-section .section-text,
.ink-section .hero-text {
  color: rgba(244, 239, 232, 0.78);
}

.campaign-piece {
  justify-self: center;
  width: min(100%, 450px);
  margin: 0;
  background: #050505;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.campaign-piece img {
  width: 100%;
  height: auto;
}

.method,
.results,
.about,
.final-cta {
  padding: clamp(80px, 11vw, 150px) var(--gutter);
}

.section-heading {
  max-width: 960px;
  margin-bottom: clamp(44px, 8vw, 96px);
}

.section-title {
  font-size: clamp(3.4rem, 7vw, 8.6rem);
  line-height: 0.88;
}

.method-scroll {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}

.method-visual {
  position: sticky;
  top: 116px;
  height: min(72vh, 760px);
  margin: 0;
  overflow: hidden;
}

.method-visual::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 44%;
  height: 1px;
  background: var(--copper);
}

.method-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 50%;
}

.method-steps {
  display: grid;
  gap: 18vh;
  padding: 14vh 0 18vh;
}

.method-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  min-height: 38vh;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
  opacity: 0.42;
  transition: opacity 360ms ease, transform 360ms var(--ease);
}

.method-step.is-active {
  opacity: 1;
  transform: translateX(-10px);
}

.method-step span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 6rem);
  line-height: 0.86;
}

.method-step h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-step p {
  grid-column: 2;
  max-width: 620px;
  margin: -16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  background: var(--paper);
}

.services-copy {
  max-width: 900px;
}

.service-list {
  display: grid;
  margin: 52px 0 24px;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.55fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 20px;
  width: 100%;
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-item span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.service-item strong {
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-item em {
  color: var(--muted);
  font-style: normal;
}

.service-item.is-active strong,
.service-item:hover strong {
  color: var(--mahogany);
}

.service-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-preview {
  position: sticky;
  top: 106px;
  height: min(74vh, 780px);
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 420ms var(--ease);
}

.service-preview.is-changing img {
  opacity: 0;
  transform: scale(1.03);
}

.krelax {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: center;
  padding: clamp(82px, 11vw, 150px) var(--gutter);
  background:
    radial-gradient(circle at 82% 20%, rgba(110, 48, 43, 0.55), transparent 35%),
    var(--ink);
}

.video-wrap {
  position: relative;
  width: min(100%, 520px);
  margin: 0;
}

.video-wrap video {
  width: 100%;
  max-height: min(720px, calc(100vh - 180px));
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #050505;
}

.video-listen {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(244, 239, 232, 0.72);
  border-top: 0;
  color: var(--ivory);
  background: rgba(244, 239, 232, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-wrap.audio-on .video-listen {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.video-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--light-line);
  border-top: 0;
}

.video-controls button {
  min-height: 48px;
  border: 0;
  color: var(--ivory);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-controls button + button {
  border-left: 1px solid var(--light-line);
}

.krelax-sub {
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3.8rem);
  line-height: 0.98;
}

.krelax-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 36px 0;
  list-style: none;
}

.krelax-sequence li {
  padding-top: 12px;
  border-top: 1px solid var(--light-line);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.gallery-item.large {
  grid-column: span 7;
}

.gallery-item.tall {
  grid-column: span 5;
  margin-top: clamp(40px, 8vw, 130px);
}

.gallery-item.wide {
  grid-column: 2 / span 7;
  margin-top: clamp(16px, 4vw, 54px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  color: var(--ivory);
  background: rgba(17, 16, 15, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.before-after-block {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(80px, 12vw, 170px);
}

.compare-title {
  font-size: clamp(2.8rem, 5.5vw, 6.8rem);
  line-height: 0.88;
}

.comparison {
  --split: 52%;
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--sand);
  touch-action: none;
}

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

.comparison-base {
  position: absolute;
  inset: 0;
}

.comparison-after {
  position: absolute;
  inset: 0;
  width: var(--split);
  overflow: hidden;
}

.comparison-after img {
  width: calc(100% / (var(--split-number, 0.52)));
  max-width: none;
}

.compare-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 5px 8px;
  color: var(--ivory);
  background: rgba(17, 16, 15, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-label.before {
  left: 14px;
}

.compare-label.after {
  right: 14px;
}

.compare-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 44px;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  cursor: ew-resize;
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--ivory);
  box-shadow: 0 0 0 1px rgba(17, 16, 15, 0.24);
}

.compare-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(17, 16, 15, 0.26);
  color: var(--ink);
  background: var(--ivory);
  border-radius: 50%;
  font-weight: 800;
}

.compare-range {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 5;
  width: calc(100% - 24px);
  opacity: 0.02;
}

.instagram-link {
  margin-top: 42px;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  background: var(--paper);
}

.about-image {
  position: sticky;
  top: 106px;
  height: min(74vh, 760px);
  margin: 0;
  overflow: hidden;
}

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

.story {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.story p {
  margin: 0 0 1em;
}

.places {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.places span {
  color: var(--mahogany);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 0.92;
}

.places strong {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

blockquote {
  max-width: 760px;
  margin: 52px 0 0;
  padding: 0;
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 0.95;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(80px, 11vw, 150px) var(--gutter);
}

.rating-lockup strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 18rem);
  font-weight: 400;
  line-height: 0.74;
}

.rating-lockup span,
.rating-lockup em {
  display: block;
  color: var(--copper);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 34px 0 0;
}

.proof-words span {
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: 0.9;
}

.testimonials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 20px;
  margin-top: 36px;
}

.testimonial {
  padding-top: 18px;
  border-top: 1px solid var(--light-line);
}

.testimonial p {
  margin: 0;
  color: rgba(244, 239, 232, 0.76);
  font-size: 0.95rem;
}

.testimonial.featured p {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  line-height: 1.02;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--copper);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  min-height: 84svh;
  background: linear-gradient(180deg, var(--ivory), var(--sand));
}

.studio-address {
  display: grid;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 16, 15, 0.28);
  font-style: normal;
}

.studio-address strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.studio-address span {
  color: var(--muted);
}

.studio-address a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-page {
  background: var(--ink);
}

.story-page .site-header {
  color: var(--ivory);
}

.story-page .logo-mark img {
  filter: brightness(0) invert(1) sepia(0.08) saturate(0.7);
  opacity: 0.92;
}

.story-curl {
  height: 3000px;
}

.story-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.78fr);
  align-items: stretch;
  gap: clamp(30px, 6vw, 100px);
  padding: calc(var(--header) + 42px) var(--gutter) 58px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 14%, rgba(110, 48, 43, 0.45), transparent 32%),
    linear-gradient(120deg, var(--ink) 0%, #1b1714 58%, var(--mahogany) 160%);
}

.story-hero-copy {
  align-self: center;
  max-width: 780px;
}

.story-hero .hero-title em {
  color: var(--sand);
}

.story-hero .hero-text {
  color: rgba(244, 239, 232, 0.78);
}

.story-light-link {
  color: var(--ivory);
}

.story-light-link:hover {
  color: var(--sand);
}

.story-hero-media {
  justify-self: end;
  align-self: end;
  width: min(42vw, 590px);
  height: calc(100svh - var(--header) - 74px);
  min-height: 590px;
  margin: 0 calc(var(--gutter) * -1) 0 0;
  overflow: hidden;
  background: var(--sand);
}

.story-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 50%;
}

.story-trust {
  position: absolute;
  left: var(--gutter);
  bottom: 24px;
  max-width: 420px;
  margin: 0;
  color: rgba(244, 239, 232, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-film {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  background:
    linear-gradient(180deg, rgba(17, 16, 15, 1), rgba(17, 16, 15, 0.96)),
    var(--ink);
}

.story-film-copy {
  max-width: 820px;
}

.story-video {
  justify-self: end;
  width: min(100%, 430px);
}

.story-video video {
  max-height: min(650px, calc(100vh - 190px));
}

.story-quote {
  margin-top: clamp(38px, 5vw, 70px);
}

.story-quote p {
  font-size: clamp(2rem, 4.3vw, 5rem);
}

.story-path {
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  color: var(--ink);
  background: var(--ivory);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
}

.path-item {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.path-item span {
  color: var(--mahogany);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.85;
}

.path-item strong {
  display: block;
  margin: 26px 0 18px;
  color: var(--copper);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.path-item p {
  margin: auto 0 0;
  color: var(--muted);
}

.story-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: start;
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  color: var(--ivory);
  background: var(--mahogany);
}

.story-editorial .eyebrow {
  color: var(--sand);
}

.story-editorial .display-title {
  font-size: clamp(3.6rem, 8vw, 9.8rem);
}

.story-columns {
  display: grid;
  gap: 24px;
  color: rgba(244, 239, 232, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.story-columns p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 232, 0.22);
}

.story-final {
  background: linear-gradient(180deg, var(--ivory), var(--sand));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  gap: 28px;
  padding: 44px var(--gutter);
  color: var(--ivory);
  background: var(--ink);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(244, 239, 232, 0.66);
}

.site-footer nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-address,
.copyright {
  grid-column: 1 / -1;
  font-size: 0.78rem;
}

.mobile-booking {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 17px;
  color: var(--ivory);
  background: var(--mahogany);
  box-shadow: 0 14px 34px rgba(17, 16, 15, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 240ms var(--ease);
}

.mobile-booking.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.reveal-line,
.image-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), clip-path 900ms var(--ease);
}

.image-reveal {
  clip-path: inset(12% 0 0 0);
}

.reveal-line.is-visible,
.image-reveal.is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
}

@keyframes lineIn {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header) + 18px);
  }

  .hero-copy {
    order: 2;
    padding-top: 0;
  }

  .hero-media {
    order: 1;
    justify-self: stretch;
    width: auto;
    height: min(62svh, 680px);
    min-height: 410px;
    margin: 0 calc(var(--gutter) * -1);
  }

  .scroll-cue {
    display: none;
  }

  .method-scroll,
  .services,
  .krelax,
  .story-hero,
  .story-film,
  .story-editorial,
  .about,
  .social-proof,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .method-visual,
  .service-preview,
  .about-image {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .story-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 18px);
  }

  .story-hero-copy {
    order: 2;
  }

  .story-hero-media {
    order: 1;
    justify-self: stretch;
    width: auto;
    height: min(62svh, 680px);
    min-height: 430px;
    margin: 0 calc(var(--gutter) * -1);
  }

  .story-trust {
    position: static;
    order: 3;
    margin-top: 10px;
  }

  .story-video {
    justify-self: stretch;
  }

  .video-wrap,
  .video-wrap video,
  .story-video,
  .story-video video {
    max-height: none;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-item {
    min-height: auto;
    gap: 16px;
  }

  .method-steps {
    gap: 44px;
    padding: 34px 0 0;
  }

  .method-step {
    min-height: auto;
    opacity: 1;
    transform: none;
  }

  .services {
    gap: 34px;
  }

  .service-preview {
    order: -1;
  }

  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial.featured {
    grid-column: 1 / -1;
  }

  .before-after-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 66px;
    --gutter: 18px;
  }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: var(--header);
    gap: 12px;
  }

  .wordmark {
    font-size: 0.72rem;
  }

  .logo-mark img {
    width: 42px;
  }

  .header-cta {
    display: none;
  }

  .mobile-booking {
    display: inline-flex;
  }

  .curl-line {
    height: 4300px;
    opacity: 0.55;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
    gap: 26px;
  }

  .hero-media {
    height: 58svh;
    min-height: 430px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 5.6rem);
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .button-text {
    justify-content: flex-start;
    width: auto;
  }

  .manifesto {
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .display-title,
  .section-title {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .campaign-piece {
    width: min(100%, 390px);
  }

  .method,
  .results,
  .about,
  .final-cta,
  .services,
  .krelax,
  .social-proof,
  .story-film,
  .story-path,
  .story-editorial {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .story-hero {
    padding-bottom: 64px;
    gap: 26px;
  }

  .story-hero-media {
    height: 58svh;
    min-height: 430px;
  }

  .story-editorial .display-title {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .story-columns {
    gap: 18px;
  }

  .method-step {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .method-step p {
    grid-column: 1 / -1;
    margin: 0;
  }

  .service-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .service-item em {
    grid-column: 2;
    margin-top: -6px;
  }

  .krelax-sequence {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    display: block;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    margin: 0 0 18px;
  }

  .gallery-item img {
    min-height: 360px;
    max-height: 660px;
  }

  .places {
    grid-template-columns: 1fr;
  }

  .social-proof {
    gap: 28px;
    overflow: hidden;
  }

  .social-proof .section-title {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .rating-lockup {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    column-gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-line);
  }

  .rating-lockup strong {
    font-size: clamp(5.4rem, 28vw, 7rem);
    line-height: 0.78;
  }

  .rating-lockup span {
    align-self: end;
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .rating-lockup em {
    grid-column: 2;
    margin-top: -6px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .proof-words {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 24px;
  }

  .proof-words span {
    padding-top: 9px;
    border-top: 1px solid var(--light-line);
    font-size: clamp(1.65rem, 8vw, 2.7rem);
  }

  .testimonials {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 16px;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonials::-webkit-scrollbar {
    display: none;
  }

  .testimonial {
    flex: 0 0 min(82vw, 360px);
    min-height: 320px;
    padding: 18px 18px 20px;
    border: 1px solid var(--light-line);
    background: rgba(244, 239, 232, 0.04);
    scroll-snap-align: start;
  }

  .testimonial.featured {
    flex-basis: min(88vw, 390px);
  }

  .testimonial p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .testimonial.featured p {
    font-size: clamp(1.42rem, 6.7vw, 2rem);
    line-height: 1.08;
  }

  .testimonial cite {
    margin-top: 22px;
  }

  .final-cta {
    min-height: 74svh;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-title,
  .display-title,
  .section-title {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-media {
    min-height: 390px;
  }

  .mobile-menu a {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .compare-title {
    font-size: 3rem;
  }
}

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

  .curl-line path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }

  .reveal-line,
  .image-reveal,
  .line-wrap > span {
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0) !important;
  }
}
