/* IRIS Agency — cinematic brand system */

:root {
  --ink: #0b0b0b;
  --ink-soft: #141414;
  --ink-elevated: #1a1a1a;
  --cream: #f3eee4;
  --cream-deep: #e8e0d2;
  --gold: #c9a227;
  --gold-soft: #d4b45a;
  --gold-dim: rgba(201, 162, 39, 0.35);
  --paper: #f7f4ee;
  --muted: rgba(243, 238, 228, 0.62);
  --muted-dark: rgba(11, 11, 11, 0.62);
  --line: rgba(243, 238, 228, 0.12);
  --line-dark: rgba(11, 11, 11, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --section: clamp(4.5rem, 10vw, 8rem);
  --max: 72rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

figure {
  margin: 0;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.section {
  padding: var(--section) var(--space);
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 1rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.lede {
  max-width: 38rem;
  font-size: 1.05rem;
  opacity: 0.78;
}

.framed {
  position: relative;
}

.framed::before,
.framed::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.framed::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.framed::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 238, 228, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--space);
  background: linear-gradient(to bottom, rgba(11, 11, 11, 0.88), rgba(11, 11, 11, 0));
  transition: background 0.35s var(--ease);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.94);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  margin-left: 0.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  position: fixed;
  top: 1.1rem;
  right: var(--space);
  z-index: 105;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  border: 1px solid transparent;
  padding: 0.45rem 0.7rem;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.site-nav a.is-active {
  opacity: 1;
  color: var(--gold);
  border-color: var(--gold);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid var(--gold-dim);
  opacity: 1 !important;
  color: var(--gold);
}

.nav-cta:hover,
.nav-cta.is-active {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events: auto;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--cream);
  pointer-events: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: kenburns 18s var(--ease) forwards;
}

@keyframes kenburns {
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.55) 42%, rgba(11, 11, 11, 0.25) 100%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.75) 0%, transparent 45%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 7rem var(--space) clamp(4rem, 10vw, 7rem);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 0.9;
}

.brand-agency {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.55rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  max-width: 12ch;
  margin-bottom: 1.1rem;
}

.hero-lede {
  max-width: 28rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* About */

.about {
  background: var(--ink);
}

.about-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  margin: 0 0 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.about-copy p {
  color: var(--muted);
}

.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Services intro */

.services-intro-inner {
  width: min(100%, 46rem);
  margin: 0 auto;
  text-align: center;
}

.services-intro .lede {
  margin: 1rem auto 0;
}

.services-intro .section-title::after,
.about .section-title::after,
.equipment .section-title::after,
.process .section-title::after,
.why .section-title::after,
.contact .section-title::after,
.facilities .section-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 1rem;
  background: var(--gold);
}

.services-intro .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* Service blocks */

.service-block {
  padding: var(--section) var(--space);
}

.service-dark {
  background: var(--ink-soft);
}

