:root {
  color-scheme: dark;
  --ink: #f5f0e8;
  --muted: #b9b0a3;
  --soft: #8d867c;
  --line: rgba(245, 240, 232, 0.14);
  --panel: rgba(20, 19, 17, 0.78);
  --black: #050505;
  --charcoal: #11100f;
  --stone: #d7cdbc;
  --accent: #c6a66a;
  --accent-soft: rgba(198, 166, 106, 0.16);
  --navy: #07111d;
  --navy-soft: rgba(8, 22, 38, 0.42);
  --navy-line: rgba(94, 128, 163, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 86% 4%, rgba(8, 22, 38, 0.18), transparent 38%),
    linear-gradient(180deg, #050505 0%, #080a0d 42%, #050505 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  animation: pageEnter 760ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 18% 0%, rgba(198, 166, 106, 0.035), transparent 34%),
    radial-gradient(ellipse at 92% 12%, rgba(10, 31, 52, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%, rgba(255, 255, 255, 0.01));
  opacity: 0.8;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.07;
  mix-blend-mode: soft-light;
  background-size: 260px 260px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.74' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinematicDrift {
  0% {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.045) translate3d(-0.8%, -0.5%, 0);
  }

  100% {
    transform: scale(1.025) translate3d(0.6%, 0.4%, 0);
  }
}

@keyframes containFloat {
  0% {
    transform: scale(0.992) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.01) translate3d(0, -0.7%, 0);
  }

  100% {
    transform: scale(0.998) translate3d(0, 0.4%, 0);
  }
}

@keyframes mobileCinematicDrift {
  0% {
    transform: scale(1.006) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.02) translate3d(-0.25%, -0.25%, 0);
  }

  100% {
    transform: scale(1.012) translate3d(0.2%, 0.2%, 0);
  }
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 48px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.scrolled {
  padding-block: 14px;
  border-bottom: 1px solid rgba(198, 166, 106, 0.16);
  background:
    radial-gradient(ellipse at 88% 0%, rgba(8, 22, 38, 0.32), transparent 42%),
    linear-gradient(90deg, rgba(198, 166, 106, 0.035), transparent 48%, rgba(198, 166, 106, 0.025)),
    rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  transition: color 260ms ease, opacity 260ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(198, 166, 106, 0.85), transparent);
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: rgba(245, 240, 232, 0.96);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease, color 260ms ease, transform 260ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(198, 166, 106, 0.42);
  background:
    linear-gradient(135deg, rgba(198, 166, 106, 0.08), rgba(8, 22, 38, 0.18));
  box-shadow: 0 0 28px rgba(198, 166, 106, 0.1), 0 0 34px rgba(8, 22, 38, 0.14);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 0;
  padding: 112px clamp(18px, 5vw, 64px) 64px;
}

.hero::after {
  content: none;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) 0 clamp(24px, 4vw, 54px);
}

.page-hero::before {
  position: absolute;
  inset: 8% -12vw auto -12vw;
  z-index: -1;
  height: 70%;
  min-height: 300px;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at 16% 36%, rgba(198, 166, 106, 0.035), transparent 44%);
  opacity: 0.55;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.campaigns-page .page-hero {
  padding: clamp(36px, 5vw, 72px) 0 clamp(18px, 3vw, 34px);
}

.campaigns-page .section {
  padding: clamp(34px, 5vw, 70px) 0;
}

.campaigns-page .flagship-section {
  padding-top: clamp(18px, 3vw, 36px);
}

