:root {
  --paper: #f4efe7;
  --paper-deep: #e9e0d4;
  --ink: #201d1a;
  --muted: #6d655d;
  --brass: #bb8f4b;
  --sage: #687467;
  --rust: #a85535;
  --magenta: #c62e73;
  --white: #fffdf9;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shadow: 0 1.5rem 4rem rgba(32, 29, 26, .14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 10% 30%, rgba(187, 143, 75, .08), transparent 24rem), var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--white); background: var(--rust); }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--rust), var(--magenta), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 50%;
  width: min(92vw, 76rem);
  min-height: 4.4rem;
  padding: .7rem .8rem .7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 1.25rem;
  background: rgba(244, 239, 231, .82);
  box-shadow: 0 .7rem 2.5rem rgba(25, 22, 19, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .3s ease, box-shadow .3s ease, top .3s ease;
}

.site-header.is-scrolled {
  top: .55rem;
  background: rgba(244, 239, 231, .94);
  box-shadow: 0 .8rem 3rem rgba(25, 22, 19, .14);
}

.wordmark {
  display: grid;
  line-height: 1.05;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -.02em;
}

.wordmark small {
  margin-top: .3rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.desktop-nav a {
  padding: .72rem .92rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.desktop-nav a:hover {
  color: var(--rust);
  background: rgba(255, 255, 255, .68);
  transform: translateY(-1px);
}

.desktop-nav .nav-contact {
  gap: .35rem;
  color: var(--white);
  background: var(--ink);
}

.desktop-nav .nav-contact,
.brand-links a,
.contact-mail,
.reel-copy > span:last-child {
  display: inline-flex;
  align-items: center;
}

.desktop-nav svg,
.brand-links svg,
.contact-mail svg,
.reel-copy svg {
  width: .95rem;
  height: .95rem;
  stroke-width: 1.8;
}

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7.5rem 4vw 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-mosaic {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  grid-template-rows: 52% 48%;
  gap: .55rem;
  padding: .55rem;
  background: var(--ink);
}

.hero-tile {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: .8rem;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.tile-dutchbone img { object-position: 50% 46%; }
.tile-bold img { object-position: 55% 55%; animation-delay: -5s; }
.tile-zuiver img { object-position: center; animation-delay: -9s; }
.tile-fest img { object-position: center; animation-delay: -13s; }

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(23, 20, 18, .05) 10%, rgba(23, 20, 18, .48) 100%),
    linear-gradient(180deg, rgba(23, 20, 18, .16), rgba(23, 20, 18, .3));
}

.hero-card {
  width: min(47rem, 92vw);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: var(--radius-lg);
  background: rgba(244, 239, 231, .91);
  box-shadow: 0 2rem 6rem rgba(22, 18, 15, .28);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rust);
  font-family: var(--mono);
  font-size: clamp(.64rem, 1vw, .75rem);
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.services h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 460;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 { font-size: clamp(3.15rem, 7.2vw, 7rem); }
em { font-weight: 380; }

.hero-copy {
  max-width: 36rem;
  margin: 1.75rem auto 0;
  color: #4f4943;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
}

.button {
  min-height: 3rem;
  padding: .75rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--rust); }
.button-ghost:hover { color: var(--white); background: var(--ink); }
.button svg { width: 1rem; }

.brand-rail {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}

.brand-rail span {
  padding: .38rem .65rem;
  border: 1px solid rgba(32, 29, 26, .16);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  display: grid;
  justify-items: center;
  color: var(--white);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg { width: 1rem; animation: scroll-bob 1.8s ease-in-out infinite; }
.section-shell { width: min(88vw, 78rem); margin-inline: auto; }

.intro {
  min-height: 78vh;
  padding-block: clamp(6rem, 12vw, 11rem);
  display: grid;
  grid-template-columns: minmax(10rem, .55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 9vw, 10rem);
  align-items: start;
}

.section-kicker {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.section-kicker span,
.service-grid article > span {
  color: var(--rust);
  font-family: var(--mono);
  font-size: .65rem;
}

.section-kicker p {
  margin: 0;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.intro h2,
.section-heading h2,
.services h2,
.contact h2 { font-size: clamp(3rem, 6vw, 6.1rem); }

.intro-lead {
  max-width: 43rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.intro-notes {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.intro-notes p {
  margin: 0;
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .48);
  color: #5c554e;
  font-size: .88rem;
}

.intro-notes svg {
  flex: 0 0 auto;
  width: 1.1rem;
  color: var(--rust);
}

.brands {
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: minmax(8rem, .45fr) minmax(0, 1.55fr);
  gap: 2rem;
}

.section-heading .eyebrow { color: #d9b67a; }
.section-heading h2 { max-width: 12ch; }

.section-heading div > p {
  max-width: 38rem;
  margin: 1.6rem 0 0;
  color: #bcb4ac;
  font-size: 1.06rem;
}

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

.brand-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: #2c2926;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .18);
  transform-style: preserve-3d;
  transition: transform .2s ease-out, border-color .3s ease, box-shadow .3s ease;
}

.brand-card:hover {
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .3);
}

.brand-visual {
  position: relative;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
}

.brand-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 18, 16, .42));
  pointer-events: none;
}

.brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.brand-card:hover .brand-visual img { transform: scale(1.045); }
.brand-bold .brand-visual img { object-position: center; }

.brand-number {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1rem;
  color: var(--white);
  font-family: var(--mono);
  font-size: .65rem;
}

.brand-body { padding: clamp(1.5rem, 3vw, 2.5rem); }

.brand-label {
  margin: 0 0 1rem;
  color: #d9b67a;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.1vw, 4.5rem);
  font-weight: 470;
  letter-spacing: -.045em;
  line-height: 1;
}

.brand-body > p:not(.brand-label) {
  max-width: 35rem;
  margin: 1.2rem 0 0;
  color: #c7c0b9;
}

.brand-links {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.brand-links a {
  min-height: 2.55rem;
  padding: .62rem .8rem;
  gap: .42rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.brand-links a:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.brand-bold { background: #74214a; }
.brand-bold .brand-label { color: #ffb0d4; }
.brand-bold .brand-body > p:not(.brand-label) { color: #f3d8e4; }
.brand-zuiver { background: #344238; }
.brand-fest { background: #684437; }

.reel { padding-block: clamp(5rem, 9vw, 8rem); }

.reel-launch {
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.reel-preview {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
}

.reel-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(32, 29, 26, .28));
}

.reel-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.reel-launch:hover .reel-preview img { transform: scale(1.05); }

.reel-play {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 249, .88);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
  backdrop-filter: blur(8px);
}

.reel-launch:hover .reel-play { transform: translate(-50%, -50%) scale(1.08); }
.reel-play svg { width: 1.5rem; fill: currentColor; }

.reel-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.reel-copy .eyebrow { color: #d9b67a; }

.reel-copy strong {
  max-width: 8ch;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 450;
  letter-spacing: -.05em;
  line-height: 1;
}

.reel-copy > span:last-child {
  margin-top: 2rem;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: #e7ded2;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(8rem, .45fr) minmax(0, 1.55fr);
  gap: 2rem;
}

.services h2 { max-width: 12ch; }

.service-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.service-grid article {
  min-height: 22rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(32, 29, 26, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, .58);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.service-grid article:hover {
  background: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(32, 29, 26, .08);
  transform: translateY(-.45rem);
}

.service-grid article > svg {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: auto;
  color: var(--rust);
  stroke-width: 1.35;
}

.service-grid h3 {
  margin: 1.2rem 0 .65rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 540;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.contact {
  position: relative;
  min-height: 82vh;
  padding-block: clamp(7rem, 13vw, 12rem);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(60vw, 42rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 46, 115, .17), rgba(168, 85, 53, .08) 48%, transparent 70%);
  filter: blur(1px);
}

.contact-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, .82fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.contact-copy {
  max-width: 52rem;
  text-align: left;
}

.contact h2 { max-width: 13ch; }

.contact-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
}

.contact-mail {
  width: min(100%, 41rem);
  margin: 2.7rem 0 0;
  padding: 1rem 1.2rem 1rem 1.35rem;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: clamp(.66rem, 1.5vw, .82rem);
  letter-spacing: .03em;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.contact-mail span {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.contact-mail:hover {
  color: var(--white);
  background: var(--ink);
  transform: scale(1.015);
}

.contact-mail > svg:last-child { width: 1.4rem; height: 1.4rem; }

.digital-card {
  position: relative;
  min-height: 32rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(198, 46, 115, .65), transparent 16rem),
    linear-gradient(145deg, #2a2622, #1d1a17 58%, #5c382d);
  box-shadow: 0 2rem 5rem rgba(32, 29, 26, .2);
}

.digital-card::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 20rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, .025), 0 0 0 6rem rgba(255, 255, 255, .018);
}

.digital-card-top,
.digital-card-details,
.digital-card-name,
.card-download {
  position: relative;
  z-index: 1;
}

.digital-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.digital-card-top span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.digital-card-top svg {
  width: 1rem;
}

.digital-card-top small {
  color: #d7b57a;
  font: inherit;
}

.digital-card-name {
  margin-block: auto 2.6rem;
}

.digital-card-name p {
  margin: 0 0 -.35rem;
  color: #d7b57a;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

.digital-card-name h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  font-weight: 450;
  letter-spacing: -.07em;
  line-height: .85;
}

.digital-card-name span {
  display: block;
  margin-top: 1.1rem;
  color: #c5bdb5;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.digital-card-details {
  display: grid;
  gap: .55rem;
}

.digital-card-details p,
.digital-card-details a {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: #d4cdc6;
  font-size: .73rem;
}

.digital-card-details svg {
  flex: 0 0 auto;
  width: .95rem;
  color: #d7b57a;
}

.card-download {
  margin-top: 1.4rem;
  min-height: 3rem;
  padding: .7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.card-download:hover {
  color: var(--white);
  background: var(--magenta);
  transform: translateY(-2px);
}

.card-download svg {
  width: 1rem;
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(83vw, 66rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 29, 26, .09);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.contact-orbit span {
  position: absolute;
  top: -.85rem;
  padding: .15rem .5rem;
  color: rgba(32, 29, 26, .35);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  animation: orbit 24s linear infinite;
}

.site-footer {
  min-height: 8rem;
  padding: 2rem 4vw;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto auto;
  align-items: center;
  gap: 2rem;
  color: #c6beb6;
  background: var(--ink);
  font-size: .72rem;
}

.site-footer > div { display: grid; }

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 1rem; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--white); }

.site-footer > a:last-child {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
}

.site-footer svg { width: 1rem; }

.brand-reel-dialog {
  width: min(94vw, 76rem);
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  color: var(--white);
  background: #151311;
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, .65);
}

.brand-reel-dialog::backdrop {
  background: rgba(20, 17, 15, .82);
  backdrop-filter: blur(10px);
}

.reel-stage {
  position: relative;
  min-height: min(78vh, 50rem);
  display: flex;
  flex-direction: column;
}

.reel-close {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(20, 17, 15, .42);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.reel-close svg { width: 1.25rem; }

.reel-frames {
  position: relative;
  flex: 1;
  min-height: 30rem;
}

.reel-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.reel-frame.is-active { z-index: 1; opacity: 1; }

.reel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 11, .08) 25%, rgba(16, 13, 11, .82) 100%);
}

.reel-frame img { width: 100%; height: 100%; object-fit: cover; }
.reel-frame.is-active img { animation: reel-zoom 6s ease-out both; }

.reel-frame figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.3rem, 5vw, 4rem);
  bottom: clamp(1.7rem, 6vw, 5rem);
  left: clamp(1.3rem, 5vw, 4rem);
  display: grid;
}

.reel-frame figcaption span {
  color: #e7c98e;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reel-frame figcaption strong {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 440;
  letter-spacing: -.055em;
  line-height: .95;
}

.reel-controls {
  min-height: 4.5rem;
  padding: .8rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.reel-controls button {
  justify-self: start;
  padding: .55rem .8rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.reel-controls button svg { width: .9rem; }
.reel-dots { display: flex; gap: .4rem; }

.reel-dots span {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transition: background .3s ease, transform .3s ease;
}

.reel-dots span.is-active { background: var(--white); transform: scale(1.25); }

.reel-controls p {
  justify-self: end;
  margin: 0;
  color: #aaa29a;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(-.3%, -.2%, 0); }
  to { transform: scale(1.1) translate3d(.5%, .4%, 0); }
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(.3rem); }
}

@keyframes orbit { to { transform: rotate(360deg); } }

@keyframes reel-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid article { min-height: 17rem; }
  .site-footer { grid-template-columns: 1.2fr 1fr auto; }
  .site-footer > a:last-child { display: none; }
}

@media (max-width: 780px) {
  .site-header { top: .6rem; min-height: 3.9rem; }
  .desktop-nav { display: none; }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle svg { width: 1.2rem; }

  .mobile-menu {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    left: 0;
    padding: .8rem;
    display: grid;
    gap: .25rem;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 1rem;
    background: rgba(244, 239, 231, .97);
    box-shadow: 0 1rem 2.5rem rgba(32, 29, 26, .16);
  }

  .mobile-menu[hidden] { display: none; }

  .mobile-menu a {
    padding: .9rem 1rem;
    border-radius: .7rem;
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .mobile-menu a:hover { background: rgba(255, 255, 255, .75); }
  .hero { padding-top: 6rem; }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55% 45%;
  }

  .hero-card { padding: 2rem 1.25rem; border-radius: 1.5rem; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }

  .intro,
  .section-heading,
  .services-intro { grid-template-columns: 1fr; }

  .intro { min-height: auto; }
  .section-kicker { margin-bottom: 1rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-visual { aspect-ratio: 1.25 / 1; }
  .reel-launch { grid-template-columns: 1fr; }
  .reel-preview { min-height: 24rem; }
  .reel-copy strong { max-width: 12ch; }
  .contact { min-height: 70vh; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: none; text-align: center; }
  .contact h2 { margin-inline: auto; }
  .contact-copy > p:not(.eyebrow) { margin-inline: auto; }
  .contact-mail { margin-inline: auto; }
  .digital-card { width: min(100%, 32rem); margin-inline: auto; text-align: left; }
  .contact-orbit { width: 105vw; }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
  }

  .site-footer p { display: none; }
  .reel-stage, .reel-frames { min-height: 72svh; }
}

@media (max-width: 520px) {
  .site-header { width: calc(100vw - 1rem); }
  .wordmark small { display: none; }

  .hero {
    min-height: 100svh;
    padding-inline: .8rem;
  }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero-card { width: 100%; }
  .hero-copy { font-size: .95rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .brand-rail { gap: .35rem; }
  .brand-rail span { padding: .3rem .48rem; font-size: .48rem; }
  .scroll-cue { display: none; }
  .section-shell { width: min(91vw, 78rem); }
  .intro-notes, .service-grid { grid-template-columns: 1fr; }

  .intro h2,
  .section-heading h2,
  .services h2,
  .contact h2 { font-size: clamp(2.55rem, 12vw, 4rem); }

  .brand-body h3 { font-size: 2.75rem; }

  .brand-links a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .reel-preview { min-height: 18rem; }
  .reel-copy { padding: 1.6rem; }
  .reel-copy strong { font-size: 2.8rem; }
  .service-grid article { min-height: 15rem; }
  .contact-mail { padding: .9rem 1rem; }
  .contact-mail > svg:last-child { display: none; }

  .site-footer {
    padding: 1.5rem 4vw;
    grid-template-columns: 1fr;
  }

  .site-footer nav { justify-content: flex-start; }
  .reel-controls { grid-template-columns: 1fr auto; }
  .reel-controls p { display: none; }
  .reel-frame figcaption strong { font-size: 2.8rem; }
}

@media (hover: none), (pointer: coarse) {
  .brand-card { transform: none !important; }
}

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

  [data-reveal] { opacity: 1; transform: none; }
}
