:root {
  --black: #050505;
  --ink: #0b0c0d;
  --charcoal: #121416;
  --graphite: #1d2223;
  --stone: #d9d3c7;
  --white: #f7f4ee;
  --muted: #a9a296;
  --gold: #b99b5f;
  --gold-soft: #d8c28c;
  --coastal: #3b3b37;
  --line: rgba(247, 244, 238, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 1) 34%),
    radial-gradient(circle at top left, rgba(185, 155, 95, 0.1), transparent 34rem),
    var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-monogram {
  width: 72px;
  height: 48px;
  flex: 0 0 auto;
  color: #0b0c0d;
}

.editorial-dark .brand-monogram,
.site-footer.is-dark .brand-monogram {
  color: #f7f3ea;
}

.monogram-rule,
.monogram-l {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.monogram-l {
  stroke-width: 2.4;
}

.monogram-number {
  fill: #8c733f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 194, 140, 0.48);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(247, 244, 238, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-offset {
  scroll-margin-top: 92px;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0;
  scroll-margin-top: 82px;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 142px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 78px;
}

.hero-background {
  position: absolute;
  inset: 76px -18px 44px;
  z-index: -1;
  border: 1px solid rgba(247, 244, 238, 0.06);
  background:
    linear-gradient(90deg, rgba(185, 155, 95, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0));
}

.hero-media {
  position: relative;
  min-height: 610px;
}

.media-frame {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 238, 0.14);
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.14), rgba(247, 244, 238, 0.06)),
    linear-gradient(160deg, #101214 0%, #232727 42%, #090a0b 100%);
  box-shadow: var(--shadow);
}

.hero-visual {
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.16), rgba(247, 244, 238, 0.055)),
    linear-gradient(155deg, #0c0d0f 0%, #242827 36%, #08090a 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

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

.media-frame::before,
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.media-frame::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.72)),
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 35% 36%, transparent 36%),
    linear-gradient(16deg, transparent 0 50%, rgba(5, 5, 5, 0.58) 50% 100%);
}

.media-frame::after {
  inset: auto 22px 22px auto;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 244, 238, 0.36);
  background: rgba(5, 5, 5, 0.32);
}

.media-frame span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  color: rgba(247, 244, 238, 0.84);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-frame-large {
  min-height: 610px;
}