.hero-media,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.78) contrast(1.05) brightness(0.9);
  animation: cinematicDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-vignette {
  background:
    radial-gradient(ellipse at 78% 28%, rgba(8, 22, 38, 0.28), transparent 42%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.58) 42%, rgba(5, 5, 5, 0.16)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), transparent 48%, rgba(5, 5, 5, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: rgba(214, 181, 116, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(198, 166, 106, 0.08);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 980px;
  margin-bottom: 16px;
  font-size: clamp(5rem, 14vw, 10.75rem);
}

h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 7vw, 5.5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.06;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(245, 240, 232, 0.9);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-line {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(245, 240, 232, 0.76);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.hero-proof span {
  border: 1px solid rgba(198, 166, 106, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(198, 166, 106, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.36);
  padding: 10px 14px;
  color: rgba(245, 240, 232, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 26px rgba(198, 166, 106, 0.1);
}

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

.button.secondary {
  border-color: rgba(198, 166, 106, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 22, 38, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(198, 166, 106, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(245, 240, 232, 0.06);
}

.button.ghost {
  color: rgba(245, 240, 232, 0.74);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 240ms ease, transform 240ms ease;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.62;
  transition: width 240ms ease, opacity 240ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  transform: translateX(2px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 48px;
  opacity: 1;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 34px;
  color: rgba(245, 240, 232, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 105px) 0;
  scroll-margin-top: 92px;
}

.section::before {
  content: none;
}

.section:nth-of-type(even)::before {
  content: none;
}

.home-section {
  padding-block: clamp(38px, 5vw, 68px);
}

.hero {
  scroll-margin-top: 0;
}

.section-intro {
  display: grid;
  gap: 6px;
  max-width: 880px;
  margin-bottom: clamp(28px, 6vw, 64px);
}

.section-intro p:not(.eyebrow),
.contact-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.section-intro.compact {
  grid-template-columns: 0.7fr 1.5fr;
  max-width: none;
  align-items: end;
}

.impact {
  padding-top: clamp(36px, 6vw, 70px);
  padding-bottom: clamp(38px, 6vw, 72px);
}

.hero + .impact {
  margin-top: 0;
}

.hero + .impact::before {
  content: none;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(198, 166, 106, 0.18);
  border-left: 1px solid rgba(198, 166, 106, 0.12);
  background: linear-gradient(135deg, rgba(8, 22, 38, 0.11), transparent 44%);
}

.impact-grid article {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  border-right: 1px solid rgba(245, 240, 232, 0.12);
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  padding: clamp(22px, 3vw, 34px);
  transition: background 260ms ease, border-color 260ms ease;
}

.impact-grid article:hover {
  background:
    radial-gradient(ellipse at 82% 8%, rgba(8, 22, 38, 0.2), transparent 48%),
    linear-gradient(135deg, rgba(198, 166, 106, 0.07), rgba(255, 255, 255, 0.012)),
    rgba(13, 12, 11, 0.66);
  border-color: rgba(198, 166, 106, 0.22);
}

.impact-grid strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
  color: rgba(245, 240, 232, 0.96);
  text-shadow: 0 0 34px rgba(198, 166, 106, 0.08);
}

.impact-grid span {
  color: var(--muted);
  font-size: 0.96rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-card {
  position: relative;
  min-height: 128px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 11, 0.8);
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 260ms ease-out, background 260ms ease-out, transform 260ms ease-out, box-shadow 260ms ease-out, opacity 260ms ease-out;
}

.logo-card.is-hidden {
  display: none;
}

.logo-mark {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: min(120px, 70%);
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 166, 106, 0.14), rgba(8, 22, 38, 0.16));
  filter: blur(22px);
  opacity: 0;
  transform: translateY(-50%) scale(0.86);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
  pointer-events: none;
}

.logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.78;
  filter: grayscale(1) invert(1) contrast(0.9) brightness(1.12);
  mix-blend-mode: screen;
  transform-origin: left center;
  transform: scale(var(--logo-scale, 1));
  transition: opacity 240ms ease-out, filter 240ms ease-out, transform 240ms ease-out, mix-blend-mode 240ms ease-out;
}

.logo-card strong {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 13ch;
  color: rgba(245, 240, 232, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 1.5vw, 1.7rem);
  line-height: 0.98;
  transform-origin: left center;
  transform: scale(var(--logo-scale, 1));
  transition: color 240ms ease-out, transform 240ms ease-out;
}

.logo-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 240ms ease-out, opacity 240ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 166, 106, 0.62);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24), 0 0 30px rgba(198, 166, 106, 0.08), 0 0 44px rgba(8, 22, 38, 0.12);
    background:
      radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.23), transparent 44%),
      linear-gradient(135deg, rgba(198, 166, 106, 0.1), rgba(255, 255, 255, 0.02)),
      rgba(12, 12, 11, 0.9);
  }

  .logo-card:hover .logo-mark::before {
    opacity: 0.62;
    transform: translateY(-50%) scale(1);
  }

  .logo-card:hover img {
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
    transform: scale(var(--logo-hover-scale, 1.035));
  }

  .logo-card:hover span {
    color: rgba(245, 240, 232, 0.9);
  }

  .logo-card:hover strong {
    color: var(--ink);
    transform: scale(var(--logo-hover-scale, 1.025));
  }
}

