:root {
  --bg: #050505;
  --bg-soft: #0c0a09;
  --text: #f4eadb;
  --muted: rgba(244, 234, 219, 0.74);
  --cream: #efe0c8;
  --gold: #cfaa73;
  --gold-soft: rgba(207, 170, 115, 0.32);
  --line: rgba(214, 176, 120, 0.14);
  --line-soft: rgba(214, 176, 120, 0.08);
  --max: 1560px;
  --gutter: clamp(20px, 3vw, 32px);
  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 134, 84, 0.16), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(210, 176, 123, 0.08), transparent 18%),
    linear-gradient(180deg, #090807 0%, #050505 52%, #060605 100%);
  overflow-x: clip;
  font-size: 1.05rem;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 128px 128px;
  opacity: 0.36;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 92%);
}

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

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

.site {
  width: 100%;
  overflow-x: clip;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  padding: 0;
  background: rgba(5, 5, 5, 0.18);
  border-bottom: 1px solid rgba(214, 176, 120, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.header.is-scrolled {
  background: rgba(5, 5, 5, 0.28);
  border-bottom-color: rgba(214, 176, 120, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 34%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(180deg, rgba(210, 176, 123, 0.26), rgba(184, 134, 84, 0.07));
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 238, 0.16),
    0 0 18px rgba(184, 134, 84, 0.14);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__text strong {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.logo__text small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: rgba(244, 234, 219, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(214, 176, 120, 0.22);
  background: rgba(255, 248, 238, 0.02);
  color: var(--cream);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--filled {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(214, 176, 120, 0.95), rgba(184, 134, 84, 0.95));
  color: #1f150e;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 248, 238, 0.18);
}

.button--filled::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 245, 224, 0.26) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.button--filled:hover::before {
  transform: translateX(120%);
}

.button--ghost {
  border-color: rgba(214, 176, 120, 0.24);
  background: rgba(255, 248, 238, 0.015);
  color: var(--cream);
}

.button--small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.84rem;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin-top: 72px;
  height: clamp(500px, 56vw, 620px);
  min-height: 500px;
  max-height: 620px;
  background: #050505;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.96) contrast(1.04) brightness(0.94);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(var(--hero-scale, 1.07));
  transform-origin: center center;
  will-change: transform;
  transition: filter 500ms ease;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.88) 0%,
    rgba(5, 5, 5, 0.66) 30%,
    rgba(5, 5, 5, 0.18) 58%,
    rgba(5, 5, 5, 0.03) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
}

.hero__copy {
  max-width: 560px;
}

.hero__copy h1 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(2.6rem, 3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__copy h1 br {
  display: block;
}

.hero__lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero .button {
  min-height: 46px;
  padding: 0 14px;
}

.hero .hero__link {
  min-height: 46px;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--cream);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__link span {
  color: var(--gold);
  font-size: 1.05em;
  line-height: 1;
}

.statement,
.chapter,
.philosophy,
.closing {
  width: min(90vw, 1240px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.statement {
  margin-top: 45px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  grid-template-areas:
    "divider divider"
    "visual content";
  gap: 18px 80px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.statement.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.statement__divider {
  grid-area: divider;
  justify-self: center;
  width: 220px;
  height: 1px;
  margin-bottom: 45px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 173, 112, 0.28),
    rgba(214, 173, 112, 0.76),
    #d6ad70,
    rgba(214, 173, 112, 0.76),
    rgba(214, 173, 112, 0.28),
    transparent
  );
  box-shadow: 0 0 14px rgba(214, 173, 112, 0.24);
  position: relative;
  opacity: 0;
  transform: scaleX(0.92);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.statement__divider::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #d6ad70;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(214, 173, 112, 0.65);
}

.statement__visual {
  grid-area: visual;
  position: relative;
  margin: 0;
  width: min(100%, 460px);
  height: 380px;
  justify-self: start;
  overflow: hidden;
  transform: translateX(-30px);
  opacity: 0;
  z-index: 1;
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
  will-change: opacity, transform;
}

.statement__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.statement__content {
  grid-area: content;
  align-self: center;
  max-width: 540px;
  justify-self: start;
  padding-top: 0;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 120ms;
  will-change: opacity, transform;
}

.statement__content h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.95rem, 2.1vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.statement__content h2 span {
  display: block;
}

.statement__content p {
  margin: 26px 0 0;
  color: rgba(244, 234, 219, 0.86);
  font-size: 17px;
  line-height: 1.7;
  max-width: 460px;
}

.statement.reveal.is-visible .statement__divider {
  opacity: 1;
  transform: scaleX(1);
}

.statement.reveal.is-visible .statement__visual {
  opacity: 1;
  transform: translateX(0);
}

.statement.reveal.is-visible .statement__content {
  opacity: 1;
  transform: translateX(0);
}

.chapters {
  width: 100%;
  padding-top: 0;
}

.chapter {
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 80px;
  align-items: center;
  border-top: none;
}

.chapter--left:first-child {
  border-top-color: transparent;
}

.chapter--identity {
  padding: 80px var(--gutter);
  gap: 80px;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
}

.chapter--identity .chapter__divider--gold {
  margin-bottom: 46px;
}

.chapter--identity .chapter__text {
  max-width: 420px;
  justify-self: start;
  margin-left: 0;
  align-self: center;
}

.chapter--identity .chapter__text h3 {
  max-width: 10ch;
}

.chapter--identity .chapter__text p {
  max-width: 420px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
}

.chapter--identity .chapter__media {
  width: min(100%, 500px);
  height: 400px;
  justify-self: end;
}

.chapter--identity .chapter__meta,
.chapter--identity a {
  display: none;
}

.chapter--digital {
  padding: 80px var(--gutter);
  gap: 80px;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  border-top-color: transparent;
}

.chapter--digital .chapter__divider--gold {
  margin-bottom: 46px;
}

.chapter--digital .chapter__text {
  max-width: 420px;
  justify-self: start;
  align-self: center;
  margin-left: 0;
}

.chapter--digital .chapter__text h3 {
  max-width: 10ch;
}

.chapter--digital .chapter__text p {
  max-width: 420px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
}

.chapter--digital .chapter__media {
  width: min(100%, 500px);
  height: 400px;
  justify-self: start;
}

.chapter--digital .chapter__meta,
.chapter--digital a {
  display: none;
}
.chapter--concept .chapter__text {
  max-width: 420px;
}

.chapter--concept h3 {
  max-width: none;
  white-space: nowrap;
}
.chapter__divider--gold {
  grid-column: 1 / -1;
  justify-self: center;
  width: 220px;
  height: 1px;
  margin: 0 0 44px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 173, 112, 0.3),
    rgba(214, 173, 112, 0.78),
    #d6ad70,
    rgba(214, 173, 112, 0.78),
    rgba(214, 173, 112, 0.3),
    transparent
  );
  box-shadow: 0 0 14px rgba(214, 173, 112, 0.22);
  position: relative;
}

.chapter__divider--gold::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #d6ad70;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(214, 173, 112, 0.65);
}

