:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #0b1020;
  --muted: rgba(11, 16, 32, 0.72);
  --line: rgba(11, 16, 32, 0.12);
  --brand: #e11d2e;
  --brand2: #1d4ed8;
  --shadow: 0 14px 32px rgba(11, 16, 32, 0.12);
  --radius: 18px;
  --promo-height: 38px;
  --nav-height: 56px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.18);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 8px 16px;
  background: var(--brand2);
  color: #fff;
  border-radius: 999px;
  z-index: 1200;
}

.skip-link:focus {
  left: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.is-hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 18px;
  margin: 0 auto;
}

.section {
  padding: 40px 0;
}

.section.compact {
  padding: 40px 0;
}

/* ============================================
   THEME TOKENS - Proper contrast handling
   ============================================ */

.theme-light {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #0b1020;
  --muted: rgba(11, 16, 32, 0.72);
  --line: rgba(11, 16, 32, 0.12);
  background: var(--bg);
  color: var(--ink);
}

.theme-dark {
  --bg: #0b1020;
  --surface: rgba(255, 255, 255, 0.08);
  --ink: #f8fafc;
  --muted: rgba(255, 255, 255, 0.75);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  background: var(--bg);
  color: var(--ink);
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark strong {
  color: #fff;
}

.theme-dark p {
  color: var(--muted);
}

.theme-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.theme-dark .card:hover {
  border-color: rgba(96, 165, 250, 0.7);
}

.theme-dark .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.theme-dark .btn-outline:hover {
  border-color: rgba(96, 165, 250, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.theme-dark .muted {
  color: var(--muted);
}

.theme-dark .stat-chip {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.theme-dark .stat-chip .stat {
  color: #fff;
}

.theme-dark .stat-chip .label {
  color: var(--muted);
}

.theme-dark--slim {
  padding: 40px 0;
}

/* ============================================
   SELECTIVE EMPHASIS - Use .em class only
   ============================================ */

/* Primary emphasis - blue accent for key words */
.em {
  color: var(--brand2);
  font-weight: inherit;
}

/* Legacy support - remove auto-coloring from text-accent */
.text-accent {
  color: var(--brand2);
}

/* Dark theme emphasis adjustments */
.theme-dark .em,
.theme-dark .text-accent {
  color: #60a5fa;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-head h1,
.section-head h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 46, 0.35), rgba(29, 78, 216, 0.35), transparent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand2);
  margin-bottom: 10px;
}

.theme-dark .eyebrow {
  color: #60a5fa;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(225, 29, 46, 0.32);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(29, 78, 216, 0.4);
  background: rgba(29, 78, 216, 0.04);
}

.btn-catalogue {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
}

.btn-catalogue:hover {
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 78, 216, 0.35);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

/* ============================================
   PROMO STRIP / MARQUEE
   ============================================ */

.promo-strip {
  background: var(--brand);
  color: #fff;
  height: var(--promo-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.promo-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  will-change: transform;
  animation: promo-marquee 26s linear infinite;
  padding-left: 18px;
}

.promo-track span {
  font-size: 13px;
  letter-spacing: 0.2px;
  opacity: 0.95;
}

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

@media (prefers-reduced-motion: reduce) {
  .promo-track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: var(--promo-height);
  z-index: 999;
  background: transparent;
}

.nav-pill {
  margin: 10px auto 0;
  padding: 0 16px;
  min-height: var(--nav-height);
  background: linear-gradient(120deg, rgba(29, 78, 216, 0.22), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(29, 78, 216, 0.18);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(11, 16, 32, 0.12), 0 0 0 1px rgba(29, 78, 216, 0.12),
    0 10px 34px rgba(225, 29, 46, 0.12);
}

.site-header.is-scrolled .nav-pill {
  background: linear-gradient(120deg, rgba(29, 78, 216, 0.26), rgba(255, 255, 255, 0.95));
  box-shadow: 0 12px 30px rgba(11, 16, 32, 0.14), 0 0 0 1px rgba(29, 78, 216, 0.18),
    0 16px 40px rgba(225, 29, 46, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -120%;
  width: 60%;
  height: 180%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: gloss-sweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gloss-sweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  50% {
    transform: translateX(220%);
    opacity: 0.2;
  }
  100% {
    transform: translateX(220%);
    opacity: 0;
  }
}

.nav-logo img {
  width: 120px;
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.35)) drop-shadow(0 0 14px rgba(59, 130, 246, 0.32))
    drop-shadow(0 0 24px rgba(239, 68, 68, 0.18));
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
}

.burger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--ink);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 998;
}

.nav-scrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-top: 24px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero h1 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}

