/* Stay Seen — Visibility Agency
   Structural design language adapted from the Vercel design system spec
   (canvas / ink / hero-scale gradient / eyebrow labels / pill CTAs /
   stacked shadows / polarity-flipped dark band), re-skinned in the
   Stay Seen brand kit: warm cream canvas, ink + warm-black, taupe accent,
   Cormorant Garamond display, Montserrat labels, Inter body. */

:root {
  /* Color — Stay Seen brand kit */
  --primary: #181817;       /* ink */
  --warm-black: #1C1814;    /* dark band */
  --on-primary: #ffffff;
  --ink: #181817;
  --body: #5f574e;          /* warm body text (derived) */
  --mute: #8C7E71;          /* taupe — muted text + accent */
  --taupe: #8C7E71;         /* brand accent */
  --taupe-deep: #6f6357;    /* darker taupe for hover (derived) */
  --hairline: #ececec;      /* neutral hairline */
  --hairline-strong: #d8d8d8;
  --canvas: #ffffff;
  --canvas-soft: #ffffff;   /* clean white page background */
  --canvas-soft-2: #ffffff; /* white inset background */
  --link: #8C7E71;

  /* Brand gradient stops — warm taupe / cream family (derived from kit) */
  --g-1: #c9b9a6;
  --g-2: #8C7E71;
  --g-3: #ffffff;
  --g-4: #f3f3f3;
  --cyan: #8C7E71;          /* accent alias kept for existing rules */

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Montserrat", system-ui, sans-serif;  /* label face (uppercase, tracked) */

  /* Radius */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 100px;
  --r-full: 9999px;

  /* Spacing */
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-2xl: 40px;
  --s-3xl: 48px;
  --s-4xl: 64px;
  --s-5xl: 96px;

  /* Elevation (stacked, with inset hairline ring) */
  --e2: 0 0 0 1px #00000014, 0px 1px 1px #00000005, 0px 2px 2px #0000000a;
  --e3: 0 0 0 1px #00000014, 0px 2px 2px #0000000a, 0px 8px 8px -8px #0000000a;
  --e4: 0 0 0 1px #00000014, 0px 2px 2px #0000000a, 0px 8px 16px -4px #0000000a;

  --page: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
  background: var(--canvas-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--primary); color: #f2f2f2; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-block;
  margin-bottom: var(--s-md);
}
.eyebrow.dark { color: var(--taupe); }

.section-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin: 0 0 var(--s-md);
}
.section-title.light { color: var(--on-primary); }

.section-sub {
  font-size: 18px;
  line-height: 28px;
  color: var(--body);
  max-width: 560px;
  margin: 0;
}
.section-sub.light { color: #b3b3b3; }
.section-sub a { color: var(--link); }

.section { padding: var(--s-5xl) 0; }
.section-head { margin-bottom: var(--s-3xl); }

.related-services a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  background: var(--canvas-soft);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}
.related-services a:hover {
  border-color: var(--hairline-strong);
  background: var(--canvas-soft-2);
}

.visibility-platforms {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-4xl) 0 var(--s-5xl);
}
.platform-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-lg);
}
/* Rotating platform logos — single logo springs up/down through the set */
.platform-rotator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.4em;
  overflow: hidden;
  font-size: clamp(40px, 6.4vw, 88px);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.platform-item {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.26em;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0;
  transform: translateY(90%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s ease;
  will-change: transform, opacity;
}
.platform-item.is-prev {
  transform: translateY(-90%);
  opacity: 0;
}
.platform-item.is-active {
  transform: translateY(0);
  opacity: 1;
}
.platform-item svg {
  width: 0.9em;
  height: 0.9em;
  flex: none;
}
/* optical-size balancing — these marks fill their box differently */
.platform-youtube svg { width: 1.5em; height: 1.5em; }
.platform-ai svg { width: 1.04em; height: 1.04em; }
.platform-item .p-word { font-weight: 700; }
.platform-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--body);
  max-width: 22ch;
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .platform-item,
  .platform-item.is-prev { transform: none; transition: opacity 0.4s ease; }
}

