/* =========================================================
   NOIR — Premium Cinematic Landing Page
   ========================================================= */

:root {
  --black: #0a0a0a;
  --ink: #11110f;
  --off-white: #f1efe8;
  --paper: #e9e6dd;
  --muted: #9d9b94;
  --line: rgba(17, 17, 15, 0.18);
  --white-line: rgba(255, 255, 255, 0.22);
  --accent: #b9a680;
  --header-h: 84px;
  --side: clamp(22px, 4.2vw, 72px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: 'Hanken Grotesk', Helvetica, Arial, Lucida, sans-serif;
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

::selection {
  color: var(--off-white);
  background: var(--ink);
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--off-white);
  transition: opacity .75s ease, visibility .75s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: .35em;
  font-size: 18px;
  transform: translateX(.175em);
}

.loader-line {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 8vh;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--off-white);
  transform-origin: left;
  animation: loaderProgress 1.6s cubic-bezier(.65,0,.35,1) forwards;
}

@keyframes loaderProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Header */
.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Hanken Grotesk', Helvetica, Arial, Lucida, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #ffffff;
  text-transform: uppercase;
}



.desktop-nav,
.menu-toggle,
.mobile-menu {
  display: none !important;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .3s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .35s ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px var(--side) 42px;
  background: var(--black);
  color: var(--off-white);
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s ease, visibility .4s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 68px;
}

.mobile-menu nav a {
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 14vw, 72px);
  line-height: 1;
  letter-spacing: -.055em;
}

.mobile-menu p {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--white-line);
  color: #a9a9a4;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: auto;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1 !important;
  filter: none !important;
}

.hero,
.hero *,
.hero .reveal-up {
  opacity: 1 !important;
  filter: none !important;
}

@media (max-width: 760px) {
  .hero {
    aspect-ratio: 941 / 1672;
    height: auto;
    min-height: auto;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1 !important;
}

.hero-video,
.hero-picture,
.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1 !important;
}

.hero-img {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  filter: none !important;
}

.hero-overlay {
  display: none !important;
  opacity: 0 !important;
}

@media (max-width: 760px) {
  .hero-img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hero-content--custom {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-name {
    text-align: center !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
    font-size: clamp(34px, 9vw, 56px) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35) !important;
  }

  .hero-tagline {
    text-align: center !important;
    margin: 0 !important;
    letter-spacing: 0.05em !important;
    font-size: clamp(14px, 3.8vw, 18px) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  }
}

.hero-content--custom {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  margin: auto 0;
  padding: 0 var(--side);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  box-sizing: border-box;
}

.hero-name {
  margin: 0 0 0 -0.07em;
  padding: 0;
  display: block;
  font-family: 'Hanken Grotesk', Helvetica, Arial, Lucida, sans-serif;
  font-size: clamp(40px, 8vw, 98px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
  width: 100%;
}

.hero-tagline {
  margin: 0;
  padding: 0;
  display: block;
  font-family: 'Hanken Grotesk', Helvetica, Arial, Lucida, sans-serif;
  font-size: clamp(15px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 50%;
  max-width: 50%;
  padding: calc(var(--header-h) + 40px) var(--side) 40px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 760px) {
  .hero-content {
    width: 100%;
    max-width: 100%;
  }
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #66645e;
}

.hero-title {
  max-width: 1200px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(44px, 9.3vw, 154px);
  line-height: .87;
  letter-spacing: -.065em;
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 0.9;
  }
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .08em;
}

.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: titleIn 1.05s cubic-bezier(.2,.75,.25,1) forwards;
}

.hero-title .line:nth-child(2) > span {
  animation-delay: .13s;
}

.hero-title em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -.04em;
}

@keyframes titleIn {
  to { transform: translateY(0); }
}

.hero-bottom {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.hero-bottom p {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  font-style: italic;
}

@media (max-width: 760px) {
  .desktop-only-text {
    display: none;
  }

  .hero-bottom {
    margin-top: 2px;
  }
}

.text-button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.65);
  font-size: 13px;
  margin-top: 10px;
}

.text-button span {
  transition: transform .3s ease;
}

.text-button:hover span {
  transform: translate(4px, 4px);
}

