:root {
  --ink: #211e1b;
  --ink-soft: #514b45;
  --paper: #f7f5f1;
  --paper-deep: #ebe7e0;
  --champagne: #9d8664;
  --olive: #56624f;
  --umber: #493a31;
  --line: rgba(21, 21, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 70px rgba(20, 18, 15, 0.16);
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 68px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.topbar.is-scrolled,
.topbar.topbar-dark {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: grid;
  gap: 2px;
  min-width: max-content;
}

.brand-mark strong {
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.45vw, 1.18rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark span {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.65vw, 22px);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 7px 0;
}

.nav-collection {
  position: relative;
}

.nav-collection summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

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

.nav-collection summary::after {
  content: "+";
  font-size: 0.82rem;
  font-weight: 400;
}

.nav-collection[open] summary::after {
  content: "−";
}

.nav-collection summary.is-active {
  color: var(--champagne);
}

.nav-collection-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  display: grid;
  width: 230px;
  padding: 10px;
  color: var(--ink);
  background: rgba(247, 245, 241, 0.98);
  box-shadow: 0 18px 50px rgba(21, 21, 21, 0.16);
}

.nav-collection-menu a {
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-collection-menu a:hover,
.nav-collection-menu a.is-active {
  color: var(--umber);
  background: var(--paper-deep);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  color: #fff;
  background: #111;
  isolation: isolate;
}

.hero.is-loaded .hero-media img {
  transform: scale(1);
  opacity: 1;
}

.hero.hero-small {
  min-height: 72svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.36)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 38%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 150px 0 88px;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(3.7rem, 11vw, 9.8rem);
}

.hero p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--champagne);
  border-color: var(--champagne);
}

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

.button.button-ghost {
  background: transparent;
  color: inherit;
}

.button.button-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.hero .button.button-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.hero-foot {
  position: absolute;
  inset: auto clamp(20px, 5vw, 68px) 26px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(20px, 5vw, 68px);
}

.section.alt {
  background: var(--paper-deep);
}

.section.dark {
  color: #fff;
  background: var(--ink);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.section-header.center {
  display: block;
  max-width: 860px;
  text-align: center;
}

.section-header h2 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
}

.section-header p {
  margin: 0;
  color: var(--ink-soft);
}

.dark .section-header p {
  color: rgba(255, 255, 255, 0.68);
}

.lede {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.grid {
  display: grid;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

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

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

.service-card,
.portfolio-card,
.package-card,
.journal-card,
.quote-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.service-card,
.portfolio-card {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.service-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-card img,
.portfolio-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.1) 62%);
}

.service-card:hover img,
.portfolio-card:hover img {
  transform: scale(1.045);
}

.service-card:hover::before,
.portfolio-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.card-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.card-copy h3 {
  margin: 7px 0 10px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.meta {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.editorial-split.reverse {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 0.82fr);
}

.editorial-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(251, 250, 247, 0.72);
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.editorial-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.editorial-copy p {
  color: var(--ink-soft);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.suite-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.suite {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 340px;
  padding: 28px;
  background: var(--paper);
}

.suite::before,
.package-card::before,
.quote-card::before,
.journal-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 159, 115, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 240ms ease, transform 240ms ease;
}

.suite:hover::before,
.package-card:hover::before,
.quote-card:hover::before,
.journal-card:hover::before,
.process-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.suite h3 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.suite p {
  margin: 0;
  color: var(--ink-soft);
}

.suite a {
  align-self: end;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-underline-offset: 5px;
}

.suite.moments {
  background: linear-gradient(135deg, rgba(106, 74, 60, 0.13), var(--paper));
}

.suite.brands {
  background: linear-gradient(135deg, rgba(86, 98, 79, 0.14), var(--paper));
}

.suite.flow {
  background: linear-gradient(135deg, rgba(184, 159, 115, 0.18), var(--paper));
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 44px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.mini-stat {
  padding: 28px;
  background: var(--paper);
}

.mini-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
}

.mini-stat span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.package-card {
  display: grid;
  gap: 20px;
  padding: 32px;
  color: var(--ink);
  background: #fff;
}

.package-card h3 {
  font-size: 2.6rem;
}

.price {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.package-card ul,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.package-card li,
.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.package-card li::before,
.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 12px;
  border-radius: 50%;
  background: var(--champagne);
}

.portfolio-card {
  min-height: 430px;
}

.portfolio-card.tall {
  min-height: 620px;
}

.quote-card,
.journal-card,
.process-card {
  padding: 30px;
  color: var(--ink);
  background: #fff;
}

.quote-card blockquote {
  margin: 0;
  color: var(--ink-soft);
}

.quote-card strong,
.journal-card strong,
.process-card strong {
  display: block;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.journal-card h3,
.process-card h3 {
  margin: 10px 0;
  font-size: 2rem;
  line-height: 1.05;
}

.journal-card p,
.process-card p {
  color: var(--ink-soft);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  .hero-media img,
  .reveal-on-scroll,
  .service-card img,
  .portfolio-card img,
  .service-card::before,
  .portfolio-card::before,
  .suite::before,
  .package-card::before,
  .quote-card::before,
  .journal-card::before,
  .process-card::before {
    transition: none;
  }

  .hero-media img,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 6vw, 76px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 0;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--champagne);
}

.contact-form option {
  color: var(--ink);
}

.contact-notes {
  padding: 30px;
  border: 1px solid var(--line-light);
}

.contact-notes a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--champagne);
}