.chapter--right {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
}

.chapter__text {
  max-width: 430px;
}

.chapter__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 234, 219, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.chapter__meta i {
  display: block;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 176, 120, 0.36), rgba(214, 176, 120, 0.08));
}

.chapter h3 {
  margin-top: 14px;
  max-width: 11ch;
  font-size: clamp(1.95rem, 2.1vw, 2.55rem);
  line-height: 1.1;
  font-weight: 400;
}

.chapter p {
  max-width: 28ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.chapter a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter__media {
  margin: 0;
  min-height: 340px;
  overflow: hidden;
}

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

.chapter--right .chapter__text {
  justify-self: end;
}

.chapter--right .chapter__media {
  order: 1;
}

.chapter--right .chapter__text {
  order: 2;
}

.philosophy {
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 80px;
  align-items: center;
  border-top: none;
}

.philosophy__visual {
  margin: 0;
  min-height: 430px;
  overflow: hidden;
}

.philosophy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.philosophy__copy {
  max-width: 420px;
  justify-self: start;
}

.philosophy__copy h2 {
  margin-top: 14px;
  font-size: clamp(1.95rem, 2.1vw, 2.55rem);
  line-height: 1.1;
  font-weight: 400;
}

.philosophy__copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.philosophy__copy .hero__link {
  margin-top: 20px;
}

.closing {
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  border-top: none;
}

.closing .eyebrow {
  grid-column: 1 / -1;
}

.closing h2 {
  max-width: 13ch;
  font-size: clamp(1.95rem, 2.1vw, 2.55rem);
  line-height: 1.1;
}

.footer {
  width: min(90vw, 1240px);
  margin: 0 auto;
  padding: 22px var(--gutter) 20px;
  border-top: 1px solid var(--line-soft);
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo--footer .logo__mark {
  width: 30px;
  height: 30px;
}

.footer__nav,
.footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__nav a,
.footer__meta a {
  color: rgba(244, 234, 219, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 12px;
  margin-top: 12px;
  color: rgba(244, 234, 219, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid rgba(214, 176, 120, 0.08);
}

.footer__legal div {
  display: flex;
  gap: 18px;
}

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

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

.media-reveal {
  opacity: 0;
  transform: translateY(20px) scale(1.01);
  transition: opacity 900ms ease, transform 900ms ease, filter 900ms ease;
  will-change: opacity, transform;
}

.media-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: brightness(1.02) contrast(1.02) saturate(1.02);
}

@media (max-width: 1180px) {
  .hero__media {
    inset: 0;
  }

  .hero__inner {
    width: min(100%, 1440px);
  }

  .statement {
    grid-template-columns: 1fr;
    grid-template-areas:
      "divider"
      "content"
      "visual";
    padding: 80px var(--gutter);
    gap: 18px;
  }

  .statement__divider {
    grid-area: divider;
  }

  .statement__visual {
    grid-area: visual;
    width: 100%;
    height: clamp(300px, 52vw, 420px);
    transform: translateY(24px);
  }

  .statement__content {
    grid-area: content;
    max-width: 100%;
    transform: translateY(24px);
  }

  .statement.reveal.is-visible .statement__visual,
  .statement.reveal.is-visible .statement__content {
    transform: translateY(0);
  }

  .chapter {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  }

  .chapter--right {
    grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  }

  .chapter--identity {
    width: min(90vw, 1240px);
    gap: 70px;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  }

  .chapter--identity .chapter__text {
    margin-left: 0;
  }

  .chapter--identity .chapter__media {
    width: min(100%, 460px);
    height: 380px;
    justify-self: end;
  }

  .chapter--digital {
    width: min(90vw, 1240px);
    gap: 70px;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  }

  .chapter--digital .chapter__text {
    margin-left: 0;
  }

  .chapter--digital .chapter__media {
    width: min(100%, 460px);
    height: 380px;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .header__inner {
    position: relative;
  }

  .header.is-scrolled {
    background: rgba(5, 5, 5, 0.3);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(214, 176, 120, 0.14);
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.92));
  }

  .header--open .header__menu {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header__cta {
    align-self: flex-start;
  }

  .hero {
    margin-top: 72px;
    height: auto;
    min-height: 620px;
    max-height: none;
  }

  .hero__inner {
    height: auto;
    min-height: 620px;
    padding: 36px var(--gutter) 40px;
    display: flex;
    align-items: flex-start;
    width: min(100%, 1440px);
  }

  .hero__copy {
    max-width: 560px;
    padding-top: 0;
  }

  .hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.375rem);
    line-height: 1.08;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__actions {
    align-items: flex-start;
  }

  .hero__media {
    inset: 0;
    height: 100%;
  }

  .statement {
    grid-template-columns: 1fr;
    grid-template-areas:
      "divider"
      "content"
      "visual";
    padding: 100px 0 100px;
    gap: 16px;
  }

  .statement__divider {
    width: 200px;
    margin-bottom: 34px;
  }

  .statement__visual {
    width: 100%;
    min-height: 280px;
    order: 1;
    margin-top: 0;
    transform: translateY(24px);
    opacity: 0;
  }

  .statement__content {
    order: 2;
    max-width: 100%;
    transform: translateY(24px);
    opacity: 0;
  }

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

  .chapter,
  .chapter--right {
    grid-template-columns: 1fr;
    padding: 46px var(--gutter);
  }

  .chapter--identity {
    width: calc(100vw - 40px);
    padding: 46px 0;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .chapter--identity .chapter__text {
    margin-left: 0;
    max-width: 100%;
    justify-self: start;
  }

  .chapter--identity .chapter__media {
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .chapter--identity .chapter__meta,
  .chapter--identity a {
    display: none;
  }

  .chapter--digital {
    width: calc(100vw - 40px);
    padding: 46px 0;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .chapter--digital .chapter__text {
    margin-left: 0;
    max-width: 100%;
    justify-self: start;
  }

  .chapter--digital .chapter__media {
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .chapter--digital .chapter__meta,
  .chapter--digital a {
    display: none;
  }

  .chapter__text,
  .chapter--right .chapter__text {
    order: 1;
    justify-self: start;
    max-width: 100%;
  }

  .chapter__media,
  .chapter--right .chapter__media {
    order: 2;
    min-height: 300px;
  }

  .philosophy {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .philosophy__visual {
    min-height: 340px;
    order: 1;
  }

  .philosophy__copy {
    order: 2;
    max-width: 520px;
  }

  .closing {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .closing h2 {
    max-width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__nav,
  .footer__meta {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero__inner {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .hero__copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.375rem);
  }

  .statement,
  .chapter,
  .philosophy,
  .closing,
  .footer {
    width: calc(100vw - 40px);
  }

  .statement {
    padding-left: 0;
    padding-right: 0;
  }

  .statement__content h2,
  .philosophy__copy h2,
  .closing h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .chapter__meta i {
    width: 64px;
  }

  .chapter h3 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .chapter--concept h3 {
    max-width: 100%;
    white-space: normal;
  }

  .chapter__media,
  .philosophy__visual,
  .statement__visual {
    min-height: 300px;
  }

  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__legal div {
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .statement.reveal,
  .statement__divider,
  .statement__visual,
  .statement__content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.studio-section {
  width: 100%;
  padding: 104px 0;
}

.studio-section .container {
  width: min(90vw, 1240px);
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.studio-section h2 {
  margin: 0;
  max-width: 14ch;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 2.7vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-divider {
  display: block;
  width: min(100%, 300px);
  height: 1px;
  margin: 0 auto 36px;
  position: relative;
}

.section-divider--gold {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 173, 112, 0.35),
    rgba(214, 173, 112, 0.85),
    #d6ad70,
    rgba(214, 173, 112, 0.85),
    rgba(214, 173, 112, 0.35),
    transparent
  );
  box-shadow: 0 0 16px rgba(214, 173, 112, 0.28);
}

.section-divider--gold::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #d6ad70;
  box-shadow: 0 0 14px rgba(214, 173, 112, 0.75);
}

.section-divider--between {
  width: min(100%, 340px);
  margin: 0 auto 40px;
}

.section-pain .container {
  display: grid;
  align-items: center;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  max-width: 560px;
}

.video-content {
  max-width: 560px;
  justify-self: end;
}

.section-pain h2 {
  max-width: none;
  font-size: clamp(2rem, 2.2vw, 2.7rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.section-pain .section-lead {
  max-width: 560px;
  margin-top: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.section-pain__video {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border: 0;
  background: #080706;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.grid-three-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
}

.grid-item {
  padding-top: 24px;
}

.grid-item h3 {
  margin: 0;
  max-width: 11ch;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 1.9vw, 2.05rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.grid-item p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section-method,
.section-strategy,
.section-cta {
  border-top: none;
}

.section-method {
  padding-bottom: 88px;
}

.method-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 32px;
  align-items: center;
}

.method-title-box {
  max-width: 520px;
}

.section-method h2 {
  max-width: none;
  font-size: clamp(1.9rem, 2.05vw, 2.45rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.method-image-box {
  width: 100%;
}

.method-card,
.method-card-image {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 12px;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.section-method .grid-item {
  padding-top: 0;
  border-top: 0;
}

.method-card-image {
  height: 260px;
  overflow: hidden;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.method-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: none;
}

.method-card:hover,
.method-card-image:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.method-card-image:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.section-strategy .section-lead {
  max-width: 720px;
}

.section-strategy {
  padding-bottom: 88px;
}

.strategy-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.strategy-title-box {
  max-width: 520px;
}

.section-strategy h2 {
  max-width: none;
  font-size: clamp(1.9rem, 2.05vw, 2.45rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.strategy-image-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 0;
}

.strategy-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: none;
}

.section-strategy .section-lead {
  margin-top: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.section-cta {
  padding-bottom: 88px;
}

.section-cta .container {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.section-cta h2 {
  max-width: none;
  font-size: clamp(1.7rem, 1.95vw, 2.15rem);
  line-height: 1.05;
  margin-bottom: 4px;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(214, 176, 120, 0.24);
  background: linear-gradient(180deg, rgba(214, 176, 120, 0.95), rgba(184, 134, 84, 0.95));
  color: #1f150e;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  filter: brightness(1.03);
}

.studio-footer {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 60px 0;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-branding {
  max-width: 420px;
}

.footer-logo {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
  font-weight: 700;
}

.footer-logo span {
  font-weight: 300;
  opacity: 0.7;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.5;
  margin: 0 0 40px;
}

.copyright {
  font-size: 12px;
  opacity: 0.3;
  margin: 0;
}

.footer-meta {
  display: flex;
  gap: 80px;
}

.meta-group h4 {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  font-weight: 500;
  opacity: 0.4;
}

.footer-mail {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.footer-mail:hover {
  border-color: #ffffff;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

.legal-page {
  padding-top: 72px;
}

.legal-section {
  padding: 140px 0 120px;
}

.legal-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--text);
}

.legal-container h1 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.legal-container h2 {
  margin: 36px 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.legal-container h3 {
  margin: 34px 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.legal-container p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-container a {
  color: var(--cream);
}

.legal-container a:hover {
  color: #ffffff;
}

.header__menu--simple {
  justify-content: flex-end;
}

.showcase-page,
.project-page {
  padding-top: 72px;
}

.showcase-page .header,
.project-page .header {
  background: rgba(5, 5, 5, 0.22);
}

.showcase-main,
.project-page main {
  width: 100%;
}

.showcase-hero,
.project-hero {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 120px var(--gutter) 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 80px;
  align-items: center;
}

.showcase-hero__copy,
.project-hero__copy {
  max-width: 620px;
}

.showcase-hero h1,
.project-hero h1 {
  margin: 12px 0 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 3vw, 3.35rem);
  line-height: 1.05;
}

.showcase-hero__lead,
.project-hero__lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.showcase-hero__visual,
.project-hero__visual {
  margin: 0;
  height: clamp(360px, 44vw, 520px);
  overflow: hidden;
}

.showcase-hero__visual img,
.project-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-entry {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.showcase-entry .chapter__media {
  min-height: 360px;
}

.showcase-entry .chapter__media img,
.project-page .chapter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-page .chapter {
  width: min(100%, 1240px);
  margin-left: auto;
  margin-right: auto;
}

.project-page .chapter + .chapter {
  padding-top: 60px;
}

.project-page .chapter__media {
  min-height: 360px;
}

@media (max-width: 1024px) {
  .studio-section {
    padding: 92px 0;
  }

  .section-divider {
    width: min(100%, 260px);
    margin-bottom: 32px;
  }

  .grid-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .method-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .video-content {
    justify-self: start;
  }

  .method-img {
    height: 100%;
  }

  .method-card-image {
    height: 220px;
  }

  .section-pain__video {
    height: 360px;
  }

  .method-card,
  .method-card-image {
    padding: 32px;
  }

  .grid-three-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
  }

  .studio-section h2 {
    max-width: 16ch;
  }

  .strategy-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strategy-image-box {
    height: 220px;
  }

  .section-method,
  .section-strategy,
  .section-cta {
    padding-bottom: 76px;
  }

  .section-cta .container {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .studio-section {
    padding: 80px 0;
  }

  .section-divider {
    width: min(100%, 220px);
    margin-bottom: 28px;
  }

  .studio-section .container,
  .studio-footer {
    width: calc(100vw - 40px);
  }

  .studio-section h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .section-pain h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    white-space: normal;
  }

  .section-pain .section-lead {
    max-width: 100%;
  }

  .method-card,
  .method-card-image {
    padding: 32px;
  }

  .method-img {
    border-radius: 8px;
  }

  .strategy-img {
    border-radius: 8px;
  }

  .section-strategy h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    white-space: normal;
  }

  .strategy-image-box {
    height: 200px;
  }

  .section-cta h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    white-space: normal;
  }

  .legal-page {
    padding-top: 72px;
  }

  .legal-section {
    padding: 110px 0 96px;
  }

  .legal-container h1 {
    margin-bottom: 24px;
  }

  .legal-container h3 {
    margin-top: 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 30px;
  }

  .section-lead {
    font-size: 1rem;
    line-height: 1.72;
  }
}