.floating-proof {
  position: absolute;
  right: -28px;
  bottom: 46px;
  z-index: 4;
  width: min(280px, 74%);
  padding: 22px;
  border: 1px solid rgba(216, 194, 140, 0.28);
  background: rgba(11, 12, 13, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.floating-proof span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-proof strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-content {
  padding-top: 8px;
}

.eyebrow,
.section-kicker,
.package-label {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(4.35rem, 7.4vw, 7.35rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
}

h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 705px;
  color: rgba(247, 244, 238, 0.78);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--gold-soft);
  color: #101010;
  box-shadow: 0 12px 34px rgba(216, 194, 140, 0.14);
}

.button-secondary {
  border-color: rgba(247, 244, 238, 0.34);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(216, 194, 140, 0.36);
  color: var(--gold-soft);
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
  color: rgba(247, 244, 238, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-strip span {
  padding-right: 12px;
  border-right: 1px solid rgba(247, 244, 238, 0.18);
}

.market-strip span:last-child {
  border-right: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: start;
}

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

.built-for {
  padding-top: 24px;
  padding-bottom: 92px;
}

.built-for .section-kicker {
  margin-bottom: 24px;
}

.built-for-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
}

.built-for-strip span {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(247, 244, 238, 0.1);
  color: rgba(247, 244, 238, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1.05;
  text-align: center;
}

.built-for-strip span:last-child {
  border-right: 0;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 74px;
  align-items: start;
}

.mission-statement {
  position: sticky;
  top: 116px;
}

.mission-statement blockquote {
  margin: 44px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(216, 194, 140, 0.38);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
}

.mission-copy {
  padding-top: 8px;
  color: rgba(247, 244, 238, 0.72);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.mission-copy p {
  margin-bottom: 26px;
}

.mission-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

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

.markets-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.markets-layout .section-heading {
  margin-bottom: 0;
}

.markets-intro {
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

.markets-intro p:last-child {
  margin-bottom: 0;
}

.market-grid,
.serve-grid,
.package-grid,
.addon-grid,
.process-steps {
  display: grid;
  gap: 16px;
}

.market-grid {
  grid-template-columns: repeat(5, 1fr);
}

.market-tile,
.serve-grid article,
.package-card,
.process-steps article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.016);
}

.market-tile {
  min-height: 158px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.market-tile:hover {
  border-color: rgba(216, 194, 140, 0.28);
  background:
    linear-gradient(180deg, rgba(185, 155, 95, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.016);
  transform: translateY(-2px);
}

.market-tile span,
.service-list span,
.process-steps span {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.market-tile h3 {
  margin-bottom: 0;
}

.markets-note {
  max-width: 760px;
  margin: 34px 0 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 194, 140, 0.28);
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.serve-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.serve-layout .section-heading {
  margin-bottom: 0;
}

.serve-intro {
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

.serve-intro p:last-child {
  margin-bottom: 0;
}

.serve-grid {
  grid-template-columns: repeat(6, 1fr);
}

.serve-grid article {
  min-height: 275px;
  padding: 26px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
}

.serve-grid article:nth-child(4),
.serve-grid article:nth-child(5) {
  grid-column: span 3;
}

.serve-grid article span {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: auto;
}

.serve-grid h3 {
  margin: 44px 0 14px;
}

.serve-grid p,
.service-list p,
.package-card li,
.portfolio-item p,
.process-steps p,
.final-cta p {
  color: rgba(247, 244, 238, 0.68);
}

.serve-note {
  max-width: 760px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 194, 140, 0.28);
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.create-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.create-layout .section-heading {
  margin-bottom: 0;
}

.create-intro {
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

.create-intro p:last-child {
  margin-bottom: 0;
}

.media-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-menu article {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(216, 194, 140, 0.045), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
  display: flex;
  flex-direction: column;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.media-menu article:hover {
  border-color: rgba(216, 194, 140, 0.28);
  background:
    linear-gradient(145deg, rgba(216, 194, 140, 0.075), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.016);
  transform: translateY(-2px);
}

.media-menu span {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: auto;
}

.media-menu h3 {
  margin: 44px 0 14px;
}

.media-menu p {
  color: rgba(247, 244, 238, 0.68);
  margin-bottom: 0;
}

.create-note {
  max-width: 820px;
  margin: 34px auto 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 194, 140, 0.28);
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

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

.service-list div {
  display: grid;
  grid-template-columns: 64px minmax(160px, 0.42fr) 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.service-list h3,
.service-list p {
  margin-bottom: 0;
}

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

.package-card {
  position: relative;
  min-height: 760px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.package-card:hover {
  border-color: rgba(216, 194, 140, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
  transform: translateY(-3px);
}

.package-card.featured {
  border-color: rgba(216, 194, 140, 0.46);
  background:
    linear-gradient(180deg, rgba(185, 155, 95, 0.17), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.package-card.featured:hover {
  border-color: rgba(216, 194, 140, 0.62);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.package-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(216, 194, 140, 0.42);
  color: var(--gold-soft);
  background: rgba(5, 5, 5, 0.38);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.package-card h3 {
  max-width: 300px;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.price {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.18rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 26px;
}

.package-best {
  padding: 18px 0;
  border-top: 1px solid rgba(247, 244, 238, 0.1);
  border-bottom: 1px solid rgba(247, 244, 238, 0.1);
  margin-bottom: 24px;
}

.package-best span,
.package-includes {
  display: block;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.package-best p {
  color: rgba(247, 244, 238, 0.74);
  line-height: 1.5;
  margin-bottom: 0;
}

.package-includes {
  margin-bottom: 14px;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.89rem;
  line-height: 1.45;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
}

.package-card a {
  margin-top: auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 194, 140, 0.34);
  background: rgba(5, 5, 5, 0.26);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0 16px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.package-card a:hover {
  border-color: rgba(216, 194, 140, 0.58);
  background: rgba(216, 194, 140, 0.12);
  color: var(--white);
}

.package-card.featured a {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: #101010;
}

.pricing-note {
  max-width: 920px;
  margin: -14px 0 34px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 194, 140, 0.24);
  background:
    linear-gradient(135deg, rgba(185, 155, 95, 0.075), transparent 42%),
    rgba(255, 255, 255, 0.018);
  color: rgba(247, 244, 238, 0.72);
  font-size: 0.92rem;
}

.package-cta {
  margin-top: 26px;
  padding: 32px;
  border: 1px solid rgba(216, 194, 140, 0.28);
  background:
    linear-gradient(135deg, rgba(185, 155, 95, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.018);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.package-cta p {
  max-width: 560px;
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.package-cta .hero-actions {
  flex-shrink: 0;
  margin-top: 0;
}

.addons-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.addons-layout .section-heading {
  margin-bottom: 0;
}

.addons-intro {
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

.addons-intro p:last-child {
  margin-bottom: 0;
}

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

.addon-grid article {
  min-height: 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.018);
  display: grid;
  gap: 12px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.addon-grid article:hover {
  border-color: rgba(216, 194, 140, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.addon-grid article > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.1);
  margin-bottom: 0;
}

.addon-grid h3 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 1rem;
}

.addon-grid span {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.addon-grid p {
  color: rgba(247, 244, 238, 0.66);
  font-size: 0.92rem;
  line-height: 1.52;
  margin-bottom: 0;
}

.addon-custom {
  grid-column: span 2;
  border-color: rgba(216, 194, 140, 0.26);
  background:
    linear-gradient(135deg, rgba(185, 155, 95, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.018);
}

.addons-note {
  max-width: 760px;
  margin: 34px 0 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 194, 140, 0.28);
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.portfolio-layout .section-heading {
  margin-bottom: 0;
}

.portfolio-intro {
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

.portfolio-intro p:last-child {
  margin-bottom: 0;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: 18px;
  border: 1px solid rgba(216, 194, 140, 0.26);
  background:
    linear-gradient(135deg, rgba(185, 155, 95, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.018);
}

.project-copy {
  min-height: 700px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-kicker {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: auto;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  line-height: 0.92;
}

.project-copy p:not(.portfolio-type) {
  color: rgba(247, 244, 238, 0.7);
}

.placeholder-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 194, 140, 0.24);
  color: rgba(247, 244, 238, 0.58);
  font-size: 0.92rem;
}

.project-asset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.project-asset-list span {
  border: 1px solid rgba(247, 244, 238, 0.12);
  padding: 7px 9px;
  color: rgba(247, 244, 238, 0.64);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-showcase {
  display: grid;
  grid-template-rows: minmax(360px, 0.92fr) auto;
  gap: 18px;
  padding: 18px 18px 18px 0;
}

.portfolio-video-slot {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 238, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.72)),
    linear-gradient(135deg, rgba(216, 194, 140, 0.14), rgba(247, 244, 238, 0.055)),
    linear-gradient(155deg, #101214 0%, #272b2b 42%, #08090a 100%);
  box-shadow: var(--shadow);
}

.portfolio-video-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 35% 36%, transparent 36%),
    linear-gradient(16deg, transparent 0 48%, rgba(5, 5, 5, 0.58) 48% 100%);
}

.portfolio-video-slot::after {
  display: none;
}

.video-slot-center span::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(216, 194, 140, 0.9);
}

.video-slot-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 18px;
  transform: translate(-50%, -50%);
}

.video-slot-center span {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(216, 194, 140, 0.48);
  background: rgba(5, 5, 5, 0.34);
  display: grid;
  place-items: center;
}

.video-slot-center p {
  color: rgba(247, 244, 238, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portfolio-media {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 238, 0.14);
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(247, 244, 238, 0.045)),
    linear-gradient(160deg, #101214 0%, #232727 42%, #090a0b 100%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.portfolio-media.has-image {
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.64)),
    var(--portfolio-image);
}

.portfolio-media::before,
.portfolio-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portfolio-media::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 31%, rgba(255, 255, 255, 0.09) 31% 31.4%, transparent 31.4%),
    linear-gradient(16deg, transparent 0 48%, rgba(5, 5, 5, 0.58) 48% 100%);
}

.portfolio-media::after {
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(216, 194, 140, 0.36);
  background: rgba(5, 5, 5, 0.22);
}

.placeholder-cover {
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.14), rgba(247, 244, 238, 0.055)),
    linear-gradient(155deg, #111315 0%, #2b3030 38%, #090b0c 100%);
}

.placeholder-exterior {
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.18), rgba(77, 64, 54, 0.2)),
    linear-gradient(155deg, #171513 0%, #2a261f 46%, #080808 100%);
}

.placeholder-detail {
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.1), rgba(247, 244, 238, 0.065)),
    linear-gradient(155deg, #101415 0%, #1f2a26 46%, #070807 100%);
}

.placeholder-wide {
  background:
    linear-gradient(135deg, rgba(247, 244, 238, 0.09), rgba(185, 155, 95, 0.18)),
    linear-gradient(155deg, #111111 0%, #242120 42%, #080808 100%);
}

.placeholder-reels,
.placeholder-clips {
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.18), rgba(25, 34, 36, 0.3)),
    linear-gradient(155deg, #0c0d0e 0%, #1b2224 48%, #080808 100%);
}

.placeholder-clips {
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.13), rgba(77, 64, 54, 0.26)),
    linear-gradient(155deg, #111213 0%, #23201e 48%, #080808 100%);
}

.portfolio-media-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.portfolio-media-label span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.portfolio-media-label strong {
  max-width: 160px;
  color: rgba(247, 244, 238, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.45;
  text-align: right;
}

.portfolio-copy {
  min-height: 154px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.portfolio-type {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.portfolio-item h3,
.portfolio-item p {
  margin-bottom: 0;
}

.portfolio-note {
  max-width: 780px;
  margin: 34px auto 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 194, 140, 0.28);
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.process-layout .section-heading {
  margin-bottom: 0;
}

.process-intro {
  color: rgba(247, 244, 238, 0.7);
  font-size: 1.02rem;
}

.process-intro p:last-child {
  margin-bottom: 0;
}

.process-steps {
  grid-template-columns: repeat(5, 1fr);
}

.process-steps article {
  position: relative;
  min-height: 330px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.process-steps article::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -17px;
  width: 18px;
  height: 1px;
  background: rgba(216, 194, 140, 0.3);
}

.process-steps article:last-child::after {
  display: none;
}

.process-steps h3 {
  margin: auto 0 16px;
}

.process-steps p {
  margin-bottom: 0;
}

.process-note {
  max-width: 760px;
  margin: 34px 0 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 194, 140, 0.28);
  color: rgba(247, 244, 238, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-inline: 16px;
}

.cta-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 96px 72px;
  border: 1px solid rgba(216, 194, 140, 0.28);
  background:
    linear-gradient(135deg, rgba(185, 155, 95, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
}

.cta-panel h2 {
  max-width: 880px;
}

.cta-panel p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(247, 244, 238, 0.72);
  font-size: 1.08rem;
}

.cta-panel strong {
  display: none;
}

.cta-panel .hero-actions {
  margin-top: 42px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.55fr));
  gap: 36px;
}

.footer-brand p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(247, 244, 238, 0.62);
  font-size: 0.92rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0.86rem;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-bottom p {
  color: rgba(247, 244, 238, 0.62);
}

.footer-column a {
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-actions a {
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 244, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 0.72rem;
  }

  .hero,
  .split-layout,
  .mission-layout {
    grid-template-columns: 1fr;
  }

  .mission-statement {
    position: static;
  }

  .hero {
    padding-top: 118px;
    gap: 52px;
  }

  .hero-media {
    min-height: 460px;
    order: 2;
  }

  .media-frame-large {
    min-height: 460px;
  }

  .markets-layout,
  .serve-layout,
  .create-layout,
  .addons-layout,
  .portfolio-layout,
  .process-layout,
  .built-for-strip,
  .market-grid,
  .addon-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .built-for-strip span:nth-child(2n) {
    border-right: 0;
  }

  .built-for-strip span:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(247, 244, 238, 0.1);
  }

  .markets-layout,
  .serve-layout,
  .create-layout,
  .addons-layout,
  .portfolio-layout,
  .process-layout {
    align-items: start;
  }

  .process-steps article::after {
    display: none;
  }

  .addon-custom {
    grid-column: span 2;
  }

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

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

  .serve-grid article,
  .serve-grid article:nth-child(4),
  .serve-grid article:nth-child(5) {
    grid-column: auto;
  }

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

  .package-card {
    min-height: auto;
  }

  .package-badge {
    position: static;
    width: max-content;
    margin-bottom: 16px;
  }

  .package-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 18px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 100px 0 58px;
    gap: 42px;
  }

  .hero-media,
  .media-frame-large {
    min-height: 380px;
  }

  .hero-background {
    inset: 72px -8px 34px;
  }

  .floating-proof {
    right: 14px;
    bottom: 14px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.35rem);
  }

  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .service-list div {
    grid-template-columns: 48px 1fr;
  }

  .service-list p {
    grid-column: 2;
  }

  .featured-project {
    grid-template-columns: 1fr;
  }

  .project-copy {
    min-height: auto;
  }

  .project-showcase {
    padding: 0 18px 18px;
  }

  .portfolio-video-slot {
    min-height: 420px;
  }

  .cta-panel {
    padding: 38px 24px;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .brand-mark strong {
    font-size: 0.72rem;
  }

  .brand-mark small {
    font-size: 0.64rem;
  }

  .brand-number {
    width: 38px;
    height: 38px;
  }

  .markets-layout,
  .serve-layout,
  .create-layout,
  .addons-layout,
  .portfolio-layout,
  .process-layout,
  .built-for-strip,
  .market-grid,
  .addon-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .built-for {
    padding-top: 8px;
    padding-bottom: 66px;
  }

  .built-for-strip span,
  .built-for-strip span:last-child {
    grid-column: auto;
    min-height: 78px;
    border-right: 0;
    border-top: 1px solid rgba(247, 244, 238, 0.1);
  }

  .built-for-strip span:first-child {
    border-top: 0;
  }

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

  .media-menu {
    grid-template-columns: 1fr;
  }

  .markets-note {
    margin-left: 0;
  }

  .addon-custom {
    grid-column: auto;
  }

  .addons-note {
    margin-left: 0;
  }

  .process-note {
    margin-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .market-strip {
    display: flex;
    gap: 8px 14px;
  }

  .market-strip span {
    border-right: 0;
    padding-right: 0;
  }

  .serve-grid article,
  .media-menu article,
  .addon-grid article,
  .process-steps article,
  .market-tile {
    min-height: auto;
  }

  .package-card {
    padding: 26px;
  }

  .project-copy {
    padding: 28px;
  }

  .portfolio-item.large .media-frame,
  .media-frame,
  .portfolio-media,
  .portfolio-video-slot {
    min-height: 300px;
  }

  .hero-media,
  .media-frame-large {
    min-height: 330px;
  }

  .portfolio-asset-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
}

/* Final continuous editorial cleanup */
body,
.editorial-light,
.editorial-dark,
.selected-work,
.built-for,
.brand-statement,
.packages,
.addons,
.process,
.final-cta,
.site-footer {
  background: #f7f3ea;
  color: #0b0c0d;
}

body {
  background: #f7f3ea;
}

.selected-work,
.built-for,
.brand-statement,
.packages,
.addons,
.process,
.final-cta,
.site-footer {
  border-top: 0;
}

.editorial-wrap,
.statement-wrap {
  position: relative;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid rgba(11, 12, 13, 0.07);
}

.brand-symbol {
  width: 58px;
  height: 42px;
  border: 0;
  border-top: 1px solid rgba(11, 12, 13, 0.82);
  border-bottom: 1px solid rgba(11, 12, 13, 0.82);
  background: transparent;
}

.brand-symbol::before {
  width: 1px;
  height: 24px;
  left: 23px;
  top: 9px;
}

.brand-symbol::after {
  width: 18px;
  height: 1px;
  left: 11px;
  top: 20px;
}

.brand-symbol span:first-child {
  left: 6px;
  bottom: 12px;
  font-size: 1.15rem;
}

.brand-symbol span:last-child {
  right: 4px;
  top: 10px;
  font-size: 1.28rem;
}

.brand-mark strong {
  font-size: 0.94rem;
  letter-spacing: 0.24em;
}

.brand-mark small {
  max-width: 260px;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  white-space: normal;
}

.editorial-hero {
  min-height: 96svh;
  grid-template-columns: minmax(280px, 0.39fr) minmax(0, 0.61fr);
  padding-top: 128px;
  padding-bottom: 98px;
  background: #f7f3ea;
}

.editorial-hero-content h1 {
  max-width: 680px;
  font-size: clamp(4rem, 7.2vw, 8rem);
}

.editorial-hero-media {
  min-height: min(74vh, 720px);
  box-shadow: 0 30px 90px rgba(11, 12, 13, 0.1);
}

.hero-media-label {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.hero-media-label strong {
  max-width: 360px;
  text-align: left;
}

.selected-work {
  padding: 122px 0 126px;
}

.work-heading {
  max-width: 860px;
  margin-bottom: 46px;
}

.work-heading .section-kicker {
  margin-bottom: 18px;
}

.work-heading h2 {
  margin-bottom: 14px;
  color: #0b0c0d;
  font-size: clamp(4rem, 8vw, 8rem);
}

.work-heading p:not(.section-kicker) {
  color: rgba(11, 12, 13, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study {
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 34px;
  align-items: start;
}

.case-video-slot {
  min-height: 650px;
  grid-column: 1;
  grid-row: 1;
}

.case-copy {
  grid-column: 2;
  grid-row: 1;
  padding-top: 10px;
}

.case-media-grid {
  grid-column: 1 / -1;
  margin-top: 20px;
  gap: 20px;
}

.case-media-grid .portfolio-media {
  min-height: 290px;
  border-color: rgba(11, 12, 13, 0.1);
  box-shadow: none;
}

.case-media-grid .portfolio-media:hover {
  box-shadow: 0 20px 54px rgba(11, 12, 13, 0.12);
}

.portfolio-media-label strong {
  color: rgba(216, 194, 140, 0.96);
  font-size: 2.2rem;
}

.portfolio-media-label span {
  font-size: clamp(1.42rem, 2vw, 2.05rem);
}

.built-for {
  padding: 106px 0 116px;
}

.built-for-strip {
  background: transparent;
}

.built-for-strip span {
  min-height: 142px;
}

.brand-statement {
  padding: 112px 0 132px;
}

.packages,
.addons,
.process,
.final-cta {
  padding: 108px 0;
}

.process .process-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process .process-steps article {
  background: transparent;
  border-width: 1px 0 0;
  padding: 28px 0 0;
  min-height: 0;
}

.process-steps h3 {
  margin: 34px 0 12px;
}

.site-footer {
  padding-top: 82px;
  border-top: 1px solid rgba(11, 12, 13, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(11, 12, 13, 0.08);
}

@media (max-width: 1080px) {
  .editorial-hero,
  .case-study {
    grid-template-columns: 1fr;
  }

  .case-video-slot,
  .case-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .case-video-slot {
    min-height: 520px;
  }
}

@media (max-width: 780px) {
  .brand-symbol {
    width: 48px;
  }

  .brand-mark small {
    max-width: 190px;
  }

  .editorial-hero {
    padding-top: 106px;
    padding-bottom: 62px;
  }

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

  .process .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Final brand and editorial simplification */
.brand-monogram,
.brand-symbol,
.brand-number {
  display: none;
}

.brand-mark {
  gap: 0;
}

.wordmark-lockup {
  display: grid;
  gap: 4px;
}

.brand-mark strong {
  color: #0b0c0d;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.94rem, 1.2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
}

.brand-mark small {
  max-width: none;
  color: rgba(11, 12, 13, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.selected-work,
.built-for,
.brand-statement,
.packages,
.addons,
.process,
.final-cta {
  border-top: 0;
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  gap: 34px;
  align-items: end;
  max-width: none;
}

.work-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.work-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
}

.work-heading p:not(.section-kicker) {
  margin: 0 0 14px;
  text-align: right;
}

.case-study {
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
}

.case-video-slot {
  min-height: 680px;
}

.case-copy {
  align-self: start;
  padding-top: 0;
}

.case-copy .placeholder-note {
  display: none;
}

.case-media-grid .portfolio-media {
  min-height: 310px;
}

.portfolio-media-label span {
  max-width: 230px;
}

.built-for-strip span {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.process .process-steps h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.site-footer {
  border-top: 0;
}

@media (max-width: 900px) {
  .work-heading,
  .case-study {
    grid-template-columns: 1fr;
  }

  .work-heading p:not(.section-kicker) {
    text-align: left;
  }
}

@media (max-width: 780px) {
  .brand-mark small {
    white-space: normal;
  }

  .case-video-slot {
    min-height: 440px;
  }
}

/* Final requested corrections: full-screen hero video, contained work film, clean package badge */
.editorial-hero#home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #121211 0%, #34312b 48%, #080808 100%);
  color: #f7f3ea;
}

.editorial-hero#home .editorial-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #121211 0%, #34312b 48%, #080808 100%);
}

.editorial-hero#home .editorial-hero-media::after {
  display: none;
}

.editorial-hero#home .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.editorial-hero#home .editorial-hero-media.video-ready .hero-video {
  opacity: 1;
}

.editorial-hero#home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.42) 56%, rgba(5, 5, 5, 0.68)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.editorial-hero#home::after {
  content: "";
  position: absolute;
  inset: 78px 24px 24px;
  z-index: 1;
  border: 1px solid rgba(247, 243, 234, 0.14);
  pointer-events: none;
}

.editorial-hero#home .editorial-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 160px 0 92px;
  color: #f7f3ea;
}

.editorial-hero#home .editorial-hero-content .eyebrow {
  color: #d8c28c;
}

.editorial-hero#home .editorial-hero-content h1 {
  max-width: 960px;
  color: #f7f3ea;
  font-size: clamp(4rem, 8.2vw, 8.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.editorial-hero#home .editorial-hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(247, 243, 234, 0.84);
}

.editorial-hero#home .button-primary {
  background: #f7f3ea;
  border-color: #f7f3ea;
  color: #0b0c0d;
}

.case-video-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.06)),
    linear-gradient(145deg, #151514 0%, #343029 48%, #080808 100%);
}

.case-video-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.54));
  pointer-events: none;
}

.case-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-video-slot .video-slot-center {
  z-index: 2;
}

.package-card.featured {
  padding-top: 58px;
}

.package-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 8px 14px;
  border: 1px solid rgba(140, 115, 63, 0.38);
  background: rgba(255, 255, 255, 0.62);
  color: #8c733f;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .editorial-hero#home {
    min-height: 100vh;
    min-height: 100svh;
  }

  .editorial-hero#home::after {
    inset: 74px 14px 14px;
  }

  .editorial-hero#home .editorial-hero-content {
    padding: 132px 0 62px;
  }

  .editorial-hero#home .editorial-hero-content h1 {
    font-size: clamp(3.25rem, 15vw, 5.7rem);
  }
}

