:root {
  --black: #050505;
  --charcoal: #111111;
  --midnight: #09111f;
  --gold: #c9a45c;
  --gold-strong: #e0bd6f;
  --off-white: #f4f1ea;
  --silver: #b8b8b8;
  --red: #7a1e1e;
  --ink: #14110c;
  --muted-ink: #5e5a51;
  --line-dark: rgba(244, 241, 234, 0.14);
  --line-light: rgba(17, 17, 17, 0.12);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --font-display: "Oswald", "Bebas Neue", "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Poppins", "Segoe UI", sans-serif;
  --container: min(1540px, calc(100vw - 64px));
  --section-pad: clamp(72px, 8vw, 150px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.custom-cursor {
  display: none;
}

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

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-dark,
.section-light {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 164, 92, 0.14), transparent 30%),
    linear-gradient(145deg, var(--black), var(--midnight) 74%, #030407);
  color: var(--off-white);
}

.section-light {
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.1), transparent 38%),
    var(--off-white);
  color: var(--ink);
}

.section-intro {
  max-width: 720px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.booking-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.virtual .section-intro h2,
.testimonials .section-intro h2,
.media-proof .section-intro h2,
.contact .section-intro h2,
.booking-panel h2 {
  font-size: clamp(2.45rem, 4.4vw, 4.8rem);
}

.section-intro p,
.booking-panel p {
  color: rgba(244, 241, 234, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  max-width: 680px;
}

.section-light .section-intro p,
.section-light .booking-panel p {
  color: var(--muted-ink);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.button-row.center {
  justify-content: center;
}

.hero-central-action {
  grid-area: action;
  position: relative;
  z-index: 8;
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  justify-self: center;
  align-self: center;
  margin: 28px 0 24px;
  transform: none;
}

.hero-booking-object {
  width: 100%;
  min-height: 106px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #f5d87f 0%, #cfa044 46%, #f8e4a8 100%);
  color: var(--black);
  text-decoration: none;
  box-shadow:
    0 28px 95px rgba(201, 164, 92, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(0);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), filter 220ms var(--ease);
}

.hero-booking-object:hover,
.hero-booking-object:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.04);
  box-shadow:
    0 36px 115px rgba(201, 164, 92, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-booking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.92;
}

.hero-booking-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.35vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-booking-arrow {
  font-family: var(--font-body);
  color: var(--black);
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.hero-booking-object:hover .hero-booking-arrow,
.hero-booking-object:focus-visible .hero-booking-arrow {
  transform: translateX(6px);
}

.hero-explore-link {
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-explore-link:hover,
.hero-explore-link:focus-visible {
  color: var(--off-white);
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 23px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 16px 36px rgba(201, 164, 92, 0.24);
}

.button-primary:hover {
  background: var(--gold-strong);
}

.button-secondary {
  border-color: rgba(201, 164, 92, 0.55);
  color: var(--off-white);
  background: rgba(244, 241, 234, 0.02);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.1);
}

.button-dark {
  background: var(--black);
  color: var(--off-white);
}

.button-dark:hover {
  background: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  margin-left: 14px;
  background: currentColor;
  transition: width 180ms var(--ease);
}

.text-link:hover::after {
  width: 64px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background 260ms var(--ease), border-color 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  width: var(--container);
  min-height: 82px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand img {
  filter: drop-shadow(0 0 18px rgba(201, 164, 92, 0.25));
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.nav-dropdown > a {
  position: relative;
  color: rgba(244, 241, 234, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  color: var(--off-white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown,
.nav-links .menu-item-has-children {
  position: relative;
}

.nav-dropdown-menu,
.nav-links .sub-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 120;
  display: grid;
  min-width: 260px;
  gap: 2px;
  padding: 12px;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-links .menu-item-has-children:hover .sub-menu,
.nav-links .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a,
.nav-links .sub-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 10px;
}

.nav-dropdown-menu a::after,
.nav-links .sub-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus-visible {
  background: rgba(201, 164, 92, 0.11);
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 241, 234, 0.24);
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.04);
}

.mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--off-white);
  transition: transform 220ms var(--ease);
}

.mobile-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(110px, 12vh, 150px);
  padding-bottom: clamp(70px, 8vh, 110px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1480px, calc(100% - 72px));
  margin-inline: auto;
  grid-template-columns: minmax(560px, 0.95fr) minmax(420px, 0.75fr);
  grid-template-areas:
    "copy visual"
    "action visual"
    "support visual";
  column-gap: clamp(72px, 8vw, 140px);
  row-gap: 0;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  max-width: 680px;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 6.2vw, 8rem);
  line-height: 0.86;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: normal;
}

.hero-support {
  grid-area: support;
  width: min(100%, 560px);
  max-width: 560px;
  justify-self: center;
  position: relative;
  z-index: 3;
}

.hero-subhead {
  max-width: 540px;
  margin: 0;
  color: rgba(244, 241, 234, 0.84);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.45;
}

.cred-line {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.78;
}

.hero-visual {
  grid-area: visual;
  justify-self: end;
  align-self: end;
  width: min(100%, 500px);
  position: relative;
  z-index: 2;
  opacity: 0.94;
  transform: translateY(22px);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.55));
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.54;
}