.service-light {
  background: var(--cream);
  color: var(--ink);
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.service-dark.service-block:not(.events-block):not(.studio-block) {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.studio-block {
  width: 100%;
  margin: 0;
  background: var(--ink);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.studio-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.studio-media {
  display: grid;
  gap: 0.75rem;
}

.studio-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.studio-shot::before,
.studio-shot::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.studio-shot::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.studio-shot::after {
  right: 8px;
  bottom: 8px;
  border-left: 0;
  border-top: 0;
}

.studio-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.studio-shot:first-child img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.studio-block .service-copy p {
  color: var(--muted);
  opacity: 1;
}

.studio-block .tag-row li {
  border-color: rgba(243, 238, 228, 0.28);
  color: var(--cream);
  opacity: 0.85;
}

.photography-block {
  position: relative;
  z-index: 0;
}

.service-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.service-copy p {
  opacity: 0.78;
}

.service-copy-wide {
  width: min(100%, var(--max));
  margin: 0 auto 2rem;
}

.service-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.service-media-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.service-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-media {
  display: grid;
  gap: 0.75rem;
}

.post-media .service-figure img {
  aspect-ratio: 16 / 10;
}

#videography .service-figure img {
  aspect-ratio: 4 / 3;
}

.decor-copy {
  margin-bottom: 0;
  text-align: center;
}

.decor-copy .step-inline {
  justify-content: center;
}

.decor-copy p.reveal {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.tag-row li {
  padding: 0.45rem 0.95rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.photo-mosaic {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 0.85rem;
}

.photo-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ddd5c6;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.photo-tile figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.photo-feature {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  min-height: 28rem;
}

.photo-product {
  grid-column: 8 / span 5;
  grid-row: 1;
  min-height: 13.5rem;
}

.photo-event {
  grid-column: 8 / span 5;
  grid-row: 2;
  min-height: 13.5rem;
}

.photo-sport {
  grid-column: 1 / span 4;
  grid-row: 3;
  min-height: 12rem;
}

.photo-food {
  grid-column: 5 / span 4;
  grid-row: 3;
  min-height: 12rem;
}

.photo-team {
  grid-column: 9 / span 4;
  grid-row: 3;
  min-height: 12rem;
}

.feature-image {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.feature-image img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.step-inline,
.process-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.step-inline li,
.process-mini li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-inline span,
.process-mini span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.events-block {
  display: grid;
  gap: 2rem;
}

.events-block .feature-image {
  margin-bottom: 0;
}

.events-block .service-copy-wide {
  margin-bottom: 0;
}

.process-mini {
  gap: 0;
  justify-content: space-between;
  max-width: 40rem;
  position: relative;
}

.process-mini::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  top: 0.7rem;
  height: 1px;
  background: var(--gold-dim);
  z-index: 0;
}

.process-mini li {
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 0.45rem;
  background: var(--ink-soft);
  padding: 0 0.35rem;
}

.process-mini span {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
}

/* Equipment */

.equipment-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.equipment-figure img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.equip-item h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1.5px solid var(--gold);
}

.equip-item p {
  font-size: 0.92rem;
  color: var(--muted-dark);
}

/* Facilities */

.facilities-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.75fr;
  gap: 1.25rem;
  align-items: start;
}

.facilities-main img,
.facilities-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilities-main {
  min-height: 28rem;
}

.facilities-side-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.facilities-side {
  margin: 0;
  min-height: 0;
}

.facilities-main img {
  aspect-ratio: 3 / 4;
}

.facilities-side img {
  aspect-ratio: 4 / 5;
}

/* Process */

.process-header {
  width: min(100%, var(--max));
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: end;
}

.process-track {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(11, 11, 11, 0.15);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  position: relative;
}

.process-num {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.process-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Why */

.why {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 162, 39, 0.08), transparent 50%),
    var(--ink);
}

.why-inner {
  width: min(100%, 52rem);
  margin: 0 auto;
  text-align: center;
}

.why .lede {
  margin: 0 auto 2rem;
}

.why .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.pillar-row li {
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--gold-dim);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clients {
  padding: 2rem;
  border: 1px dashed rgba(243, 238, 228, 0.18);
}

.clients-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
}

.client-list li {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.72;
}

/* Contact */

.contact {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.contact-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
  background: rgba(243, 238, 228, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease);
}

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

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.35rem;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 2rem 2.5rem;
  align-items: end;
  padding: 2.75rem var(--space) 2rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

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

.footer-icon {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  color: var(--gold);
}

.footer-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.2rem;
}