/* Full-background cinematic hero video */
.editorial-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #121211 0%, #34312b 48%, #080808 100%);
  color: #f7f3ea;
}

.editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.38) 54%, rgba(5, 5, 5, 0.66)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 76px 24px 24px;
  z-index: 1;
  border: 1px solid rgba(247, 243, 234, 0.16);
  pointer-events: none;
}

.editorial-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #121211 0%, #34312b 48%, #080808 100%);
}

.editorial-hero-media::after {
  display: none;
}

.editorial-hero-media .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.editorial-hero-media.video-ready .hero-video {
  opacity: 1;
}

.editorial-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 160px 0 88px;
  color: #f7f3ea;
}

.editorial-hero-content .eyebrow {
  color: #d8c28c;
}

.editorial-hero-content h1 {
  max-width: 930px;
  color: #f7f3ea;
  text-wrap: balance;
}

.editorial-hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(247, 243, 234, 0.82);
}

.editorial-hero-content .button-primary {
  background: #f7f3ea;
  border-color: #f7f3ea;
  color: #0b0c0d;
}

@media (max-width: 780px) {
  .editorial-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  .editorial-hero::after {
    inset: 76px 14px 14px;
  }

  .editorial-hero-content {
    padding: 132px 0 58px;
  }
}

/* Editorial homepage restructure */
body {
  background: var(--black);
}