/* ---------- Global reach — interactive globe ---------- */
.globe-band {
  background: var(--warm-black);
  color: var(--on-primary);
  overflow: hidden;
}
.globe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-4xl);
  align-items: center;
}
.reach-lead {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #f1ebe2;
  margin: 0 0 var(--s-sm);
}
.globe-copy .section-sub.light { color: #a89e90; max-width: 48ch; }
.globe-cities-label {
  display: block;
  margin-top: var(--s-xl);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.globe-cities {
  list-style: none;
  margin: var(--s-sm) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.globe-cities li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #cfc6ba;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  padding: 6px 13px;
  cursor: default;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.globe-cities li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9b29a;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.globe-cities li:hover,
.globe-cities li.is-active {
  color: #f4efea;
  border-color: rgba(212, 186, 142, 0.5);
  background: rgba(212, 186, 142, 0.07);
}
.globe-cities li:hover::before,
.globe-cities li.is-active::before {
  background: #f1e6d4;
  box-shadow: 0 0 8px 1px rgba(212, 186, 142, 0.7);
}
.globe-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.globe-canvas,
.globe-markers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.globe-canvas {
  cursor: grab;
  opacity: 0;
  transition: opacity 1.2s ease;
  contain: layout paint size;
  touch-action: pan-y;
}
.globe-markers { pointer-events: none; }
.globe-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.globe-label {
  position: absolute;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4efea;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: rgba(28, 24, 20, 0.72);
  border: 1px solid rgba(212, 186, 142, 0.28);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.globe-label.is-shown { opacity: 1; }
@media (max-width: 900px) {
  .globe-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s-2xl); }
  .globe-wrap { max-width: 440px; order: 2; }
}
@media (max-width: 620px) {
  .globe-wrap { max-width: 320px; }
  .globe-label { font-size: 10px; padding: 2px 7px; letter-spacing: 0.06em; }
  .reach-lead { font-size: 17px; }
}

/* ---------- Before / after image comparison ---------- */
.compare {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin: var(--s-2xl) auto 0;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--e4);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--canvas-soft);
}
.compare-pane { position: absolute; inset: 0; }
.compare-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.compare-before { will-change: clip-path; }
.compare-tag {
  position: absolute;
  top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28, 24, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 5px 11px;
  border-radius: var(--r-full);
  pointer-events: none;
}
.compare-tag-before { left: 14px; }
.compare-tag-after { right: 14px; }
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 46px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
}
.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
}
.compare-knob {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--e4);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease;
}
.compare.is-dragging .compare-knob { transform: scale(1.08); }
.compare-knob svg { width: 20px; height: 20px; }
.compare-handle:focus-visible { outline: none; }
.compare-handle:focus-visible .compare-knob { box-shadow: var(--e4), 0 0 0 3px var(--taupe); }
@media (max-width: 620px) {
  .compare-knob { width: 40px; height: 40px; }
  .compare-tag { font-size: 10px; padding: 4px 9px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn.solid { background: var(--primary); color: var(--on-primary); }
.btn.solid:hover { background: #000; }
.btn.outline { background: var(--canvas); color: var(--ink); border-color: var(--hairline); box-shadow: var(--e2); }
.btn.outline:hover { border-color: var(--hairline-strong); }
.btn.invert { background: var(--canvas); color: var(--ink); }
.btn.invert:hover { background: #f2f2f2; }
.btn.full { width: 100%; }

/* ---------- Nav (transparent over hero → solid on scroll) ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav[data-solid="true"] {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--page);
  margin: 0 auto;
  height: 72px;
  padding: 0 var(--s-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; display: block; }
.footer-brand .brand-logo { height: 42px; }

/* logo color swaps with nav state */
.brand-dark { display: none; }
.nav[data-solid="true"] .brand-light { display: none; }
.nav[data-solid="true"] .brand-dark { display: block; }

/* Right cluster: language toggle + burger */
.nav-right { display: flex; align-items: center; gap: 10px; }
.brand-wordmark { height: 38px; }
.nav-book { height: 40px; padding: 0 18px; font-size: 13px; }
.nav[data-solid="true"] .nav-book { background: var(--primary); color: var(--on-primary); }
.nav[data-solid="true"] .nav-book:hover { background: #000; }
@media (max-width: 560px) {
  .nav-book { display: none; }
}
.lang-toggle {
  display: none;
  font-family: var(--mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  height: 32px; padding: 0 14px;
  border-radius: var(--r-full);
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lang-toggle:hover { background: rgba(255,255,255,0.14); }
.nav[data-solid="true"] .lang-toggle {
  color: var(--ink);
  border-color: var(--hairline);
}
.nav[data-solid="true"] .lang-toggle:hover { background: var(--canvas-soft-2); border-color: var(--hairline-strong); }

/* Burger */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r-full);
  transition: background .15s ease;
}
.nav-burger:hover { background: rgba(255,255,255,0.12); }
.nav[data-solid="true"] .nav-burger:hover { background: var(--canvas-soft-2); }
.nav-burger span {
  width: 24px; height: 2px; border-radius: 2px;
  background: #fff;
  transition: background .25s ease, transform .3s ease, opacity .2s ease;
}
.nav[data-solid="true"] .nav-burger span { background: var(--ink); }
/* open (X) state — set when overlay active */
body.menu-open .nav-burger span { background: #fff; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Full-screen menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0;
  z-index: 55;
  background: var(--warm-black);
  color: var(--on-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-5xl) var(--s-lg) var(--s-3xl);
  opacity: 0;
  transition: opacity .3s ease;
}
.menu-overlay[hidden] { display: none; }
body.menu-open { overflow: hidden; }
.menu-overlay.show { opacity: 1; }
.menu-grid {
  max-width: min(720px, var(--page));
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.menu-services-h {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 10px;
}
.menu-services a {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--on-primary);
  position: relative;
  width: fit-content;
  transition: color .3s ease, transform .3s ease;
  transform-origin: left center;
}
/* Arrow slides in from the left as the label nudges right (matches the
   menu-vertical hover effect, re-skinned to the Stay Seen taupe accent) */
.menu-services a::before {
  content: "→";
  position: absolute;
  left: -1.5em;
  font-weight: 700;
  color: var(--taupe);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .3s ease;
}
.menu-services a:hover {
  color: var(--taupe);
  transform: translateX(1.5em);
}
.menu-services a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .menu-services a,
  .menu-services a:hover { transition: color .3s ease; transform: none; }
  .menu-services a::before { display: none; }
}
.menu-links a {
  font-family: var(--serif);
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--on-primary);
  display: flex;
  align-items: baseline;
  gap: 18px;
  transition: color .15s ease, padding-left .2s ease;
}
.menu-links a:hover { color: var(--taupe); padding-left: 12px; }
.menu-no {
  font-family: var(--mono);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--taupe);
  align-self: flex-start;
  margin-top: 6px;
}
.menu-foot {
  max-width: min(720px, var(--page));
  margin: var(--s-3xl) auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--s-lg);
  flex-wrap: wrap;
  border-top: 1px solid #332d26;
  padding-top: var(--s-lg);
}
.menu-mail { font-family: var(--mono); font-size: 14px; color: #a89c8d; }
.menu-mail:hover { color: #fff; }

/* ---------- Hero: full-screen drone video ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  /* tasteful dark warm fallback shown until the drone video loads */
  background:
    radial-gradient(80% 60% at 30% 25%, #2a241d 0%, transparent 60%),
    radial-gradient(70% 60% at 75% 70%, #322a20 0%, transparent 60%),
    var(--warm-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(24,20,16,0.55) 0%, rgba(24,20,16,0.25) 35%, rgba(24,20,16,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--s-lg);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 18ch;
  margin: 0 auto;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 54ch;
  margin: var(--s-md) auto var(--s-xl);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn { backdrop-filter: blur(2px); }
.btn.ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn.ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--r-full);
  display: grid; place-items: start center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 4px; height: 8px; border-radius: 2px;
  background: #fff;
  animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---------- About / story ---------- */
.about { border-bottom: 1px solid var(--hairline); }
.about-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-lead {
  font-size: 19px;
  line-height: 31px;
  color: var(--body);
  margin: 0 auto var(--s-lg);
  max-width: 640px;
}
.about-video {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: var(--s-xl) auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--warm-black);
  box-shadow: var(--e4);
}
.about-vid { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-quote {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: var(--s-2xl) auto;
  max-width: 620px;
  position: relative;
  padding-top: var(--s-lg);
}
.about-quote::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--taupe);
  border-radius: 2px;
  margin: 0 auto var(--s-lg);
}
.about-close {
  font-size: 16px;
  line-height: 25px;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto;
}
.about-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--s-xl);
}

/* ---------- Logo strip ---------- */
.logo-strip {
  --gap: 56px;
  position: relative;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-lg) 0;
  overflow: hidden;
}
/* Infinite marquee: two identical groups slide left in lockstep, looping seamlessly */
.marquee {
  display: flex;
  width: 100%;
  gap: var(--gap);
  overflow: hidden;
  /* logos fade in/out at the very edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  margin: 0;
  padding: 0 calc(var(--gap) / 2);
  list-style: none;
  animation: logo-marquee 42s linear infinite;
}
@keyframes logo-marquee {
  to { transform: translateX(calc(-100% - var(--gap))); }
}
.logo-strip:hover .marquee-group { animation-play-state: paused; }
.marquee-group li {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--hairline-strong);
}
/* progressive blur — logos blur as they approach each edge */
.marquee-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.marquee-edge-left {
  left: 0;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 22%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 22%, transparent 100%);
}
.marquee-edge-right {
  right: 0;
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 22%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, #000 22%, transparent 100%);
}
@media (prefers-reduced-motion: reduce) {
  .marquee-group { animation: none; }
}

