:root {
  --paper: #f4f0e8;
  --paper-soft: #f8f4ec;
  --paper-warm: #efe8dd;
  --bone: #e8dfd2;
  --ink: #101010;
  --charcoal: #1a1917;
  --gray-warm: #6e6961;
  --gray-muted: #8c867b;
  --line-light: rgba(26, 25, 23, 0.14);
  --line-medium: rgba(26, 25, 23, 0.22);
  --bronze: #6f5330;
  --gold-muted: #9b7a45;
  --copper: #9a6744;
  --black-void: #050505;
  --black-soft: #090807;
  --black-panel: #0f0e0c;
  --dark-line: rgba(244, 240, 232, 0.12);
  --warm-gray: var(--gray-warm);
  --off-white: var(--paper-soft);
  --ivory: var(--paper);
  --muted-gold: var(--gold-muted);
  --deep-bronze: var(--bronze);
  --line-subtle: var(--line-light);
  --line-gold: rgba(111, 83, 48, 0.3);
  --bg: var(--paper);
  --bg-soft: var(--paper-warm);
  --panel: rgba(255, 255, 255, 0.34);
  --panel-strong: rgba(232, 223, 210, 0.58);
  --text: var(--ink);
  --muted: var(--gray-warm);
  --line: var(--line-light);
  --accent: var(--bronze);
  --accent-soft: rgba(111, 83, 48, 0.1);
  --sage: #8f9b88;
  --steel: #9aa0a6;
  --danger: #9d3b32;
  --shadow: 0 28px 80px rgba(26, 25, 23, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 4%, rgba(154, 103, 68, 0.13), transparent 30rem),
    radial-gradient(circle at 8% 42%, rgba(111, 83, 48, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 42%, var(--paper-warm) 100%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  --texture: url("textura-fonse-02.jpg");
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--accent);
  color: var(--paper-soft);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, 0.88);
  border-bottom: 1px solid rgba(26, 25, 23, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1440px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-logo {
  width: 88px;
  height: auto;
  max-height: 29px;
  object-fit: contain;
  filter: brightness(0) saturate(1);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.2vw, 1.15rem);
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 560;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.86rem 1.18rem;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, filter 220ms ease;
}

.nav-actions .button {
  min-height: 38px;
  padding: 0.64rem 0.9rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 650;
}

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

.button.secondary {
  border-color: var(--line-medium);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.button.ghost {
  border-color: var(--line-gold);
  color: var(--accent);
}

.button:hover {
  color: var(--paper);
  filter: brightness(1.04);
}

.button.secondary:hover,
.button.ghost:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 620;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(155, 122, 69, 0.35);
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  display: grid;
  align-items: start;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 74% 18%, rgba(154, 103, 68, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
}

.hero.compact {
  min-height: 500px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 244, 236, 0.96) 0%, rgba(248, 244, 236, 0.74) 44%, rgba(248, 244, 236, 0.3) 100%),
    linear-gradient(0deg, rgba(244, 240, 232, 0.96) 0%, rgba(244, 240, 232, 0.28) 54%, rgba(248, 244, 236, 0.78) 100%);
}

.hero--home .hero-media {
  left: 0;
  opacity: 0.2;
}

.site-producer .hero--home .hero-media {
  left: 0;
}

.site-studio .hero--home .hero-media {
  left: 0;
}

.hero--home .hero-media img {
  filter: saturate(0.82) contrast(1.04) brightness(1.08);
}

.hero--home::after {
  background:
    linear-gradient(90deg, rgba(248, 244, 236, 0.98) 0%, rgba(248, 244, 236, 0.84) 40%, rgba(248, 244, 236, 0.38) 100%),
    linear-gradient(0deg, rgba(244, 240, 232, 0.94) 0%, rgba(244, 240, 232, 0.12) 60%, rgba(248, 244, 236, 0.55) 100%);
}

.hero--service,
.hero--portfolio,
.hero--about,
.hero--contact,
.hero--hub,
.hero--article,
.hero--testimonials {
  align-items: end;
}

.hero--article .hero-media,
.hero--hub .hero-media,
.hero--contact .hero-media {
  opacity: 0.12;
  filter: saturate(0.7) contrast(1.1);
}

