:root {
  --bg: #ffffff;
  --text: #111111;
  --ink-soft: #252525;
  --muted: #666666;
  --line: #d8d8d8;
  --soft: #ededed;
  --accent: #8b1e2d;
  --blush: #d6aab6;
  --gold: #c9a86a;
  --ice: #dce8ed;
  --gutter: clamp(18px, 4vw, 78px);
  --gap: clamp(6px, 0.7vw, 10px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --angle: 0deg;
  color-scheme: light;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

body.intro-lock {
  height: 100vh;
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--text);
  color: #fff;
}

.has-menu-open {
  overflow: hidden;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(82% 72% at 50% 38%, rgb(220 232 237 / 48%) 0%, rgb(255 255 255 / 0%) 54%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  color: var(--text);
  text-align: center;
  transition: opacity 1.25s var(--ease), visibility 1.25s var(--ease);
}

.intro-screen.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-screen[hidden] {
  display: none;
}

.intro-screen::before,
.intro-screen::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(17 17 17 / 22%), transparent);
  transform: scaleX(0);
  animation: intro-rule 1.35s var(--ease) forwards 0.82s;
}

.intro-screen::before {
  top: clamp(32px, 6vw, 76px);
}

.intro-screen::after {
  bottom: clamp(18px, 3vw, 42px);
}

.intro-glow {
  position: absolute;
  width: min(58vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(220 232 237 / 62%) 0%, rgb(237 237 237 / 34%) 42%, transparent 68%);
  filter: blur(18px);
  opacity: 0.72;
  animation: intro-breathe 4s ease-in-out infinite;
}

.intro-mark,
.intro-title,
.intro-subtitle,
.intro-line {
  position: relative;
  z-index: 1;
}

.intro-mark {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: intro-fade-up 0.9s var(--ease) forwards 0.18s;
}

.intro-title {
  max-width: min(920px, 92vw);
  margin: 12px 0 8px;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(3.35rem, 8.7vw, 8.1rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  background: linear-gradient(102deg, var(--text) 0%, var(--text) 41%, #8e8e8e 50%, var(--text) 60%, var(--text) 100%);
  background-size: 220% 100%;
  background-clip: text;
  opacity: 0;
  animation: intro-fade-up 1s var(--ease) forwards 0.48s, intro-sweep 3.25s ease 0.56s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-line {
  width: 0;
  height: 1px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, transparent, rgb(17 17 17 / 72%), transparent);
  animation: intro-line 1.25s var(--ease) forwards 1.02s;
}

.intro-subtitle {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: intro-fade-up 0.95s var(--ease) forwards 1.28s;
}

@keyframes intro-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.1);
  }
}

@keyframes intro-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-sweep {
  from {
    background-position: 160% 0;
  }

  to {
    background-position: -60% 0;
  }
}

@keyframes intro-line {
  to {
    width: min(260px, 54vw);
  }
}