.footer {
  padding: 50px clamp(20px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.68);
  background: #0e0e0e;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer a:hover {
  color: #fff;
}

.article {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 90px;
}

.article h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 7rem);
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.article p {
  color: var(--ink-soft);
}

.faq {
  display: grid;
  gap: 14px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.faq p {
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-collection-menu {
    position: static;
    width: auto;
    padding: 6px 0 0 12px;
    background: transparent;
    box-shadow: none;
  }

  .nav-collection-menu a {
    padding: 8px 0;
  }

  .section-header,
  .editorial-split,
  .editorial-split.reverse,
  .contact-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .suite-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .topbar {
    padding: 16px 18px;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding-top: 118px;
  }

  .hero-foot {
    display: none;
  }

  .section {
    padding: 62px 18px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .field-grid,
  .suite-strip,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .portfolio-card,
  .portfolio-card.tall {
    min-height: 430px;
  }

  .editorial-image,
  .editorial-image img {
    min-height: 430px;
  }

  .card-copy,
  .package-card,
  .quote-card,
  .journal-card,
  .process-card,
  .contact-notes {
    padding: 24px;
  }
}

/* Cinematic mother-site homepage */
.header-logo-right {
  display: none !important;
}

.cinematic-hero .hero-media .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
}

.cinematic-hero .hero-inner {
  width: min(1200px, calc(100% - 40px));
  padding: 130px 0 78px;
}

.cinematic-hero .hero-copy {
  max-width: 1100px;
}

.cinematic-hero h1 {
  max-width: 1100px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.88;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 700ms ease;
}

.cinematic-hero.video-ready .hero-video {
  opacity: 1;
}

.hero-statement {
  margin-top: 18px !important;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem) !important;
  line-height: 1;
}

.discipline-section {
  background: var(--paper);
}

.discipline-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 18px;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: center;
}

.discipline {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.discipline-featured {
  min-height: 680px;
}

.discipline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 65%);
}

.discipline::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease;
}

.discipline:hover::before {
  opacity: 1;
  transform: scale(1);
}

.discipline img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms ease;
}

.discipline:hover img {
  transform: scale(1.035);
}

.discipline > div {
  padding: 32px;
}

.discipline h3 {
  margin-top: 8px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.featured-work {
  padding-bottom: clamp(90px, 12vw, 170px);
}

.featured-work .section-header {
  align-items: end;
}

.text-link {
  justify-self: end;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--champagne);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-list {
  display: grid;
  gap: clamp(70px, 10vw, 140px);
  width: min(1180px, 100%);
  margin: 80px auto 0;
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  color: #fff;
}

.project-row-reverse {
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.25fr);
}

.project-row-reverse .project-media {
  grid-column: 2;
  grid-row: 1;
}

.project-row-reverse .project-copy {
  grid-column: 1;
  grid-row: 1;
}

.project-number {
  position: absolute;
  top: -30px;
  left: -12px;
  z-index: 2;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2rem;
}