.orb-one {
  right: 14vw;
  top: 16vh;
  width: 280px;
  height: 280px;
  background: rgba(201, 164, 92, 0.16);
  animation: spotlightMove 10s ease-in-out infinite alternate;
}

.orb-two {
  left: 9vw;
  bottom: 8vh;
  width: 200px;
  height: 200px;
  background: rgba(122, 30, 30, 0.18);
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.58;
  animation: particleFloat 5s ease-in-out infinite alternate;
}

.particle-one {
  left: 10%;
  top: 35%;
}

.particle-two {
  right: 34%;
  top: 26%;
  animation-delay: 900ms;
}

.particle-three {
  right: 18%;
  bottom: 22%;
  animation-delay: 1600ms;
}

.stamp {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border: 1px solid rgba(201, 164, 92, 0.72);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.64);
  color: var(--gold);
  text-align: center;
  backdrop-filter: blur(12px);
  animation: badgeRotate 20s linear infinite;
}

.stamp span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stamp strong {
  display: block;
  margin-top: -34px;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--silver);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--gold), transparent);
}

.services,
.video-section,
.about,
.differentiator,
.testimonials,
.media-proof,
.booking,
.contact,
.selected-work-section {
  padding: var(--section-pad) 0;
}

.section-anchor {
  position: relative;
  top: -96px;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.difference-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.difference-item p {
  color: var(--muted-ink);
}

.video-grid,
.about-grid,
.difference-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(201, 164, 92, 0.34);
  border-radius: 24px;
  background: var(--charcoal);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.44), 0 0 70px rgba(201, 164, 92, 0.1);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.video-frame:hover img {
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 164, 92, 0.68);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 28px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid var(--gold);
}