.scroll-cue {
  position: absolute;
  right: var(--side);
  bottom: 7vh;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue-line {
  width: 38px;
  height: 1px;
  background: currentColor;
  animation: cue 1.9s ease-in-out infinite;
}

@keyframes cue {
  0%,100% { transform: scaleX(.55); transform-origin: left; opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Work */
.work-section {
  padding: 30px var(--side) 40px;
  background: var(--off-white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 90px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(52px, 7.2vw, 112px);
  line-height: .92;
  letter-spacing: -.06em;
}

.section-heading h2 span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.section-copy {
  max-width: 380px;
  margin: 0 0 7px auto;
  color: #6e6b65;
  font-size: 14px;
  line-height: 1.75;
}

.collage {
  column-count: 3;
  column-gap: clamp(16px, 2vw, 32px);
  max-width: 1400px;
  margin: 0 auto;
}

.media-card {
  position: relative;
  width: 100%;
  margin: 0 0 clamp(16px, 2vw, 32px);
  break-inside: avoid;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #121210;
  isolation: isolate;
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.16);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.32);
}

.media-card--portrait { aspect-ratio: 4 / 5.2 !important; }
.media-card--landscape { aspect-ratio: 1.45 / 1 !important; }
.media-card--tall { aspect-ratio: 3 / 4.6 !important; }
.media-card--square { aspect-ratio: 1 / 1.05 !important; }

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: brightness(0.94) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.media-card--contain img {
  object-fit: contain !important;
  background: #0d0d0c;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.07);
  filter: brightness(1) contrast(1.05);
}

.media-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.85) 100%);
  opacity: 0.7;
  transition: opacity 0.45s ease;
}

.media-card:hover .media-shade {
  opacity: 0.92;
}

.play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transform: translate(-50%, -42%) scale(0.75);
  opacity: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  padding-left: 3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.media-card:hover .play-button,
.media-card:focus-within .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) scale(1.08);
}

.media-meta {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.media-card:hover .media-meta {
  transform: translateY(0);
  opacity: 1;
}

.media-meta span {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  text-transform: uppercase;
}

.media-meta h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Statement */
.statement-section {
  padding: 150px var(--side) 170px;
  background: var(--off-white);
}

.statement-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 70px;
  background: var(--line);
}

.statement-kicker {
  margin: 0 0 42px;
  color: #6b6963;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.statement-title {
  margin: 0;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(68px, 11vw, 176px);
  line-height: .88;
  letter-spacing: -.075em;
}

.reveal-text {
  display: block;
  transform: translateY(105%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.reveal-text.is-visible {
  transform: translateY(0);
}

.statement-sub {
  width: min(690px, 70%);
  margin: 42px 0 0 auto;
  color: #45433e;
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1.18;
}

.statement-sub em {
  color: #93876f;
}

/* Featured */
.featured-section {
  padding: 0 var(--side) 150px;
  background: var(--off-white);
}

.featured-media {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: #111;
  color: white;
}

.featured-media video {
  width: 100%;
  height: 78vh;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.38));
}

.featured-label {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 5vw, 70px);
}

.featured-label span {
  display: block;
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.featured-label h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .84;
  letter-spacing: -.06em;
  font-weight: 500;
}