.footer-social-link {
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-social-link .footer-icon {
  margin-top: 0;
  width: 1rem;
  height: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.45;
  margin: 0;
  align-self: end;
  justify-self: end;
  text-align: right;
}

/* Reveal motion */

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.process-step.reveal {
  transition-delay: 0s;
}

.process-step.reveal.is-visible:nth-child(1) { transition-delay: 0.05s; }
.process-step.reveal.is-visible:nth-child(2) { transition-delay: 0.15s; }
.process-step.reveal.is-visible:nth-child(3) { transition-delay: 0.25s; }
.process-step.reveal.is-visible:nth-child(4) { transition-delay: 0.35s; }
.process-step.reveal.is-visible:nth-child(5) { transition-delay: 0.45s; }

.hero .reveal {
  transition-delay: 0s;
}

.hero .brand-lockup.reveal.is-visible { transition-delay: 0.1s; }
.hero .hero-title.reveal.is-visible { transition-delay: 0.22s; }
.hero .hero-lede.reveal.is-visible { transition-delay: 0.34s; }
.hero .hero-actions.reveal.is-visible { transition-delay: 0.46s; }

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

  .hero-img {
    animation: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */

@media (max-width: 960px) {
  :root {
    --section: clamp(3.5rem, 8vw, 5.5rem);
    --space: clamp(1.15rem, 4vw, 1.75rem);
  }

  .about-grid,
  .service-split,
  .service-dark.service-block:not(.events-block):not(.studio-block),
  .studio-layout,
  .contact-grid,
  .process-header,
  .facilities-grid {
    grid-template-columns: 1fr;
  }

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

  .studio-shot img,
  .studio-shot:first-child img {
    aspect-ratio: 4 / 5;
  }

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

  .process-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .process-track::before {
    display: none;
  }

  .process-label {
    letter-spacing: 0.08em;
    font-size: 0.68rem;
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .photo-feature,
  .photo-product,
  .photo-event,
  .photo-sport,
  .photo-food,
  .photo-team {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .photo-feature {
    grid-column: 1 / -1;
    min-height: 18rem;
  }

  .photo-tile img {
    aspect-ratio: 4 / 3;
  }

  .facilities-side-stack {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
  }

  .facilities-main {
    min-height: 0;
  }

  .facilities-main img {
    aspect-ratio: 4 / 5;
    max-height: 32rem;
  }

  .about-figure {
    order: -1;
    max-width: 28rem;
  }

  .about-figure img {
    aspect-ratio: 3 / 4;
    max-height: 28rem;
  }

  .feature-image img {
    max-height: 18rem;
  }

  .process-mini {
    max-width: none;
    justify-content: space-between;
    gap: 0.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --section: clamp(3rem, 12vw, 4rem);
  }

  body {
    font-size: 1rem;
  }

  .site-header {
    padding: 0.85rem var(--space);
    padding-top: max(0.85rem, env(safe-area-inset-top));
    background: rgba(11, 11, 11, 0.94);
  }

  .site-header.is-scrolled {
    background: rgba(11, 11, 11, 0.96);
  }

  .nav-toggle {
    display: block;
    position: fixed;
    top: max(0.55rem, env(safe-area-inset-top));
    right: max(0.35rem, calc(var(--space) - 0.35rem));
    z-index: 130;
  }

  body.nav-open .nav-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  .nav-close {
    display: none;
    position: fixed;
    top: max(0.55rem, env(safe-area-inset-top));
    right: max(0.35rem, calc(var(--space) - 0.35rem));
    z-index: 140;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--gold-dim);
    background: rgba(11, 11, 11, 0.85);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .site-nav.is-open .nav-close {
    display: block;
  }

  .nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1rem;
    height: 1.5px;
    background: var(--gold);
    pointer-events: none;
  }

  .nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: env(safe-area-inset-top) var(--space) env(safe-area-inset-bottom);
    background: rgba(11, 11, 11, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.05rem;
    min-width: 10rem;
    text-align: center;
  }

  .site-nav a.is-active {
    border-color: var(--gold);
  }

  body.nav-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }

  body.nav-open .site-header {
    background: transparent;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: end;
  }

  .hero-img {
    object-position: center 35%;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.55) 0%, rgba(11, 11, 11, 0.35) 35%, rgba(11, 11, 11, 0.88) 100%),
      linear-gradient(90deg, rgba(11, 11, 11, 0.55) 0%, transparent 60%);
  }

  .hero-content {
    padding: 5.5rem var(--space) max(3rem, env(safe-area-inset-bottom));
    width: 100%;
  }

  .brand-name {
    font-size: clamp(2.8rem, 16vw, 4rem);
    letter-spacing: 0.1em;
  }

  .brand-agency {
    letter-spacing: 0.35em;
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    max-width: none;
  }

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

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

  .hero-actions .btn {
    width: 100%;
  }

  .section-title,
  .service-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    overflow-wrap: break-word;
  }

  .quote {
    font-size: 1.25rem;
  }

  .studio-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .photo-feature {
    grid-column: 1 / -1;
    min-height: 14rem;
  }

  .photo-tile figcaption {
    left: 0.5rem;
    bottom: 0.5rem;
    font-size: 0.58rem;
    padding: 0.28rem 0.5rem;
  }

  .equip-grid,
  .process-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-step {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .process-label {
    letter-spacing: 0.14em;
    font-size: 0.78rem;
  }

  .facilities-side-stack {
    grid-template-columns: 1fr 1fr;
  }

  .tag-row,
  .step-inline,
  .pillar-row {
    gap: 0.5rem;
  }

  .tag-row li,
  .pillar-row li {
    font-size: 0.62rem;
    padding: 0.4rem 0.75rem;
    letter-spacing: 0.08em;
  }

  .step-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .decor-copy .step-inline {
    align-items: center;
  }

  .process-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
  }

  .process-mini li {
    flex-direction: row;
    justify-content: flex-start;
    background: transparent;
    padding: 0;
  }

  .process-mini::before {
    display: none;
  }

  .clients {
    padding: 1.25rem;
  }

  .client-list {
    gap: 0.65rem 1rem;
  }

  .client-list li {
    font-size: 1rem;
  }

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

  .contact-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .footer-copy {
    justify-self: start;
    text-align: left;
  }

  .feature-image img {
    max-height: 14rem;
  }

  .equipment-figure img {
    max-height: 14rem;
  }
}

@media (max-width: 480px) {
  .studio-media,
  .photo-mosaic,
  .facilities-side-stack {
    grid-template-columns: 1fr;
  }

  .photo-feature {
    min-height: 12rem;
  }

  .btn {
    min-height: 2.85rem;
    padding: 0.7rem 1.15rem;
    font-size: 0.74rem;
  }

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

  .about-figure {
    max-width: none;
  }

  .brand-lockup {
    margin-bottom: 1.25rem;
  }
}