.editorial-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.editorial-light {
  background: #f3efe6;
  color: #0b0c0d;
}

.editorial-dark {
  background: #050505;
  color: var(--white);
}

.editorial-heading {
  max-width: 920px;
  margin-bottom: 48px;
}

.editorial-heading h2 {
  color: inherit;
}

.editorial-heading > p:not(.section-kicker) {
  max-width: 640px;
  margin-top: 18px;
  color: currentColor;
  opacity: 0.68;
}

.editorial-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
  color: var(--white);
}

.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.78)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.22) 62%, rgba(5, 5, 5, 0.64));
  pointer-events: none;
}

.editorial-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(247, 244, 238, 0.04)),
    linear-gradient(145deg, #090a0b 0%, #202222 48%, #050505 100%);
}

.editorial-hero-media .hero-video {
  z-index: 0;
}

.editorial-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 86px;
}

.editorial-hero-content h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 8.8rem);
}

.editorial-hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(247, 244, 238, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
  line-height: 1.65;
}

.editorial-hero-content .button {
  margin-top: 32px;
}

.selected-work,
.process,
.final-cta {
  padding: 128px 0;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
}

.case-copy {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 0;
}

.case-copy > p:first-child {
  max-width: 430px;
  color: rgba(247, 244, 238, 0.78);
  font-size: 1.08rem;
}

