:root {
  --page-width: min(1340px, calc(100vw - 64px));
  --white: #ffffff;
  --black: #0b0b0c;
  --text: #151515;
  --muted: #5b5b5b;
  --line: rgba(17, 17, 17, 0.12);
  --soft: #f4f1ee;
  --dark: #0d1016;
  --dark-2: #121722;
  --radius-xl: 36px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-round: 999px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  --font-head: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Space Grotesk", sans-serif;
  --service-slide-width: min(38.4rem, 72vw);
  --recent-slide-width: min(46rem, 72vw);

  /* ── Typography Scale ─────────────────────────────── */
  --fs-hero:         clamp(2.9rem, 4.3vw, 3.6rem);   /* hero h1                     */
  --fs-hero-sub:     clamp(1.35rem, 2vw, 1.9rem);    /* hero subtitle               */
  --fs-hero-loc:     clamp(1rem, 1.45vw, 1.25rem);   /* hero location               */
  --fs-display:      clamp(2.6rem, 3.8vw, 3.4rem);   /* contact-card h2 (large hero) */
  --fs-section:      clamp(2.2rem, 3.2vw, 2.8rem);   /* section headings            */
  --fs-section-sm:   clamp(1.7rem, 2.5vw, 2.2rem);   /* smaller section headings    */
  --fs-card-title:   clamp(1.6rem, 2.2vw, 2.15rem);  /* card h3 (services)          */
  --fs-card-title-sm: clamp(1rem, 1.4vw, 1.25rem);   /* card h3 (featured grid)     */
  --fs-kicker:       0.75rem;                         /* section kickers / eyebrows  */
  --fs-tag:          0.72rem;                         /* category tags, small labels */
  --fs-body:         0.95rem;                         /* body / paragraph text       */
  --fs-body-sm:      0.92rem;                         /* smaller body text           */
  --fs-button:       0.92rem;                         /* button text                 */
  --fs-button-sm:    0.88rem;                         /* smaller buttons             */
  --fs-small:        0.74rem;                         /* fine-print / micro labels   */
  --fs-nav:          0.9rem;                          /* navigation links            */
}

@property --c5-x1 { syntax: "<percentage>"; inherits: false; initial-value: 10%; }
@property --c5-y1 { syntax: "<percentage>"; inherits: false; initial-value: 10%; }
@property --c5-x2 { syntax: "<percentage>"; inherits: false; initial-value: 90%; }
@property --c5-y2 { syntax: "<percentage>"; inherits: false; initial-value: 10%; }
@property --c5-x3 { syntax: "<percentage>"; inherits: false; initial-value: 10%; }
@property --c5-y3 { syntax: "<percentage>"; inherits: false; initial-value: 90%; }
@property --c5-x4 { syntax: "<percentage>"; inherits: false; initial-value: 90%; }
@property --c5-y4 { syntax: "<percentage>"; inherits: false; initial-value: 90%; }
@property --c5-x5 { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --c5-y5 { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --c5-s1 { syntax: "<percentage>"; inherits: false; initial-value: 55%; }
@property --c5-s2 { syntax: "<percentage>"; inherits: false; initial-value: 55%; }
@property --c5-s3 { syntax: "<percentage>"; inherits: false; initial-value: 55%; }
@property --c5-s4 { syntax: "<percentage>"; inherits: false; initial-value: 55%; }
@property --c5-s5 { syntax: "<percentage>"; inherits: false; initial-value: 65%; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at var(--c5-x1) var(--c5-y1), rgba(245, 248, 255, 0.78) 0px, transparent var(--c5-s1)),
    radial-gradient(circle at var(--c5-x2) var(--c5-y2), rgba(26, 54, 94, 0.035) 0px, transparent var(--c5-s2)),
    radial-gradient(circle at var(--c5-x3) var(--c5-y3), rgba(255, 244, 234, 0.72) 0px, transparent var(--c5-s3)),
    radial-gradient(circle at var(--c5-x4) var(--c5-y4), rgba(255, 181, 112, 0.055) 0px, transparent var(--c5-s4)),
    radial-gradient(circle at var(--c5-x5) var(--c5-y5), rgba(47, 102, 164, 0.028) 0px, transparent var(--c5-s5));
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  animation:
    c5-blob1 24s ease-in-out infinite,
    c5-blob2 29s ease-in-out infinite,
    c5-blob3 26s ease-in-out infinite,
    c5-blob4 32s ease-in-out infinite,
    c5-blob5 21s ease-in-out infinite,
    c5-size1 19s ease-in-out infinite,
    c5-size2 23s ease-in-out infinite,
    c5-size3 20s ease-in-out infinite,
    c5-size4 27s ease-in-out infinite,
    c5-size5 18s ease-in-out infinite;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  --header-progress: 0;
  /* Staggered curves derived from the raw scroll progress so the morph feels
     organic: --header-shape (radius + padding) leads with an accelerated
     ease-out, so the pill is already rounded and the logo/icons have pulled
     in from the edges before the glass is visible. --header-glass (border,
     fill, blur, shadows, ink color) follows on a smoothstep, fading the
     surface in over geometry that has already settled. Both are exactly 0 at
     the top and 1 at full scroll, preserving the original end states. */
  --header-shape: min(1, var(--header-progress) * (2 - var(--header-progress)) * 1.6);
  --header-glass: calc(var(--header-progress) * var(--header-progress) * (3 - 2 * var(--header-progress)));
  /* --header-edge gates the crisp 1px border + inset rim highlight. It stays
     at 0 until ~60% scroll progress, then eases in (squared ramp) so the cell
     reads as a pure soft fade while morphing and only gains its defined edge
     once it has settled into the pill state. */
  --header-edge: calc(
    clamp(0, (var(--header-progress) - 0.6) / 0.4, 1) *
    clamp(0, (var(--header-progress) - 0.6) / 0.4, 1)
  );
  /* Eased horizontal feather so the glass shell + backdrop blur dissolve
     organically at the left/right edges instead of ending on a hard line. */
  --edge-mask: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 4%,
    rgba(0, 0, 0, 0.4) 9%,
    rgba(0, 0, 0, 0.8) 14%,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0.8) 86%,
    rgba(0, 0, 0, 0.4) 91%,
    rgba(0, 0, 0, 0.1) 96%,
    rgba(0, 0, 0, 0) 100%
  );
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: calc(11px * var(--header-shape)) 0;
  background: transparent;
  border-bottom: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  isolation: isolate;
  pointer-events: none;
  transition: padding 0.24s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: calc(88px * var(--header-glass));
  z-index: -1;
  opacity: calc(0.72 * var(--header-glass));
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.74), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 100%);
  backdrop-filter: blur(calc(7px * var(--header-glass)));
  -webkit-backdrop-filter: blur(calc(7px * var(--header-glass)));
  mask-image: var(--edge-mask);
  -webkit-mask-image: var(--edge-mask);
}

.header-inner {
  position: relative;
  width: var(--page-width);
  margin: 0 auto;
  padding:
    calc(32px - 18px * var(--header-shape))
    calc(18px * var(--header-shape))
    calc(28px - 14px * var(--header-shape));
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  overflow: visible;
  pointer-events: auto;
  border-radius: calc(34px * var(--header-shape));
  border: 1px solid rgba(255, 255, 255, calc(0.46 * var(--header-edge)));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, calc(0.5 * var(--header-glass))), rgba(255, 255, 255, calc(0.22 * var(--header-glass))) 44%, rgba(245, 248, 252, calc(0.32 * var(--header-glass)))),
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, calc(0.58 * var(--header-glass))), transparent 44%),
    radial-gradient(circle at 88% 12%, rgba(214, 226, 242, calc(0.26 * var(--header-glass))), transparent 42%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, calc(0.8 * var(--header-edge))) inset,
    0 18px 52px rgba(11, 15, 22, calc(0.16 * var(--header-glass))),
    0 3px 16px rgba(11, 15, 22, calc(0.08 * var(--header-glass)));
  backdrop-filter: blur(calc(28px * var(--header-glass))) saturate(calc(1 + 0.55 * var(--header-glass)));
  -webkit-backdrop-filter: blur(calc(28px * var(--header-glass))) saturate(calc(1 + 0.55 * var(--header-glass)));
  transition:
    padding 0.24s ease,
    border-radius 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.header-inner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  opacity: var(--header-glass);
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 44%),
    radial-gradient(ellipse at 50% 112%, rgba(255, 255, 255, 0.18), transparent 45%);
  mix-blend-mode: screen;
}

.header-inner > * {
  position: relative;
  z-index: 1;
}

.header-logo {
  width: 44px;
  display: flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(calc(1 - var(--header-glass)));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: var(--fs-nav);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.site-nav a,
.cart-link {
  color: color-mix(in srgb, var(--white) calc((1 - var(--header-glass)) * 100%), var(--black));
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.cart-link:hover {
  opacity: 0.72;
}

.mobile-menu {
  display: none;
}

.cart-link {
  width: 32px;
  justify-self: end;
  display: flex;
  align-items: center;
}

.cart-link svg {
  width: 100%;
  fill: currentColor;
}

.nav-book-now {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-round);
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: var(--fs-button-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  background: color-mix(in srgb, var(--black) calc(var(--header-glass) * 100%), var(--white));
  color: color-mix(in srgb, var(--white) calc(var(--header-glass) * 100%), var(--black));
  border: 1.5px solid color-mix(in srgb, var(--black) calc(var(--header-glass) * 100%), var(--white));
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.nav-book-now svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.nav-book-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11, 15, 22, calc(0.1 + 0.14 * var(--header-glass)));
}

.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(118, 147, 166, 0.33) 0%, rgba(255, 218, 182, 0.08) 28%, rgba(3, 4, 7, 0.22) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 930px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 80px 20px 120px;
  text-align: center;
  color: var(--white);
}

.hero h1,
.section-title,
.contact-card h2,
.recent-copy h3,
.service-body h3,
.footer-contact-title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.02;
  white-space: nowrap;
}

.hero-subtitle,
.hero-location {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  font-size: var(--fs-hero-sub);
}

.hero-location {
  position: absolute;
  bottom: 108px;
  font-size: var(--fs-hero-loc);
}

.section {
  width: var(--page-width);
  margin: 0 auto;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: var(--fs-section);
  margin-bottom: 34px;
}

.section-heading,
.trusted-header {
  text-align: center;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading .section-title {
  margin-bottom: 0;
}

.section-kicker,
.eyebrow,
.contact-kicker,
.footer-contact-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}

.section-kicker {
  margin-bottom: 0.85rem;
}

.trusted-section {
  background: var(--white);
  padding: 44px 0 30px;
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.05);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.trusted-header {
  width: var(--page-width);
  margin: 0 auto 30px;
}

.trusted-header .eyebrow {
  color: rgba(17, 17, 17, 0.42);
}

.trusted-marquee-shell {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  padding: 8px 0;
  margin: -8px 0;
}