.client-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 20px;
}

.client-filter-button {
  min-height: 36px;
  border: 1px solid rgba(245, 240, 232, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.022);
  color: rgba(245, 240, 232, 0.66);
  padding: 0 13px;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.client-filter-button:hover,
.client-filter-button:focus-visible,
.client-filter-button.active {
  border-color: rgba(198, 166, 106, 0.5);
  background: linear-gradient(135deg, rgba(198, 166, 106, 0.1), rgba(8, 22, 38, 0.16));
  color: var(--ink);
}

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

.case-list {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.case-card {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 86% 0%, rgba(8, 22, 38, 0.18), transparent 44%),
    var(--charcoal);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.case-card.wide {
  grid-row: span 2;
  min-height: 620px;
}

.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 700ms ease, filter 700ms ease;
  animation: cinematicDrift 17s ease-in-out infinite alternate;
  will-change: transform;
}

.case-card.case-visitmalta img {
  object-position: center 42%;
}

.case-card.image-contain {
  background:
    radial-gradient(ellipse at 92% 0%, rgba(8, 22, 38, 0.22), transparent 42%),
    radial-gradient(circle at center, rgba(198, 166, 106, 0.08), transparent 58%),
    #050505;
}

.case-card.image-contain img {
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  padding: clamp(10px, 1.8vw, 18px);
  animation: containFloat 18s ease-in-out infinite alternate;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 166, 106, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), 0 0 34px rgba(198, 166, 106, 0.08), 0 0 48px rgba(8, 22, 38, 0.12);
}

.case-card:hover img {
  transform: scale(1.055);
  filter: saturate(0.95) contrast(1.06);
}

.case-card.image-contain:hover img {
  transform: scale(1.025);
}

.case-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 88% 20%, rgba(8, 22, 38, 0.18), transparent 44%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.93), rgba(5, 5, 5, 0.16) 58%, rgba(5, 5, 5, 0.08));
}

.case-content {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 42px);
}

.case-content p,
.case-content span {
  color: var(--muted);
}

.case-content p {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-content strong {
  display: inline-block;
  margin-top: 18px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.study-list {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.flagship-case {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(198, 166, 106, 0.09), rgba(255, 255, 255, 0.015)),
    rgba(13, 12, 11, 0.86);
  padding: clamp(16px, 3vw, 30px);
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.flagship-case:hover {
  border-color: rgba(198, 166, 106, 0.3);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22), 0 0 54px rgba(8, 22, 38, 0.12);
}

.flagship-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.flagship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 900ms ease;
  animation: cinematicDrift 19s ease-in-out infinite alternate;
  will-change: transform;
}

.flagship-case:hover .flagship-media img {
  transform: scale(1.04);
}

.campaign-logo-mark {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  width: min(210px, 46%);
  height: auto;
  max-height: 78px;
  object-fit: contain;
  border-radius: 0;
  filter: none;
  opacity: 0.92;
}

.flagship-copy {
  padding: clamp(8px, 2vw, 26px);
}

.flagship-copy h2 {
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.flagship-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.flagship-result {
  margin-bottom: 18px;
  color: var(--ink) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  line-height: 1;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.campaign-card {
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.16), transparent 44%),
    rgba(13, 12, 11, 0.78);
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.campaign-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 166, 106, 0.38);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.22), transparent 44%),
    rgba(17, 16, 15, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), 0 0 34px rgba(198, 166, 106, 0.08), 0 0 46px rgba(8, 22, 38, 0.12);
}