.project-media {
  position: relative;
  height: min(68vw, 680px);
  overflow: hidden;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.project-row:hover .project-media img {
  transform: scale(1.025);
}

.project-copy h3 {
  margin: 12px 0;
  font-size: clamp(3rem, 6vw, 6rem);
}

.project-copy p {
  color: rgba(255, 255, 255, 0.64);
}

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 68px);
  background: #f7f7f4;
}

.ecosystem-intro h2 {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.ecosystem-links {
  display: grid;
}

.ecosystem-links a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.ecosystem-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.ecosystem-links span,
.ecosystem-links em {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-style: normal;
  text-transform: uppercase;
}

.ecosystem-links strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.testimonial-section {
  background: var(--paper);
}

.testimonial-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(1080px, 100%);
  margin: 60px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.testimonial-pair blockquote {
  margin: 0;
  padding: clamp(32px, 5vw, 64px);
  background: var(--paper);
}

.testimonial-pair p {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

.testimonial-pair cite {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .discipline-grid,
  .ecosystem-section,
  .testimonial-pair {
    grid-template-columns: 1fr;
  }

  .discipline,
  .discipline-featured {
    min-height: 620px;
  }

  .project-row,
  .project-row-reverse {
    grid-template-columns: 1fr;
  }

  .project-row-reverse .project-media,
  .project-row-reverse .project-copy {
    grid-column: 1;
  }

  .project-row-reverse .project-media {
    grid-row: 1;
  }

  .project-row-reverse .project-copy {
    grid-row: 2;
  }

  .text-link {
    justify-self: start;
  }
}

@media (max-width: 680px), (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .cinematic-hero .hero-media .hero-poster {
    object-position: 54% center;
  }
}

@media (max-width: 680px) {
  .cinematic-hero .hero-inner {
    width: calc(100% - 36px);
    padding: 112px 0 46px;
  }

  .cinematic-hero h1 {
    font-size: clamp(3.45rem, 18vw, 4.6rem);
  }

  .hero-statement {
    font-size: 2rem !important;
  }

  .discipline,
  .discipline-featured {
    min-height: 520px;
  }

  .discipline > div {
    padding: 24px;
  }

  .project-list {
    margin-top: 50px;
  }

  .project-media {
    height: 520px;
  }

  .ecosystem-section {
    padding: 72px 18px;
  }

  .ecosystem-links a {
    grid-template-columns: 30px 1fr;
  }

  .ecosystem-links em {
    grid-column: 2;
  }
}

/* Bespoke refinement */
.brand-logo {
  width: auto;
  height: 76px;
  object-fit: contain;
  transition: filter 220ms ease, opacity 220ms ease;
}

.topbar {
  padding-top: 18px;
  padding-bottom: 18px;
}

.topbar.is-scrolled .brand-logo,
.topbar.topbar-dark .brand-logo {
  filter: invert(1);
}

.primary-nav {
  gap: clamp(14px, 1.5vw, 24px);
  font-size: 0.68rem;
  font-weight: 500;
}

.button {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.7rem;
}

.cinematic-hero .hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(900px, calc(100% - 40px));
  padding: 140px 0 70px;
  text-align: center;
}

.cinematic-hero .hero-copy {
  max-width: 720px;
}

.cinematic-hero h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.cinematic-hero p {
  max-width: 590px;
  margin: 24px auto 0;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
}

.cinematic-hero .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
}

.cinematic-hero .eyebrow::before {
  display: none;
}

.cinematic-hero .hero-actions {
  justify-content: center;
  width: min(360px, 100%);
  margin-right: auto;
  margin-left: auto;
  margin-top: 34px;
}

.cinematic-hero .hero-actions .button {
  flex: 1 1 0;
  justify-content: center;
  min-width: 0;
}

.cinematic-hero::after {
  background: rgba(0, 0, 0, 0.38);
}

.studio-intro {
  display: grid;
  justify-items: center;
  padding: clamp(90px, 11vw, 150px) 20px;
  text-align: center;
  background: var(--paper);
}

.studio-intro .eyebrow::before {
  display: none;
}

.studio-intro h2 {
  max-width: 850px;
  margin-top: 22px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
}

.studio-intro p {
  max-width: 720px;
  margin: 30px 0 26px;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
}

.text-link-dark {
  justify-self: center;
  color: var(--ink);
  border-color: var(--ink);
}

.section-header h2,
.editorial-copy h2,
.ecosystem-intro h2,
.contact-panel h1,
.contact-panel h2,
.article h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1;
}