/* ---------- Cards (services) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.card {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: var(--s-lg);
  box-shadow: var(--e3);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--e4); }
.card { display: block; color: inherit; }
.card > * {
  position: relative;
  z-index: 1;
}
.card[href="/virtualtours"] {
  min-height: 270px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24,20,16,0.42) 0%, rgba(24,20,16,0.78) 100%),
    url("assets/google-street-view-virtual-tours-bg.png") center / cover no-repeat;
}
.card[href="/videoproduction"] {
  min-height: 270px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24,20,16,0.35) 0%, rgba(24,20,16,0.82) 100%),
    url("assets/video-production-bg.png") center / cover no-repeat;
}
.card[href="/photography"] {
  min-height: 270px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24,20,16,0.25) 0%, rgba(24,20,16,0.8) 100%),
    url("assets/commercial-photography-bg.png") center / cover no-repeat;
}
.card[href="/dronecontent"] {
  min-height: 270px;
  color: #fff;
  background: var(--warm-black);
}
.card[href="/ai-visuals"] {
  min-height: 270px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24,20,16,0.18) 0%, rgba(24,20,16,0.76) 100%),
    url("assets/ai-visuals-bg.png") center / cover no-repeat;
}
.card[href="/seo-ai-visibility"] {
  min-height: 270px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.18) 0%, rgba(12,12,12,0.82) 100%),
    url("assets/seo-ai-search-visibility-bg.png") center / cover no-repeat;
}
.card[href="/seo-ai-visibility"]::before {
  display: none;
}
.card[href="/dronecontent"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(24,20,16,0.28) 0%, rgba(24,20,16,0.82) 100%),
    linear-gradient(90deg, rgba(24,20,16,0.16), rgba(24,20,16,0.38));
}
.card-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.card[href="/virtualtours"] p,
.card[href="/virtualtours"] .card-link,
.card[href="/videoproduction"] p,
.card[href="/videoproduction"] .card-link,
.card[href="/photography"] p,
.card[href="/photography"] .card-link,
.card[href="/dronecontent"] p,
.card[href="/dronecontent"] .card-link,
.card[href="/ai-visuals"] p,
.card[href="/ai-visuals"] .card-link,
.card[href="/seo-ai-visibility"] p,
.card[href="/seo-ai-visibility"] .card-link {
  color: rgba(255,255,255,0.88);
}
.card[href="/virtualtours"] .card-icon,
.card[href="/videoproduction"] .card-icon,
.card[href="/photography"] .card-icon,
.card[href="/dronecontent"] .card-icon,
.card[href="/ai-visuals"] .card-icon,
.card[href="/seo-ai-visibility"] .card-icon {
  background: rgba(255,255,255,0.86);
  border-color: rgba(255,255,255,0.44);
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--taupe); margin-top: var(--s-md);
  transition: gap .15s ease;
}
.card:hover .card-link { gap: 12px; }
.card-wide { grid-column: span 3; display: flex; flex-direction: column; }
.card h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.2px; margin: 0 0 6px; line-height: 1.1; }
.card p { color: var(--body); font-size: 15px; line-height: 23px; margin: 0; max-width: 60ch; }

.card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  margin-bottom: var(--s-md);
  background: var(--canvas-soft-2);
  border: 1px solid var(--hairline);
  position: relative;
}
.card-icon::after {
  content: "";
  position: absolute; inset: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--taupe), var(--taupe-deep));
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.card-icon[data-i="tour"]::after   { -webkit-mask-image: var(--svg-tour);   mask-image: var(--svg-tour); }
.card-icon[data-i="video"]::after  { -webkit-mask-image: var(--svg-video);  mask-image: var(--svg-video); }
.card-icon[data-i="photo"]::after  { -webkit-mask-image: var(--svg-photo);  mask-image: var(--svg-photo); }
.card-icon[data-i="drone"]::after  { -webkit-mask-image: var(--svg-drone);  mask-image: var(--svg-drone); }
.card-icon[data-i="ai"]::after     { -webkit-mask-image: var(--svg-ai);     mask-image: var(--svg-ai); }
.card-icon[data-i="google"]::after { -webkit-mask-image: var(--svg-google); mask-image: var(--svg-google); }
.card-icon[data-i="brand"]::after  { -webkit-mask-image: var(--svg-brand);  mask-image: var(--svg-brand); }

:root {
  --svg-tour:   url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"/><path d="M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18"/></svg>');
  --svg-video:  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="6" width="14" height="12" rx="2"/><path d="M16 10l6-3v10l-6-3z"/></svg>');
  --svg-photo:  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="6" width="18" height="14" rx="2"/><circle cx="12" cy="13" r="3.5"/><path d="M8 6l1.5-2h5L16 6"/></svg>');
  --svg-drone:  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="5" cy="6" r="2.5"/><circle cx="19" cy="6" r="2.5"/><path d="M7 8l3 4M17 8l-3 4"/><rect x="9.5" y="12" width="5" height="4" rx="1"/></svg>');
  --svg-ai:     url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3l1.8 4.2L18 9l-4.2 1.8L12 15l-1.8-4.2L6 9l4.2-1.8z"/><path d="M18 15l.9 2.1L21 18l-2.1.9L18 21l-.9-2.1L15 18l2.1-.9z"/></svg>');
  --svg-google: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 21s7-5.5 7-11a7 7 0 1 0-14 0c0 5.5 7 11 7 11z"/><circle cx="12" cy="10" r="2.5"/></svg>');
  --svg-brand:  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3l7 4v5c0 4.5-3 7.5-7 9-4-1.5-7-4.5-7-9V7z"/><path d="M9 12l2 2 4-4"/></svg>');
}

/* ---------- Showcase ---------- */
.showcase { background: var(--canvas-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(80px, 8vw, 120px);
  align-items: center;
}
.showcase-list { list-style: none; padding: 0; margin: var(--s-lg) 0 var(--s-xl); display: grid; gap: 10px; }
.showcase-list li { display: flex; align-items: center; gap: 10px; color: var(--body); font-size: 15px; }
.tick { color: var(--cyan); font-weight: 600; }
.showcase-ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2xl);
  align-items: center;
  margin-top: var(--s-4xl);
  padding-top: var(--s-4xl);
  border-top: 1px solid var(--hairline);
}
.showcase-ai-grid .showcase-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.showcase-ai-grid .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-ai-grid .section-sub {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-ai-media {
  min-width: 0;
  width: min(100%, 1040px);
  margin: 0 auto;
}
.showcase-compare {
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 9;
}
.showcase-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: var(--s-4xl);
  align-items: center;
  margin-top: var(--s-4xl);
  padding-top: var(--s-4xl);
  border-top: 1px solid var(--hairline);
}
.showcase-video-media {
  position: relative;
  min-width: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--e4);
  background: var(--ink);
  aspect-ratio: 16 / 9;
}
.showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-video-copy .section-title {
  max-width: 520px;
}
.video-feature-list {
  margin-bottom: 0;
}
.video-feature-list li {
  font-size: 16px;
}
.media-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--e4);
  background: var(--canvas);
  aspect-ratio: 16 / 11;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