.campaign-card figure {
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.campaign-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 700ms ease, filter 700ms ease;
  animation: cinematicDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.campaign-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.06);
}

.campaign-card.contain-image img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(10px, 1.6vw, 18px);
  animation: containFloat 18s ease-in-out infinite alternate;
}

.campaign-card-copy {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 34px);
}

.campaign-card-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 0.96;
}

.campaign-card-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(245, 240, 232, 0.78);
}

.case-notes {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.case-notes div {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 10px;
}

.case-notes span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-notes p {
  margin: 0;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
  line-height: 1.42;
}

.mini-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.mini-tag-row span {
  border: 1px solid rgba(245, 240, 232, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compact-partners-section {
  padding-top: clamp(20px, 4vw, 52px);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-pill {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(245, 240, 232, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.14), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 11, 0.76);
  padding: 18px;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.partner-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 166, 106, 0.34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  background:
    linear-gradient(135deg, rgba(198, 166, 106, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(14, 13, 12, 0.88);
}

.partner-pill img {
  max-width: 170px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) invert(1) brightness(1.32) contrast(0.88);
  opacity: 0.8;
}

.partner-pill strong {
  color: rgba(245, 240, 232, 0.9);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 0.98;
}

.partner-pill span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flagship-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.flagship-stats span {
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-campaigns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

.editorial-campaign {
  position: relative;
  display: grid;
  grid-column: span 6;
  min-height: clamp(520px, 54vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.13);
  background: rgba(13, 12, 11, 0.72);
}

.editorial-campaign.large,
.editorial-campaign.wide {
  grid-column: span 12;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

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

.editorial-campaign.tall {
  grid-column: span 4;
  min-height: clamp(620px, 58vw, 780px);
}

.editorial-campaign.brand {
  grid-column: span 4;
  min-height: 460px;
}

.editorial-campaign figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.editorial-campaign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 900ms ease, filter 900ms ease;
  animation: cinematicDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.editorial-campaign.large img {
  object-position: center 12%;
}

.editorial-campaign.wide img {
  object-position: center 35%;
}

.editorial-campaign:hover img {
  transform: scale(1.04);
  filter: saturate(0.98) contrast(1.06);
}

.editorial-campaign .campaign-logo-mark {
  width: min(160px, 42%);
  max-height: 64px;
}

.editorial-campaign.logo-led figure {
  display: grid;
  place-items: center;
  min-height: 260px;
  background:
    radial-gradient(circle at top left, rgba(198, 166, 106, 0.13), transparent 36%),
    rgba(245, 240, 232, 0.035);
  padding: clamp(34px, 6vw, 72px);
}

.editorial-campaign.logo-led img {
  width: min(260px, 72%);
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.18);
}

.editorial-campaign.logo-led:hover img {
  transform: scale(1.02);
}

.editorial-campaign.large.reverse figure {
  order: 2;
}

.editorial-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(24px, 4vw, 56px);
}

.editorial-campaign:not(.large):not(.wide) .editorial-copy {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.88));
}

.editorial-copy h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 5vw, 5.7rem);
  line-height: 0.92;
}

.editorial-campaign.tall .editorial-copy h2,
.editorial-campaign.brand .editorial-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.editorial-copy p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.editorial-copy span {
  width: fit-content;
  margin-top: 4px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(245, 240, 232, 0.76);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.study-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.14), transparent 46%),
    rgba(13, 12, 11, 0.74);
  padding: clamp(16px, 3vw, 28px);
}

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

.compact-studies .study-card {
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(18px, 3vw, 34px);
}