.about-grid {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.portrait-frame {
  position: relative;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 34px -28px -28px 34px;
  border: 1px solid rgba(122, 30, 30, 0.34);
  border-radius: 8px;
}

.portrait-frame img {
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.credential-list {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

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

.kinetic-words {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: clamp(10px, 1.8vw, 24px);
  align-items: baseline;
  margin-top: 6px;
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(201, 164, 92, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(rgba(244, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 20%, rgba(201, 164, 92, 0.16), transparent 30%),
    rgba(244, 241, 234, 0.035);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.kinetic-words span {
  display: inline-block;
  font-family: var(--font-display);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(var(--tilt, 0deg));
}

.kinetic-words span:nth-child(2n) {
  --tilt: -1.8deg;
}

.kinetic-words span:nth-child(3n) {
  --tilt: 1.4deg;
}

.word-xl {
  font-size: clamp(3.1rem, 7.2vw, 8.6rem);
}

.word-lg {
  font-size: clamp(2.35rem, 5.2vw, 6.2rem);
}

.word-md {
  font-size: clamp(1.9rem, 3.7vw, 4.4rem);
}

.word-sm {
  font-size: clamp(1.45rem, 2.8vw, 3.1rem);
}

.word-bright {
  color: var(--off-white);
}

.word-gold {
  color: var(--gold);
}

.word-muted {
  color: rgba(244, 241, 234, 0.33);
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.difference-item {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(244, 241, 234, 0.035);
}

.difference-item p {
  color: rgba(244, 241, 234, 0.68);
}

.testimonial-carousel {
  position: relative;
  margin-top: 40px;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 18px 0 22px;
  cursor: default;
  user-select: none;
}

.testimonial-track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  transition: transform 520ms var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 min(760px, 72vw);
  margin: 0;
  padding: clamp(30px, 4.5vw, 58px);
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 164, 92, 0.14), transparent 34%),
    #fffaf0;
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.08);
  opacity: 0.52;
  transform: scale(0.92);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease), box-shadow 520ms var(--ease);
  user-select: none;
  -webkit-user-select: none;
}

.testimonial-card.is-active {
  cursor: default;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

.testimonial-card.is-before,
.testimonial-card.is-after {
  cursor: pointer;
}

.testimonial-card > * {
  pointer-events: none;
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3.55rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
  color: var(--red);
}

.testimonial-card figcaption strong {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-card figcaption span {
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.testimonial-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 24px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(122, 30, 30, 0.26);
  padding: 0;
  transition: width 180ms var(--ease), background 180ms var(--ease);
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--red);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
  margin-top: 56px;
}

.stat-card {
  min-width: 0;
  min-height: 190px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.05), rgba(244, 241, 234, 0.02));
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 4.45rem);
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.stat-card span {
  display: block;
  margin-top: 16px;
  color: rgba(244, 241, 234, 0.72);
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.tutorial-grid small {
  display: block;
  margin-top: 28px;
  color: var(--muted-ink);
  font-weight: 800;
}

.tutorial-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(122, 30, 30, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 84% 0%, rgba(201, 164, 92, 0.2), transparent 32%),
    #fffaf0;
  box-shadow: var(--shadow);
}

.booking-panel {
  max-width: 1060px;
  margin-inline: auto;
  padding: clamp(42px, 7vw, 92px);
  border: 1px solid rgba(201, 164, 92, 0.34);
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 164, 92, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(244, 241, 234, 0.07), rgba(244, 241, 234, 0.02));
  text-align: center;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
}

.booking-panel p {
  margin-inline: auto;
}

.booking-panel span {
  display: block;
  margin-top: 24px;
  color: var(--silver);
}

.subpage-hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 132px 0 82px;
}

.subpage-hero-grid {
  display: grid;
}

.subpage-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-grid {
  align-items: start;
}

.contact.section-dark {
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 164, 92, 0.13), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(122, 30, 30, 0.13), transparent 30%),
    linear-gradient(135deg, #050505, #09111f 58%, #050505);
}

.contact.section-dark .section-intro h2 {
  color: var(--off-white);
}

.contact.section-dark .section-intro p {
  color: rgba(244, 241, 234, 0.74);
}

.contact.section-dark .contact-links a {
  border-bottom-color: rgba(244, 241, 234, 0.14);
  color: var(--gold);
}

.contact.section-dark .contact-form {
  border-color: rgba(201, 164, 92, 0.22);
  background:
    radial-gradient(circle at 84% 0%, rgba(201, 164, 92, 0.12), transparent 32%),
    rgba(244, 241, 234, 0.055);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact.section-dark .contact-form span {
  color: rgba(244, 241, 234, 0.78);
}

.contact.section-dark .contact-form input,
.contact.section-dark .contact-form select,
.contact.section-dark .contact-form textarea {
  border-color: rgba(244, 241, 234, 0.16);
  background: rgba(5, 5, 5, 0.34);
  color: var(--off-white);
}

.contact.section-dark .contact-form input:focus,
.contact.section-dark .contact-form select:focus,
.contact.section-dark .contact-form textarea:focus {
  outline: 2px solid rgba(201, 164, 92, 0.5);
  outline-offset: 2px;
}

.contact.section-dark .form-note {
  color: rgba(244, 241, 234, 0.68);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.contact-links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--red);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.tutorial-form label,
.contact-form label {
  display: grid;
  gap: 8px;
}

.tutorial-form span,
.contact-form span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tutorial-form input,
.tutorial-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  padding: 14px 15px;
}