.hero--article::after,
.hero--hub::after,
.hero--contact::after {
  background:
    radial-gradient(circle at 72% 18%, rgba(154, 103, 68, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(248, 244, 236, 0.96), rgba(244, 240, 232, 0.98));
}

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

.hero-inner {
  padding: clamp(4.2rem, 7vw, 7rem) 0 clamp(3.4rem, 6vw, 5rem);
}

.hero-inner--with-photo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-side-photo {
  --photo-position: center center;
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  justify-self: end;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(26, 25, 23, 0.1);
  background: var(--paper-warm);
}

.hero-side-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: var(--photo-position);
  filter: saturate(0.96) contrast(1.03) brightness(0.98);
}

.hero-side-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.02), rgba(26, 25, 23, 0.08)),
    radial-gradient(circle at 70% 16%, rgba(154, 103, 68, 0.08), transparent 36%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 7.2vw, 7.4rem);
}

.hero--home h1 {
  max-width: 760px;
}

.hero-inner--with-photo h1 {
  max-width: 620px;
  font-size: clamp(3.1rem, 6.1vw, 6.4rem);
}

.site-studio .hero-inner--with-photo h1 {
  max-width: 640px;
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.compact h1 {
  max-width: 780px;
  font-size: clamp(2.85rem, 6.2vw, 6.6rem);
  line-height: 0.94;
}

h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.lede {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.authority-line {
  max-width: 720px;
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 1px solid var(--accent);
  color: var(--text);
  font-size: 1.02rem;
}

.section {
  padding: clamp(7rem, 12vw, 14rem) 0;
  border-bottom: 1px solid var(--line);
}

.section.soft {
  background:
    radial-gradient(circle at 72% 18%, rgba(111, 83, 48, 0.07), transparent 30rem),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
}

.section.video-section,
.section.gallery-section,
.section.portfolio-player-section,
.section.cta-band,
.site-footer {
  --text: var(--paper);
  --muted: rgba(244, 240, 232, 0.68);
  --line: var(--dark-line);
  --accent: var(--gold-muted);
  --accent-soft: rgba(155, 122, 69, 0.14);
  color: var(--text);
  background:
    radial-gradient(circle at 82% 12%, rgba(155, 122, 69, 0.1), transparent 34rem),
    linear-gradient(180deg, var(--black-panel) 0%, var(--black-void) 100%);
}

.section.video-section .button.primary,
.section.gallery-section .button.primary,
.section.portfolio-player-section .button.primary,
.section.cta-band .button.primary,
.site-footer .button.primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.section.video-section .button.secondary,
.section.gallery-section .button.secondary,
.section.portfolio-player-section .button.secondary,
.section.cta-band .button.secondary,
.site-footer .button.secondary,
.section.video-section .button.ghost,
.section.gallery-section .button.ghost,
.section.portfolio-player-section .button.ghost,
.section.cta-band .button.ghost,
.site-footer .button.ghost {
  border-color: rgba(244, 240, 232, 0.22);
  background: rgba(244, 240, 232, 0.03);
  color: var(--paper);
}

.section.video-section .button.secondary:hover,
.section.gallery-section .button.secondary:hover,
.section.portfolio-player-section .button.secondary:hover,
.section.cta-band .button.secondary:hover,
.site-footer .button.secondary:hover,
.section.video-section .button.ghost:hover,
.section.gallery-section .button.ghost:hover,
.section.portfolio-player-section .button.ghost:hover,
.section.cta-band .button.ghost:hover,
.site-footer .button.ghost:hover {
  color: var(--paper);
}

.section.split .section-inner,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-kicker {
  margin: 0;
  color: var(--muted);
  max-width: 660px;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 1.05rem;
}

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

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

.card {
  min-height: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) 0;
}

.card:hover {
  border-color: var(--line-gold);
  background: transparent;
}

.card p,
.timeline p,
.faq p,
.article-body p {
  color: var(--muted);
}

.card h3 {
  margin-bottom: 0.72rem;
}

.tagline {
  max-width: 980px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.96;
}

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

.service-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.45rem, 2.8vw, 2.25rem) 0;
}