.case-video-slot {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 238, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.64)),
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(247, 244, 238, 0.06)),
    linear-gradient(145deg, #121314 0%, #292926 48%, #070707 100%);
}

.case-media-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.case-media-grid .portfolio-media {
  min-height: 220px;
}

.built-for {
  padding: 110px 0;
}

.editorial-light .section-kicker {
  color: #8c733f;
}

.editorial-light .built-for-strip {
  border-color: rgba(11, 12, 13, 0.16);
}

.editorial-light .built-for-strip span {
  border-color: rgba(11, 12, 13, 0.12);
  color: #0b0c0d;
}

.brand-statement {
  padding: 130px 0 150px;
}

.statement-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.statement-wrap h2 {
  color: #0b0c0d;
  font-size: clamp(4.2rem, 10vw, 9.2rem);
}

.statement-wrap p {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(11, 12, 13, 0.7);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.packages,
.addons {
  padding: 124px 0;
}

.editorial-light .pricing-note {
  color: rgba(11, 12, 13, 0.68);
  border-color: rgba(11, 12, 13, 0.16);
  background: rgba(255, 255, 255, 0.34);
}

.editorial-light .package-card,
.editorial-light .addon-grid article {
  border-color: rgba(11, 12, 13, 0.14);
  background: rgba(255, 255, 255, 0.44);
  color: #0b0c0d;
  box-shadow: none;
}

.editorial-light .package-card:hover,
.editorial-light .addon-grid article:hover {
  border-color: rgba(140, 115, 63, 0.36);
  background: rgba(255, 255, 255, 0.62);
}

.editorial-light .package-card.featured {
  border-color: rgba(140, 115, 63, 0.54);
  background:
    linear-gradient(180deg, rgba(185, 155, 95, 0.13), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.56);
}

.editorial-light .package-label,
.editorial-light .package-best span,
.editorial-light .package-includes,
.editorial-light .package-badge,
.editorial-light .addon-grid span {
  color: #8c733f;
}

.editorial-light .package-card h3,
.editorial-light .price,
.editorial-light .addon-grid h3 {
  color: #0b0c0d;
}

.editorial-light .package-best,
.editorial-light .addon-grid article > div {
  border-color: rgba(11, 12, 13, 0.12);
}

.editorial-light .package-best p,
.editorial-light .package-card li,
.editorial-light .addon-grid p {
  color: rgba(11, 12, 13, 0.66);
}

.editorial-light .package-card li::before {
  background: #8c733f;
}

.editorial-light .package-card a {
  border-color: rgba(140, 115, 63, 0.36);
  background: rgba(11, 12, 13, 0.04);
  color: #0b0c0d;
}

.editorial-light .package-card.featured a,
.editorial-light .package-cta .button-primary {
  background: #0b0c0d;
  border-color: #0b0c0d;
  color: #f3efe6;
}

.editorial-light .package-cta {
  border-color: rgba(11, 12, 13, 0.14);
  background: rgba(255, 255, 255, 0.4);
}

.editorial-light .package-cta p {
  color: #0b0c0d;
}

.process .process-steps article {
  background: transparent;
}

.final-cta {
  padding-top: 70px;
}

.final-cta .cta-panel {
  width: min(1180px, calc(100% - 32px));
  padding: 104px 0 120px;
  border: 0;
  border-top: 1px solid rgba(247, 244, 238, 0.14);
  background: transparent;
}

.final-cta .cta-panel h2 {
  max-width: 860px;
}

.site-footer {
  background: #050505;
}

@media (max-width: 1080px) {
  .case-study {
    grid-template-columns: 1fr;
  }

  .case-copy,
  .case-video-slot {
    min-height: 460px;
  }

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

@media (max-width: 780px) {
  .editorial-hero-content {
    padding: 124px 0 54px;
  }

  .editorial-hero-content h1 {
    font-size: clamp(3.15rem, 15vw, 5.4rem);
  }

  .selected-work,
  .packages,
  .addons,
  .process,
  .final-cta {
    padding: 82px 0;
  }

  .brand-statement {
    padding: 92px 0 104px;
  }

  .case-copy,
  .case-video-slot {
    min-height: 360px;
  }

  .case-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .case-media-grid .portfolio-media {
    min-height: 260px;
  }

  .statement-wrap h2 {
    font-size: clamp(3.3rem, 20vw, 5.4rem);
  }
}

/* Bright luxury editorial correction */
:root {
  --editorial-bg: #f6f1e8;
  --editorial-paper: #fbf8f1;
  --editorial-ink: #0b0c0d;
  --editorial-muted: rgba(11, 12, 13, 0.62);
  --editorial-line: rgba(11, 12, 13, 0.14);
  --editorial-gold: #8c733f;
}

html,
body {
  background: var(--editorial-bg);
  color: var(--editorial-ink);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 480px),
    var(--editorial-bg);
}

.editorial-light,
.editorial-dark,
.selected-work,
.process,
.final-cta {
  background: var(--editorial-bg);
  color: var(--editorial-ink);
}

.site-header,
.site-header.is-scrolled {
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid var(--editorial-line);
}

.editorial-wrap {
  width: min(1180px, calc(100% - 32px));
}

.section-kicker,
.eyebrow {
  color: var(--editorial-gold);
}

.editorial-heading {
  margin-bottom: 54px;
}

.editorial-heading > p:not(.section-kicker),
.section-lede {
  color: var(--editorial-muted);
}

.brand-mark strong {
  color: var(--editorial-ink);
}

.brand-mark small,
.nav-links {
  color: rgba(11, 12, 13, 0.62);
}

.brand-symbol {
  border-color: rgba(11, 12, 13, 0.76);
  background: rgba(255, 255, 255, 0.42);
  color: var(--editorial-ink);
}

.brand-symbol::before,
.brand-symbol::after {
  background: var(--editorial-ink);
}

.editorial-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding: 128px max(20px, calc((100vw - 1180px) / 2)) 88px;
  background: var(--editorial-bg);
  color: var(--editorial-ink);
}