.tutorial-form .full {
  width: 100%;
}

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

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

.contact-form span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 74px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  gap: 42px;
}

.footer-kicker {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.1rem, 5vw, 5rem);
  font-family: var(--font-display);
  line-height: 0.95;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--off-white);
}

.footer-grid p {
  color: var(--silver);
}

.footer-grid nav,
.footer-socials {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-grid nav a,
.footer-socials a {
  color: rgba(244, 241, 234, 0.75);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid nav a:hover,
.footer-socials a:hover {
  color: var(--gold);
}

.copyright {
  width: var(--container);
  margin: 58px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(244, 241, 234, 0.54);
  font-size: 0.85rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

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

.video-modal-close {
  position: absolute;
  right: 0;
  top: -52px;
  min-height: 40px;
  border: 1px solid rgba(201, 164, 92, 0.42);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--off-white);
  padding: 8px 16px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-modal-frame {
  display: grid;
  min-height: min(56vw, 520px);
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 164, 92, 0.2), transparent 34%),
    linear-gradient(145deg, var(--black), var(--midnight));
  color: var(--off-white);
  padding: clamp(28px, 5vw, 72px);
  text-align: center;
  box-shadow: 0 38px 140px rgba(0, 0, 0, 0.58);
}

.video-modal-frame h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.video-modal-frame p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--silver);
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.cursor-enabled .custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--off-white);
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition: opacity 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
  }

  body.cursor-ready .custom-cursor {
    opacity: 0.86;
  }

  body.cursor-on-light .custom-cursor {
    background: var(--black);
    mix-blend-mode: normal;
  }

  body.cursor-interactive .custom-cursor {
    transform: translate3d(-50%, -50%, 0) scale(2.4);
    background: var(--gold);
    opacity: 0.72;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@keyframes spotlightMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-34px, 24px, 0) scale(1.12);
  }
}

@keyframes particleFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-26px);
  }
}

@keyframes badgeRotate {
  from {
    rotate: -3deg;
  }
  to {
    rotate: 3deg;
  }
}