.service-line > span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.service-line h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
}

.service-line p {
  max-width: 620px;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.list-clean {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.7rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.18rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0;
  background: var(--accent);
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0 1.1rem 4.2rem;
  background: transparent;
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--accent);
  font-weight: 900;
  font-size: 0.86rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.4rem, 6vw, 6.5rem);
  align-items: center;
}

.media-panel {
  --media-position: center center;
  overflow: hidden;
  border-radius: 2px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: var(--media-position);
}

.media-panel--wide img {
  aspect-ratio: 16 / 9;
}

.media-panel--portrait {
  width: min(100%, 520px);
  justify-self: center;
}

.media-panel--portrait img {
  aspect-ratio: 4 / 5;
}

.media-panel--portrait-natural {
  width: min(100%, 500px);
  justify-self: center;
}

.media-panel--portrait-natural img {
  aspect-ratio: auto;
  object-fit: contain;
}

.media-panel--landscape-natural {
  width: min(100%, 860px);
  justify-self: center;
}

.media-panel--landscape-natural img {
  aspect-ratio: auto;
  object-fit: contain;
}

.media-panel--contain img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--black-void);
}

.photo-anchor-section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.luxury-photo,
.portfolio-proof-photo,
.testimonial-photo,
.article-photo {
  --photo-position: center center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(26, 25, 23, 0.08);
  background: var(--paper-warm);
}

.luxury-photo img,
.portfolio-proof-photo img,
.testimonial-photo img,
.article-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: var(--photo-position);
  filter: saturate(0.96) contrast(1.03) brightness(0.98);
}

.luxury-photo::after,
.portfolio-proof-photo::after,
.testimonial-photo::after,
.article-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.02), rgba(26, 25, 23, 0.1)),
    radial-gradient(circle at 74% 16%, rgba(154, 103, 68, 0.08), transparent 32%);
  pointer-events: none;
}

.luxury-photo--cinema img {
  aspect-ratio: 21 / 9;
}

.luxury-photo--wide img {
  aspect-ratio: 16 / 10;
}

.luxury-photo--portrait {
  max-width: 620px;
  margin-inline: auto;
}

.luxury-photo--portrait img {
  aspect-ratio: 4 / 5;
}

.luxury-photo--portrait-natural {
  max-width: min(500px, 100%);
  margin-inline: auto;
}

.luxury-photo--portrait-natural img {
  aspect-ratio: auto;
  object-fit: contain;
}

.luxury-photo--landscape-natural {
  max-width: min(960px, 100%);
  margin-inline: auto;
}

.luxury-photo--landscape-natural img {
  aspect-ratio: auto;
  object-fit: contain;
}

.luxury-photo--clear img {
  filter: saturate(0.94) contrast(1.04) brightness(0.96);
}

.luxury-photo figcaption,
.article-photo figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.editorial-photo-section {
  padding-top: clamp(5rem, 9vw, 10rem);
  padding-bottom: clamp(5rem, 9vw, 10rem);
}

.editorial-photo--reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
  align-items: stretch;
}

.studio-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 0;
  border-radius: 2px;
  background: rgba(244, 240, 232, 0.035);
  box-shadow: none;
}

.studio-gallery-item--large {
  grid-column: auto;
  grid-row: auto;
}

.studio-gallery-item:nth-child(1) {
  grid-column: span 4;
}

.studio-gallery-item:nth-child(2) {
  grid-column: span 2;
}

.studio-gallery-item:nth-child(3),
.studio-gallery-item:nth-child(4),
.studio-gallery-item:nth-child(5) {
  grid-column: span 2;
}

.studio-gallery-item:nth-child(6) {
  grid-column: span 6;
}

.studio-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.04) brightness(0.9);
}

.studio-gallery-item:nth-child(1) img,
.studio-gallery-item:nth-child(6) img {
  max-height: 520px;
}

.studio-gallery-item:nth-child(3) img,
.studio-gallery-item:nth-child(4) img,
.studio-gallery-item:nth-child(5) img {
  max-height: 500px;
}