a.media-frame { display: block; transition: transform .2s ease, box-shadow .2s ease; }
a.media-frame:hover { transform: translateY(-3px); box-shadow: var(--e5, var(--e4)); }
a.media-frame img { transition: transform .4s ease; }
a.media-frame:hover img { transform: scale(1.02); }
.media-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  background: rgba(23,23,23,0.82); color: #fff;
  padding: 5px 9px; border-radius: var(--r-full);
  backdrop-filter: blur(4px);
}

/* ---------- Dark band ---------- */
.band-dark { background: var(--warm-black); color: var(--on-primary); position: relative; overflow: hidden; }
.band-watermark {
  position: absolute;
  top: -40px; right: -60px;
  width: 380px; height: auto;
  opacity: 0.05;
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  margin-bottom: var(--s-3xl);
}
.step {
  border: 1px solid #332d26;
  border-radius: var(--r-md);
  padding: var(--s-lg);
  background: #242019;
}
.step-no { font-family: var(--mono); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; color: var(--taupe); }
.step h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin: 8px 0 6px; letter-spacing: -0.2px; }
.step p { color: #a89c8d; font-size: 14px; line-height: 22px; margin: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  border-top: 1px solid #332d26;
  padding-top: var(--s-2xl);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n { font-family: var(--serif); font-size: 48px; font-weight: 600; letter-spacing: -0.5px; line-height: 1;
  color: #f2f2f2; }
.stat-l { font-size: 13px; color: #a89c8d; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); align-items: start; }
.price-card {
  position: relative;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  box-shadow: var(--e4);
  display: flex; flex-direction: column;
}
.price-card.featured { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.badge-featured {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--taupe);
  color: #fff; padding: 5px 14px; border-radius: var(--r-full);
}
.tier { font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
.price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0; }
.amount { font-family: var(--serif); font-size: 54px; font-weight: 600; letter-spacing: -0.5px; line-height: 1; }
.per { color: var(--mute); font-size: 14px; }
.featured .per { color: #999; }
.price-sek {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mute);
  margin: -6px 0 4px;
}
.featured .price-sek { color: #b3b3b3; }
.price-onreq {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 12px 0 var(--s-lg);
}
.featured .price-onreq { color: var(--on-primary); }
.price-sub { font-size: 14px; color: var(--body); margin: 0 0 var(--s-lg); min-height: 40px; }
.featured .price-sub { color: #b3b3b3; }
.feat { list-style: none; padding: 0; margin: 0 0 var(--s-xl); display: grid; gap: 10px; flex: 1; }
.feat li { font-size: 14px; color: var(--body); padding-left: 22px; position: relative; }
.feat li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 600; }
.featured .feat li { color: #ddd; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--s-5xl) var(--s-lg);
  text-align: center;
}
.mesh-soft {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 420px;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.5;
  background:
    radial-gradient(42% 52% at 18% 30%, var(--g-2) 0%, transparent 62%),
    radial-gradient(44% 54% at 60% 20%, var(--g-4) 0%, transparent 62%),
    radial-gradient(40% 50% at 90% 40%, var(--g-1) 0%, transparent 60%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translateX(-2%) translateY(0) scale(1); }
  to   { transform: translateX(3%) translateY(-2%) scale(1.06); }
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; }
.cta-title { font-family: var(--serif); font-size: 64px; font-weight: 600; letter-spacing: -0.5px; line-height: 1; margin: 8px 0 var(--s-md); }
.cta-actions { display: flex; gap: 10px; justify-content: center; margin: var(--s-xl) auto 0; flex-wrap: wrap; }
.cta-derisk {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-soft, #6b6258);
  margin: var(--s-md) auto 0;
}
.cta-form { display: flex; gap: 10px; justify-content: center; margin: var(--s-xl) auto 0; max-width: 460px; flex-wrap: wrap; }
.cta-form input {
  flex: 1; min-width: 220px;
  height: 48px; padding: 0 16px;
  border: 1px solid var(--hairline); border-radius: var(--r-sm);
  font-family: var(--sans); font-size: 16px; background: var(--canvas);
}
.cta-form input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px #00000010; }
.cta-band .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--canvas); border-top: 1px solid var(--hairline); padding: var(--s-4xl) 0 var(--s-2xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-2xl); }
.footer-brand p { color: var(--mute); font-size: 14px; margin: 12px 0 0; max-width: 240px; }
.socials { display: flex; gap: 10px; margin-top: var(--s-md); }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  color: var(--ink);
  background: var(--canvas);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.socials a:hover { color: var(--taupe); border-color: var(--taupe); transform: translateY(-2px); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-h { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--mute); margin-bottom: 4px; }
.footer-col a { color: var(--body); font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--s-2xl); padding-top: var(--s-lg);
  border-top: 1px solid var(--hairline);
  color: var(--mute); font-size: 13px;
}
.footer-mono { font-family: var(--mono); letter-spacing: 0.06em; }
.footer-legal { display: inline-block; }
.footer-entity { display: inline-block; margin-top: 3px; opacity: 0.85; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 56px; }
  .showcase-ai-grid { grid-template-columns: 1fr; gap: var(--s-2xl); }
  .showcase-video-grid { grid-template-columns: 1fr; gap: var(--s-2xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 42px; }
  .cta-title { font-size: 52px; }
}

@media (max-width: 760px) {
  .menu-grid { flex-direction: column; gap: var(--s-xl); }
  .menu-services { padding-top: 0; }
}
@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .steps, .stats { grid-template-columns: 1fr; }
  .section { padding: var(--s-4xl) 0; }
  .nav-inner { height: 64px; }
  .section-title { font-size: 34px; line-height: 1.08; letter-spacing: -0.3px; }
  .cta-title { font-size: 40px; letter-spacing: -0.3px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll span, .mesh-soft { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Inner service pages (virtual-tours.html, etc.)
   ============================================================ */
.page-hero {
  position: relative;
  background:
    radial-gradient(80% 60% at 25% 20%, #2a241d 0%, transparent 60%),
    radial-gradient(70% 60% at 80% 80%, #322a20 0%, transparent 60%),
    var(--warm-black);
  color: var(--on-primary);
  overflow: hidden;
  padding: 150px var(--s-lg) var(--s-5xl);
}
.page-hero-video {
  min-height: 640px;
  display: flex;
  align-items: center;
}
.image-hero-bg,
.youtube-hero-bg,
.youtube-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.image-hero-bg {
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.video-production-hero-bg {
  background-image: url("assets/video-production-bg.png");
}
.commercial-photography-hero-bg {
  background-image: url("assets/commercial-photography-bg.png");
}
.ai-visuals-hero-bg {
  background-image: url("assets/ai-visuals-bg.png");
}
.virtual-tours-hero-bg {
  background-image: url("assets/google-street-view-virtual-tours-bg.png");
}
.seo-ai-visibility-hero-bg {
  background-image: url("assets/seo-ai-search-visibility-bg.png");
}
.youtube-hero-bg {
  z-index: 0;
  overflow: hidden;
  background: var(--warm-black);
}
.youtube-hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
}
.youtube-hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(24,20,16,0.78) 0%, rgba(24,20,16,0.55) 42%, rgba(24,20,16,0.72) 100%),
    linear-gradient(180deg, rgba(24,20,16,0.35) 0%, rgba(24,20,16,0.55) 100%);
}
.page-hero .band-watermark { top: -30px; right: -40px; width: 320px; opacity: 0.06; }
.page-hero-inner { position: relative; z-index: 1; max-width: var(--page); margin: 0 auto; }
.breadcrumb {
  display: none !important;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 600; line-height: 1; letter-spacing: -0.5px;
  margin: 0 0 var(--s-lg); max-width: 16ch;
}
.page-lead {
  font-size: 19px; line-height: 30px; color: #cfc6ba; max-width: 620px; margin: 0 0 var(--s-xl);
}
.page-hero .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }


/* Sectors / branches */
.sectors {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-md);
}
.sector {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  box-shadow: var(--e3);
}
.sector h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.2px;
  margin: 0 0 4px;
}
.sector .sector-no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--taupe); }
.branch-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-md); }
.branch {
  font-family: var(--mono); font-size: 13px; color: var(--body);
  background: var(--canvas-soft); border: 1px solid var(--hairline);
  border-radius: var(--r-full); padding: 6px 12px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.branch:hover { color: var(--ink); border-color: var(--taupe); background: #fff; }

/* Cases gallery */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); }
.case-card {
  background: var(--canvas); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--e3); transition: transform .18s ease, box-shadow .18s ease;
  display: block;
  color: inherit;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--e4); }