@media (max-width: 1400px) {
  .hero-grid {
    width: min(1340px, calc(100% - 56px));
    grid-template-columns: minmax(520px, 0.95fr) minmax(390px, 0.75fr);
    column-gap: clamp(56px, 7vw, 112px);
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(4.4rem, 5.9vw, 7.2rem);
  }

  .hero-subhead {
    max-width: 520px;
  }

  .hero-central-action {
    width: min(100%, 500px);
  }

  .hero-booking-object {
    min-height: 100px;
    padding: 0 22px;
  }

  .hero-booking-text {
    font-size: clamp(1.65rem, 2vw, 2.25rem);
    letter-spacing: 0.1em;
  }

  .hero-visual {
    width: min(100%, 460px);
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 72px;
  }

  .hero-grid {
    width: min(760px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "action"
      "support"
      "visual";
    row-gap: 30px;
  }

  .hero-copy,
  .hero-central-action,
  .hero-support,
  .hero-visual {
    grid-column: 1;
  }

  .hero-copy {
    max-width: 720px;
    order: 1;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(4.2rem, 12vw, 7rem);
  }

  .hero-central-action {
    position: relative;
    grid-area: action;
    order: 2;
    left: auto;
    top: auto;
    transform: none;
    justify-self: start;
    align-items: flex-start;
    width: min(100%, 520px);
    margin: 0;
  }

  .hero-support {
    grid-area: support;
    order: 3;
    max-width: 720px;
  }

  .hero-booking-object {
    min-height: 108px;
  }

  .hero-visual {
    order: 4;
    justify-self: center;
    width: min(100%, 560px);
    align-self: center;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100vw - 44px, 1080px);
  }

  .video-grid,
  .about-grid,
  .difference-grid,
  .tutorial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 960px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 101;
    display: grid;
    width: min(100vw, 460px);
    align-content: center;
    justify-content: stretch;
    gap: 32px;
    padding: 92px 32px 42px;
    transform: translateX(100%);
    background:
      radial-gradient(circle at 70% 10%, rgba(201, 164, 92, 0.14), transparent 34%),
      var(--black);
    transition: transform 300ms var(--ease);
  }

  .nav-panel.is-open {
    transform: translateX(0);
  }

  .nav-links {
    display: grid;
    gap: 20px;
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
  }

  .nav-dropdown-menu,
  .nav-links .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 12px;
    padding: 0 0 0 16px;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-links .menu-item-has-children:hover .sub-menu,
  .nav-links .menu-item-has-children:focus-within .sub-menu {
    transform: none;
  }

  .nav-dropdown-menu a,
  .nav-links .sub-menu a {
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: rgba(244, 241, 234, 0.68);
  }

  .nav-cta {
    width: 100%;
  }

  .brand-rail {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .brand-track {
    animation: none;
  }

  .brand-item {
    min-width: 180px;
    scroll-snap-align: start;
  }

  .testimonial-card {
    flex-basis: min(640px, calc(100vw - 72px));
  }

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

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 36px, 620px);
    --section-pad: 74px;
  }

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

  .hero {
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero-grid {
    width: min(calc(100% - 28px), 520px);
    row-gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.35rem);
    line-height: 0.88;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .stamp {
    right: 8px;
    bottom: 18px;
    width: 108px;
    height: 108px;
  }

  .stamp strong {
    margin-top: -28px;
    font-size: 1rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-central-action {
    width: 100%;
  }

  .hero-booking-object {
    width: 100%;
    min-height: 96px;
    padding: 0 18px;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .hero-booking-icon {
    display: none;
  }

  .hero-booking-text {
    font-size: clamp(1.7rem, 7.8vw, 2.2rem);
    letter-spacing: 0.12em;
  }

  .hero-booking-arrow {
    font-size: 1.8rem;
  }

  .hero-explore-link {
    align-self: center;
  }

  .cred-line {
    font-size: 0.82rem;
  }

  .scroll-indicator {
    display: none;
  }

  .stats-grid,
  .tutorial-grid,
  .contact-form,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .kinetic-words {
    display: grid;
    padding: 28px;
  }

  .kinetic-words span {
    transform: none;
  }

  .word-xl,
  .word-lg,
  .word-md,
  .word-sm {
    font-size: clamp(2.1rem, 12vw, 4.5rem);
  }

  .video-frame {
    min-height: 300px;
  }

  .contact-form label.full,
  .contact-form .full {
    grid-column: auto;
  }

  .testimonial-controls {
    gap: 12px;
  }

  .services-header,
  .service-secondary-links {
    grid-template-columns: 1fr;
  }
}

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

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

}

/* Homepage refinements: merged proof, service gateways, resources, and cursor behavior. */
html.custom-cursor-enabled,
html.custom-cursor-enabled body,
html.custom-cursor-enabled a,
html.custom-cursor-enabled button,
html.custom-cursor-enabled [role="button"],
html.custom-cursor-enabled .service-gateway,
html.custom-cursor-enabled .work-card,
html.custom-cursor-enabled .brand-rail,
html.custom-cursor-enabled .testimonial-card {
  cursor: none;
}

html.custom-cursor-enabled input,
html.custom-cursor-enabled textarea,
html.custom-cursor-enabled select {
  cursor: auto;
}

.proof-merged {
  padding-top: clamp(64px, 6vw, 108px);
}

.proof-stack {
  display: grid;
  gap: clamp(22px, 2.8vw, 38px);
}

.proof-copy {
  max-width: 1080px;
}

.proof-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-copy p {
  color: rgba(244, 241, 234, 0.76);
}

.proof-stats {
  display: grid;
  gap: 14px;
}

.proof-number-grid,
.proof-credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-merged .stat-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  min-height: 124px;
  align-content: space-between;
  padding: clamp(18px, 1.65vw, 24px);
}