.studio-gallery-item figcaption {
  position: static;
  width: max-content;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.65rem 0 0;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-radius: 2px;
  background: var(--black-void);
  box-shadow: none;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--black-void);
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.86);
}

.video-load {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 48px;
  border: 1px solid rgba(246, 241, 232, 0.32);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.56);
  color: var(--text);
  padding: 0.85rem 1.18rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 760;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.video-load::before {
  content: "";
  display: inline-block;
  margin-right: 0.55rem;
  border-top: 0.33rem solid transparent;
  border-bottom: 0.33rem solid transparent;
  border-left: 0.5rem solid currentColor;
  transform: translateY(1px);
}

.video-load:hover {
  border-color: var(--accent);
  background: rgba(185, 147, 88, 0.14);
  color: var(--text);
}

.portfolio-list,
.article-list {
  display: grid;
  gap: 1rem;
}

.portfolio-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.portfolio-proof-copy {
  align-self: center;
}

.portfolio-proof-photo {
  grid-column: 2;
  grid-row: span 2;
}

.portfolio-proof-photo img {
  aspect-ratio: 16 / 10;
}

.project-proof-grid {
  display: grid;
  grid-column: 1 / -1;
  gap: 0;
  border-top: 1px solid var(--line);
}

.project-proof-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(1rem, 2vw, 1.45rem) 0;
}

.project-proof-item > span {
  color: var(--accent);
  font-weight: 850;
}

.project-proof-item h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.02;
}

.project-proof-item p,
.project-proof-item em {
  display: block;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-style: normal;
}

.article-list--editorial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
  border-top: 1px solid var(--line);
}

.article-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
}

.article-card h3 {
  max-width: 13ch;
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
  line-height: 0.98;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card .meta-line {
  margin: 0;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.related-link {
  display: grid;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 2.2vw, 1.8rem) 0;
}

.related-link span {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.06;
}

.related-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.related-link em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 620;
}

.portfolio-player {
  max-width: 980px;
  margin: 0 auto;
}

.portfolio-player iframe {
  display: block;
  width: 100%;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: 6px;
  background: var(--black-void);
  box-shadow: none;
}

.portfolio-player-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.portfolio-item {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1.25rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 1.5rem 0;
  background: transparent;
}

.portfolio-item span,
.meta-line {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-grid,
.testimonial-curation {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.2rem, 4vw, 4rem);
}

.testimonial-stack {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: clamp(1.25rem, 2.4vw, 1.8rem) 0;
  box-shadow: none;
}

.testimonial-card--featured {
  padding-top: 0;
}

.testimonial-photo {
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.testimonial-photo img {
  aspect-ratio: 16 / 10;
}

.testimonial-copy {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  line-height: 1.28;
}

.testimonial-stack .testimonial-copy {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

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

.testimonial-person h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.testimonial-person p {
  margin: 0.35rem 0 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.google-proof-card {
  border: 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: clamp(1.25rem, 2.4vw, 1.8rem) 0;
}

.google-proof-card p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.social-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
}

.cta-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: saturate(0.8) contrast(1.08);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 10, 0.94), rgba(11, 11, 10, 0.72));
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid rgba(185, 147, 88, 0.34);
  border-bottom: 1px solid rgba(246, 241, 232, 0.09);
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  background: transparent;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--accent);
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 0.42rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.22);
  color: var(--text);
  padding: 0.82rem 0.9rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 0;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

select option {
  color: var(--ink);
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  font-size: 1rem;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 850;
}

.footer-grid ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin: 0.4rem 0;
  color: var(--muted);
}

.legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 860px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  justify-content: center;
}

.article-toc {
  position: sticky;
  top: 108px;
  border-left: 1px solid var(--line-gold);
  padding-left: 1rem;
}

.article-toc ol {
  display: grid;
  gap: 0.65rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--accent);
}