.trusted-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10rem;
  z-index: 2;
  pointer-events: none;
}

.trusted-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.trusted-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.trusted-marquee {
  display: flex;
  width: max-content;
  animation: marquee-right 92s linear infinite;
}

.trusted-track {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.trusted-pill {
  --trusted-logo-scale: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(9.6rem, 13vw, 12.4rem);
  height: 3.65rem;
  padding: 0.52rem 1.35rem;
  border-radius: var(--radius-round);
  border: 1px solid transparent;
  background: transparent;
  color: rgba(17, 17, 17, 0.68);
  white-space: nowrap;
  box-shadow: none;
  cursor: default;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.trusted-pill[href] {
  cursor: pointer;
}

.trusted-pill img {
  display: block;
  width: auto;
  max-width: calc(100% - 1rem);
  height: auto;
  max-height: 1.9rem;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.2);
  mix-blend-mode: multiply;
  opacity: 0.68;
  transform: scale(var(--trusted-logo-scale));
  transform-origin: center;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.trusted-pill:hover {
  transform: translateY(-2px);
  border-color: transparent;
  background: transparent;
  color: var(--text);
}

.trusted-pill:hover img {
  filter: grayscale(1) saturate(0) contrast(1.35);
  opacity: 0.96;
  transform: scale(calc(var(--trusted-logo-scale) * 1.02));
}

.trusted-logo-sunny {
  --trusted-logo-scale: 1.14;
}

.trusted-logo-hyatt {
  --trusted-logo-scale: 1.08;
}

.trusted-logo-coors {
  --trusted-logo-scale: 1.62;
}

.trusted-logo-meepo {
  --trusted-logo-scale: 1.14;
}

.trusted-logo-arcteryx {
  --trusted-logo-scale: 1.14;
}

.trusted-logo-eargasm {
  --trusted-logo-scale: 1.62;
}

.trusted-logo-eiger {
  --trusted-logo-scale: 1.68;
}

.trusted-logo-guayaki {
  --trusted-logo-scale: 1.12;
}

.trusted-logo-odesza {
  --trusted-logo-scale: 1.1;
}

.trusted-logo-sampl {
  --trusted-logo-scale: 1.16;
}

.trusted-logo-outside-lands {
  --trusted-logo-scale: 1.18;
}

.trusted-logo-young {
  --trusted-logo-scale: 1.36;
}

.trusted-logo-katadyn {
  --trusted-logo-scale: 1.28;
}

.trusted-logo-adorama {
  --trusted-logo-scale: 0.88;
}

.trusted-logo-independent {
  --trusted-logo-scale: 0.94;
}

.portfolio-banner {
  position: relative;
}

.portfolio-banner img {
  height: 500px;
  object-fit: cover;
}

.outline-button,
.recent-button,
.bottom-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  border: 1.5px solid currentColor;
}

.portfolio-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 172px;
  min-height: 56px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: var(--fs-body);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.services-slider,
.recent-carousel {
  position: relative;
}

.services-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.services-track-wrap {
  overflow: hidden;
  padding-bottom: 6px;
}

.services-track {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 10px max(24px, calc((100vw - var(--service-slide-width)) / 2)) 34px;
  cursor: grab;
  user-select: none;
  touch-action: pan-x pan-y;
  scroll-padding-inline: max(24px, calc((100vw - var(--service-slide-width)) / 2));
}

.services-track::-webkit-scrollbar {
  display: none;
}

.services-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.carousel-arrow,
.recent-arrow {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.carousel-arrow svg,
.recent-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recent-arrow {
  position: static;
}

.service-card {
  position: relative;
  flex: 0 0 var(--service-slide-width);
  min-height: clamp(26rem, 32vw, 30rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--dark-2);
  transform: scale(var(--service-slide-scale, 0.92));
  translate: 0 var(--service-card-lift, 0);
  transition:
    translate 0.38s ease,
    box-shadow 0.28s ease;
  box-shadow: 0 8px 18px rgba(10, 14, 24, 0.11);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    --service-card-lift: -4px;
    box-shadow: 0 14px 26px rgba(10, 14, 24, 0.16);
  }
}

.service-card.is-pressed {
  --service-card-lift: -3px;
  box-shadow: 0 12px 24px rgba(10, 14, 24, 0.15);
}

.service-card:not(.is-active) {
  cursor: pointer;
}

.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.service-image,
.service-shade {
  position: absolute;
  inset: 0;
}

.service-image {
  height: 100%;
  object-fit: cover;
}

.service-shade {
  background: linear-gradient(
    180deg,
    rgba(4, 6, 10, 0.01) 0%,
    rgba(4, 6, 10, 0.03) 58%,
    rgba(4, 6, 10, 0.28) 100%
  );
}

.service-body {
  position: relative;
  z-index: 2;
  min-height: clamp(26rem, 32vw, 30rem);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  pointer-events: none;
}

.more-info-button,
.service-link {
  pointer-events: auto;
}

.service-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.service-body h3 {
  max-width: 14ch;
  font-size: var(--fs-card-title);
}

.more-info-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  white-space: nowrap;
  cursor: pointer;
}

.more-info-button span {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.more-info-button strong {
  font-size: var(--fs-body);
  line-height: 1;
}

.service-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

[data-expandable].is-open .service-details {
  max-height: 15rem;
  opacity: 1;
  margin-top: 1rem;
}

.service-details p,
.contact-copy p,
.bottom-contact-card p {
  margin: 0;
  line-height: 1.65;
}

.service-link {
  min-width: 11rem;
  min-height: 3.3rem;
  margin-top: 1.25rem;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.services-section {
  background: var(--white);
}

.services-slider-footer {
  width: var(--page-width);
  margin: -8px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.services-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-status-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 17, 0.3);
  background: transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.services-status-dot.is-active {
  background: rgba(17, 17, 17, 0.88);
  border-color: rgba(17, 17, 17, 0.88);
  transform: scale(1.08);
}

.services-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c5-animated-gradient {
  background-color: #0a1626;
  background-image:
    radial-gradient(circle at var(--c5-x1) var(--c5-y1), rgba(255, 255, 255, 0.05) 0px, transparent var(--c5-s1)),
    radial-gradient(circle at var(--c5-x2) var(--c5-y2), rgba(47, 102, 164, 0.24) 0px, transparent var(--c5-s2)),
    radial-gradient(circle at var(--c5-x3) var(--c5-y3), rgba(111, 143, 189, 0.12) 0px, transparent var(--c5-s3)),
    radial-gradient(circle at var(--c5-x4) var(--c5-y4), rgba(9, 18, 32, 0.55) 0px, transparent var(--c5-s4)),
    radial-gradient(circle at var(--c5-x5) var(--c5-y5), rgba(26, 54, 94, 0.3) 0px, transparent var(--c5-s5));
  animation:
    c5-blob1 24s ease-in-out infinite,
    c5-blob2 29s ease-in-out infinite,
    c5-blob3 26s ease-in-out infinite,
    c5-blob4 32s ease-in-out infinite,
    c5-blob5 21s ease-in-out infinite,
    c5-size1 19s ease-in-out infinite,
    c5-size2 23s ease-in-out infinite,
    c5-size3 20s ease-in-out infinite,
    c5-size4 27s ease-in-out infinite,
    c5-size5 18s ease-in-out infinite;
}

@keyframes c5-blob1 {
  0%, 100% { --c5-x1: 5%; --c5-y1: 5%; }
  25% { --c5-x1: 45%; --c5-y1: 20%; }
  50% { --c5-x1: 30%; --c5-y1: 55%; }
  75% { --c5-x1: 0%; --c5-y1: 30%; }
}

@keyframes c5-blob2 {
  0%, 100% { --c5-x2: 95%; --c5-y2: 5%; }
  33% { --c5-x2: 55%; --c5-y2: 35%; }
  66% { --c5-x2: 80%; --c5-y2: 65%; }
}

@keyframes c5-blob3 {
  0%, 100% { --c5-x3: 5%; --c5-y3: 95%; }
  40% { --c5-x3: 45%; --c5-y3: 65%; }
  70% { --c5-x3: 25%; --c5-y3: 100%; }
}

@keyframes c5-blob4 {
  0%, 100% { --c5-x4: 95%; --c5-y4: 95%; }
  30% { --c5-x4: 60%; --c5-y4: 70%; }
  60% { --c5-x4: 100%; --c5-y4: 50%; }
}

@keyframes c5-blob5 {
  0%, 100% { --c5-x5: 50%; --c5-y5: 50%; }
  25% { --c5-x5: 70%; --c5-y5: 30%; }
  50% { --c5-x5: 40%; --c5-y5: 70%; }
  75% { --c5-x5: 30%; --c5-y5: 40%; }
}

@keyframes c5-size1 { 0%, 100% { --c5-s1: 45%; } 50% { --c5-s1: 80%; } }
@keyframes c5-size2 { 0%, 100% { --c5-s2: 45%; } 50% { --c5-s2: 85%; } }
@keyframes c5-size3 { 0%, 100% { --c5-s3: 45%; } 50% { --c5-s3: 78%; } }
@keyframes c5-size4 { 0%, 100% { --c5-s4: 45%; } 50% { --c5-s4: 82%; } }
@keyframes c5-size5 { 0%, 100% { --c5-s5: 50%; } 50% { --c5-s5: 85%; } }

@media (prefers-reduced-motion: reduce) {
  .c5-animated-gradient,
  body,
  html[data-theme="dark"] body,
  html[data-theme="dark"] .portfolio-page {
    animation: none;
  }
}

.testimonials-section {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  background: var(--white);
  color: var(--text);
  overflow: visible;
}

.testimonials-heading {
  max-width: 52rem;
  margin: 0 auto clamp(2.4rem, 4vw, 3.5rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  overflow: visible;
}

.testimonial-carousel {
  position: relative;
  overflow: visible;
  padding-inline: clamp(1.25rem, 2.6vw, 2rem);
}

.testimonial-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonial-stat {
  min-height: 8.6rem;
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.testimonial-stat:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.07);
}

.testimonial-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.testimonial-stat span {
  color: rgba(17, 17, 17, 0.58);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  line-height: 1.35;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.testimonial-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-round);
  background: rgba(17, 17, 17, 0.24);
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.testimonial-dots button.is-active {
  width: 2.5rem;
  background: var(--text);
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.testimonial-viewport.is-dragging {
  cursor: grabbing;
}

.testimonial-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.testimonial-card {
  min-height: 22rem;
  height: 100%;
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.84)),
    radial-gradient(circle at 12% 12%, rgba(122, 166, 220, 0.16), transparent 44%);
  box-shadow: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  color: rgba(17, 17, 17, 0.06);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: #d7a93f;
  font-size: 1rem;
}

.testimonial-card p {
  max-width: 46rem;
  margin: 0 0 2rem;
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author > span {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.12);
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 1rem;
}

.testimonial-author small {
  margin-top: 0.15rem;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.86rem;
  font-weight: 600;
}

.testimonial-arrows {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  pointer-events: auto;
}

.testimonial-arrow {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 17, 17, 0.22);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.42);
  background: rgba(17, 17, 17, 0.05);
}