.proof-merged .stat-card-number {
  min-height: 116px;
  background:
    radial-gradient(circle at 85% 0%, rgba(201, 164, 92, 0.18), transparent 36%),
    rgba(244, 241, 234, 0.04);
}

.proof-merged .stat-card-credibility {
  min-height: 142px;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.055), rgba(244, 241, 234, 0.022)),
    rgba(5, 5, 5, 0.24);
}

.proof-merged .stat-number {
  max-width: 100%;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 0.9;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.proof-merged .stat-number--phrase {
  font-size: clamp(1.38rem, 2vw, 2.55rem);
  line-height: 1;
  white-space: normal;
}

.proof-merged .stat-card span {
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: normal;
}

.proof-merged .stat-card-credibility span {
  color: rgba(244, 241, 234, 0.64);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  line-height: 1.45;
}

.proof-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch;
}

.featured-project-card {
  margin: 0;
}

.featured-project-card a {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  min-height: 100%;
  border: 1px solid rgba(201, 164, 92, 0.36);
  border-radius: 18px;
  background: rgba(244, 241, 234, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.featured-project-card a:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 92, 0.7);
}

.featured-project-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(250px, 26vw, 380px);
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.06) 25%, transparent 25%) 0 0 / 30px 30px,
    radial-gradient(circle at 72% 16%, rgba(201, 164, 92, 0.36), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(122, 30, 30, 0.22), transparent 38%),
    linear-gradient(135deg, #070707, #111827);
}

.featured-project-media img,
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.featured-project-media img[hidden],
.work-card img[hidden] {
  display: none;
}

.media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  place-items: center;
  color: rgba(244, 241, 234, 0.72);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 24px;
}

.media-fallback small {
  display: block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-fallback strong {
  display: block;
  max-width: 12ch;
  color: rgba(244, 241, 234, 0.84);
  font: inherit;
}

.media-fallback span,
.media-fallback em {
  display: block;
  max-width: 22ch;
  font-family: var(--font-body);
  line-height: 1.15;
  text-transform: none;
}

.media-fallback span {
  color: var(--off-white);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 900;
}

.media-fallback em {
  color: var(--gold);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-project-media img:not([hidden]) + .media-fallback,
.work-card img:not([hidden]) + .media-fallback {
  opacity: 0;
}

.featured-project-body {
  display: grid;
  gap: 12px;
  padding: clamp(26px, 3vw, 38px);
}

.featured-project-body small,
.work-card__overlay span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-project-body strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 4.3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.featured-project-body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-project-body span {
  color: rgba(244, 241, 234, 0.72);
}

.featured-project-body b,
.work-card__overlay b {
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-project-card.is-updating {
  opacity: 0.72;
}

.proof-cta {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 18px;
  background: rgba(244, 241, 234, 0.04);
}

.proof-cta p {
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
  font-weight: 800;
}

.brand-rail {
  position: relative;
  border-block: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, var(--black), transparent 8%, transparent 92%, var(--black)),
    rgba(244, 241, 234, 0.025);
  cursor: grab;
  user-select: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-rail-label {
  margin: 2px 0 -24px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-rail::-webkit-scrollbar {
  display: none;
}

.brand-rail.is-dragging {
  cursor: grabbing;
}

.brand-track {
  display: flex;
  min-width: max-content;
  gap: 12px;
  padding: 16px 4px;
}

.brand-item {
  appearance: none;
  border: 1px solid rgba(244, 241, 234, 0.12);
  display: grid;
  flex: 0 0 clamp(220px, 17vw, 292px);
  min-height: 82px;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.065), rgba(244, 241, 234, 0.018)),
    rgba(5, 5, 5, 0.46);
  color: rgba(244, 241, 234, 0.72);
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
}

.brand-item::after {
  content: "Brand Collaboration";
  display: block;
  margin-top: 7px;
  color: rgba(244, 241, 234, 0.44);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-item:hover,
.brand-item:focus-visible,
.brand-item.is-active {
  border-color: rgba(201, 164, 92, 0.78);
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.24), rgba(244, 241, 234, 0.045)),
    rgba(5, 5, 5, 0.48);
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 164, 92, 0.18), 0 0 34px rgba(201, 164, 92, 0.14);
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 30px;
}