.editorial-hero-content {
  width: auto;
  margin: 0;
  padding: 0;
}

.editorial-hero-content h1 {
  max-width: 760px;
  color: var(--editorial-ink);
  font-size: clamp(4.2rem, 7.6vw, 8.2rem);
  line-height: 0.92;
}

.editorial-hero-content p:not(.eyebrow) {
  max-width: 520px;
  color: var(--editorial-muted);
}

.editorial-hero-media {
  position: relative;
  inset: auto;
  min-height: min(76vh, 760px);
  width: 100%;
  border: 1px solid rgba(11, 12, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.42)),
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #161615 0%, #35322d 48%, #080808 100%);
  box-shadow: 0 34px 110px rgba(11, 12, 13, 0.12);
  overflow: hidden;
}

.editorial-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.5));
  pointer-events: none;
}

.hero-media-label {
  z-index: 2;
}

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

.button-secondary,
.button-ghost {
  border-color: var(--editorial-line);
  background: transparent;
  color: var(--editorial-ink);
}

.selected-work {
  padding: 134px 0 148px;
  border-top: 1px solid var(--editorial-line);
}

.selected-work .editorial-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(240px, 0.42fr);
  gap: 54px;
  align-items: end;
  max-width: none;
}

.selected-work .editorial-heading h2 {
  color: var(--editorial-ink);
  font-size: clamp(4.4rem, 9vw, 9rem);
}

.selected-work .editorial-heading > p:not(.section-kicker) {
  color: var(--editorial-muted);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: 34px;
}

.case-copy {
  min-height: auto;
  padding: 0;
  justify-content: flex-start;
}

.case-copy > p:first-child {
  color: var(--editorial-muted);
}

.case-copy .placeholder-note {
  border-color: var(--editorial-line);
  color: rgba(11, 12, 13, 0.46);
}

.case-video-slot {
  min-height: 680px;
  border: 1px solid rgba(11, 12, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.56)),
    linear-gradient(135deg, rgba(216, 194, 140, 0.12), rgba(255, 255, 255, 0.06)),
    linear-gradient(145deg, #151514 0%, #343029 48%, #080808 100%);
  box-shadow: 0 28px 90px rgba(11, 12, 13, 0.14);
}

.case-media-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.case-media-grid .portfolio-media {
  min-height: 300px;
  border: 1px solid rgba(11, 12, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.46)),
    linear-gradient(135deg, rgba(216, 194, 140, 0.1), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #171716 0%, #34312b 46%, #0a0a0a 100%);
  box-shadow: 0 18px 56px rgba(11, 12, 13, 0.08);
}

.case-media-grid .portfolio-media:hover {
  border-color: rgba(140, 115, 63, 0.5);
  box-shadow: 0 24px 72px rgba(11, 12, 13, 0.14);
  transform: translateY(-4px);
}