.hero-actions.hero-actions--left {
  justify-content: flex-start;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 6px 14px;
  font-size: 0.85rem;
  min-height: 32px;
}

.media-card {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-badge {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================
   PROOF STRIP / STATS
   ============================================ */

.proof-strip {
  text-align: center;
}

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

.stat-chip {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.stat-chip .stat {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
}

.stat-chip .label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   GRIDS
   ============================================ */

.services-grid,
.portfolio-grid,
.gallery-grid,
.values-grid,
.contact-grid,
.order-grid,
.footer-grid,
.services-detail-grid,
.info-grid,
.why-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.turnaround {
  font-size: 0.85rem;
  color: var(--muted);
}

.info-grid,
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 0.9rem;
  background: rgba(29, 78, 216, 0.05);
}

/* ============================================
   ORDER FORM
   ============================================ */

.order-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.stepper {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.stepper li {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.stepper .step {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand2);
}

.form-row {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 14px;
  font-size: 0.85rem;
  min-height: 44px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pill:hover {
  border-color: rgba(29, 78, 216, 0.4);
}

.pill.is-active {
  border-color: var(--brand2);
  color: var(--brand2);
  background: rgba(29, 78, 216, 0.1);
}

.input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: var(--surface);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-stepper button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.2rem;
  font-weight: 600;
}

.quantity-stepper button:hover {
  border-color: rgba(29, 78, 216, 0.4);
  background: rgba(29, 78, 216, 0.04);
}

.helper-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.order-summary {
  background: rgba(29, 78, 216, 0.05);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(29, 78, 216, 0.2);
}

.order-summary dt {
  font-weight: 600;
}

.order-summary dd {
  margin-bottom: 8px;
  color: var(--muted);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio-grid,
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portfolio-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-thumb {
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.portfolio-thumb img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}

.portfolio-thumb:hover img {
  transform: scale(1.02);
}

.portfolio-card .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.filter-controls button {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 16px;
  min-height: 44px;
  background: transparent;
}

.filter-controls button.is-active {
  border-color: var(--brand2);
  background: rgba(29, 78, 216, 0.1);
  color: var(--brand2);
}

/* ============================================
   3-WAY MOTION WALL (Reusable Component)
   ============================================ */

.motion-wall {
  display: grid;
  gap: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.02), rgba(225, 29, 46, 0.02));
  padding: 8px 0;
}

.motion-wall-row {
  overflow: hidden;
  position: relative;
}

.motion-wall-track {
  display: inline-flex;
  gap: 14px;
  width: max-content;
  animation: motion-wall-slide var(--motion-duration, 60s) linear infinite;
  animation-direction: var(--motion-direction, normal);
  cursor: grab;
  will-change: transform;
  padding: 4px;
}

.motion-wall-track.is-paused {
  animation-play-state: paused;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 78, 216, 0.3) transparent;
}

.motion-wall-track::-webkit-scrollbar {
  height: 6px;
}

.motion-wall-track::-webkit-scrollbar-track {
  background: transparent;
}

.motion-wall-track::-webkit-scrollbar-thumb {
  background: rgba(29, 78, 216, 0.3);
  border-radius: 3px;
}

.motion-wall-track:active {
  cursor: grabbing;
}

.motion-wall-tile {
  width: clamp(160px, 20vw, 280px);
  flex: 0 0 auto;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.motion-wall-tile:hover {
  transform: scale(1.03);
}

.motion-wall-tile:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

.motion-wall-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.12);
}