.services-guidance {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 164, 92, 0.18), transparent 36%),
    rgba(244, 241, 234, 0.04);
}

.services-guidance p {
  margin: 0;
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.95rem;
}

.services-guidance strong {
  color: var(--off-white);
  max-width: 28ch;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.services-guidance .button {
  margin-top: 4px;
}

.service-gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.services-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 24px 0 0;
  padding: 6px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.42);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-kicker button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 241, 234, 0.62);
  padding: 12px 18px;
  font: inherit;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.services-kicker button.is-active,
.services-kicker button[aria-selected="true"] {
  border-color: rgba(201, 164, 92, 0.45);
  background: rgba(201, 164, 92, 0.16);
  color: var(--gold);
}

.services-kicker button:hover,
.services-kicker button:focus-visible {
  color: var(--gold);
}

.service-panel {
  animation: panelFade 260ms var(--ease);
}

.service-panel[hidden] {
  display: none;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-gateway {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 470px;
  align-content: end;
  padding: 30px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 70% 12%, rgba(201, 164, 92, 0.24), transparent 34%),
    var(--charcoal);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

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

.case-study-card {
  min-height: 380px;
}

.service-gateway:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 164, 92, 0.58);
}

.service-gateway img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  transition: transform 520ms var(--ease), opacity 260ms var(--ease);
}

.service-gateway img[hidden] {
  display: none;
}

.service-gateway:hover img {
  opacity: 0.58;
  transform: scale(1.06);
}

.service-gateway::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.92)),
    linear-gradient(135deg, rgba(201, 164, 92, 0.08), transparent 50%);
}

.service-gateway > *:not(img) {
  position: relative;
  z-index: 1;
}

.service-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-gateway h3,
.resource-card h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-gateway p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(244, 241, 234, 0.76);
  opacity: 0;
  transition: max-height 260ms var(--ease), opacity 260ms var(--ease), margin 260ms var(--ease);
}

.service-gateway:hover p,
.service-gateway:focus-visible p {
  max-height: 180px;
  margin-top: 14px;
  opacity: 1;
}

.service-gateway b {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}

.service-gateway b::after,
.work-card__overlay b::after {
  content: "->";
  margin-left: 8px;
}

.service-secondary-links {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) repeat(2, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 28px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.08), rgba(244, 241, 234, 0.035)),
    rgba(244, 241, 234, 0.03);
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-secondary-links span {
  align-self: center;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-secondary-links a {
  display: grid;
  gap: 7px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(201, 164, 92, 0.08), transparent 42%),
    rgba(5, 5, 5, 0.34);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.service-secondary-links a small {
  color: rgba(244, 241, 234, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.service-secondary-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 164, 92, 0.52);
  color: var(--off-white);
}

.differentiator {
  padding-block: clamp(70px, 7vw, 116px);
}

.difference-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.kinetic-words {
  grid-column: auto;
  align-content: center;
  min-height: 420px;
  overflow: hidden;
}

.difference-list {
  display: none;
}

.cta-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(244, 241, 234, 0.62);
  font-size: 0.92rem;
}

.testimonials {
  padding-block: clamp(60px, 6vw, 96px);
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 164, 92, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(9, 17, 31, 0.82), rgba(5, 5, 5, 0.98));
  color: var(--off-white);
}

.testimonials .section-intro h2 {
  color: var(--off-white);
}

.testimonials .eyebrow.dark {
  color: var(--gold);
}

.testimonials .section-intro {
  margin-bottom: 0;
}

.testimonial-carousel {
  margin-top: 22px;
}

.testimonial-viewport {
  overflow-x: auto;
  overflow-y: visible;
  padding: 18px 0;
  cursor: default;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  gap: clamp(18px, 2vw, 28px);
  transition: none;
}

.testimonial-track::before,
.testimonial-track::after {
  content: "";
  flex: 0 0 max(22px, calc((100vw - min(680px, 48vw)) / 2 - 24px));
}