.compact-studies .study-card img {
  aspect-ratio: 4 / 5;
}

.compact-studies .study-card h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.study-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.84) contrast(1.03);
}

.study-card h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.study-card p:not(.eyebrow),
.study-card dd {
  color: var(--muted);
}

.study-card dl {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.study-card dt {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.study-card dd {
  margin: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 240, 232, 0.74);
  padding: 0 14px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 285px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 900ms ease, filter 900ms ease;
  animation: cinematicDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.8);
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.contact-heading {
  position: sticky;
  top: 110px;
}

.contact-heading a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.contact-page {
  min-height: calc(100svh - 96px);
}

.contact-heading h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.92;
}

.social-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-stack a {
  color: var(--ink);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.16), transparent 46%),
    rgba(13, 12, 11, 0.86);
}

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

.inquiry-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(8, 22, 38, 0.08), rgba(255, 255, 255, 0.035));
  color: var(--ink);
  padding: 14px 13px;
  outline: none;
}

.inquiry-form select {
  color: var(--ink);
}

.inquiry-form option {
  background: var(--charcoal);
  color: var(--ink);
}

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

.full,
.full-button {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 4vw, 48px);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.simple-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.simple-list article {
  background: rgba(13, 12, 11, 0.86);
  padding: clamp(20px, 3vw, 32px);
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.simple-list article:hover {
  transform: translateY(-2px);
  background: rgba(16, 15, 14, 0.9);
}

.simple-list p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.highlight-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.highlight-list span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.highlight-list p {
  margin: 0;
  color: rgba(245, 240, 232, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.cta-strip {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: start;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  padding-block: clamp(52px, 7vw, 92px);
}

.cta-strip::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 20%, rgba(198, 166, 106, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent);
}

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

.about-page {
  padding-top: 80px;
}

.about-hero {
  position: relative;
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 64px) 70px;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.52) 48%, rgba(5, 5, 5, 0.12)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.05) 70%);
}

.about-hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.about-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 9vw, 8.4rem);
}

.about-hero p:not(.eyebrow),
.lede {
  max-width: 700px;
  color: rgba(245, 240, 232, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.about-intro {
  padding-block: clamp(52px, 8vw, 96px);
}

.lede {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.7vw, 4.7rem);
  line-height: 1;
}

.story-timeline {
  display: grid;
  gap: clamp(32px, 7vw, 92px);
}

.story-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.story-row:nth-child(even) .story-copy,
.return-row .story-copy {
  order: 2;
}

.story-row img,
.la-grid img,
.image-strip img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
  animation: cinematicDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.story-row img {
  aspect-ratio: 4 / 5;
}

.story-copy span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy p,
.chapter-card p,
.today-section p {
  color: var(--muted);
}

.la-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.la-grid img {
  min-height: 520px;
  height: 100%;
}

.la-grid img:first-child {
  grid-column: span 2;
}

.chapter-card {
  min-height: 300px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 12, 11, 0.82);
  padding: clamp(20px, 3vw, 32px);
}

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

.malta-growth .section-intro {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  margin-bottom: 18px;
}

.growth-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(13, 12, 11, 0.88);
  padding: clamp(20px, 3vw, 30px);
}

.growth-grid strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 0.95;
}

.growth-grid span {
  color: var(--muted);
}

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

.image-strip img {
  aspect-ratio: 3 / 4;
}

.collection-page {
  padding-top: 80px;
}

.collection-hero {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 78px) 0 clamp(24px, 4vw, 58px);
}

.collection-hero-copy {
  max-width: 680px;
}

.collection-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8.8vw, 9rem);
}

.collection-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(245, 240, 232, 0.82);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
}

.collection-hero-media,
.collection-spread,
.collection-plate {
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.18), transparent 42%),
    rgba(13, 12, 11, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.collection-hero-media {
  transform: rotate(-1.2deg);
}

.collection-hero-media img,
.collection-spread img,
.collection-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: transform 760ms ease, filter 760ms ease;
  animation: cinematicDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}