.testimonial-arrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-accordion-question svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-cta-section {
  padding: clamp(4rem, 6vw, 5rem) 0;
  background: var(--white);
  color: var(--dark);
}

.faq-cta-container {
  width: var(--page-width);
  margin: 0 auto;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(20rem, 1fr);
  gap: clamp(1rem, 2vw, 1.9rem);
  align-items: stretch;
}

.faq-cta-card {
  min-height: 34rem;
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.faq-cta-card.c5-animated-gradient {
  background-color: #1a365e;
  background-image:
    radial-gradient(circle at var(--c5-x1) var(--c5-y1), rgba(255, 255, 255, 0.42) 0px, transparent var(--c5-s1)),
    radial-gradient(circle at var(--c5-x2) var(--c5-y2), rgba(36, 75, 130, 0.78) 0px, transparent var(--c5-s2)),
    radial-gradient(circle at var(--c5-x3) var(--c5-y3), rgba(111, 143, 189, 0.42) 0px, transparent var(--c5-s3)),
    radial-gradient(circle at var(--c5-x4) var(--c5-y4), rgba(11, 29, 53, 0.78) 0px, transparent var(--c5-s4)),
    radial-gradient(circle at var(--c5-x5) var(--c5-y5), rgba(47, 102, 164, 0.58) 0px, transparent var(--c5-s5));
}

.faq-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.34), transparent 55%);
  pointer-events: none;
}

.faq-cta-card > * {
  position: relative;
  z-index: 1;
}