@keyframes intro-rule {
  to {
    transform: scaleX(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  color: var(--text);
  transition: transform 0.45s var(--ease), background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-hidden {
  transform: translateY(-101%);
}

.site-header.is-scrolled {
  background: rgb(255 255 255 / 86%);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 90px;
  padding: 0 clamp(20px, 3vw, 56px);
  transition: min-height 0.35s var(--ease);
}

.site-header.is-scrolled .header-top {
  min-height: 64px;
}

.brand {
  display: grid;
  justify-items: center;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 400;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-toggle,
.header-actions,
.header-cta,
.main-nav,
.search-line {
  display: flex;
  align-items: center;
}

.menu-toggle {
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.92rem;
}

.menu-toggle > span:first-child {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

.header-actions {
  align-self: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 28px);
  min-height: 54px;
}

.header-actions a,
.main-nav a,
.search-line {
  position: relative;
  min-height: 42px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.header-actions a {
  justify-content: center;
}

.header-actions a:not(.header-cta) {
  transform: translateY(13px);
}

.header-actions a + a {
  margin-left: clamp(16px, 1.5vw, 24px);
}

.header-actions a::after,
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease;
}

.header-actions a:hover::after,
.header-actions a:focus-visible::after,
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions .header-cta {
  min-width: 92px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--text);
  font-weight: 650;
}

.header-actions .header-cta:hover {
  background: var(--text);
  color: #fff;
}

.header-bottom {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) minmax(300px, 410px);
  align-items: center;
  gap: clamp(26px, 5vw, 94px);
  min-height: 78px;
  padding: 0 clamp(28px, 3.2vw, 62px) 18px;
  transition: min-height 0.35s var(--ease), padding-bottom 0.35s var(--ease);
}

.site-header.is-scrolled .header-bottom {
  min-height: 52px;
  padding-bottom: 10px;
}

.main-nav {
  gap: clamp(22px, 2.8vw, 48px);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.search-line {
  justify-self: end;
  justify-content: space-between;
  width: 100%;
  max-width: 410px;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.search-line::after {
  content: "↗";
  color: var(--text);
}

.search-line:hover,
.search-line:focus-visible {
  border-bottom-color: var(--text);
  color: var(--text);
}

.mobile-backdrop,
.mobile-drawer {
  display: none;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgb(0 0 0 / 28%);
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(86vw, 370px);
  background: #fff;
  box-shadow: 18px 0 38px rgb(0 0 0 / 12%);
  transform: translateX(-100%);
  transition: transform 0.28s var(--ease);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-drawer__bar button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
}

.mobile-drawer__nav {
  display: grid;
  padding: 16px 0;
}

.mobile-drawer__nav a {
  padding: 17px 22px;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-drawer__nav a:hover,
.mobile-drawer__nav a:focus-visible {
  background: #f6f6f6;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 168px));
  overflow: hidden;
  background: var(--soft);
}

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

.hero-video {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 52%) 0%, rgb(0 0 0 / 25%) 42%, rgb(0 0 0 / 10%) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0%) 48%, rgb(0 0 0 / 48%) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 24px;
  min-height: min(780px, calc(100vh - 168px));
  width: min(940px, 100%);
  padding: clamp(54px, 8vw, 126px) var(--gutter);
  color: #fff;
}

.eyebrow {
  margin: 0;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: rgb(255 255 255 / 78%);
}

.hero h1,
.story-copy h2,
.section-head h2,
.editorial-copy h2,
.materials-copy h2,
.price-copy h2,
.cta h2,
.location-copy h2 {
  margin: 0;
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 {
  max-width: 900px;
  font-family: Didot, "Bodoni 72", "Times New Roman", serif;
  font-size: 5.9rem;
}

.hero h1 strong {
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 28px rgb(214 170 182 / 42%);
}

.hero-subtitle {
  max-width: 640px;
  margin: 0;
  color: rgb(255 255 255 / 84%);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--text);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  overflow: hidden;
  text-transform: uppercase;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button::after {
  content: "→";
  margin-left: 18px;
  transform: translateX(-7px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(0);
  opacity: 1;
}

.button-primary {
  background: var(--text);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink-soft);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--text);
  color: #fff;
}

.hero .button {
  border-color: #fff;
}

.hero .button-primary,
.inverse {
  background: #fff;
  color: #111;
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.inverse:hover,
.inverse:focus-visible {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.hero .button-secondary {
  background: transparent;
  color: #fff;
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: #fff;
  color: #111;
}

.hero-card {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(32px, 5vw, 78px);
  z-index: 2;
  display: grid;
  grid-template-columns: 150px minmax(210px, 1fr);
  width: min(470px, calc(100% - 2 * var(--gutter)));
  border: 1px solid rgb(255 255 255 / 40%);
  background: rgb(255 255 255 / 16%);
  backdrop-filter: blur(16px);
  color: #fff;
}

.hero-card img {
  width: 150px;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.hero-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.hero-card div {
  display: grid;
  gap: 3px;
  padding: 18px;
}

.hero-card div + div {
  border-top: 1px solid rgb(255 255 255 / 22%);
}

.hero-card dt {
  font-size: 1.7rem;
  font-weight: 600;
}

.hero-card dd {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.82rem;
}

.marquee {
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid var(--line);
  background: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-grid,
.services,
.process,
.reels,
.materials,
.stories,
.testimonials,
.price,
.instagram-showcase,
.faq,
.location {
  padding: clamp(56px, 7vw, 110px) var(--gutter);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.story-media {
  position: relative;
  justify-self: center;
  width: min(100%, 530px);
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.media-wipe {
  isolation: isolate;
}

.media-wipe::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(90deg, #fff 0%, #f4f4f4 48%, #fff 100%);
  transform: scaleX(0);
  transform-origin: right center;
  pointer-events: none;
}

.fashion-reveal-ready .media-wipe::before,
.fashion-reveal-ready .service-card[data-reveal] .media-wipe::before {
  transform: scaleX(1);
}

.fashion-reveal-ready .media-wipe.is-revealed::before,
.fashion-reveal-ready .service-card[data-reveal].is-revealed .media-wipe::before {
  transform: scaleX(0);
  transition: transform 0.88s var(--ease);
}

.fashion-reveal-ready .service-card[data-reveal] .media-wipe::before {
  transition-delay: inherit;
}

.frame-spin {
  padding: 2px;
  background:
    conic-gradient(from var(--angle), rgb(201 168 106 / 0%) 0deg, rgb(201 168 106 / 95%) 38deg, rgb(214 170 182 / 72%) 84deg, rgb(201 168 106 / 0%) 120deg, rgb(201 168 106 / 0%) 360deg),
    linear-gradient(rgb(201 168 106 / 25%), rgb(201 168 106 / 25%));
  animation: frame-spin 5.5s linear infinite;
  box-shadow: 0 22px 56px -24px rgb(139 30 45 / 28%);
}

@keyframes frame-spin {
  to { --angle: 360deg; }
}

.story-media > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 1.1s var(--ease), filter 0.65s ease;
  will-change: transform;
}

.story-media.is-revealed > img:first-child {
  transform: scale(1);
}

.story-accent {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: min(46%, 260px);
  border: 6px solid #fff;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.9s var(--ease) 0.22s, box-shadow 0.35s ease;
}

.story-media.is-revealed .story-accent {
  transform: translateY(0) scale(1);
}

.story-media:hover .story-accent {
  box-shadow: 0 18px 38px rgb(0 0 0 / 16%);
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 580px;
}

.story-copy .eyebrow,
.section-head .eyebrow,
.materials-copy .eyebrow,
.price-copy .eyebrow,
.location-copy .eyebrow {
  color: var(--muted);
}

.story-copy h2,
.section-head h2,
.materials-copy h2,
.price-copy h2,
.location-copy h2 {
  font-size: 3.4rem;
}

.story-copy p,
.editorial-copy p,
.materials-copy p,
.price-copy p,
.location-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.facts dt {
  font-size: 1.8rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.facts dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-row article {
  display: grid;
  gap: 9px;
  min-height: 210px;
  padding: clamp(28px, 3.4vw, 48px) 22px;
  background: #fff;
  text-align: center;
}

.trust-row span,
.process-grid span,
.story-cards span,
.price-table span,
.reel-card span,
.service-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-row h3,
.process-grid h3,
.material-list h3,
.story-cards h3,
.service-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-row p,
.process-grid p,
.material-list p,
.story-cards p,
.service-card p,
.testimonial-grid p,
.faq p,
.price-table p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head > div {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.section-head.compact {
  max-width: 780px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  background: var(--text);
  color: #fff;
}

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

.service-card {
  position: relative;
  display: grid;
  gap: 12px;
  transform-origin: center bottom;
}

.service-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--soft);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 34%));
  pointer-events: none;
}

.service-media img,
.story-cards img,
.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.service-card:hover img,
.story-cards article:hover img,
.instagram-grid a:hover img {
  transform: scale(1.05);
}

.service-card:nth-child(2n) .service-media img {
  transform-origin: center bottom;
}

.service-card:nth-child(3n) .service-media img {
  transform-origin: center top;
}

.service-card.is-revealed .service-media img {
  animation: lookbook-settle 0.9s var(--ease) both;
}

.service-card:hover .service-media img {
  transform: scale(1.065) translateY(-8px);
}

.service-card::after {
  content: "→";
  position: absolute;
  right: 2px;
  bottom: 18px;
  color: var(--text);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.45s var(--ease), opacity 0.35s ease;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover > div {
  transform: translateY(-4px);
}

@keyframes lookbook-settle {
  0% {
    filter: saturate(0.72) contrast(0.96);
    transform: scale(1.075) translateY(18px);
  }
  100% {
    filter: saturate(1) contrast(1);
    transform: scale(1) translateY(0);
  }
}

.service-card > div {
  display: grid;
  gap: 7px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  transition: transform 0.45s var(--ease);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: var(--gap);
  align-items: stretch;
  border-block: 1px solid var(--line);
}

.editorial-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  padding: clamp(48px, 6vw, 92px) var(--gutter);
  background: #111;
  color: #fff;
}

.editorial-copy .eyebrow {
  color: rgb(255 255 255 / 68%);
}

.editorial-copy h2,
.cta h2 {
  font-size: 3.8rem;
}

.editorial-copy p {
  max-width: 590px;
  color: rgb(255 255 255 / 78%);
}

.button-outline-light {
  width: fit-content;
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: #fff;
  color: #111;
}

.editorial-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.editorial-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  background: #fff;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.reel-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #111;
  color: #fff;
}

.reel-card video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.9s var(--ease), opacity 0.35s ease;
}

.reel-card:hover video,
.reel-card.is-playing video {
  transform: scale(1.045);
  opacity: 1;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 66%));
  pointer-events: none;
}

.reel-card > div {
  position: absolute;
  inset: auto 18px 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.reel-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.18;
}

.reel-card span {
  color: rgb(255 255 255 / 76%);
}

.materials {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  background: #f7f7f7;
}

.materials-copy {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.material-list {
  display: grid;
  gap: 18px;
}

.material-list article {
  padding-top: 18px;
  border-top: 1px solid var(--text);
}

.material-list h3 {
  margin-bottom: 10px;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.story-cards article {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.lookbook-down::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom center;
  pointer-events: none;
}

.fashion-reveal-ready .lookbook-down::before {
  transform: scaleY(1);
}

.fashion-reveal-ready .lookbook-down.is-revealed::before {
  transform: scaleY(0);
  transition: transform 0.95s var(--ease);
}

.fashion-reveal-ready .lookbook-down img {
  transform: scale(1.08) translateY(-22px);
}

.fashion-reveal-ready .lookbook-down.is-revealed img {
  transform: scale(1) translateY(0);
  transition: transform 1.05s var(--ease);
}

.fashion-reveal-ready .lookbook-down div {
  transform: translateY(-12px);
  opacity: 0.001;
}

.fashion-reveal-ready .lookbook-down.is-revealed div {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.72s var(--ease) 0.2s, opacity 0.45s ease 0.2s;
}

.story-cards img {
  aspect-ratio: 4 / 5;
  background: var(--soft);
}

.story-cards div {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

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

.testimonial-grid blockquote {
  display: grid;
  align-content: space-between;
  gap: 26px;
  min-height: 300px;
  margin: 0;
  padding: 32px;
  background: #fff;
}

.testimonial-grid span {
  width: fit-content;
  padding: 7px 10px;
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-grid p {
  color: #333;
  font-size: 1.05rem;
}

.testimonial-grid cite {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.price {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  border-block: 1px solid var(--line);
}

.price-copy {
  display: grid;
  gap: 16px;
}

.price-table {
  display: grid;
  border: 1px solid var(--line);
}

.price-table div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 8px 18px;
  align-items: baseline;
  padding: 24px;
  background: #fff;
}

.price-table div + div {
  border-top: 1px solid var(--line);
}

.price-table strong {
  justify-self: end;
  font-size: 1.28rem;
  font-weight: 600;
}

.price-table p {
  grid-column: 1 / -1;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.instagram-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}

.instagram-grid a::after {
  content: "Instagram";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(0 0 0 / 28%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.instagram-grid a:hover::after,
.instagram-grid a:focus-visible::after {
  opacity: 1;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 550;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.25s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  max-width: 720px;
  padding: 0 0 28px;
}

.cta {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 590px;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-align: center;
}

.cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 26%), rgb(0 0 0 / 70%));
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 820px;
  padding: 64px var(--gutter);
}

.cta .eyebrow {
  color: rgb(255 255 255 / 72%);
}

.cta p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: rgb(255 255 255 / 80%);
  line-height: 1.65;
}

.location {
  display: grid;
  grid-template-columns: minmax(330px, 0.62fr) minmax(640px, 1.38fr);
  gap: clamp(28px, 3.8vw, 60px);
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 16px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.map-frame {
  position: relative;
  justify-self: stretch;
  width: 100%;
  min-height: clamp(600px, 50vw, 720px);
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #111, rgb(139 30 45 / 70%), rgb(201 168 106 / 85%), #111) border-box;
  border: 1px solid transparent;
  box-shadow: 0 28px 72px rgb(0 0 0 / 12%);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 46%, rgb(201 168 106 / 10%) 74%, rgb(139 30 45 / 7%) 100%),
    linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 0%) 35%, rgb(0 0 0 / 8%) 100%);
  box-shadow: inset 0 0 0 1px rgb(17 17 17 / 14%);
}

.map-frame iframe {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 0;
  filter: saturate(1.42) contrast(1.08) brightness(1.07);
  transform: scale(1.015);
  transform-origin: center;
}

.map-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 70px;
  z-index: 2;
  display: grid;
  gap: 7px;
  max-width: 430px;
  padding: 24px;
  background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgb(0 0 0 / 16%);
}

.map-card span,
.map-card small,
.map-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card strong {
  font-size: 1.65rem;
  line-height: 1.05;
}

.map-card a {
  position: relative;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--text);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.map-card a::after {
  content: "↗";
  margin-left: 10px;
}

.map-strip {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #111;
  color: #fff;
}

.map-strip span {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: rgb(255 255 255 / 72%);
  text-align: center;
}

.map-strip span + span {
  border-left: 1px solid rgb(255 255 255 / 16%);
}

.map-frame:hover iframe {
  filter: saturate(1.58) contrast(1.1) brightness(1.08);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 1fr;
  gap: clamp(32px, 6vw, 116px);
  padding: clamp(54px, 6vw, 78px) clamp(24px, 3vw, 60px) clamp(72px, 8vw, 108px);
}

.footer-columns section {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-columns h2 {
  margin: 0 0 8px;
  color: #707070;
  font-size: 0.82rem;
  font-weight: 500;
}

.footer-columns a {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.35;
}

.footer-columns a:hover {
  text-decoration: underline;
}

.footer-strong {
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 110px;
  padding: 24px clamp(24px, 3vw, 60px);
  background: #000;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  justify-self: end;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 46px;
  border: 1px solid #777;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fashion-reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.75s var(--ease);
}

.fashion-reveal-ready [data-reveal].is-revealed {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 4.9rem;
  }

  .story-copy h2,
  .section-head h2,
  .materials-copy h2,
  .price-copy h2,
  .location-copy h2 {
    font-size: 2.9rem;
  }

  .editorial-copy h2,
  .cta h2 {
    font-size: 3.1rem;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -42px var(--gutter) 0 auto;
  }

  .service-grid,
  .story-cards,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: clamp(24px, 3.6vw, 44px);
  }

  .map-frame {
    min-height: clamp(560px, 56vw, 660px);
  }
}