/* Skeleton tiles for loading state */
.motion-wall-tile.skeleton-tile {
  background: linear-gradient(90deg, rgba(11, 16, 32, 0.06), rgba(11, 16, 32, 0.12), rgba(11, 16, 32, 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

@keyframes motion-wall-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Static grid fallback for reduced motion */
.motion-wall--static {
  padding: 16px;
}

.motion-wall-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.motion-wall-static-grid .motion-wall-tile {
  width: 100%;
}

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

/* Legacy gallery wall support */
.gallery-wall {
  display: grid;
  gap: 14px;
}

.gallery-wall-row {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.gallery-wall-track {
  display: inline-flex;
  gap: 12px;
  width: max-content;
  animation: gallery-wall-slide var(--wall-duration, 84s) linear infinite;
  animation-direction: var(--wall-direction, normal);
  cursor: grab;
  will-change: transform;
}

.gallery-wall-track.is-paused {
  animation-play-state: paused;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: thin;
}

.gallery-wall-track:active {
  cursor: grabbing;
}

.gallery-wall-tile {
  width: clamp(140px, 18vw, 260px);
  flex: 0 0 auto;
}

.gallery-wall-tile img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@keyframes gallery-wall-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  max-width: 920px;
  width: 100%;
  background: #0b1020;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
}

.lightbox-dialog img {
  width: 100%;
  border-radius: 16px;
}

.lightbox-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.lightbox-controls button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 16px;
  transition: background 0.15s ease;
}

.lightbox-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(225, 29, 46, 0.12));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(29, 78, 216, 0.18);
}

.cta-band h3 {
  font-family: "Manrope", system-ui, sans-serif;
  margin-bottom: 8px;
}

/* Catalogue CTA - special styling */
.catalogue-cta {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 140, 126, 0.12));
  border-color: rgba(37, 211, 102, 0.25);
}

/* Portfolio catalogue embed */
.catalogue-embed {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.catalogue-embed-head {
  text-align: center;
  margin-bottom: 20px;
}

.catalogue-frame-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 16, 32, 0.08);
  aspect-ratio: 16 / 10;
  background: #fff;
}

.catalogue-frame-wrap::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.catalogue-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@supports (aspect-ratio: 16 / 10) {
  .catalogue-frame-wrap::before {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 48px 0 24px;
  background: #f8f9fc;
  border-top: 1px solid rgba(11, 16, 32, 0.08);
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer-grid h4 {
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.map-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.notice {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.2);
  color: var(--muted);
  margin-top: 16px;
}

/* ============================================
   TOAST
   ============================================ */

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0b1020;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 3000;
}

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

/* ============================================
   ORDER HERO
   ============================================ */

.order-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 32px 20px;
  color: #fff;
  background: #0b1020;
}

.order-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.order-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 16, 32, 0.72), rgba(11, 16, 32, 0.3));
  z-index: 1;
}

.order-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.order-hero .hero-content h1,
.order-hero .hero-content p,
.order-hero .hero-content .eyebrow {
  color: #fff;
}

.order-hero .hero-content .lead {
  color: rgba(255, 255, 255, 0.85);
}

.order-hero .hero-actions {
  justify-content: center;
}

/* ============================================
   SERVICE ROWS
   ============================================ */

.service-row {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.service-row img,
.service-row video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-meta {
  display: grid;
  gap: 10px;
}

.service-meta h2 {
  font-family: "Manrope", system-ui, sans-serif;
}

/* ============================================
   WORK WALL
   ============================================ */

.work-wall {
  column-count: 2;
  column-gap: 16px;
}

.work-wall .work-card {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  text-align: left;
  break-inside: avoid;
  margin-bottom: 16px;
}

.work-wall img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}

.work-wall .work-card:hover img {
  transform: scale(1.02);
}

/* ============================================
   SKELETON LOADERS
   ============================================ */

.skeleton {
  background: linear-gradient(90deg, rgba(11, 16, 32, 0.05), rgba(11, 16, 32, 0.12), rgba(11, 16, 32, 0.05));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius);
  height: 220px;
}