.faq-cta-label {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-cta-card h2 {
  max-width: 13ch;
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.faq-cta-subtext {
  max-width: 31rem;
  margin: 0 0 1.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0 2rem;
  border-radius: 14px;
  background: #111;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq-cta-button:hover {
  transform: translateY(-2px);
  background: #050505;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.faq-accordion-item {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: var(--white);
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-accordion-item:hover,
.faq-accordion-item.is-active {
  border-color: #e7e7e7;
}

.faq-accordion-item.is-active {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
}

.faq-accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-accordion-question svg {
  flex: 0 0 auto;
  color: #1a365e;
}

.faq-accordion-answer {
  display: none;
  margin-top: 0.85rem;
  color: #666;
  font-size: 0.94rem;
  line-height: 1.62;
  animation: fadeInUp 0.22s ease;
}

.faq-accordion-item.is-active .faq-accordion-answer {
  display: block;
}

.quote-section {
  padding: clamp(4.4rem, 7vw, 6.4rem) 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(122, 166, 220, 0.12), transparent 30rem),
    linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}

.quote-container {
  width: min(45rem, calc(100vw - 64px));
  margin: 0 auto;
}

.quote-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 2.6rem;
  text-align: center;
}

.quote-heading .section-title {
  margin-top: 0.5rem;
}

.quote-heading p:not(.section-kicker) {
  max-width: 38rem;
  margin: 0.7rem auto 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.quote-heading small {
  display: block;
  max-width: 38rem;
  margin: 0.7rem auto 0;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.86rem;
  line-height: 1.55;
}

.quote-form-card {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  padding: clamp(1.6rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(10, 20, 36, 0.08);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.quote-form-card label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-form-card label span {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.quote-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1.5px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quote-input:hover {
  border-color: rgba(17, 17, 17, 0.24);
  background: var(--white);
}

.quote-input:focus {
  border-color: rgba(26, 54, 94, 0.42);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 166, 220, 0.18);
}

.quote-input::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.quote-select {
  cursor: pointer;
}

.quote-form-card textarea {
  min-height: 8.4rem;
  resize: vertical;
}

.quote-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.quote-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  margin-top: 0.4rem;
  padding: 0 1.8rem;
  border-radius: 14px;
  background: #111;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quote-submit-button:hover {
  transform: translateY(-2px);
  background: #050505;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.quote-submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.form-submit-status {
  margin: -0.25rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.72);
}

.form-submit-status[data-tone="success"] {
  color: #245b31;
}

.form-submit-status[data-tone="error"] {
  color: #8f2525;
}

@media (max-width: 900px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .testimonial-carousel {
    width: 100%;
    max-width: 42rem;
    margin-inline: auto;
    padding-inline: 1rem;
  }

  .testimonial-stat-grid {
    max-width: 36rem;
    margin-inline: auto;
  }

  .testimonial-card {
    min-height: 18rem;
  }

  .faq-cta-section {
    padding: 3.75rem 0;
  }

  .faq-cta-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .faq-cta-card {
    min-height: 30rem;
  }
}

@media (max-width: 640px) {
  .testimonials-section,
  .faq-cta-container,
  .quote-container {
    width: calc(100% - 28px);
  }

  .testimonials-section {
    padding: 3.75rem 0 4.25rem;
    overflow: visible;
  }

  .testimonials-heading {
    max-width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }

  .testimonials-heading .section-title {
    max-width: min(28rem, 100%);
    margin-inline: auto;
    font-size: var(--fs-section);
    line-height: 1.08;
  }

  .testimonials-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    justify-items: stretch;
    overflow: visible;
  }

  .testimonial-stats {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .testimonial-stat-grid {
    width: 100%;
    max-width: min(35rem, 100%);
    gap: 14px;
    margin: 0 auto 1.7rem;
  }

  .testimonial-stat {
    min-height: 7.4rem;
    padding: 1.1rem 0.95rem;
    border-radius: 20px;
  }

  .testimonial-stat strong {
    font-size: 1.75rem;
  }

  .testimonial-stat span {
    font-size: 0.82rem;
  }

  .testimonial-card {
    min-height: 20rem;
    padding: 1.75rem 1.35rem;
    border-radius: 22px;
  }

  .testimonial-carousel {
    width: 100%;
    min-width: 0;
    max-width: min(35rem, 100%);
    margin-inline: auto;
    overflow: visible;
    padding: 0 0.9rem;
  }

  .testimonial-viewport {
    overflow: hidden;
    border-radius: 22px;
  }

  .testimonial-card {
    margin: 0;
    box-shadow: none;
  }

  .testimonial-card p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .testimonial-author > span {
    width: 2.9rem;
    height: 2.9rem;
  }

  .testimonial-arrows {
    justify-content: center;
    margin-top: 1rem;
    gap: 0.95rem;
  }

  .faq-cta-section {
    padding: 3rem 0;
  }

  .faq-cta-grid {
    gap: 2rem;
  }

  .faq-cta-card {
    min-height: 27rem;
    padding: 3.2rem 1.35rem;
    border-radius: 24px;
  }

  .faq-cta-card h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .faq-accordion-item {
    padding: 1rem;
    border-radius: 14px;
  }

  .faq-accordion-question {
    font-size: 0.92rem;
  }

  .faq-accordion-answer {
    font-size: 0.9rem;
  }

  .quote-section {
    padding: 3.8rem 0;
  }

  .quote-heading {
    margin-bottom: 2rem;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .quote-form-card {
    gap: 1.35rem;
    padding: 1.65rem 1.25rem;
    border-radius: 24px;
  }

  .quote-submit-button {
    width: 100%;
  }
}

.contact-band {
  position: relative;
  min-height: 720px;
  margin-top: 42px;
}

.contact-bg,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-bg {
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  background: rgba(10, 10, 10, 0.08);
}

.contact-shell {
  position: relative;
  z-index: 1;
  width: var(--page-width);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.contact-card {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 32px;
  background: rgba(17, 19, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.contact-kicker {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.contact-card h2 {
  font-size: var(--fs-display);
  margin-bottom: 1.2rem;
}

.contact-support {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

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

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  outline: none;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8.8rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 176px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-round);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-1.5px);
}

/* ── Featured Projects Grid ──────────────────────────── */
.featured-section {
  background: #fff;
  padding: 52px 0 56px;
}

.featured-header {
  width: var(--page-width);
  margin: 0 auto 28px;
  text-align: center;
}

.featured-header .section-kicker {
  color: rgba(17, 17, 17, 0.45);
}

.featured-title {
  color: var(--black);
  font-size: var(--fs-section);
  margin-top: 6px;
  letter-spacing: -0.03em;
}

.featured-grid {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 1.45vw, 1.25rem);
}

/* Each project card */
.fp-card {
  position: relative;
  display: block;
  border-radius: clamp(1.05rem, 2vw, 1.75rem);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(13, 16, 22, 0.08);
  transform: translateZ(0);
  transition: box-shadow 0.24s ease;
}

.fp-card:hover {
  transform: translateZ(0);
  box-shadow:
    0 1px 0 rgba(13, 16, 22, 0.1),
    0 8px 14px rgba(13, 16, 22, 0.12);
}

.fp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fp-card:hover img {
  transform: scale(1.045);
}

/* Dark gradient overlay so text is legible */
.fp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 44%,
    rgba(0, 0, 0, 0.06) 74%,
    rgba(0, 0, 0, 0.24) 100%
  );
  pointer-events: none;
}

/* Arrow link button - top right */
.fp-link {
  position: absolute;
  top: clamp(1.05rem, 2vw, 1.7rem);
  right: clamp(1.05rem, 2vw, 1.7rem);
  width: clamp(2.35rem, 4vw, 3rem);
  height: clamp(2.35rem, 4vw, 3rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.fp-card:hover .fp-link {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.fp-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Text copy at bottom */
.fp-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: clamp(1.45rem, 3vw, 2rem);
}

.fp-category {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: clamp(0.34rem, 0.7vw, 0.48rem);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
}

.fp-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 14ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

/* Footer button */
.featured-footer {
  width: var(--page-width);
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
}

.featured-portfolio-btn {
  min-width: 160px;
  min-height: 44px;
  color: var(--black);
  border-color: rgba(17, 17, 17, 0.3);
  font-family: var(--font-head);
  font-size: var(--fs-button-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-portfolio-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

@media (max-width: 768px) {
  .featured-section {
    padding: 40px 0 48px;
  }
  .featured-header {
    margin-bottom: 20px;
    padding: 0 32px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 64px);
    margin: 0 32px;
  }
  .fp-card {
    aspect-ratio: 3 / 2;
    border-radius: 22px;
  }
  .fp-link {
    top: 1.15rem;
    right: 1.15rem;
  }
  .fp-copy {
    padding: 1.35rem;
  }
  .fp-title {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }
  .featured-footer {
    width: calc(100% - 64px);
    margin: 20px 32px 0;
  }
}


.instagram-title {
  margin-bottom: 0;
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.35rem);
}

.instagram-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: clamp(1.25rem, 2vw, 1.7rem);
  background: #eef1f5;
  isolation: isolate;
  box-shadow: 0 0 0 rgba(13, 16, 22, 0);
  transition: box-shadow 0.28s ease;
}

.instagram-card:hover {
  box-shadow: 0 12px 24px rgba(13, 16, 22, 0.14);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-card:hover img {
  transform: scale(1.045);
}

.instagram-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.05) 72%, rgba(0, 0, 0, 0.24) 100%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.8;
  transition: opacity 0.28s ease;
}

.instagram-card:hover .instagram-card-overlay {
  opacity: 1;
}

.instagram-card-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
  color: var(--white);
}

.instagram-card-copy span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.instagram-card-copy strong {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.instagram-follow-button {
  width: max-content;
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.6rem auto 0;
  padding: 0 1.35rem;
  border-radius: var(--radius-round);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: var(--fs-button);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(13, 16, 22, 0.07);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.instagram-follow-button:hover {
  transform: translateY(-1.5px);
  border-color: rgba(17, 17, 17, 0.22);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(13, 16, 22, 0.12);
}

.instagram-follow-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  margin-top: 0;
  background: var(--soft);
  color: var(--muted);
  padding: clamp(4rem, 7vw, 5rem) 0 2.2rem;
  border-top: 1px solid var(--line);
}

.footer-contact-section {
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.footer-contact-shell {
  width: var(--page-width);
  margin: 0 auto;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding: 3rem 2.75rem;
  border-radius: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer-contact-main {
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact-label {
  margin-bottom: 0.5rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.footer-contact-title {
  max-width: 24rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: var(--fs-section-sm);
  line-height: 1.25;
  letter-spacing: 0;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  gap: 0.5rem;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-round);
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: var(--fs-button);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(11, 11, 12, 0.16);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.footer-contact-button:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  box-shadow: 0 6px 18px rgba(11, 11, 12, 0.24);
  transform: translateY(-1.5px);
}

.footer-contact-button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-nav);
  color: var(--muted);
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.footer-email-link:hover {
  color: var(--text);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-email-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 0;
}

.footer-link-group h4 {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link-group a {
  font-size: var(--fs-body-sm);
  color: var(--muted);
  display: inline-block;
  width: max-content;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.footer-link-group a:hover {
  color: var(--text);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-shell {
  width: var(--page-width);
  margin: 0 auto;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(8rem, 13vw, 13.5rem);
  padding: clamp(2rem, 4vw, 3.3rem) 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  width: min(28rem, 68vw);
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-bottom-row p {
  margin: 0;
  color: rgba(17, 17, 17, 0.45);
  font-size: var(--fs-nav);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.footer-socials a {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.68;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-page {
  background: var(--white);
}

.portfolio-page .site-header {
  --header-progress: 1;
}

.portfolio-page .site-nav a[aria-current="page"] {
  opacity: 0.58;
}

.portfolio-main {
  padding: clamp(5.4rem, 7.2vw, 6.8rem) 0 clamp(4rem, 7vw, 6rem);
}

.portfolio-hero,
.portfolio-list {
  width: min(1340px, calc(100vw - clamp(16px, 4.4vw, 64px)));
  margin: 0 auto;
}

.portfolio-hero {
  position: relative;
  display: grid;
  min-height: clamp(4.8rem, 7vw, 6.4rem);
  align-items: center;
  justify-items: center;
  margin-bottom: clamp(0.9rem, 1.45vw, 1.25rem);
  text-align: center;
}

.portfolio-hero h1 {
  max-width: none;
  margin: 0;
  font-family: var(--font-head);
  font-size: var(--fs-section);
  line-height: 0.96;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.back-button,
.portfolio-cell-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  border-radius: var(--radius-round);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.back-button {
  justify-self: auto;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
  color: var(--black);
  box-shadow:
    0 16px 34px rgba(11, 15, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.portfolio-back {
  position: absolute;
  left: 0;
  top: 50%;
  width: 3rem;
  min-height: 0;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.back-button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 22px 44px rgba(11, 15, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.portfolio-back:hover {
  transform: translateY(calc(-50% - 3px));
}

.portfolio-list {
  display: grid;
  gap: clamp(1rem, 1.65vw, 1.35rem);
}

.portfolio-cell {
  position: relative;
  display: grid;
  height: clamp(11.4rem, calc(7rem + 18vw), 22.5rem);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: clamp(1.55rem, 3vw, 2.4rem);
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(13, 16, 22, 0.08);
  transform: translateZ(0);
  transition: box-shadow 0.24s ease;
}

.portfolio-cell img,
.portfolio-cell-overlay,
.portfolio-cell-content {
  grid-area: 1 / 1;
}

.portfolio-cell img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition:
    transform 0.6s ease,
    filter 0.35s ease;
}

.portfolio-cell-overlay {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 46%,
    rgba(0, 0, 0, 0.05) 74%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.portfolio-cell-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  min-height: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.45rem, 3vw, 2.55rem);
  color: var(--white);
}

.portfolio-cell-text {
  display: grid;
  justify-items: start;
  gap: clamp(0.32rem, 0.65vw, 0.48rem);
  min-width: 0;
  text-align: left;
}

.portfolio-cell-kicker {
  max-width: 34ch;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.portfolio-cell-title {
  max-width: 15ch;
  font-family: var(--font-head);
  font-size: var(--fs-section);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.portfolio-cell-button {
  flex: 0 0 auto;
  width: max-content;
  min-width: 0;
  min-height: auto;
  margin-bottom: 0;
  padding: 0.58rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-cell-button strong {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 400;
}

.portfolio-cell:hover {
  transform: translateZ(0);
  box-shadow:
    0 1px 0 rgba(13, 16, 22, 0.1),
    0 8px 14px rgba(13, 16, 22, 0.12);
}

.portfolio-cell:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.04);
}

.portfolio-cell:hover .portfolio-cell-button {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  transform: translateY(-1px);
}

.project-gallery-main {
  --gallery-width: min(980px, calc(100vw - 64px));
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.project-gallery-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--gallery-width);
  min-height: clamp(7rem, 12vw, 10rem);
  margin: 0 auto clamp(1.2rem, 2vw, 1.7rem);
  text-align: center;
}

.project-gallery-heading {
  display: grid;
  gap: 0.32rem;
  justify-items: center;
}

.project-gallery-heading p,
.project-gallery-heading span {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-gallery-heading h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: var(--fs-section);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.project-gallery-back {
  position: absolute;
  left: 0;
  top: 50%;
  width: 3rem;
  min-height: 0;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.project-gallery-back:hover {
  transform: translateY(calc(-50% - 3px));
}

.project-gallery-grid {
  width: var(--gallery-width);
  margin: 0 auto;
}

.project-gallery-rows {
  display: grid;
  gap: clamp(0.85rem, 1.45vw, 1.25rem);
}

.project-gallery-rows-mobile {
  display: none;
}

.project-gallery-row {
  display: flex;
  gap: clamp(0.85rem, 1.45vw, 1.25rem);
  width: 100%;
  height: var(--gallery-row-height);
}

.project-gallery-row-medium {
  --gallery-row-height: clamp(16.5rem, 24vw, 21rem);
}

.project-gallery-row-tall {
  --gallery-row-height: clamp(19rem, 29vw, 25rem);
}

.project-gallery-row-large {
  --gallery-row-height: clamp(20rem, 32vw, 27rem);
}

.project-gallery-row-hero {
  --gallery-row-height: clamp(21rem, 34vw, 29rem);
}

.project-gallery-item {
  display: block;
  flex: var(--gallery-cell-ratio) 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: clamp(1.05rem, 2vw, 1.75rem);
  background: var(--soft);
  box-shadow: 0 1px 0 rgba(13, 16, 22, 0.08);
  transition:
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.project-gallery-item-wide {
  --gallery-cell-ratio: 152;
}

.project-gallery-item-narrow {
  --gallery-cell-ratio: 66;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-gallery-item:hover {
  box-shadow:
    0 1px 0 rgba(13, 16, 22, 0.1),
    0 8px 14px rgba(13, 16, 22, 0.12);
}

.project-gallery-item:hover img {
  transform: scale(1.02);
}

.project-lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 2vw, 1.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(9, 10, 12, 0.84);
  cursor: zoom-out;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.project-lightbox-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1rem);
  width: min(1180px, calc(100vw - 2rem));
  height: min(820px, calc(100vh - 2rem));
  transform: scale(0.985);
  transition: transform 0.22s ease;
}

.project-lightbox.is-open .project-lightbox-shell {
  transform: scale(1);
}

.project-lightbox-topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.project-lightbox-copy {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.62rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.project-lightbox-eyebrow,
.project-lightbox-counter {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-lightbox-counter {
  color: rgba(255, 255, 255, 0.66);
}

.project-lightbox-close,
.project-lightbox-nav {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.project-lightbox-close:hover,
.project-lightbox-nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.32);
}

.project-lightbox-close svg,
.project-lightbox-nav svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-lightbox-figure {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.project-lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 9rem);
  border-radius: clamp(1.05rem, 2vw, 1.75rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  object-fit: contain;
}

.project-lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}

.project-lightbox-next {
  grid-column: 3;
  grid-row: 2;
}

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

  to {
    transform: translateX(0);
  }
}

@keyframes cta-pan {
  0% {
    transform: translate3d(-5%, -4%, 0) scale(1);
  }

  50% {
    transform: translate3d(6%, 6%, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-5%, -4%, 0) scale(1);
  }
}

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

@media (max-width: 960px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.25rem 2rem;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    min-height: 31rem;
  }

  .service-body {
    min-height: 31rem;
  }

  .recent-slide,
  .recent-copy {
    min-height: 600px;
  }
}

@media (max-width: 840px) {
  :root {
    --mobile-space: 14px;
    --page-width: calc(100% - 28px);
    --service-slide-width: 72vw;
  }

  .site-header::after {
    content: none;
    display: none;
  }

  .header-inner {
    position: relative;
    grid-template-columns: 40px 1fr;
    align-items: center;
    padding: calc(16px - 6px * var(--header-shape)) 16px;
  }

  .header-logo {
    width: 38px;
  }

  .site-nav {
    display: none;
  }

  .nav-book-now {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    display: flex !important;
    align-items: center;
    z-index: 30;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, rgba(255, 255, 255, 0.15) calc((1 - var(--header-glass)) * 100%), rgba(11, 11, 12, 0.06));
    border: 1px solid color-mix(in srgb, rgba(255, 255, 255, 0.25) calc((1 - var(--header-glass)) * 100%), rgba(11, 11, 12, 0.15));
    color: color-mix(in srgb, var(--white) calc((1 - var(--header-glass)) * 100%), var(--black));
    backdrop-filter: none;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-menu-toggle svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 148px;
    padding: 10px;
    display: grid;
    gap: 2px;
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28) 48%, rgba(245, 248, 252, 0.38)),
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.68), transparent 46%),
      radial-gradient(circle at 92% 18%, rgba(214, 226, 242, 0.34), transparent 42%);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 18px 44px rgba(11, 15, 22, 0.16),
      0 4px 18px rgba(11, 15, 22, 0.08);
    backdrop-filter: blur(24px) saturate(1.45);
    -webkit-backdrop-filter: blur(24px) saturate(1.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel a {
    padding: 9px 10px;
    border-radius: 12px;
    color: var(--black);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-align: left;
    transition: color 0.25s ease, background-color 0.2s ease;
  }

  .mobile-menu-panel a:hover {
    background: rgba(255, 255, 255, 0.38);
  }

  .mobile-menu-panel .mobile-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 6px;
    padding: 11px 13px;
    border-radius: var(--radius-round);
    background: var(--black);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    box-shadow: 0 10px 22px rgba(11, 15, 22, 0.18);
  }

  .mobile-menu-panel .mobile-book-now svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-menu-panel .mobile-book-now:hover {
    background: #050505;
  }



  .cart-link {
    display: none;
  }

  .portfolio-main {
    padding-top: 4.95rem;
  }

  .portfolio-hero {
    width: var(--page-width);
    min-height: 6.4rem;
    margin-bottom: var(--mobile-space);
  }

  .portfolio-hero > * {
    max-width: 100%;
    min-width: 0;
  }

  .portfolio-hero h1 {
    max-width: 12ch;
    font-size: clamp(1.9rem, 7.4vw, 2.2rem);
    line-height: 0.98;
    white-space: normal;
  }

  .portfolio-back {
    width: 2.65rem;
    height: 2.65rem;
  }

  .portfolio-list {
    width: var(--page-width);
    gap: var(--mobile-space);
  }

  .portfolio-cell {
    border-radius: 1.2rem;
  }

  .portfolio-cell-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1.25rem;
  }

  .portfolio-cell-text {
    max-width: calc(100% - 3.6rem);
    gap: 0.25rem;
  }

  .portfolio-cell-kicker {
    max-width: 100%;
    font-size: clamp(0.58rem, 2.1vw, 0.68rem);
    line-height: 1.12;
  }

  .portfolio-cell-title {
    align-self: flex-end;
    max-width: 100%;
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    line-height: 0.96;
  }

  .portfolio-cell-button,
  .back-button {
    min-height: 2.6rem;
  }

  .portfolio-cell-button {
    align-self: flex-end;
    width: 2.45rem;
    height: 2.45rem;
    min-height: 0;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.62);
  }

  .portfolio-cell-button span {
    display: none;
  }

  .portfolio-cell-button strong {
    width: auto;
    height: auto;
    font-size: 1.35rem;
    font-weight: 400;
  }

  .project-gallery-main {
    --gallery-width: var(--page-width);
  }

  .project-gallery-hero {
    width: var(--gallery-width);
    min-height: 7.25rem;
    margin-bottom: var(--mobile-space);
  }

  .project-gallery-heading {
    max-width: calc(100% - 6rem);
  }

  .project-gallery-heading h1 {
    font-size: clamp(1.9rem, 7.4vw, 2.2rem);
  }

  .project-gallery-heading p,
  .project-gallery-heading span {
    font-size: clamp(0.58rem, 2.1vw, 0.68rem);
  }

  .project-gallery-back {
    width: 2.65rem;
    height: 2.65rem;
  }

  .project-gallery-grid {
    width: var(--gallery-width);
  }

  .project-gallery-rows {
    gap: var(--mobile-space);
  }

  .project-gallery-rows-desktop {
    display: none;
  }

  .project-gallery-rows-mobile {
    display: grid;
  }

  .project-gallery-row {
    gap: var(--mobile-space);
  }

  .project-gallery-row-mobile-landscape {
    --gallery-row-height: clamp(12.2rem, 53vw, 14.4rem);
  }

  .project-gallery-row-hero {
    --gallery-row-height: clamp(12.2rem, 53vw, 14.4rem);
  }

  .project-gallery-row-mobile-portrait {
    --gallery-row-height: clamp(17.5rem, 74vw, 20rem);
  }

  .project-gallery-row-mobile-pair {
    --gallery-row-height: clamp(15.4rem, 66vw, 18rem);
  }

  .project-gallery-row-mobile-mixed {
    --gallery-row-height: clamp(13.5rem, 58vw, 16rem);
  }

  .project-gallery-item {
    border-radius: 1.2rem;
  }

  .project-lightbox {
    padding: var(--mobile-space);
  }

  .project-lightbox-shell {
    width: calc(100vw - (var(--mobile-space) * 2));
    height: calc(100vh - (var(--mobile-space) * 2));
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: var(--mobile-space);
  }

  .project-lightbox-topbar {
    grid-column: 1 / -1;
  }

  .project-lightbox-copy {
    max-width: calc(100vw - 6.5rem);
    padding: 0.58rem 0.72rem;
  }

  .project-lightbox-eyebrow {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .project-lightbox-close,
  .project-lightbox-nav {
    width: 2.75rem;
    height: 2.75rem;
  }

  .project-lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .project-lightbox-image {
    border-radius: 1.2rem;
  }

  .project-lightbox-prev,
  .project-lightbox-next {
    grid-row: 3;
  }

  .project-lightbox-prev {
    grid-column: 1;
    justify-self: end;
  }

  .project-lightbox-next {
    grid-column: 2;
    justify-self: start;
  }

  .hero,
  .hero-copy {
    min-height: 560px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.3rem, 5.6vw, 2.15rem);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .hero-location {
    bottom: 34px;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero-copy {
    gap: 12px;
    padding: 118px 18px 88px;
  }

  .section {
    padding: 38px 0;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 2.7rem;
  }

  .portfolio-banner img {
    height: 232px;
  }

  .portfolio-button {
    min-width: 136px;
    min-height: 46px;
    font-size: 1.2rem;
  }

  .trusted-section {
    padding: 28px 0 18px;
  }

  .trusted-header {
    margin-bottom: 18px;
  }

  .trusted-header .eyebrow {
    font-size: 0.72rem;
  }

  .trusted-fade {
    width: 4rem;
  }

  .trusted-track {
    gap: 1rem;
    padding-right: 1rem;
  }

  .trusted-pill {
    width: 8.9rem;
    height: 3.05rem;
    padding: 0.42rem 0.95rem;
  }

  .trusted-pill img {
    max-width: calc(100% - 0.8rem);
    max-height: 1.48rem;
  }

  .service-card {
    min-height: 25.5rem;
    scroll-snap-align: center;
  }

  .service-body {
    min-height: 25.5rem;
    padding: 1.2rem 1.15rem 1.25rem;
  }

  .service-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
  }

  .service-body h3 {
    max-width: none;
    font-size: 2rem;
    flex: 1;
  }

  .more-info-button {
    width: 36px;
    height: 36px;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .more-info-button span {
    display: none;
  }

  .service-details p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .service-link {
    min-width: 8.8rem;
    min-height: 2.8rem;
    margin-top: 1rem;
    font-size: 1.05rem;
  }

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

  .services-track {
    gap: 14px;
    padding: 8px max(14px, calc((100vw - var(--service-slide-width)) / 2)) 28px;
    scroll-padding-inline: max(14px, calc((100vw - var(--service-slide-width)) / 2));
  }

  .services-slider-footer {
    width: 72vw;
    margin-top: -6px;
    padding: 0;
  }

  .services-status {
    gap: 8px;
  }

  .services-status-dot {
    width: 9px;
    height: 9px;
  }

  .services-controls .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .services-controls {
    gap: 10px;
  }

  .contact-band,
  .contact-shell {
    min-height: auto;
  }

  .contact-shell {
    width: 100%;
    padding: 34px 0;
  }

  .contact-card {
    width: calc(100% - 28px);
    gap: 22px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contact-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
  }

  .contact-card h2 {
    font-size: 2.85rem;
    margin-bottom: 0.8rem;
  }

  .contact-copy p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form span {
    font-size: 0.82rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 7rem;
  }

  .submit-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 1.1rem;
  }

  .recent-slides {
    gap: 14px;
    padding: 8px calc((100vw - 86vw) / 2) 28px;
    scroll-padding-inline: calc((100vw - 86vw) / 2);
  }

  .recent-slide,
  .recent-copy {
    min-height: 430px;
  }

  .recent-copy {
    padding: 1rem 1rem 1.15rem;
  }

  .recent-copy h3 {
    max-width: 10ch;
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .recent-button {
    min-width: 8.5rem;
    min-height: 2.45rem;
    font-size: 0.92rem;
  }

  .recent-slider-footer {
    width: 86vw;
    margin-top: -6px;
    padding: 0;
    gap: 14px;
  }

  .recent-dots {
    gap: 8px;
  }

  .recent-dots button {
    width: 9px;
    height: 9px;
  }

  .recent-arrow {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
  }

  .recent-controls {
    gap: 10px;
  }

  .instagram-title {
    max-width: 13ch;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    line-height: 0.98;
  }

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

  .instagram-card {
    border-radius: 20px;
  }

  .instagram-card-copy {
    inset: auto 0.82rem 0.82rem 0.82rem;
  }

  .instagram-card-copy span {
    font-size: 0.6rem;
  }

  .instagram-card-copy strong {
    font-size: clamp(0.95rem, 4.6vw, 1.12rem);
  }

  .instagram-follow-button {
    width: 100%;
    min-height: 3.3rem;
    margin-top: 14px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
    margin-bottom: 3rem;
    padding: 1.75rem 1.35rem;
    border-radius: 1.1rem;
  }

  .footer-contact-label {
    font-size: 0.68rem;
    margin-bottom: 0.65rem;
  }

  .footer-contact-title {
    max-width: 12ch;
    font-size: 2.28rem;
    line-height: 1.05;
    margin-bottom: 1.75rem;
  }

  .footer-contact-button {
    width: 100%;
    min-height: 4rem;
    min-width: 0;
    padding: 0 1rem;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
  }

  .footer-email-link {
    font-size: 1rem;
  }

  .footer-link-groups {
    grid-template-columns: 1fr;
    gap: 1.7rem 1.25rem;
  }

  .footer-link-group:last-child {
    grid-column: auto;
  }

  .footer-link-group h4 {
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .footer-link-group a {
    font-size: 1rem;
  }

  .site-footer {
    padding: 4rem 0 2rem;
  }

  .footer-brand-row {
    min-height: 7.5rem;
    padding: 1.65rem 0;
  }

  .footer-brand {
    width: min(20rem, 84vw);
  }

  .footer-bottom-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.35rem;
  }

  .footer-bottom-row p {
    font-size: 0.78rem;
  }

  .footer-socials {
    gap: 0.85rem;
  }

  .footer-socials a {
    width: 2rem;
    height: 2rem;
  }
}

/* Production Standard Section Styles */
.production-section {
  background: #ffffff;
  color: var(--text);
  padding: 72px 0;
  overflow: hidden;
}

.production-inner {
  width: var(--page-width);
  margin: 0 auto;
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.production-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.production-kicker {
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 12px;
}

.production-title {
  font-size: var(--fs-section-sm);
  line-height: 1.06;
  color: var(--black);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.production-body {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.65);
  margin: 0 0 20px;
  max-width: 420px;
}

.production-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.production-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-body-sm);
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.75);
}

.production-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.3);
}

.production-button {
  min-width: 148px;
  min-height: 46px;
  color: var(--black);
  font-family: var(--font-head);
  font-size: var(--fs-nav);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid rgba(11, 11, 12, 0.24);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.production-button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.portfolio-button,
.service-link,
.production-button {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 16px 34px rgba(11, 15, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.production-button {
  color: var(--black);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(11, 11, 12, 0.16);
}

.portfolio-button:hover,
.service-link:hover,
.production-button:hover {
  background: rgba(255, 255, 255, 0.26);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 22px 44px rgba(11, 15, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.portfolio-button:hover {
  transform: translate(-50%, -50%) translateY(-1px);
}

.service-link:hover,
.production-button:hover {
  transform: translateY(-1px);
}

.production-button:hover {
  background: rgba(255, 255, 255, 0.68);
  color: var(--black);
  border-color: rgba(11, 11, 12, 0.2);
}

.production-media {
  position: relative;
}

.production-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(11, 11, 12, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.production-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .production-image-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  }

  .production-image-card:hover img {
    transform: scale(1.03);
  }
}

@media (max-width: 960px) {
  .production-section {
    padding: 56px 0;
  }
  .production-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .production-image-card {
    aspect-ratio: 16 / 10;
  }
}

/* ── Video Page ─────────────────────────────────────────────── */

.video-grid {
  position: relative;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  background: none;
  padding: 0;
  text-align: left;
  overflow: hidden;
}

.video-card img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.04);
}

.video-play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-play-button svg {
  width: 56px;
  height: 56px;
  color: white;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 10px;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-card:hover .video-play-button svg,
.video-card:focus-visible .video-play-button svg {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}

.video-card:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* ── Video Gallery (1–2 per row) ────────────────────────────── */

.video-gallery-main {
  width: var(--page-width);
  margin: 0 auto;
  padding-bottom: 80px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.video-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

/* Full-width row = one video; half = two side by side */
.video-gallery-item-wide {
  grid-column: 1 / -1;
}

.video-gallery-item-half {
  grid-column: span 1;
}

/* Vertical clips (e.g. Instagram Reels) */
.video-gallery-item.is-portrait {
  aspect-ratio: 9 / 16;
}

.video-gallery-item-wide.is-portrait {
  max-width: 420px;
  margin: 0 auto;
}

.video-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-gallery-item:hover img,
.video-gallery-item:focus-visible img {
  transform: scale(1.04);
}

.video-gallery-item .portfolio-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0) 48%, rgba(8, 10, 14, 0.06) 76%, rgba(8, 10, 14, 0.24) 100%);
  opacity: 0.76;
  transition: opacity 0.3s ease;
}

.video-gallery-item:hover .portfolio-cell-overlay {
  opacity: 1;
}

.video-gallery-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  color: var(--white);
  font-family: var(--font-head);
  font-size: var(--fs-card-title-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  max-width: calc(100% - 40px);
}

.video-gallery-item:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -2px;
}

@media (max-width: 720px) {
  .video-gallery-grid {
    gap: 12px;
  }
  /* On small screens, stack everything one per row for legibility */
  .video-gallery-item-half {
    grid-column: 1 / -1;
  }
  .video-gallery-item-half.is-portrait {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Video Modal ────────────────────────────────────────────── */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.video-modal-shell {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.video-modal.is-open .video-modal-shell {
  transform: translateY(0);
}

.video-modal-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.video-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  display: block;
}

.video-modal-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

body.video-modal-open {
  overflow: hidden;
}

/* ── About Page ─────────────────────────────────────────────── */

.about-main {
  width: var(--page-width);
  margin: 0 auto;
}

.about-hero {
  padding: 140px 0 64px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 14px 0 22px;
  font-family: var(--font-head);
  font-size: var(--fs-section);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.about-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 18px;
}

.about-body {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about-hero-actions .outline-button {
  min-width: 168px;
  min-height: 52px;
  padding: 0 30px;
  font-family: var(--font-head);
  font-size: var(--fs-button);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-hero-actions .outline-button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.about-cta-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.about-hero-actions .about-cta-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.about-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-hero-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-stats {
  padding: 24px 0 64px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-stat {
  background: var(--soft);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-stat span {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-approach {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 72px clamp(28px, 5vw, 72px);
  margin: 24px 0 64px;
}

.about-approach-heading {
  text-align: center;
  margin-bottom: 48px;
}

.about-approach-heading .section-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.about-approach-heading .section-title {
  color: var(--white);
}

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-approach-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  backdrop-filter: blur(8px);
}

.about-approach-step {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  margin-bottom: 18px;
}

.about-approach-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
}

.about-approach-card p {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.about-cta {
  padding: 0 0 88px;
}

.about-cta-card {
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: var(--white);
}

.about-cta-card h2 {
  margin: 12px 0 16px;
  font-family: var(--font-head);
  font-size: var(--fs-section-sm);
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 120px 0 48px;
  }
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-hero-media {
    order: -1;
  }
  .about-hero-media img {
    aspect-ratio: 16 / 11;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-approach-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact Page ───────────────────────────────────────────── */

.contact-page {
  /* Fallback shown only if the background video / poster fail to load. */
  background: #0c0f14;
}

/* ── Full-page background video ─────────────────────────────── */
.page-video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-video-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Light wash so the dark UI text stays legible over the footage,
   with a soft organic falloff rather than a flat overlay. */
.page-video-bg-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(135% 100% at 28% 32%, rgba(255, 255, 255, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.2) 0%, rgba(247, 248, 250, 0.11) 26%, rgba(247, 248, 250, 0.14) 100%);
}

.contact-page-main {
  padding: clamp(5.6rem, 7vw, 7rem) 0 0;
}

.contact-main-section {
  padding: clamp(3.4rem, 7vw, 6.6rem) 0 clamp(4rem, 7vw, 6.4rem);
}

.contact-page-container {
  width: var(--page-width);
  margin: 0 auto;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
  gap: clamp(2.2rem, 5vw, 5.2rem);
  align-items: start;
}

.contact-intro {
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.16));
  box-shadow:
    0 24px 56px rgba(11, 15, 22, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.contact-section-label {
  color: rgba(17, 17, 17, 0.46);
}

.contact-title {
  margin: 1rem 0 1.35rem;
  color: var(--black);
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact-description {
  max-width: 35rem;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

.contact-trust-line {
  max-width: 35rem;
  margin: 0.95rem 0 0;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.9rem;
  line-height: 1.58;
}

.contact-info-list {
  display: grid;
  gap: 1.45rem;
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  gap: 1rem;
  align-items: center;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  color: rgba(17, 17, 17, 0.74);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 26px rgba(11, 15, 22, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-info-icon svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-row h2 {
  margin: 0 0 0.14rem;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-info-row p,
.contact-info-row a {
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.96rem;
  line-height: 1.45;
}

.contact-info-row a {
  transition: color 0.2s ease;
}

.contact-info-row a:hover {
  color: var(--black);
}

.contact-form-wrapper {
  min-width: 0;
}

.contact-page-form-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
  padding: clamp(1.5rem, 3.2vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(248, 250, 252, 0.16)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.34), transparent 46%);
  box-shadow:
    0 28px 64px rgba(11, 15, 22, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-page-form-card label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-page-form-card label span {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-page-form-card textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-page-submit {
  width: fit-content;
  min-width: 12rem;
}

/* Translucent inputs at rest, solidifying on focus for clear typing. */
.contact-page .contact-page-form-card .quote-input {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(17, 17, 17, 0.1);
}

.contact-page .contact-page-form-card .quote-input:hover,
.contact-page .contact-page-form-card .quote-input:focus {
  background: rgba(255, 255, 255, 0.94);
}

/* Let the background video carry through the footer too. */
.contact-page .site-footer {
  background: rgba(244, 241, 238, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

@media (max-width: 960px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page-main {
    padding-top: 5.05rem;
  }

  .contact-main-section {
    padding: 2rem 0 3.25rem;
  }

  .contact-layout-grid {
    gap: 28px;
  }

  .contact-title {
    font-size: clamp(2.55rem, 15vw, 3.45rem);
  }

  .contact-info-list {
    gap: 14px;
  }

  .contact-page-form-card {
    padding: var(--mobile-space);
    border-radius: 24px;
  }

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

  .contact-page-form-card {
    gap: 14px;
  }

  .contact-page-form-card .quote-input {
    font-size: 16px;
  }

  .contact-page-form-card textarea {
    min-height: 8.5rem;
  }

  .contact-page-submit {
    width: 100%;
  }
}

.footer-bottom-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.theme-toggle {
  position: relative;
  width: 5.2rem;
  height: 2.7rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58) 48%, rgba(242, 245, 249, 0.7)),
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.9), transparent 46%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 14px 30px rgba(11, 15, 22, 0.1);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  color: rgba(17, 17, 17, 0.72);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 18px 34px rgba(11, 15, 22, 0.14);
}

.theme-toggle-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.theme-toggle-glyph,
.theme-toggle-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-glyph {
  width: 1rem;
  height: 1rem;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.theme-toggle-glyph-sun {
  left: 0.78rem;
}

.theme-toggle-glyph-moon {
  right: 0.8rem;
}

.theme-toggle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-thumb {
  left: 0.24rem;
  width: 2.18rem;
  height: 2.18rem;
  overflow: hidden;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 244, 249, 0.84)),
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.96), transparent 50%);
  box-shadow:
    0 10px 18px rgba(11, 15, 22, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.theme-toggle-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.12rem;
  height: 1.12rem;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.theme-toggle-thumb-sun {
  opacity: 1;
}

.theme-toggle-thumb-moon {
  width: 1.02rem;
  height: 1.02rem;
}

.theme-toggle[data-theme="dark"] .theme-toggle-thumb {
  transform: translate(2.54rem, -50%);
}

.theme-toggle[data-theme="dark"] .theme-toggle-thumb-sun,
.theme-toggle[data-theme="light"] .theme-toggle-thumb-moon {
  opacity: 0;
}

.theme-toggle[data-theme="light"] .theme-toggle-thumb-sun {
  opacity: 1;
}

.theme-toggle[data-theme="dark"] .theme-toggle-thumb-moon {
  opacity: 1;
}

.theme-toggle[data-theme="dark"] .theme-toggle-glyph-sun,
.theme-toggle[data-theme="light"] .theme-toggle-glyph-moon {
  opacity: 0.34;
}

.theme-toggle[data-theme="dark"] .theme-toggle-glyph-moon {
  opacity: 0;
}

.theme-toggle[data-theme="light"] .theme-toggle-glyph-sun {
  opacity: 0.8;
}

html:not([data-theme="dark"]) .trusted-section,
html:not([data-theme="dark"]) .services-section,
html:not([data-theme="dark"]) .production-section,
html:not([data-theme="dark"]) .featured-section,
html:not([data-theme="dark"]) .testimonials-section,
html:not([data-theme="dark"]) .faq-cta-section,
html:not([data-theme="dark"]) .instagram-section,
html:not([data-theme="dark"]) .quote-section,
html:not([data-theme="dark"]) .site-footer,
html:not([data-theme="dark"]) .contact-page .site-footer {
  background: transparent;
}

html:not([data-theme="dark"]) .trusted-fade-left {
  background: linear-gradient(to right, #ffffff, transparent);
}

html:not([data-theme="dark"]) .trusted-fade-right {
  background: linear-gradient(to left, #ffffff, transparent);
}

html[data-theme="dark"] {
  --white: #0a1626;
  --black: #f5f8fd;
  --text: #edf4ff;
  --muted: #a7b4c7;
  --line: rgba(228, 237, 251, 0.12);
  --soft: #091220;
  --dark: #091220;
  --dark-2: #1a365e;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] body,
html[data-theme="dark"] .portfolio-page {
  background-color: #0a1626;
  background-image:
    radial-gradient(circle at var(--c5-x1) var(--c5-y1), rgba(255, 255, 255, 0.05) 0px, transparent var(--c5-s1)),
    radial-gradient(circle at var(--c5-x2) var(--c5-y2), rgba(47, 102, 164, 0.24) 0px, transparent var(--c5-s2)),
    radial-gradient(circle at var(--c5-x3) var(--c5-y3), rgba(111, 143, 189, 0.12) 0px, transparent var(--c5-s3)),
    radial-gradient(circle at var(--c5-x4) var(--c5-y4), rgba(9, 18, 32, 0.55) 0px, transparent var(--c5-s4)),
    radial-gradient(circle at var(--c5-x5) var(--c5-y5), rgba(26, 54, 94, 0.3) 0px, transparent var(--c5-s5));
  animation:
    c5-blob1 24s ease-in-out infinite,
    c5-blob2 29s ease-in-out infinite,
    c5-blob3 26s ease-in-out infinite,
    c5-blob4 32s ease-in-out infinite,
    c5-blob5 21s ease-in-out infinite,
    c5-size1 19s ease-in-out infinite,
    c5-size2 23s ease-in-out infinite,
    c5-size3 20s ease-in-out infinite,
    c5-size4 27s ease-in-out infinite,
    c5-size5 18s ease-in-out infinite;
  color: var(--text);
}

html[data-theme="dark"] .site-header::after {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(122, 166, 220, 0.22), transparent 68%),
    linear-gradient(180deg, rgba(11, 16, 24, 0.62), rgba(11, 16, 24, 0) 100%);
}

html[data-theme="dark"] .header-inner {
  border-color: rgba(214, 226, 242, calc(0.32 * var(--header-edge)));
  background:
    linear-gradient(135deg, rgba(14, 20, 30, calc(0.78 * var(--header-glass))), rgba(14, 20, 30, calc(0.46 * var(--header-glass))) 44%, rgba(11, 17, 27, calc(0.62 * var(--header-glass)))),
    radial-gradient(circle at 16% 0%, rgba(122, 166, 220, calc(0.24 * var(--header-glass))), transparent 44%),
    radial-gradient(circle at 88% 12%, rgba(36, 75, 130, calc(0.2 * var(--header-glass))), transparent 42%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, calc(0.2 * var(--header-edge))) inset,
    0 18px 52px rgba(0, 0, 0, calc(0.24 * var(--header-glass))),
    0 3px 16px rgba(0, 0, 0, calc(0.18 * var(--header-glass)));
}

html[data-theme="dark"] .header-inner::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%),
    radial-gradient(ellipse at 50% 112%, rgba(122, 166, 220, 0.12), transparent 45%);
}

html[data-theme="dark"] .header-logo img {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .site-nav a,
html[data-theme="dark"] .cart-link,
html[data-theme="dark"] .nav-book-now,
html[data-theme="dark"] .mobile-menu-toggle,
html[data-theme="dark"] .mobile-menu-panel a {
  color: rgba(245, 248, 253, 0.96);
}

html[data-theme="dark"] .nav-book-now {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 248, 253, 0.98);
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .nav-book-now:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .mobile-menu-toggle {
  background: color-mix(in srgb, rgba(255, 255, 255, 0.12) calc((1 - var(--header-glass)) * 100%), rgba(255, 255, 255, 0.08));
  border-color: color-mix(in srgb, rgba(255, 255, 255, 0.22) calc((1 - var(--header-glass)) * 100%), rgba(255, 255, 255, 0.14));
}

html[data-theme="dark"] .mobile-menu-panel {
  background:
    linear-gradient(135deg, rgba(17, 24, 35, 0.92), rgba(15, 21, 31, 0.78) 48%, rgba(11, 18, 28, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(122, 166, 220, 0.26), transparent 46%),
    radial-gradient(circle at 92% 18%, rgba(36, 75, 130, 0.24), transparent 42%);
  border-color: rgba(214, 226, 242, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 4px 18px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mobile-menu-panel .mobile-book-now {
  background: rgba(122, 166, 220, 0.88);
  color: #09111c;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(180deg, rgba(16, 22, 31, 0.22) 0%, rgba(11, 17, 27, 0.16) 32%, rgba(2, 4, 7, 0.48) 100%);
}

html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .hero-subtitle,
html[data-theme="dark"] .hero-location {
  color: #fff;
}

html[data-theme="dark"] .trusted-section,
html[data-theme="dark"] .services-section,
html[data-theme="dark"] .production-section,
html[data-theme="dark"] .featured-section,
html[data-theme="dark"] .testimonials-section,
html[data-theme="dark"] .faq-cta-section,
html[data-theme="dark"] .instagram-section {
  background: transparent;
}

html[data-theme="dark"] .quote-section {
  background: transparent;
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .contact-kicker,
html[data-theme="dark"] .footer-contact-label,
html[data-theme="dark"] .production-kicker,
html[data-theme="dark"] .featured-header .section-kicker,
html[data-theme="dark"] .trusted-header .eyebrow,
html[data-theme="dark"] .contact-section-label,
html[data-theme="dark"] .footer-link-group h4,
html[data-theme="dark"] .project-gallery-heading p,
html[data-theme="dark"] .project-gallery-heading span {
  color: rgba(232, 239, 251, 0.54);
}

html[data-theme="dark"] .trusted-section {
  border-top-color: rgba(232, 239, 251, 0.08);
  border-bottom-color: rgba(232, 239, 251, 0.08);
}

html[data-theme="dark"] .trusted-pill {
  border-color: transparent;
  background: transparent;
  color: rgba(232, 239, 251, 0.82);
  box-shadow: none;
}

html[data-theme="dark"] .trusted-pill img {
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
  transition: transform 0.3s ease;
}

html[data-theme="dark"] .trusted-pill img[src*="/trusted-logos/"]:not([src*="/dark/"]) {
  opacity: 0;
  transition: none;
}

html[data-theme="dark"] .trusted-pill:hover {
  border-color: transparent;
  background: transparent;
  color: var(--text);
  transform: translateY(-1px);
}

html[data-theme="dark"] .project-lightbox-copy,
html[data-theme="dark"] .project-lightbox-eyebrow,
html[data-theme="dark"] .project-lightbox-close,
html[data-theme="dark"] .project-lightbox-nav,
html[data-theme="dark"] .project-lightbox-close svg,
html[data-theme="dark"] .project-lightbox-nav svg {
  color: #fff;
}

html[data-theme="dark"] .project-lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .trusted-fade-left {
  background: transparent;
}

html[data-theme="dark"] .trusted-fade-right {
  background: transparent;
}

html[data-theme="dark"] .carousel-arrow,
html[data-theme="dark"] .recent-arrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(232, 239, 251, 0.12);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .testimonial-arrow {
  background: transparent;
  color: var(--text);
  border-color: rgba(232, 239, 251, 0.34);
  box-shadow: none;
}

html[data-theme="dark"] .services-status-dot,
html[data-theme="dark"] .recent-dots button,
html[data-theme="dark"] .testimonial-dots button {
  border-color: rgba(232, 239, 251, 0.34);
  background: transparent;
}

html[data-theme="dark"] .services-status-dot.is-active,
html[data-theme="dark"] .recent-dots button.is-active,
html[data-theme="dark"] .testimonial-dots button.is-active {
  background: rgba(245, 248, 253, 0.92);
  border-color: rgba(245, 248, 253, 0.92);
}

html[data-theme="dark"] .production-title,
html[data-theme="dark"] .featured-title,
html[data-theme="dark"] .project-gallery-heading h1,
html[data-theme="dark"] .portfolio-hero h1,
html[data-theme="dark"] .about-hero-copy h1,
html[data-theme="dark"] .contact-title {
  color: var(--text);
}

html[data-theme="dark"] .portfolio-cell-title,
html[data-theme="dark"] .portfolio-cell-kicker,
html[data-theme="dark"] .fp-title,
html[data-theme="dark"] .fp-category,
html[data-theme="dark"] .video-gallery-caption,
html[data-theme="dark"] .service-body,
html[data-theme="dark"] .service-link,
html[data-theme="dark"] .more-info-button,
html[data-theme="dark"] .portfolio-cell-button,
html[data-theme="dark"] .portfolio-cell-button span,
html[data-theme="dark"] .portfolio-cell-button strong,
html[data-theme="dark"] .instagram-card-copy,
html[data-theme="dark"] .instagram-card-copy strong,
html[data-theme="dark"] .instagram-card-copy span {
  color: #fff;
}

html[data-theme="dark"] .production-body,
html[data-theme="dark"] .production-bullets li,
html[data-theme="dark"] .quote-heading p:not(.section-kicker),
html[data-theme="dark"] .quote-heading small,
html[data-theme="dark"] .faq-accordion-answer,
html[data-theme="dark"] .testimonial-card p,
html[data-theme="dark"] .testimonial-author small,
html[data-theme="dark"] .about-body,
html[data-theme="dark"] .contact-description,
html[data-theme="dark"] .contact-trust-line,
html[data-theme="dark"] .contact-info-row p,
html[data-theme="dark"] .contact-info-row a,
html[data-theme="dark"] .footer-bottom-row p,
html[data-theme="dark"] .footer-email-link,
html[data-theme="dark"] .footer-link-group a {
  color: rgba(232, 239, 251, 0.68);
}

html[data-theme="dark"] .testimonial-stat span,
html[data-theme="dark"] .about-stat span {
  color: #fff;
}

html[data-theme="dark"] .production-bullets li::before {
  background: rgba(232, 239, 251, 0.34);
}

html[data-theme="dark"] .testimonial-stat,
html[data-theme="dark"] .faq-accordion-item,
html[data-theme="dark"] .quote-form-card,
html[data-theme="dark"] .footer-contact-grid,
html[data-theme="dark"] .about-stat,
html[data-theme="dark"] .contact-intro,
html[data-theme="dark"] .contact-page-form-card,
html[data-theme="dark"] .production-image-card,
html[data-theme="dark"] .about-hero-media,
html[data-theme="dark"] .project-gallery-item,
html[data-theme="dark"] .video-gallery-item {
  border-color: rgba(232, 239, 251, 0.1);
  background:
    linear-gradient(145deg, rgba(22, 29, 41, 0.92), rgba(13, 18, 28, 0.86)),
    radial-gradient(circle at 16% 0%, rgba(122, 166, 220, 0.14), transparent 42%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .faq-cta-card.c5-animated-gradient {
  background-color: #17345b;
  background-image:
    radial-gradient(circle at var(--c5-x1) var(--c5-y1), rgba(232, 239, 251, 0.4) 0px, transparent var(--c5-s1)),
    radial-gradient(circle at var(--c5-x2) var(--c5-y2), rgba(74, 128, 190, 0.52) 0px, transparent var(--c5-s2)),
    radial-gradient(circle at var(--c5-x3) var(--c5-y3), rgba(191, 207, 229, 0.24) 0px, transparent var(--c5-s3)),
    radial-gradient(circle at var(--c5-x4) var(--c5-y4), rgba(11, 29, 53, 0.62) 0px, transparent var(--c5-s4)),
    radial-gradient(circle at var(--c5-x5) var(--c5-y5), rgba(47, 102, 164, 0.48) 0px, transparent var(--c5-s5));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .faq-cta-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 110%, rgba(190, 207, 232, 0.2), transparent 55%);
}

html[data-theme="dark"] .testimonial-card {
  border-color: rgba(232, 239, 251, 0.1);
  background:
    linear-gradient(145deg, rgba(22, 29, 41, 0.92), rgba(13, 18, 28, 0.86)),
    radial-gradient(circle at 16% 0%, rgba(122, 166, 220, 0.14), transparent 42%);
  box-shadow: none;
}

html[data-theme="dark"] .testimonial-card::after {
  color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .testimonial-stat strong,
html[data-theme="dark"] .testimonial-author strong,
html[data-theme="dark"] .faq-accordion-question,
html[data-theme="dark"] .quote-form-card label span,
html[data-theme="dark"] .contact-page-form-card label span,
html[data-theme="dark"] .contact-info-row h2 {
  color: var(--text);
}

html[data-theme="dark"] .faq-accordion-item:hover,
html[data-theme="dark"] .faq-accordion-item.is-active {
  border-color: rgba(232, 239, 251, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .faq-accordion-question svg {
  color: rgba(122, 166, 220, 0.96);
}

html[data-theme="dark"] .quote-input,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea,
html[data-theme="dark"] .contact-page .contact-page-form-card .quote-input {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(232, 239, 251, 0.12);
}

html[data-theme="dark"] .quote-input:hover,
html[data-theme="dark"] .contact-form input:hover,
html[data-theme="dark"] .contact-form textarea:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 239, 251, 0.2);
}

html[data-theme="dark"] .quote-input:focus,
html[data-theme="dark"] .contact-form input:focus,
html[data-theme="dark"] .contact-form textarea:focus,
html[data-theme="dark"] .contact-page .contact-page-form-card .quote-input:hover,
html[data-theme="dark"] .contact-page .contact-page-form-card .quote-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(122, 166, 220, 0.62);
  box-shadow: 0 0 0 3px rgba(122, 166, 220, 0.18);
}

html[data-theme="dark"] .quote-input::placeholder,
html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder {
  color: rgba(232, 239, 251, 0.34);
}

html[data-theme="dark"] .footer-contact-button,
html[data-theme="dark"] .faq-cta-button,
html[data-theme="dark"] .quote-submit-button {
  background: rgba(122, 166, 220, 0.92);
  color: #09111c;
  border-color: rgba(122, 166, 220, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .footer-contact-button:hover,
html[data-theme="dark"] .faq-cta-button:hover,
html[data-theme="dark"] .quote-submit-button:hover {
  background: rgba(146, 186, 236, 0.98);
  border-color: rgba(146, 186, 236, 0.98);
}

html[data-theme="dark"] .quote-submit-button:disabled {
  color: #09111c;
}

html[data-theme="dark"] .form-submit-status {
  color: rgba(232, 239, 251, 0.78);
}

html[data-theme="dark"] .form-submit-status[data-tone="success"] {
  color: rgba(177, 238, 190, 0.94);
}

html[data-theme="dark"] .form-submit-status[data-tone="error"] {
  color: rgba(255, 182, 182, 0.94);
}

html[data-theme="dark"] .featured-portfolio-btn,
html[data-theme="dark"] .instagram-follow-button {
  border-color: rgba(232, 239, 251, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .featured-portfolio-btn:hover,
html[data-theme="dark"] .instagram-follow-button:hover,
html[data-theme="dark"] .about-hero-actions .outline-button:hover,
html[data-theme="dark"] .about-cta-dark {
  background: rgba(245, 248, 253, 0.96);
  color: #0b1118;
  border-color: rgba(245, 248, 253, 0.96);
}

html[data-theme="dark"] .portfolio-button,
html[data-theme="dark"] .service-link,
html[data-theme="dark"] .production-button,
html[data-theme="dark"] .back-button {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(245, 248, 253, 0.98);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

html[data-theme="dark"] .portfolio-button:hover,
html[data-theme="dark"] .service-link:hover,
html[data-theme="dark"] .production-button:hover,
html[data-theme="dark"] .back-button:hover {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(245, 248, 253, 0.98);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

html[data-theme="dark"] .about-hero-actions .about-cta-dark:hover {
  background: rgba(122, 166, 220, 0.92);
  color: #09111c;
  border-color: rgba(122, 166, 220, 0.92);
}

html[data-theme="dark"] .instagram-follow-button {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .footer-contact-grid {
  background:
    linear-gradient(135deg, rgba(25, 33, 46, 0.96), rgba(15, 21, 31, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(122, 166, 220, 0.18), transparent 44%);
}

html[data-theme="dark"] .footer-contact-main,
html[data-theme="dark"] .footer-contact-title,
html[data-theme="dark"] .footer-email-link:hover,
html[data-theme="dark"] .footer-link-group a:hover {
  color: var(--text);
}

html[data-theme="dark"] .footer-email-link svg,
html[data-theme="dark"] .footer-socials a {
  color: rgba(245, 248, 253, 0.86);
  stroke: currentColor;
}

html[data-theme="dark"] .site-footer {
  background: transparent;
  border-top-color: rgba(232, 239, 251, 0.08);
}

html[data-theme="dark"] .footer-brand-row,
html[data-theme="dark"] .footer-bottom-row {
  border-top-color: rgba(232, 239, 251, 0.08);
}

html[data-theme="dark"] .footer-brand img {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .contact-page {
  background-color: #0a1626;
}

html[data-theme="dark"] .page-video-bg-scrim {
  background:
    radial-gradient(135% 100% at 28% 32%, rgba(122, 166, 220, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(9, 14, 21, 0.42) 0%, rgba(9, 14, 21, 0.18) 26%, rgba(9, 14, 21, 0.36) 100%);
}

html[data-theme="dark"] .contact-page .site-footer {
  background: transparent;
  border-top-color: rgba(232, 239, 251, 0.1);
}

html[data-theme="dark"] .contact-info-icon {
  color: rgba(245, 248, 253, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 239, 251, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .about-stat {
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .about-lead {
  color: rgba(245, 248, 253, 0.92);
}

html[data-theme="dark"] .about-approach {
  background: linear-gradient(145deg, rgba(15, 21, 31, 0.96), rgba(11, 16, 24, 0.96));
  border: 1px solid rgba(232, 239, 251, 0.08);
}

html[data-theme="dark"] .about-approach-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 239, 251, 0.1);
}

html[data-theme="dark"] .about-approach-heading .section-title,
html[data-theme="dark"] .about-approach-card h3 {
  color: #f5f8fd;
}

html[data-theme="dark"] .about-approach-step {
  color: rgba(245, 248, 253, 0.72);
}

html[data-theme="dark"] .about-approach-heading .section-kicker,
html[data-theme="dark"] .about-approach-card p {
  color: rgba(232, 239, 251, 0.78);
}

html[data-theme="dark"] .footer-bottom-row p,
html[data-theme="dark"] .footer-link-group a,
html[data-theme="dark"] .footer-email-link {
  color: rgba(232, 239, 251, 0.6);
}

html[data-theme="dark"] .footer-socials a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-bottom-actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* ── Home hero collage splash (scroll-locked intro) ───────────── */
.hero-collage {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #0a0b0d;
  color: #fff;
}
.hero-collage .hc-cols {
  position: absolute;
  inset: -12% 0;
  display: flex;
  gap: 14px;
  padding: 0 14px;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: transform;
}
.hero-collage.hc-ready .hc-cols {
  opacity: 1;
}
.hero-collage .hc-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}
.hero-collage .hc-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  background: #16181c;
}
.hero-collage .hc-col img.hc-ratio-square {
  aspect-ratio: 1 / 1;
}
.hero-collage .hc-col img.hc-ratio-landscape {
  aspect-ratio: 4 / 3;
}
.hero-collage .hc-col img.hc-ratio-portrait {
  aspect-ratio: 4 / 5;
}
.hero-collage .hc-center {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}
.hero-collage .hc-plate {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hc-blur {
  position: relative;
  isolation: isolate;
}
.hc-blur::before {
  content: "";
  position: absolute;
  inset: -0.2em -0.38em;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(18px);
  pointer-events: none;
}
.hero-collage .hc-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}
.hero-collage .hc-title {
  display: inline-block;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(2.9rem, 4.3vw, 3.6rem);
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.76);
}
.hero-collage .hc-sub {
  display: inline-block;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}
.hero-collage .hc-enter {
  position: relative;
  isolation: isolate;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(48px, 9vh, 96px);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: rgba(11, 11, 12, 0.92);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.36) 48%, rgba(238, 244, 252, 0.5));
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-round);
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 18px 52px rgba(8, 10, 14, 0.2);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-collage .hc-enter:hover {
  transform: translateY(-2px) scale(1.02);
}
.hero-collage .hc-enter:focus,
.hero-collage .hc-enter:focus-visible {
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 18px 52px rgba(8, 10, 14, 0.2);
}
.hero-collage .hc-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.6);
}
/* Scroll lock applied by JS until ENTER is pressed */
body.hc-locked {
  overflow: hidden;
}
@media (max-width: 840px) {
  .hero-collage .hc-eyebrow { font-size: 0.63rem; letter-spacing: 0.3em; }
  .hero-collage .hc-title { font-size: clamp(1.3rem, 5.6vw, 2.15rem); }
  .hero-collage .hc-sub { font-size: 0.95rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-collage .hc-cols,
  .hero-collage .hc-col { will-change: auto; }
}