@media (max-width: 900px) {
  .header-bottom {
    display: none;
  }

  .header-actions a:not(.header-cta) {
    display: none;
  }

  .mobile-backdrop,
  .mobile-drawer {
    display: block;
  }

  .hero,
  .hero-copy {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 4.05rem;
  }

  .hero-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .hero-card img {
    width: 130px;
  }

  .story,
  .materials,
  .price,
  .location,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .materials-copy {
    position: static;
  }

  .editorial-media,
  .editorial-copy {
    min-height: 460px;
  }

  .trust-row,
  .instagram-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-top {
    min-height: 72px;
    padding-inline: 14px;
  }

  .brand span {
    font-size: 2rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .header-actions .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero,
  .hero-copy {
    min-height: 690px;
  }

  .hero-copy {
    padding-top: 72px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-card {
    width: auto;
    margin: 0 var(--gutter) 30px;
    grid-template-columns: 1fr;
  }

  .hero-card img {
    width: 100%;
    height: 180px;
    min-height: 0;
  }

  .story-copy h2,
  .section-head h2,
  .materials-copy h2,
  .price-copy h2,
  .location-copy h2 {
    font-size: 2.35rem;
  }

  .editorial-copy h2,
  .cta h2 {
    font-size: 2.55rem;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .service-grid,
  .process-grid,
  .reel-grid,
  .story-cards,
  .testimonial-grid,
  .trust-row,
  .instagram-grid,
  .footer-columns,
  .facts {
    grid-template-columns: 1fr;
  }

  .reel-card,
  .reel-card video {
    min-height: 470px;
  }

  .price-table div {
    grid-template-columns: 1fr;
  }

  .price-table strong {
    justify-self: start;
  }

  .map-frame {
    min-height: 520px;
    padding: 8px;
  }

  .map-frame iframe {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }

  .map-frame::after {
    inset: 8px;
  }

  .map-card {
    left: 20px;
    right: 20px;
    bottom: 78px;
    padding: 18px;
  }

  .map-card strong {
    font-size: 1.35rem;
  }

  .map-strip {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: 1fr;
  }

  .map-strip span {
    min-height: 36px;
  }

  .map-strip span + span {
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom p:last-child {
    justify-self: center;
  }
}

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

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

  .fashion-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