.portfolio-media-label {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.portfolio-media-label strong {
  color: rgba(216, 194, 140, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  line-height: 0.9;
}

.portfolio-media-label span {
  max-width: 190px;
  color: rgba(247, 244, 238, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  text-transform: none;
}

.built-for {
  padding: 124px 0 132px;
  border-top: 1px solid var(--editorial-line);
}

.built-for .section-kicker {
  margin-bottom: 34px;
  text-align: center;
}

.built-for-strip {
  border-top: 1px solid rgba(11, 12, 13, 0.22);
  border-bottom: 1px solid rgba(11, 12, 13, 0.22);
  background: rgba(255, 255, 255, 0.26);
}

.built-for-strip span {
  min-height: 158px;
  border-color: rgba(11, 12, 13, 0.13);
  color: var(--editorial-ink);
  font-size: clamp(1.5rem, 2.6vw, 2.55rem);
}

.brand-statement,
.packages,
.addons,
.process,
.final-cta {
  border-top: 1px solid var(--editorial-line);
}

.packages,
.addons,
.process {
  padding: 118px 0;
}

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

.process .process-steps article {
  min-height: 260px;
  border-color: rgba(11, 12, 13, 0.12);
  background: rgba(255, 255, 255, 0.28);
  color: var(--editorial-ink);
}

.process .process-steps article::after {
  display: none;
}

.process .process-steps span {
  color: var(--editorial-gold);
}

.process .process-steps p {
  color: var(--editorial-muted);
}

.editorial-light .package-card {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(11, 12, 13, 0.13);
}

.editorial-light .package-card.featured {
  background:
    linear-gradient(180deg, rgba(185, 155, 95, 0.1), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.7);
}

.addon-grid {
  border-top: 1px solid var(--editorial-line);
}

.editorial-light .addon-grid article {
  border-width: 0 0 1px;
  border-color: var(--editorial-line);
  background: transparent;
  padding: 24px 0;
}

.editorial-light .addon-grid article:hover {
  background: transparent;
  transform: none;
}

.final-cta {
  padding: 116px 0;
}

.final-cta .cta-panel {
  width: min(1180px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--editorial-ink);
}

.final-cta .cta-panel p:not(.section-kicker) {
  color: var(--editorial-muted);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 74px max(16px, calc((100vw - 1180px) / 2));
  background: var(--editorial-bg);
  border-top: 1px solid var(--editorial-line);
  color: var(--editorial-ink);
}

.site-footer .brand-mark strong,
.footer-column h2 {
  color: var(--editorial-ink);
}

.site-footer .brand-mark small,
.footer-brand p,
.footer-column a,
.footer-column span,
.footer-bottom p {
  color: rgba(11, 12, 13, 0.62);
}

.footer-actions a {
  color: var(--editorial-gold);
}

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

@media (max-width: 1080px) {
  .editorial-hero,
  .selected-work .editorial-heading,
  .case-study {
    grid-template-columns: 1fr;
  }

  .editorial-hero-media,
  .case-video-slot {
    min-height: 520px;
  }

  .process .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .editorial-hero {
    padding: 104px 14px 58px;
  }

  .editorial-hero-media,
  .case-video-slot {
    min-height: 420px;
  }

  .case-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .portfolio-media-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-media-label span {
    text-align: left;
  }
}

/* Brand direction upgrade */
.site-header {
  background: rgba(243, 239, 230, 0.86);
  border-bottom: 1px solid rgba(11, 12, 13, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(243, 239, 230, 0.92);
  border-color: rgba(11, 12, 13, 0.1);
}

.brand-mark {
  gap: 15px;
}

.brand-symbol {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 12, 13, 0.72);
  color: #0b0c0d;
  background: rgba(255, 255, 255, 0.34);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  background: #0b0c0d;
}

.brand-symbol::before {
  width: 18px;
  height: 1px;
  left: 10px;
  top: 14px;
}

.brand-symbol::after {
  width: 1px;
  height: 22px;
  left: 18px;
  top: 13px;
}

.brand-symbol span:first-child {
  position: absolute;
  left: 14px;
  bottom: 10px;
  font-size: 1.12rem;
  font-weight: 700;
}

.brand-symbol span:last-child {
  position: absolute;
  right: 10px;
  top: 9px;
  font-size: 1.28rem;
  font-weight: 700;
}

.brand-mark strong {
  color: #0b0c0d;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.brand-mark small {
  color: rgba(11, 12, 13, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.nav-links {
  color: rgba(11, 12, 13, 0.66);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #0b0c0d;
}

.nav-links a::after {
  background: #8c733f;
}

.nav-toggle {
  border-color: rgba(11, 12, 13, 0.16);
  background: rgba(11, 12, 13, 0.04);
  color: #0b0c0d;
}

.editorial-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 44px;
  align-items: end;
  padding: 132px max(16px, calc((100vw - 1180px) / 2)) 78px;
  background: #f3efe6;
  color: #0b0c0d;
}

.editorial-hero::after {
  display: none;
}

.editorial-hero-content {
  position: relative;
  width: auto;
  padding: 0 0 24px;
}

.editorial-hero-content .eyebrow {
  color: #8c733f;
}

.editorial-hero-content h1 {
  max-width: 720px;
  color: #0b0c0d;
  font-size: clamp(4.25rem, 8vw, 8.2rem);
  letter-spacing: 0;
}

.editorial-hero-content p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(11, 12, 13, 0.68);
}

.editorial-hero-media {
  position: relative;
  inset: auto;
  min-height: min(72vh, 720px);
  border: 1px solid rgba(11, 12, 13, 0.12);
  background:
    linear-gradient(135deg, rgba(216, 194, 140, 0.16), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, #161615 0%, #34322d 45%, #090909 100%);
  box-shadow: 0 42px 110px rgba(11, 12, 13, 0.18);
  overflow: hidden;
}

.editorial-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.52));
}

.hero-media-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #f7f4ee;
}

.hero-media-label span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media-label strong {
  max-width: 300px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: right;
}

.button-primary {
  background: #0b0c0d;
  border-color: #0b0c0d;
  color: #f3efe6;
  box-shadow: none;
}

.button-secondary,
.button-ghost {
  border-color: rgba(11, 12, 13, 0.22);
  background: transparent;
  color: #0b0c0d;
}

.selected-work {
  padding-top: 134px;
}

.selected-work .editorial-heading h2 {
  font-size: clamp(4.2rem, 9vw, 8.4rem);
}

.case-video-slot,
.case-media-grid .portfolio-media {
  border-color: rgba(216, 194, 140, 0.22);
}

.case-media-grid .portfolio-media {
  min-height: 260px;
  transition: border-color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.case-media-grid .portfolio-media:hover {
  border-color: rgba(216, 194, 140, 0.52);
  filter: contrast(1.06);
  transform: translateY(-4px);
}

.portfolio-media-label {
  display: grid;
  align-content: end;
  gap: 8px;
}

.portfolio-media-label span {
  max-width: 190px;
  color: var(--gold-soft);
}

.portfolio-media-label strong {
  max-width: 210px;
  color: rgba(247, 244, 238, 0.94);
  font-size: 1.55rem;
  line-height: 1.05;
  text-align: left;
}

.built-for {
  padding: 126px 0;
}

.built-for .section-kicker {
  margin-bottom: 34px;
  text-align: center;
}

.built-for-strip {
  border-top: 1px solid rgba(11, 12, 13, 0.22);
  border-bottom: 1px solid rgba(11, 12, 13, 0.22);
}

.built-for-strip span {
  min-height: 148px;
  padding: 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
}

.package-card {
  min-height: 720px;
}

.editorial-light .package-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(11, 12, 13, 0.12);
}

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

.price {
  font-size: 2.45rem;
}

.pricing-note {
  font-weight: 600;
}

@media (max-width: 1080px) {
  .editorial-hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .editorial-hero-media {
    min-height: 520px;
  }

  .editorial-light .package-card.featured {
    transform: none;
  }
}

@media (max-width: 780px) {
  .brand-symbol {
    width: 46px;
    height: 46px;
  }

  .brand-mark strong {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .brand-mark small {
    font-size: 0.6rem;
  }

  .nav-links {
    background: rgba(243, 239, 230, 0.98);
  }

  .editorial-hero {
    padding: 104px 14px 58px;
    gap: 30px;
  }

  .editorial-hero-content h1 {
    font-size: clamp(3.5rem, 16vw, 5.7rem);
  }

  .editorial-hero-media {
    min-height: 420px;
  }

  .hero-media-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media-label strong {
    text-align: left;
  }

  .built-for-strip span {
    min-height: 92px;
  }
}

/* Final ivory editorial direction */
body {
  background: #f3efe6;
  color: #0b0c0d;
}

.editorial-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    #f3efe6;
  color: #0b0c0d;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(246, 242, 233, 0.93);
}

.editorial-hero {
  min-height: 100svh;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 76px);
  padding-top: 118px;
  padding-bottom: 86px;
}

.editorial-hero-content {
  align-self: center;
  padding-bottom: 0;
}

.editorial-hero-content .eyebrow {
  margin-bottom: 24px;
  color: #8c733f;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
}

.editorial-hero-content h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4.4rem, 8.4vw, 8.8rem);
  line-height: 0.9;
}