.testimonial-card {
  flex: 0 0 clamp(300px, 48vw, 680px);
  scroll-snap-align: center;
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 164, 92, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(244, 241, 234, 0.1), rgba(244, 241, 234, 0.035));
  color: var(--off-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.testimonial-card.is-active {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.testimonial-card blockquote {
  color: var(--off-white);
}

.testimonial-card figcaption strong {
  color: var(--gold);
}

.testimonial-card figcaption span {
  color: rgba(244, 241, 234, 0.64);
}

.testimonial-controls {
  margin-top: -2px;
}

.carousel-dot {
  background: rgba(244, 241, 234, 0.24);
}

.carousel-dot.is-active {
  background: var(--gold);
}

.work-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  padding: 4px;
}

.work-carousel {
  position: relative;
  gap: 18px;
  margin-top: 22px;
}

.work-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.work-viewport::-webkit-scrollbar {
  display: none;
}

.work-control {
  position: absolute;
  z-index: 4;
  top: 42%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.36);
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.92);
  color: var(--black);
  font-size: 1.45rem;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.work-control:hover,
.work-control:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
}

.work-control-prev {
  left: -18px;
}

.work-control-next {
  right: -18px;
}

.proof-subhead {
  max-width: 760px;
  margin-top: 10px;
}

.proof-subhead h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-subhead p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(244, 241, 234, 0.72);
}

.work-card {
  position: relative;
  overflow: hidden;
  display: grid;
  flex: 0 0 clamp(300px, 32vw, 470px);
  min-height: 430px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.06) 25%, transparent 25%) 0 0 / 28px 28px,
    radial-gradient(circle at 72% 18%, rgba(201, 164, 92, 0.34), transparent 34%),
    radial-gradient(circle at 14% 85%, rgba(122, 30, 30, 0.22), transparent 38%),
    linear-gradient(145deg, #080b11, #111014);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
  scroll-snap-align: center;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 92, 0.55);
}

.work-card-large {
  flex-basis: clamp(340px, 42vw, 620px);
}

.work-card-wide {
  flex-basis: clamp(330px, 38vw, 560px);
}

.work-card img {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  transition: transform 520ms var(--ease), opacity 260ms var(--ease);
}

.work-card .media-fallback {
  place-items: start;
  align-content: start;
  color: rgba(244, 241, 234, 0.42);
  font-size: clamp(1.08rem, 1.8vw, 2.2rem);
  padding: 26px;
  text-align: left;
}

.work-card:hover img {
  opacity: 0.78;
  transform: scale(1.05);
}

.work-card__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: end;
  min-height: 100%;
  padding: 24px;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.9));
}

.work-card__overlay h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.work-card__overlay p {
  margin: 0;
  color: rgba(244, 241, 234, 0.74);
  font-weight: 800;
}

.work-card__overlay b {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.work-card:hover .work-card__overlay b,
.work-card:focus-visible .work-card__overlay b {
  opacity: 1;
  transform: translateY(0);
}

.resource-paths {
  padding-block: clamp(72px, 7vw, 122px);
}

.resource-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.resource-card {
  position: relative;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(122, 30, 30, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 0%, rgba(201, 164, 92, 0.18), transparent 32%),
    #fffaf0;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
}

.resource-card p {
  color: var(--muted-ink);
}

.tutorial-form.compact {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .proof-feature-row,
  .featured-project-card a {
    grid-template-columns: 1fr;
  }

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

  .kinetic-words {
    min-height: 0;
  }

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

  .work-grid {
    width: max-content;
  }
}

@media (max-width: 1024px) {
  .proof-number-grid,
  .proof-credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .proof-number-grid,
  .proof-credibility-grid {
    grid-template-columns: 1fr;
  }

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

  .work-card,
  .work-card-large,
  .work-card-wide {
    flex-basis: min(82vw, 360px);
    min-height: 360px;
  }

  .work-control {
    width: 44px;
    height: 44px;
  }

  .work-control-prev {
    left: 6px;
  }

  .work-control-next {
    right: 6px;
  }

  .work-card-large,
  .work-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .service-gateway {
    min-height: 390px;
  }

  .featured-project-media {
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none !important;
  }
}