.case-media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background:
    radial-gradient(60% 70% at 30% 30%, var(--g-4) 0%, transparent 60%),
    radial-gradient(60% 70% at 75% 75%, var(--g-2) 0%, transparent 60%),
    var(--canvas-soft-2);
  display: grid; place-items: center;
}
.case-media img { width: 100%; height: 100%; object-fit: cover; }
.case-media .case-symbol { width: 64px; height: auto; opacity: 0.35; }
.case-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  background: rgba(24,20,16,0.82); color: #fff; padding: 5px 9px; border-radius: var(--r-full);
  backdrop-filter: blur(4px);
}
.case-body { padding: var(--s-lg); }
.case-card-compact .case-body { padding: var(--s-md) var(--s-lg) var(--s-lg); }
.case-body .case-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }
.case-body h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: -0.2px; margin: 4px 0 6px; }
.case-card-compact .case-body h3 { margin-bottom: 0; }
.case-body p { color: var(--body); font-size: 14px; line-height: 22px; margin: 0; }

/* Tour case page */
.tour-case-page {
  background: var(--canvas);
  padding: 130px var(--s-lg) var(--s-5xl);
}
.tour-case-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  gap: var(--s-3xl);
  align-items: center;
}
.tour-case-copy .eyebrow { color: var(--taupe); }
.tour-case-copy h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 600;
  margin: var(--s-sm) 0 var(--s-lg);
  max-width: 9ch;
}
.tour-case-copy p {
  color: var(--body);
  font-size: 18px;
  line-height: 30px;
  max-width: 640px;
}
.tour-case-copy .lead {
  font-size: 20px;
  line-height: 32px;
}
.benefit-list {
  list-style: none;
  margin: var(--s-xl) 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.benefit-list li {
  color: var(--body);
  font-size: 15px;
  line-height: 24px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
}
.benefit-list li::before {
  content: "↗";
  color: var(--taupe);
  font-family: var(--mono);
}
.tour-viewer {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--warm-black);
  box-shadow: var(--e4);
}
.tour-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tour-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,20,16,0.06), rgba(24,20,16,0.18));
  pointer-events: none;
}
.tour-live-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(24,20,16,0.86);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 12px 16px;
}
.tour-hotspot {
  position: absolute;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.34);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  cursor: pointer;
}
.tour-hotspot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-left: 16px solid rgba(24,20,16,0.78);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  transform: rotate(-90deg) translateX(2px);
}
.tour-hotspot.one { left: 48%; top: 63%; }
.tour-hotspot.two { left: 66%; top: 55%; }
.tour-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: var(--s-md);
  background: var(--canvas);
}
.tour-controls button {
  appearance: none;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--canvas-soft);
  color: var(--ink);
  font: 500 13px/1 var(--sans);
  padding: 12px 16px;
  cursor: pointer;
}
.tour-controls button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.tour-viewer-caption {
  padding: 0 var(--s-lg) var(--s-lg);
  background: var(--canvas);
  color: var(--body);
  font-size: 14px;
  line-height: 22px;
}
.tour-modal-open {
  overflow: hidden;
}
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.tour-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.tour-modal[hidden] {
  display: none;
}
.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.72);
  backdrop-filter: blur(14px);
}
.tour-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--canvas);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}
.tour-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  background: rgba(24,20,16,0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.tour-modal-head {
  padding: var(--s-xl) var(--s-xl) var(--s-md);
}
.tour-modal-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  font-weight: 600;
  margin: 8px 64px 0 0;
}
.tour-viewer-modal {
  margin: 0 var(--s-xl) var(--s-xl);
}
.tour-viewer-modal .tour-stage {
  aspect-ratio: 16 / 8.8;
}