.section-header p,
.editorial-copy p,
.project-copy p,
.contact-panel p {
  font-size: 0.96rem;
}

.hero-small h1 {
  max-width: 920px;
  font-size: clamp(3.4rem, 5.4vw, 5.4rem);
}

.discipline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.discipline,
.discipline-featured {
  min-height: 620px;
}

.discipline h3,
.card-copy h3 {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  line-height: 1;
}

.service-card,
.portfolio-card,
.portfolio-card.tall {
  min-height: 520px;
}

.project-media {
  height: auto;
  aspect-ratio: 4 / 3;
}

.project-copy h3 {
  font-size: clamp(3rem, 4.8vw, 5rem);
}

.service-card::before,
.portfolio-card::before,
.discipline::before,
.project-media::after,
.editorial-image::after {
  display: none;
}

.ecosystem-links strong {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

.testimonial-pair p {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

@media (max-width: 980px) {
  .brand-logo {
    height: 62px;
  }

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

  .discipline,
  .discipline-featured {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    height: 50px;
  }

  .topbar {
    padding: 12px 18px;
  }

  .primary-nav {
    inset: 70px 18px auto;
  }

  .cinematic-hero .hero-inner {
    width: calc(100% - 36px);
    padding: 108px 0 56px;
  }

  .cinematic-hero h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .cinematic-hero p {
    max-width: 340px;
    font-size: 0.95rem;
  }

  .studio-intro {
    padding: 82px 18px;
  }

  .studio-intro h2,
  .section-header h2,
  .editorial-copy h2,
  .ecosystem-intro h2,
  .contact-panel h1,
  .contact-panel h2,
  .article h1 {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }

  .discipline,
  .discipline-featured,
  .service-card,
  .portfolio-card,
  .portfolio-card.tall {
    min-height: 460px;
  }

  .project-media {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

/* Natural language and line-free details */
.topbar.is-scrolled,
.topbar.topbar-dark {
  border-bottom: 0;
}

.eyebrow::before,
.primary-nav a::after {
  display: none;
}

.nav-cta {
  padding: 9px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero .button.button-ghost {
  border-color: transparent;
  border-radius: 0;
}

.text-link,
.text-link-dark {
  padding-bottom: 0;
  border-bottom: 0;
}

.ecosystem-links a,
.ecosystem-links a:last-child,
.package-card li,
.check-list li,
.faq details {
  border-top: 0;
  border-bottom: 0;
}

.pill-list li {
  border: 0;
}

.suite-strip {
  gap: 18px;
  border: 0;
  background: transparent;
}

.testimonial-pair {
  gap: 30px;
  border: 0;
  background: transparent;
}

.cinematic-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 1;
}

.cinematic-hero .hero-signature {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 86px);
  width: min(1180px, 100%);
  margin: clamp(60px, 8vw, 100px) auto 0;
}

.about-method h3 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-method p,
.founder-copy p,
.about-collection .ecosystem-intro p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.founder-copy {
  display: grid;
  justify-items: center;
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.founder-copy h2 {
  max-width: 780px;
  margin: 22px 0 28px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.founder-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

.founder-copy .button {
  margin-top: 24px;
}

.about-collection .ecosystem-intro {
  align-content: start;
}

.about-collection .ecosystem-intro p {
  max-width: 560px;
  margin: 28px 0 30px;
}

.about-collection .ecosystem-intro .button {
  justify-self: start;
}

@media (max-width: 980px) {
  .about-method {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .cinematic-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .founder-copy h2 {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }
}

/* Compact editorial rhythm */
.section {
  padding: clamp(48px, 5vw, 72px) clamp(20px, 5vw, 68px);
}

.section-header {
  margin-bottom: 30px;
}

.studio-intro {
  padding: clamp(58px, 5.5vw, 76px) 20px;
}

.ecosystem-section {
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(54px, 5.5vw, 76px) clamp(20px, 5vw, 68px);
}

.project-list {
  gap: clamp(44px, 5vw, 68px);
  margin-top: 38px;
}

.featured-work {
  padding-bottom: clamp(54px, 5.5vw, 78px);
}

.testimonial-pair {
  margin-top: 36px;
}

.about-method {
  margin-top: clamp(42px, 5vw, 64px);
}

.cinematic-hero h1 {
  max-width: 920px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 4vw, 4rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.04;
}

.section.luxury-principles {
  background: var(--paper);
}

.section.compact-packages {
  background: var(--paper-deep);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-item .meta {
  display: block;
  margin-top: 20px;
}

.reel-item h3 {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
}

@media (max-width: 760px) {
  .reel-grid {
    grid-template-columns: 1fr;
  }
}

.studio-intro {
  position: relative;
  z-index: 2;
  background: #ddd6cc;
}

.studio-intro::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(221, 214, 204, 0), #ddd6cc);
  pointer-events: none;
}

.studio-intro > * {
  position: relative;
  z-index: 1;
}

.cinematic-hero .hero-actions .button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.instagram-section {
  background: var(--paper);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.instagram-card {
  min-width: 0;
}

.instagram-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
}

.instagram-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.instagram-card:hover .instagram-media img {
  transform: scale(1.025);
}

.instagram-card .meta {
  display: block;
  margin-top: 18px;
}

.instagram-card h3 {
  margin-top: 7px;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

@media (max-width: 760px) {
  .studio-intro::before {
    height: 100px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .instagram-media {
    aspect-ratio: 4 / 4.5;
  }
}

.studio-intro h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
}

.section-header h2,
.editorial-copy h2,
.ecosystem-intro h2,
.contact-panel h1,
.contact-panel h2,
.article h1 {
  font-size: clamp(2.6rem, 3.9vw, 4.1rem);
}

.hero-small h1 {
  font-size: clamp(3.1rem, 4.8vw, 4.7rem);
}

.discipline h3,
.card-copy h3 {
  font-size: clamp(1.9rem, 2.3vw, 2.45rem);
}

.project-copy h3 {
  font-size: clamp(2.8rem, 4vw, 4.15rem);
}

.about-method h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
}

.ecosystem-links strong {
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
}

.testimonial-pair p {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.founder-portrait {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

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

.founder-copy {
  justify-items: start;
  width: auto;
  text-align: left;
}

.founder-copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
}

.principles-grid,
.package-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.principles-grid article,
.package-preview-grid article {
  min-width: 0;
}

.principles-grid h3,
.package-preview-grid h3 {
  margin: 10px 0 14px;
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  line-height: 1;
}

.principles-grid p,
.package-preview-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.package-preview-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--umber);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.compact-packages .section-header > div:last-child {
  display: grid;
  gap: 14px;
  justify-items: start;
}

@media (max-width: 980px) {
  .founder-layout,
  .principles-grid,
  .package-preview-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: min(520px, 100%);
  }

  .principles-grid,
  .package-preview-grid {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 46px 18px;
  }

  .studio-intro,
  .ecosystem-section {
    padding: 50px 18px;
  }

  .cinematic-hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.1rem);
  }

  .studio-intro h2,
  .section-header h2,
  .editorial-copy h2,
  .ecosystem-intro h2,
  .contact-panel h1,
  .contact-panel h2,
  .article h1,
  .founder-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

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

.lumiere-hero h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
}

@media (max-width: 680px) {
  .lumiere-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }
}

/* Journal and long-form editorial pages */
.journal-index {
  padding-top: 134px;
  background: var(--paper);
}

.journal-intro {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
  text-align: center;
}

.journal-intro h1 {
  max-width: 820px;
  margin: 18px auto 24px;
  color: var(--ink);
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.journal-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.journal-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 100px;
}

.journal-story {
  min-width: 0;
}

.journal-story-featured {
  grid-column: 1 / -1;
}

.journal-story-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.journal-story-featured .journal-story-image {
  aspect-ratio: 16 / 7;
}

.journal-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.journal-story:hover .journal-story-image img {
  transform: scale(1.025);
}

.journal-story-copy {
  padding-top: 22px;
}

.journal-story-featured .journal-story-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
  gap: 12px 60px;
  align-items: start;
}

.journal-story-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.journal-story-featured .journal-story-meta,
.journal-story-featured h2 {
  grid-column: 1;
}

.journal-story h2 {
  margin: 13px 0 15px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1;
}

.journal-story h2 a:hover,
.journal-read:hover {
  color: var(--umber);
}

.journal-story p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.journal-story-featured p,
.journal-story-featured .journal-read {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.journal-story-featured .journal-read {
  align-self: end;
}

.journal-read {
  display: inline-flex;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-index-cta {
  display: grid;
  justify-items: center;
  padding: 78px 20px;
  color: #fff;
  text-align: center;
  background: #25211e;
}

.journal-index-cta h2 {
  margin: 16px 0;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.journal-index-cta p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.home-journal {
  background: #ebe5de;
}

.home-journal .section-header > div:last-child {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.home-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-journal .journal-story h2 {
  font-size: clamp(1.8rem, 2.3vw, 2.35rem);
}

.journal-article {
  padding-top: 134px;
  background: var(--paper);
}

.article-masthead {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 50px;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.breadcrumbs span:not(:last-child)::after,
.breadcrumbs a::after {
  content: "/";
  margin-left: 18px;
  color: var(--champagne);
}

.article-masthead h1 {
  max-width: 950px;
  margin: 18px auto 24px;
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.94;
}

.article-deck {
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-byline a {
  color: var(--ink);
}

.article-hero {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.article-hero img {
  width: 100%;
  height: min(68vw, 720px);
  min-height: 420px;
  object-fit: cover;
}

.article-hero figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 760px);
  gap: clamp(44px, 7vw, 100px);
  justify-content: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 100px;
}

.article-contents {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 24px;
  background: #ebe5de;
}

.article-contents > span {
  display: block;
  margin-bottom: 18px;
  color: var(--umber);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-contents ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-contents a {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

.article-contents a:hover {
  color: var(--ink);
}

.article-body > section {
  margin-bottom: 54px;
  scroll-margin-top: 130px;
}

.article-body h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.5vw, 3.25rem);
  line-height: 1;
}

.article-body p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.86;
}

.article-body a:not(.button) {
  color: var(--umber);
}

.article-checklist {
  display: grid;
  gap: 13px;
  padding: 28px;
  margin: 28px 0 0;
  list-style: none;
  background: #ebe5de;
}

.article-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.article-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

.article-faq {
  padding-top: 16px;
}

.article-faq .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.article-faq .faq {
  gap: 10px;
}

.article-faq .faq details {
  padding: 20px 22px;
  background: #ebe5de;
}

.article-faq .faq summary {
  font-size: 1.45rem;
  line-height: 1.1;
}

.article-faq .faq p {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.article-cta {
  display: grid;
  justify-items: start;
  margin-top: 70px;
  padding: clamp(34px, 5vw, 54px);
  color: #fff;
  background: #342a25;
}

.article-cta h2 {
  margin: 16px 0 28px;
  color: #fff;
  font-size: clamp(2.2rem, 3.7vw, 3.45rem);
}

.related-journal {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  gap: 50px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 100px;
}

.related-journal h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
}

.related-journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.related-story {
  display: grid;
  align-content: end;
  min-height: 270px;
  padding: 28px;
  background: #ebe5de;
}

.related-story strong {
  margin: 12px 0 26px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.05;
}

.related-story > span:last-child {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .journal-story-featured .journal-story-copy,
  .article-layout,
  .related-journal {
    grid-template-columns: 1fr;
  }

  .home-journal-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .journal-story-featured p,
  .journal-story-featured .journal-read,
  .journal-story-featured .journal-story-meta,
  .journal-story-featured h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .article-contents {
    position: static;
  }
}

@media (max-width: 680px) {
  .journal-index,
  .journal-article {
    padding-top: 82px;
  }

  .journal-intro,
  .article-masthead {
    padding-top: 42px;
  }

  .journal-intro h1,
  .article-masthead h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .journal-stories,
  .related-journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-story-featured {
    grid-column: auto;
  }

  .journal-story-featured .journal-story-image,
  .journal-story-image {
    aspect-ratio: 4 / 3;
  }

  .article-hero {
    width: 100%;
  }

  .article-hero img {
    height: 62vh;
    min-height: 430px;
  }

  .article-hero figcaption {
    padding: 0 18px;
  }

  .article-layout {
    width: calc(100% - 36px);
    padding: 50px 0 70px;
  }

  .article-body > section {
    margin-bottom: 44px;
  }

  .article-checklist,
  .article-contents {
    padding: 22px;
  }

  .related-journal {
    width: calc(100% - 36px);
    padding: 60px 0 72px;
  }
}