.theme-dark .skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (min-width: 480px) {
  .hero-actions {
    justify-content: flex-start;
  }

  .chip-row {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  :root {
    --promo-height: 42px;
    --nav-height: 64px;
  }

  .container {
    padding: 0 28px;
  }

  .section {
    padding: 64px 0;
  }

  .section.compact {
    padding: 64px 0;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .order-hero {
    min-height: 360px;
  }

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

  .service-row:nth-child(even) .service-media {
    order: 2;
  }

  .service-row:nth-child(even) .service-copy {
    order: 1;
  }

  .work-wall {
    column-count: 3;
  }

  .motion-wall-tile {
    width: clamp(180px, 22vw, 300px);
  }
}

@media (min-width: 1024px) {
  .nav-links a:not(.btn):not(:first-child)::before {
    content: "";
    position: absolute;
    left: -10px;
    height: 16px;
    width: 1px;
    background: rgba(11, 16, 32, 0.16);
  }

  .nav-links a {
    padding: 0 10px;
  }

  .work-wall {
    column-count: 4;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--promo-height) + 12px);
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(29, 78, 216, 0.16);
    box-shadow: 0 16px 36px rgba(11, 16, 32, 0.2);
    width: min(280px, 90vw);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 999;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .toast,
  .card,
  .logo-wrap::after,
  .skeleton,
  .motion-wall-track,
  .gallery-wall-track,
  .promo-track {
    transition: none;
    animation: none;
  }
}

.nav-open {
  overflow: hidden;
}

.gallery-categories {
  display: grid;
  gap: 28px;
}

.gallery-category-head h3 {
  margin-bottom: 6px;
}

.gallery-category-head p {
  color: var(--muted);
  margin-bottom: 14px;
}

.gallery-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 240px);
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gallery-card,
.gallery-row-skeleton {
  border-radius: 14px;
  min-height: 160px;
  scroll-snap-align: start;
}

.gallery-card {
  border: 0;
  padding: 0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(11, 16, 32, 0.12);
}

.gallery-card-media,
.gallery-card-media img,
.gallery-card-media video {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-card-media {
  position: relative;
}

.gallery-card-media img,
.gallery-card-media video {
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-video-pill {
  position: absolute;
  margin: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.75);
  color: #fff;
  font-size: 0.75rem;
}

.gallery-empty {
  color: var(--muted);
  margin-top: 8px;
}

.gallery-row-skeleton {
  background: linear-gradient(90deg, rgba(11, 16, 32, 0.05), rgba(11, 16, 32, 0.12), rgba(11, 16, 32, 0.05));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}

/* Load More Button */
.gallery-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 160px;
  border-radius: 14px;
  border: 2px dashed rgba(11, 16, 32, 0.2);
  background: rgba(11, 16, 32, 0.03);
  cursor: pointer;
  transition: all 0.2s ease;
  scroll-snap-align: start;
  gap: 8px;
}

.gallery-load-more:hover {
  border-color: var(--brand);
  background: rgba(227, 34, 39, 0.05);
}

.gallery-load-more:hover .load-more-icon {
  background: var(--brand);
  color: #fff;
}

.load-more-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 16, 32, 0.08);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  transition: all 0.2s ease;
}

.load-more-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.gallery-load-more.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.gallery-load-more.is-loading .load-more-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Gallery Preview Modal */
.gallery-preview {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 18px;
}

.gallery-preview.is-open {
  display: flex;
}

/* Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0b1020;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-nav:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.gallery-nav:disabled {
  cursor: not-allowed;
}

.gallery-nav-prev {
  left: 20px;
}

.gallery-nav-next {
  right: 20px;
}

.gallery-preview-dialog {
  width: min(920px, calc(100% - 120px));
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}

.gallery-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gallery-preview-counter {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(11, 16, 32, 0.06);
  border-radius: 20px;
}

.gallery-preview-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-preview-close:hover {
  background: rgba(227, 34, 39, 0.08);
  border-color: var(--brand);
  color: var(--brand);
}

.gallery-preview-media img,
.gallery-preview-media video {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  background: #0b1020;
}

.gallery-preview-title {
  margin: 10px 0 4px;
  font-weight: 600;
  word-break: break-word;
}

.gallery-preview-meta {
  color: var(--muted);
  margin: 0;
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
  .gallery-nav {
    width: 42px;
    height: 42px;
  }
  
  .gallery-nav-prev {
    left: 8px;
  }
  
  .gallery-nav-next {
    right: 8px;
  }
  
  .gallery-preview-dialog {
    width: calc(100% - 20px);
    padding: 12px;
  }
  
  .gallery-preview {
    padding: 10px;
  }
}