/* Deliverables row (inner pages) */
.deliver { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); }
.deliver .card h3 { font-size: 22px; }

.product-demo {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.product-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: var(--s-4xl);
  align-items: center;
}
.demo-media {
  min-height: 360px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  box-shadow: var(--e4);
  background:
    linear-gradient(135deg, rgba(24,24,23,0.18), rgba(140,126,113,0.12)),
    radial-gradient(70% 80% at 30% 20%, var(--g-4) 0%, transparent 60%),
    radial-gradient(70% 80% at 80% 75%, var(--g-2) 0%, transparent 60%),
    var(--canvas-soft-2);
  display: grid;
  place-items: center;
  padding: var(--s-xl);
  overflow: hidden;
}
.demo-media span {
  max-width: 360px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.84);
  border-radius: var(--r-full);
  padding: 12px 18px;
}
.product-demo-link {
  margin-top: var(--s-md);
}
.ai-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: var(--s-md);
  align-items: center;
}
.ai-ba-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--e4);
}
.ai-ba-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ai-ba-card figcaption {
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: var(--r-full);
  padding: 9px 13px;
  backdrop-filter: blur(12px);
}
.ai-ba-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.product-why {
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--hairline);
}
.product-why-inner {
  max-width: 820px;
  text-align: center;
}
.product-why-inner .section-sub {
  margin: 0 auto;
  max-width: 720px;
}
.product-solutions {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-md);
}
.product-solutions-virtual .solution-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-xl);
}
.solution-card {
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  box-shadow: var(--e2);
}
.product-solutions-virtual .solution-card {
  padding: 0;
  overflow: hidden;
  background: var(--canvas);
}
.solution-demo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.solution-demo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.solution-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42));
}
.solution-demo:hover img {
  transform: scale(1.04);
}
.solution-demo-badge,
.solution-demo-cta {
  position: absolute;
  z-index: 1;
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
}
.solution-demo-badge {
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(24,24,23,0.62);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 11px;
}
.solution-demo-cta {
  right: 14px;
  bottom: 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.78);
  font-size: 14px;
  padding: 10px 14px;
}
.product-solutions-virtual .solution-card h3,
.product-solutions-virtual .solution-card p,
.product-solutions-virtual .solution-card ul {
  margin-left: var(--s-xl);
  margin-right: var(--s-xl);
}
.product-solutions-virtual .solution-card h3 {
  margin-top: var(--s-xl);
}
.product-solutions-virtual .solution-card ul {
  margin-bottom: var(--s-xl);
}
.solution-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 8px;
}
.solution-card p {
  color: var(--body);
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 var(--s-md);
}
.solution-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.solution-card li {
  color: var(--ink);
  font-size: 14px;
  line-height: 21px;
  padding-left: 18px;
  position: relative;
}
.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--taupe);
}