.collection-hero-media img {
  aspect-ratio: 842 / 595;
}

.collection-hero-media:hover img,
.collection-spread:hover img,
.collection-plate:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.05);
}

.collection-proof-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr 0.9fr;
  gap: 1px;
  border: 1px solid rgba(198, 166, 106, 0.16);
  background: rgba(245, 240, 232, 0.1);
  padding: 0;
}

.collection-proof-strip article {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(8, 22, 38, 0.16), transparent 44%),
    rgba(10, 10, 9, 0.92);
  padding: clamp(22px, 3vw, 34px);
}

.collection-proof-strip strong {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  line-height: 0.9;
}

.collection-proof-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.collection-origin p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.42vw, 1.12rem);
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.collection-spread {
  margin: 0;
}

.collection-spread img {
  aspect-ratio: 842 / 595;
}

.collection-feature-copy p:not(.eyebrow),
.collection-download p {
  max-width: 560px;
  color: var(--muted);
}

.collection-plate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 30px);
}

.collection-plate {
  display: grid;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.collection-plate:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 166, 106, 0.34);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.3), 0 0 42px rgba(8, 22, 38, 0.12);
}

.collection-plate img {
  aspect-ratio: 842 / 595;
}

.collection-plate div {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.5vw, 28px);
}

.collection-plate span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-plate h3 {
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.7vw, 3rem);
}