.editorial-hero-content p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(11, 12, 13, 0.66);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.editorial-hero-media {
  min-height: min(78vh, 780px);
  align-self: stretch;
  border-color: rgba(11, 12, 13, 0.1);
  box-shadow: 0 38px 120px rgba(11, 12, 13, 0.14);
}

.hero-media-label {
  padding-top: 22px;
  border-top: 1px solid rgba(247, 244, 238, 0.2);
}

.selected-work {
  padding: 132px 0 142px;
}

.selected-work .section-kicker,
.selected-work .editorial-heading > p:not(.section-kicker) {
  color: rgba(11, 12, 13, 0.62);
}

.selected-work .editorial-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(240px, 0.38fr);
  gap: 42px;
  align-items: end;
  max-width: none;
}

.selected-work .editorial-heading h2 {
  color: #0b0c0d;
  font-size: clamp(4.3rem, 9vw, 9rem);
}

.case-study {
  grid-template-columns: minmax(280px, 0.3fr) minmax(0, 0.7fr);
  gap: 32px;
}

.case-copy {
  min-height: auto;
  padding: 0;
  justify-content: flex-start;
}

.case-copy > p:first-child {
  max-width: 460px;
  color: rgba(11, 12, 13, 0.7);
  font-size: 1.12rem;
  line-height: 1.7;
}

.case-copy .placeholder-note {
  color: rgba(11, 12, 13, 0.48);
  border-color: rgba(11, 12, 13, 0.14);
}

.case-video-slot {
  min-height: 680px;
  border-color: rgba(11, 12, 13, 0.12);
  box-shadow: 0 34px 100px rgba(11, 12, 13, 0.16);
}

.case-media-grid {
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-media-grid .portfolio-media {
  min-height: 300px;
  border-color: rgba(11, 12, 13, 0.12);
  box-shadow: 0 18px 60px rgba(11, 12, 13, 0.08);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.48)),
    linear-gradient(135deg, rgba(216, 194, 140, 0.1), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #171716 0%, #34312b 46%, #0a0a0a 100%);
}

.case-media-grid .portfolio-media:hover {
  border-color: rgba(140, 115, 63, 0.5);
  box-shadow: 0 26px 74px rgba(11, 12, 13, 0.14);
}

.portfolio-media-label {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.portfolio-media-label strong {
  order: 0;
  color: rgba(216, 194, 140, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 0.9;
}

.portfolio-media-label span {
  order: 1;
  max-width: 190px;
  color: rgba(247, 244, 238, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  text-transform: none;
}

.built-for {
  padding: 120px 0 132px;
}

.built-for .section-kicker {
  color: #8c733f;
  letter-spacing: 0.22em;
}

.built-for-strip {
  background: rgba(255, 255, 255, 0.28);
}

.built-for-strip span {
  min-height: 168px;
  font-size: clamp(1.55rem, 2.5vw, 2.65rem);
}

.brand-statement {
  padding-top: 148px;
  border-top: 1px solid rgba(11, 12, 13, 0.08);
}

.packages {
  border-top: 1px solid rgba(11, 12, 13, 0.08);
}

.pricing-heading h2 {
  max-width: 900px;
}

.package-grid {
  gap: 22px;
}

.editorial-light .package-card {
  background: rgba(255, 255, 255, 0.5);
}

.editorial-light .package-card.featured {
  background:
    linear-gradient(180deg, rgba(185, 155, 95, 0.12), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.68);
}

.addons {
  padding-top: 112px;
}

.addon-grid {
  border-top: 1px solid rgba(11, 12, 13, 0.14);
}

.editorial-light .addon-grid article {
  border-width: 0 0 1px;
  background: transparent;
  padding: 24px 0;
}

.editorial-light .addon-grid article:hover {
  background: transparent;
  transform: none;
}

.process {
  padding: 112px 0 124px;
  border-top: 1px solid rgba(11, 12, 13, 0.08);
}

.process .section-kicker,
.process .process-steps span {
  color: #8c733f;
}

.process .process-steps article {
  border-color: rgba(11, 12, 13, 0.12);
  color: #0b0c0d;
}

.process .process-steps p {
  color: rgba(11, 12, 13, 0.62);
}

.final-cta {
  padding: 116px 0;
  border-top: 1px solid rgba(11, 12, 13, 0.08);
}

.final-cta .cta-panel {
  color: #0b0c0d;
  border-color: rgba(11, 12, 13, 0.14);
}

.final-cta .cta-panel p:not(.section-kicker) {
  color: rgba(11, 12, 13, 0.68);
}

@media (max-width: 1080px) {
  .selected-work .editorial-heading,
  .case-study {
    grid-template-columns: 1fr;
  }

  .case-video-slot {
    min-height: 520px;
  }
}

@media (max-width: 780px) {
  .editorial-hero {
    min-height: auto;
  }

  .case-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-media-grid .portfolio-media {
    min-height: 260px;
  }

  .built-for-strip span {
    min-height: 104px;
  }
}

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

  .portfolio-media-label span {
    text-align: left;
  }

  .portfolio-media-label {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Lead capture system */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(14px);
}

.lead-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(11, 12, 13, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.2)),
    #f3efe6;
  color: #0b0c0d;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  outline: none;
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.lead-modal.is-open .lead-dialog {
  transform: translateY(0);
}

.lead-modal-open {
  overflow: hidden;
}

.lead-close {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid rgba(11, 12, 13, 0.34);
  background: transparent;
  color: rgba(11, 12, 13, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-intro {
  max-width: 680px;
  margin-bottom: 36px;
}

.lead-intro h2 {
  color: #0b0c0d;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.lead-intro p:not(.section-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(11, 12, 13, 0.66);
  font-size: 1rem;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: rgba(11, 12, 13, 0.66);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(11, 12, 13, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.34);
  color: #0b0c0d;
  font: inherit;
  min-height: 52px;
  padding: 12px 0;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #8c733f;
  background: rgba(255, 255, 255, 0.58);
}

.lead-wide {
  grid-column: 1 / -1;
}

.lead-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 10px;
}

.lead-form-actions button {
  cursor: pointer;
}

.lead-form-actions button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.lead-status {
  flex: 1 1 260px;
  margin: 0;
  color: rgba(11, 12, 13, 0.62);
  font-size: 0.9rem;
}

.thank-you-page {
  min-height: 100vh;
  background: #f3efe6;
  color: #0b0c0d;
}

.thank-you-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0 72px;
  display: grid;
  align-content: center;
  gap: clamp(54px, 8vw, 110px);
}

.thank-you-panel {
  max-width: 780px;
}

.thank-you-panel h1 {
  color: #0b0c0d;
  font-size: clamp(5rem, 12vw, 10rem);
}

.thank-you-panel p:not(.section-kicker) {
  max-width: 540px;
  margin: 24px 0 34px;
  color: rgba(11, 12, 13, 0.66);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

@media (max-width: 700px) {
  .lead-dialog {
    max-height: 92vh;
    padding: 72px 22px 28px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form-actions .button {
    width: 100%;
  }
}