.product-proof {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.product-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: var(--s-4xl);
  align-items: start;
}
.proof-panel {
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--s-xl);
  box-shadow: var(--e2);
}
.proof-panel h3,
.faq-item h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 var(--s-md);
}
.proof-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-lg);
  display: grid;
  gap: 12px;
}
.proof-panel li {
  color: var(--body);
  padding-left: 24px;
  position: relative;
}
.proof-panel li::before {
  content: "↗";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--taupe);
}
.proof-example {
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  margin: var(--s-lg) 0 0;
  padding-top: var(--s-lg);
}
.product-faq {
  background: var(--canvas-soft);
  border-top: 1px solid var(--hairline);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-md);
}
.faq-item {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--s-lg);
  min-height: 220px;
}
.faq-item p {
  color: var(--body);
  margin: 0;
}
.related-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--s-xl);
}
.related-services span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}

@media (max-width: 900px) {
  .product-demo-grid,
  .product-proof-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
  .tour-case-grid { grid-template-columns: 1fr; gap: var(--s-2xl); }
  .sectors { grid-template-columns: 1fr; }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .deliver { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .product-solutions-virtual .solution-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cases { grid-template-columns: 1fr; }
  .demo-media { min-height: 260px; }
  .ai-before-after { grid-template-columns: 1fr; }
  .ai-ba-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .page-hero { padding: 120px var(--s-lg) var(--s-4xl); }
}