.article-body {
  max-width: 860px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.article-meta span {
  border: 1px solid rgba(185, 147, 88, 0.28);
  border-radius: 4px;
  padding: 0.36rem 0.64rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-body .lede {
  max-width: 780px;
  margin: 0 0 2.6rem;
  padding-left: 1rem;
  border-left: 1px solid var(--accent);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.28;
}

.pull-quote {
  max-width: 760px;
  margin: clamp(2.4rem, 5vw, 4.5rem) 0;
  padding: 0;
  border: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.article-photo {
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}

.article-photo img {
  aspect-ratio: 16 / 9;
}

.article-body h2 {
  scroll-margin-top: 110px;
  margin-top: 3.2rem;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.article-body p,
.article-body li {
  color: #3f3c37;
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  line-height: 1.78;
}

.article-body p {
  margin: 1.05rem 0;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 0.35rem;
  margin: 1.35rem 0 1.7rem;
  padding: 1rem 0 1rem 1.2rem;
  border-left: 1px solid rgba(185, 147, 88, 0.34);
  background: transparent;
  list-style-position: inside;
}

.article-body strong {
  color: var(--text);
  font-weight: 850;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-cta {
  margin-top: 4rem;
  border-top: 1px solid rgba(185, 147, 88, 0.34);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(239, 232, 221, 0.56);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.article-cta h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.article-cta p {
  max-width: 620px;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

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

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

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 76px);
    overflow: auto;
    padding: 1rem;
    background: rgba(244, 240, 232, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
  }

  .nav-actions .button {
    display: none;
  }

  .section.split .section-inner,
  .two-column,
  .feature-band,
  .hero-inner--with-photo,
  .portfolio-proof,
  .gallery-heading,
  .google-proof,
  .article-layout,
  .video-feature,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    border-left: 0;
    border-bottom: 1px solid rgba(200, 164, 106, 0.32);
    padding: 0 0 1rem;
  }

  .grid.three,
  .grid.two,
  .article-list--editorial,
  .related-links,
  .testimonial-curation,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .studio-gallery-item:nth-child(1),
  .studio-gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  .studio-gallery-item:nth-child(2),
  .studio-gallery-item:nth-child(3),
  .studio-gallery-item:nth-child(4),
  .studio-gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .portfolio-proof-photo {
    grid-column: auto;
    grid-row: auto;
  }

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

  .service-line {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .service-line .text-link {
    grid-column: 2;
  }

  .hero-side-photo {
    width: min(100%, 520px);
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .hero-inner,
  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    gap: 0.52rem;
  }

  .brand-logo {
    width: 84px;
    max-height: 28px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    inset: 72px 0 auto 0;
    max-height: calc(100vh - 72px);
  }

  .hero,
  .hero.compact {
    min-height: 640px;
  }

  .hero--home .hero-media {
    left: 0;
    opacity: 0.66;
  }

  .site-producer .hero--home .hero-media,
  .site-studio .hero--home .hero-media {
    left: 0;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(244, 240, 232, 0.98) 0%, rgba(244, 240, 232, 0.74) 54%, rgba(248, 244, 236, 0.42) 100%);
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-side-photo {
    width: 100%;
  }

  .hero-side-photo img {
    aspect-ratio: 16 / 10;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.7rem);
    line-height: 0.96;
  }

  .compact h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .hero-actions,
  .button,
  .article-cta-actions,
  .social-proof-actions {
    width: 100%;
  }

  .button {
    white-space: normal;
  }

  .service-line {
    grid-template-columns: 1fr;
  }

  .service-line .text-link {
    grid-column: auto;
  }

  .article-card h3 {
    max-width: 16ch;
  }

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

  .studio-gallery {
    grid-template-columns: 1fr;
  }

  .studio-gallery-item,
  .studio-gallery-item:nth-child(1),
  .studio-gallery-item:nth-child(2),
  .studio-gallery-item:nth-child(3),
  .studio-gallery-item:nth-child(4),
  .studio-gallery-item:nth-child(5),
  .studio-gallery-item:nth-child(6) {
    grid-column: span 1;
  }

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

  .studio-gallery-item img,
  .studio-gallery-item--large img {
    aspect-ratio: 4 / 5;
  }

  .luxury-photo--cinema img,
  .luxury-photo--wide img,
  .portfolio-proof-photo img,
  .testimonial-photo img,
  .article-photo img {
    aspect-ratio: 4 / 5;
  }

  .project-proof-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

}