.collection-plate p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.collection-download {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 820ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 820ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    touch-action: manipulation;
    transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: rgba(198, 166, 106, 0.42);
    background: rgba(198, 166, 106, 0.08);
    box-shadow: 0 0 28px rgba(198, 166, 106, 0.12);
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
    background: rgba(5, 5, 5, 0.98);
    padding: 12px;
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .site-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 14px;
  }

  .site-nav a.active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(245, 240, 232, 0.055);
  }

  .site-nav a::after {
    bottom: 6px;
    left: 14px;
    right: auto;
    width: 38px;
    transform-origin: left;
  }

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

  .section-intro.compact,
  .case-list,
  .study-card,
  .flagship-case,
  .campaign-grid,
  .collection-hero,
  .collection-feature,
  .editorial-campaigns,
  .editorial-campaign.large,
  .editorial-campaign.large.reverse,
  .editorial-campaign.wide,
  .compact-studies,
  .compact-studies .study-card,
  .split-section,
  .story-row,
  .contact {
    grid-template-columns: 1fr;
  }

  .flagship-media {
    min-height: 0;
  }

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

  .editorial-campaign,
  .editorial-campaign.tall,
  .editorial-campaign.brand {
    grid-column: auto;
  }

  .editorial-campaign.large.reverse figure {
    order: 0;
  }

  .editorial-campaign.large,
  .editorial-campaign.wide {
    min-height: auto;
  }

  .editorial-campaign.large figure,
  .editorial-campaign.wide figure {
    height: 520px;
    min-height: 0;
  }

  .story-row:nth-child(even) .story-copy,
  .return-row .story-copy {
    order: 0;
  }

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

  .la-grid img:first-child {
    grid-column: span 2;
  }

  .growth-grid,
  .collection-proof-strip,
  .image-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .collection-hero-media {
    transform: none;
  }

  .collection-feature {
    gap: 22px;
  }

  .case-card,
  .case-card.wide {
    min-height: 500px;
  }

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

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

  .contact-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  body::after {
    opacity: 0.09;
    background-size: 180px 180px;
  }

  .site-header {
    padding: 16px 18px;
  }

  .site-header.scrolled {
    padding-block: 12px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 100svh;
    margin-bottom: 0;
    padding: 94px 18px max(34px, env(safe-area-inset-bottom));
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.42) 64%, rgba(5, 5, 5, 0.16)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.58), transparent);
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 6.5rem);
  }

  .page-hero h1,
  .contact-heading h1,
  .about-hero h1 {
    overflow-wrap: break-word;
    font-size: clamp(2.55rem, 11.5vw, 4.1rem);
  }

  .page-main {
    padding-top: 78px;
  }

  .page-hero {
    width: min(var(--max), calc(100% - 32px));
    padding: 42px 0 24px;
  }

  .section {
    width: min(var(--max), calc(100% - 32px));
    padding: 46px 0;
  }

  .section-intro {
    margin-bottom: 24px;
  }

  .section-intro h2 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .hero-line {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-proof {
    gap: 8px;
    margin: 22px 0;
  }

  .hero-proof span {
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-actions {
    gap: 10px;
  }

  .about-hero {
    min-height: 88svh;
    padding: 100px 18px 54px;
  }

  .story-row img,
  .la-grid img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .la-grid,
  .growth-grid,
  .collection-proof-strip,
  .collection-plate-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .collection-page {
    padding-top: 78px;
  }

  .collection-hero {
    width: min(var(--max), calc(100% - 32px));
    gap: 22px;
    padding: 34px 0 24px;
  }

  .collection-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .collection-proof-strip article {
    min-height: 142px;
    padding: 20px;
  }

  .collection-proof-strip strong {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .collection-feature {
    grid-template-columns: 1fr;
  }

  .collection-download {
    display: grid;
    align-items: start;
  }

  .collection-download .button {
    width: 100%;
  }

  .flagship-media {
    min-height: 0;
  }

  .campaign-card img,
  .campaign-card.contain-image img {
    aspect-ratio: 4 / 4.15;
  }

  .partner-strip {
    grid-template-columns: 1fr;
  }

  .campaign-logo-mark {
    width: min(170px, 54%);
    max-height: 62px;
  }

  .editorial-campaign,
  .editorial-campaign.tall,
  .editorial-campaign.brand {
    min-height: 480px;
  }

  .editorial-campaign.large figure,
  .editorial-campaign.wide figure {
    height: 430px;
    min-height: 0;
  }

  .editorial-campaign.large .editorial-copy,
  .editorial-campaign.wide .editorial-copy {
    padding-top: 8px;
  }

  .editorial-copy h2 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .la-grid img:first-child {
    grid-column: auto;
  }

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

  .scroll-cue {
    display: none;
  }

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

  .impact-grid article {
    min-height: 154px;
    padding: 20px;
  }

  .impact-grid strong {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

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

  .logo-card {
    min-height: 112px;
    padding: 16px;
  }

  .logo-card img {
    max-height: 40px;
  }

  .logo-card strong {
    font-size: 1.05rem;
  }

  .client-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .client-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .client-filter-button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 11px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    display: grid;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .hero-media img,
  .case-card img,
  .campaign-card img,
  .flagship-media img,
  .collection-hero-media img,
  .collection-spread img,
  .collection-plate img,
  .editorial-campaign img,
  .gallery-item img,
  .story-row img,
  .la-grid img,
  .image-strip img {
    animation-name: mobileCinematicDrift;
    animation-duration: 18s;
  }

  .contact {
    gap: 28px;
  }

  .contact-heading h1 {
    line-height: 0.95;
  }

  .social-stack {
    gap: 10px;
    margin-top: 20px;
  }

  .inquiry-form {
    gap: 12px;
    padding: 14px;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    min-height: 50px;
    padding: 14px 12px;
    font-size: 16px;
  }

  .inquiry-form textarea {
    min-height: 132px;
  }

  .case-card,
  .case-card.wide {
    min-height: 430px;
  }

  .case-card.image-contain img {
    padding: 12px;
  }

  .case-content {
    padding: 22px;
  }

  .case-content h3 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .campaign-card-copy {
    padding: 22px;
  }

  .campaign-card-copy h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media img,
  .case-card img,
  .campaign-card img,
  .flagship-media img,
  .collection-hero-media img,
  .collection-spread img,
  .collection-plate img,
  .editorial-campaign img,
  .gallery-item img,
  .story-row img,
  .la-grid img,
  .image-strip img {
    transform: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
}