.featured-play {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 5vw, 70px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.featured-play > span:first-child {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 12px;
}

.circle-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.featured-play:hover .circle-arrow {
  background: #fff;
  color: #111;
  transform: rotate(45deg);
}

.featured-caption {
  display: grid;
  grid-template-columns: 1fr 1.3fr .6fr;
  gap: 40px;
  padding-top: 28px;
}

.featured-caption p {
  margin: 0;
}

.featured-caption > p:nth-child(2) {
  max-width: 480px;
  color: #56534e;
  font-size: 14px;
  line-height: 1.65;
}

.featured-caption > span {
  justify-self: end;
  color: #77736c;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Closing / Marquee */
.closing-section {
  padding: 130px 0 150px;
  overflow: hidden;
  background: var(--paper);
}

.closing-section > .eyebrow {
  margin-left: var(--side);
  margin-bottom: 58px;
}

.client-marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  padding: 0 30px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(62px, 8.5vw, 128px);
  line-height: 1;
  letter-spacing: -.06em;
}

.marquee-track i {
  color: #aaa28f;
  font-style: normal;
  font-size: 20px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Location Banner */
.location-banner {
  background: transparent;
  padding: 30px var(--side) 0;
  display: flex;
  justify-content: center;
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Map button - above video section */
.location-banner .map-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4285F4;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* Map button - footer */
.map-action-wrap .map-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.map-action-wrap .map-button:hover {
  background: #ea4335;
  color: #ffffff;
  border-color: #ea4335;
  box-shadow: 0 10px 28px rgba(234, 67, 53, 0.35);
}

/* Quote Section */
.quote-section {
  background: var(--off-white);
  padding: 40px var(--side) 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-quote {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.6;
  color: #111;
  letter-spacing: 0.01em;
}

/* Footer */
.site-footer {
  padding: 60px var(--side) 28px;
  background: #ffc20e !important;
  color: #000000 !important;
}

.site-footer a,
.footer-brand > a,
.footer-bottom,
.footer-bottom span,
.worldwide-tag,
.back-to-top {
  color: #000000 !important;
}

.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0 45px;
  width: 100%;
}

.footer-brand {
  width: 100%;
  text-align: center;
}

.footer-brand > a {
  display: inline-block;
  font-family: 'Hanken Grotesk', Helvetica, Arial, Lucida, sans-serif;
  font-size: clamp(24px, 5.2vw, 84px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-indent: 0;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  color: #000000 !important;
  margin: 0 auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 26px auto 0;
  color: #000000 !important;
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  text-align: center;
}

.footer-links span {
  margin-bottom: 11px;
  color: #000000 !important;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
}

.footer-links a {
  width: fit-content;
  color: #000000 !important;
  margin: 0 auto;
}

.footer-links a:hover {
  color: #000000 !important;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  color: #000000 !important;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 100%;
}

.worldwide-tag {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #000000 !important;
  white-space: nowrap;
  text-align: center;
}

.back-to-top {
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #000000 !important;
  justify-self: end;
  transition: opacity 0.3s ease;
}

.back-to-top:hover {
  opacity: 0.7;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 7vw;
  background: rgba(6,6,6,.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  width: min(1180px, 100%);
  max-height: 82vh;
}

.modal-inner video {
  width: 100%;
  max-height: 82vh;
  background: #000;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 36px;
  font-weight: 200;
  cursor: pointer;
}

/* Reveal */
.reveal,
.reveal-up,
.reveal-scale {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal-up {
  transform: translateY(18px);
  animation: revealUp .8s .4s ease forwards;
}

.reveal-scale {
  transform: scale(.975);
  transition: opacity .9s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
}

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

@keyframes revealUp {
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .collage {
    column-count: 2;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-copy {
    margin-left: 0;
  }

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

  .featured-caption > span {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.5fr .7fr .7fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 70px;
    --side: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    height: var(--header-h);
  }

  .hero {
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    height: auto;
    padding-bottom: 30px;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 30px;
    justify-content: flex-end;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(46px, 14vw, 76px);
    line-height: .9;
  }

  .hero-bottom {
    margin-top: 28px;
    display: block;
  }

  .hero-bottom p {
    max-width: 320px;
    font-size: 12px;
  }


  .scroll-cue {
    display: none;
  }

  .work-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

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

  .section-heading h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .section-copy {
    max-width: 330px;
    font-size: 13px;
  }

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

  .media-card {
    margin-bottom: 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.15);
  }

  .play-button {
    width: 52px;
    height: 52px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.95);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
  }

  .media-meta {
    bottom: 14px;
    left: 14px;
    right: 14px;
    opacity: 1;
    transform: none;
  }

  .media-meta span {
    font-size: 9px;
    padding: 3px 7px;
  }

  .media-meta h3 {
    font-size: 14px;
  }

  .statement-section {
    padding-top: 96px;
    padding-bottom: 105px;
  }

  .statement-rule {
    margin-bottom: 48px;
  }

  .statement-kicker {
    margin-bottom: 26px;
  }

  .statement-title {
    font-size: clamp(58px, 18vw, 90px);
    line-height: .86;
  }

  .statement-sub {
    width: 88%;
    margin-top: 30px;
    font-size: 25px;
  }

  .featured-section {
    padding: 0 0 95px;
  }

  .featured-media {
    min-height: 72svh;
  }

  .featured-media video {
    height: 72svh;
  }

  .featured-label {
    left: 20px;
    bottom: 28px;
  }

  .featured-label h2 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .featured-play {
    top: 24px;
    right: 20px;
    bottom: auto;
  }

  .featured-play > span:first-child {
    display: none;
  }

  .featured-caption {
    grid-template-columns: 1fr;
    padding: 24px var(--side) 0;
    gap: 8px;
  }

  .featured-caption .eyebrow {
    margin-bottom: 10px;
  }

  .featured-caption > p:nth-child(2) {
    font-size: 13px;
  }

  .closing-section {
    padding: 88px 0 100px;
  }

  .closing-section > .eyebrow {
    margin-bottom: 44px;
  }

  .marquee-track span {
    padding: 0 18px;
    font-size: 70px;
  }

  .site-footer {
    padding-top: 78px;
  }

  .footer-top {
    padding-bottom: 70px;
  }

  .footer-email {
    display: inline;
    font-size: clamp(38px, 12.8vw, 60px);
    overflow-wrap: anywhere;
  }

  .footer-email span {
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px 24px;
    padding: 54px 0 68px;
  }

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

  .footer-brand > a {
    font-size: 68px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .back-to-top {
    justify-self: center;
  }

  .video-modal {
    padding: 0;
  }

  .modal-inner {
    width: 100%;
  }

  .modal-close {
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   Bobby Ramagwede — Personal Profile Refinements
   ========================================================= */

.brand {
  max-width: 70vw;
  white-space: nowrap;
}

.hero-title {
  max-width: 1000px;
}

.hero-title .line:first-child span {
  letter-spacing: -.07em;
}

.hero-title .line:last-child {
  padding-left: clamp(3px, 2vw, 28px);
}

.hero-bottom {
  max-width: 1120px;
}

.section-heading > div {
  max-width: 900px;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.footer-brand > a {
  display: inline-block;
  line-height: .88;
  max-width: 760px;
}

@media (max-width: 760px) {
  .brand {
    font-size: 12px;
    letter-spacing: .16em;
    gap: 8px;
  }

  .brand-dot {
    width: 6px;
    height: 6px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
  }

  .eyebrow {
    font-size: clamp(9px, 2.5vw, 11px);
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 76px);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .hero-title .line:last-child {
    padding-left: clamp(12px, 4vw, 32px);
  }

  .hero-bottom {
    margin-top: 12px;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-bottom p {
    max-width: 100%;
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.55;
  }

  .text-button {
    display: none;
  }

  .section-heading h2 {
    max-width: 320px;
  }

  .section-copy {
    max-width: 300px;
  }

  .collage {
    column-count: 1 !important;
    display: block !important;
    width: 100%;
  }

  .media-card {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .statement-title {
    max-width: 340px;
  }

  .featured-media {
    min-height: 78svh;
  }

  .featured-media video {
    height: 78svh;
  }

  .featured-label {
    max-width: 82%;
  }

  .site-footer {
    padding: 32px var(--side) 20px;
  }

  .footer-grid {
    padding: 10px 0 24px;
  }

  .footer-brand {
    padding: 0;
  }

  .footer-brand > a {
    font-size: clamp(18px, 5.5vw, 36px);
    line-height: 1;
    max-width: 100%;
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
    padding-top: 16px;
  }

  .footer-bottom span,
  .worldwide-tag,
  .back-to-top {
    font-size: 10px;
    letter-spacing: 0.06em;
    text-align: center;
    white-space: normal;
  }

  .back-to-top {
    justify-self: center;
  }
}

/* Floating Social Share Bar (Fixed on Right Side) */
.floating-share-bar {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 99999 !important;
  pointer-events: auto !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e5e2db;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-btn--wa:hover { background: #25D366; color: #000; border-color: #25D366; }
.float-btn--fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.float-btn--tiktok { display: none !important; }
.float-btn--tiktok:hover { background: #000000; color: #ffffff; border-color: #ffffff; }
.float-btn--linkedin:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.float-btn--x:hover { background: #ffffff; color: #000; border-color: #ffffff; }
.float-btn--copy:hover { background: #d3a446; color: #000; border-color: #d3a446; }

@media (max-width: 760px) {
  .floating-share-bar {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .float-btn {
    width: 38px;
    height: 38px;
  }

  .float-btn--tiktok {
    display: flex !important;
  }
}

/* Services Section (Light Contrast Area) */
.services-section {
  padding: 40px var(--side) 60px;
  background: var(--off-white);
  color: var(--ink);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: #55534e;
  line-height: 1.55;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card {
    padding: 20px 14px;
  }

  .service-name {
    font-size: 17px;
  }

  .service-desc {
    font-size: 12px;
  }
}

/* Google Maps Button */
.map-action-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

