:root {
  --bg: #09090b;
  --bg-soft: #111114;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --muted: #b8b8c2;
  --silver: #d2d5dc;
  --red: #ea1d24;
  --red-deep: #94171b;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #15161b 0%, #08080a 48%, #050507 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.65; }
h1, h2, h3, strong { color: #fff; margin: 0; }
.section-width { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section-block { padding: 64px 0; }
.ambient {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .18;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { width: 320px; height: 320px; background: #d7d9e0; top: 120px; left: -120px; }
.ambient-two { width: 360px; height: 360px; background: #5e646f; right: -140px; top: 42vh; }
.ambient-two.silver { background: #b8beca; }
.ambient-red { width: 350px; height: 350px; background: #ff2e36; right: -100px; top: 90px; }
.ambient-black { width: 280px; height: 280px; background: #000; left: -80px; top: 52vh; opacity: .25; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.glass { background: transparent; box-shadow: none; }
.red-glass { background: transparent; }
.brandmark { font-weight: 700; letter-spacing: .02em; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.desktop-nav a:not(.button) {
  color: #dddde3;
  padding: 8px 10px;
  border-radius: 10px;
}
.desktop-nav a:not(.button):hover { background: rgba(255,255,255,.06); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 10px 12px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  display: block;
}
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 19;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.mobile-nav { background: rgba(12, 12, 16, 0.96); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.mobile-nav a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: #ededf2;
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.small { min-height: 42px; padding: 0 16px; }
.button.primary { background: linear-gradient(135deg, #ffffff, #d7d9de); color: #09090b; box-shadow: 0 12px 35px rgba(210, 213, 220, 0.18); }
.button.secondary { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.03); }
.button.ghost { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.03); }
.button.red { background: linear-gradient(135deg, #ff4147, #da141c); color: #fff; box-shadow: 0 12px 35px rgba(234, 29, 36, .28); }
.button.red-outline { border: 1px solid rgba(234,29,36,.45); background: rgba(234,29,36,.08); color: #fff; }
.button.social { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.button.wide { width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.red-text { color: #ff868b; }
.lead { font-size: 1.08rem; max-width: 65ch; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.button-row.center { justify-content: center; }

.split-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 12px;
  padding: 18px 0 24px;
}
.intro-copy { max-width: 820px; margin-bottom: 30px; }
.intro-copy h1, .hero-copy h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.04em; }

.gateway-slider-shell {
  display: grid;
  gap: 14px;
}
.gateway-slider-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gateway-swipe-copy {
  margin: 0;
  font-size: .9rem;
  color: #cfd3dc;
  letter-spacing: .01em;
}
.gateway-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gateway-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  transition: transform .25s ease, background .25s ease, width .25s ease;
}
.gateway-dot.active {
  width: 22px;
  background: rgba(255,255,255,.9);
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.gateway-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, border-color .35s ease;
}
.gateway-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); }
.card-glow {
  position: absolute; inset: -20% auto auto -12%; width: 240px; height: 240px; background: radial-gradient(circle, rgba(240,241,244,.22), transparent 70%); pointer-events: none;
}
.card-glow.red { background: radial-gradient(circle, rgba(234,29,36,.25), transparent 70%); }
.building-card { background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(21,24,30,.76)); }
.show-card { background: linear-gradient(160deg, rgba(92,8,12,.9), rgba(24,6,8,.96)); }
.gateway-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; position: relative; z-index: 1; }
.gateway-logo { width: 180px; max-width: 45%; border-radius: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.gateway-logo.show-logo { background: #f00; padding: 10px; }
.gateway-body { position: relative; z-index: 1; }
.gateway-body h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 12px; letter-spacing: -.03em; }
.mini-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; color: #e9e9ef; }
.mini-list li { padding-left: 18px; position: relative; }
.mini-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .65; position: absolute; left: 0; top: .6em; }
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.pill.red { background: rgba(234,29,36,.12); border-color: rgba(234,29,36,.28); }
.card-cta { font-weight: 700; color: #fff; position: relative; z-index: 1; }

.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  display: flex;
  gap: 24px;
  border-block: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px;
}
.marquee-track {
  display: flex;
  gap: 16px;
  min-width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #e6e6ec;
  border: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.overview-grid, .service-grid, .review-grid, .episode-grid, .split-feature {
  display: grid;
  gap: 22px;
}
.overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 42px 0 94px; }
.overview-card, .service-card, .review-card, .episode-card, .feature-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.section-heading { max-width: 820px; margin-bottom: 28px; }
.section-heading h2 { font-size: clamp(1.9rem, 4vw, 3.25rem); line-height: 1.04; margin-bottom: 12px; letter-spacing: -.04em; }

.hero-business, .hero-show {
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  padding: 18px 0 56px;
}
.hero-panel {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.texture-panel {
  background:
    linear-gradient(135deg, rgba(0,0,0,.18), rgba(255,255,255,.03)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.14), transparent 38%),
    linear-gradient(180deg, #1b1c22, #0d0e12 55%, #06070a);
}
.texture-panel::before,
.texture-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  opacity: .13;
}
.show-panel {
  background: radial-gradient(circle at top left, rgba(255,70,76,.28), transparent 32%), linear-gradient(170deg, #37060a, #160507 58%, #090203 100%);
}
.hero-logo-build {
  position: absolute;
  width: min(72%, 380px);
  left: 50%;
  top: 16%;
  transform: translateX(-50%);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,.36);
}
.hero-logo-show {
  position: absolute;
  width: min(82%, 470px);
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,.34);
}
.floating-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}
.red-card { background: rgba(234,29,36,.1); border-color: rgba(255,255,255,.14); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.hero-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stats strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }
.hero-stats span { color: var(--muted); font-size: .94rem; }

.trust-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-strip div {
  padding: 18px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
}
.trust-strip span { display: block; color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.trust-strip strong { font-size: 1rem; }
.red-strip div { background: rgba(234,29,36,.07); border-color: rgba(234,29,36,.18); }

.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card h3, .project-copy h3, .episode-card h3, .feature-box h3 { margin-bottom: 12px; font-size: 1.35rem; }
.project-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.project-card.tall { grid-row: span 2; }
.project-media, .episode-thumb {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  color: rgba(255,255,255,.76);
  font-weight: 700;
  letter-spacing: .02em;
}
.placeholder-media {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), radial-gradient(circle at top left, rgba(255,255,255,.09), transparent 30%);
}
.placeholder-media.silver { background: linear-gradient(135deg, rgba(210,213,220,.2), rgba(255,255,255,.02)); }
.placeholder-media.dark { background: linear-gradient(135deg, rgba(25,29,35,.96), rgba(255,255,255,.02)); }
.project-copy { padding: 24px; }
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stars { color: #fff; margin-bottom: 12px; letter-spacing: .16em; }
 .socials-slab, .content-band {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}
.socials-copy { flex: 1 1 0; }
.social-button-row, .band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.socials-stack {
  flex: 0 0 280px;
  display: grid;
  gap: 12px;
  align-content: center;
}
.socials-stack .button { width: 100%; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.contact-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.contact-links {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}
.contact-links a {
  width: fit-content;
  color: #f4f4f8;
}
.contact-form {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form span { display: block; font-size: .95rem; margin-bottom: 8px; color: #f1f1f6; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid rgba(255,255,255,.16); }
.contact-points { display: grid; gap: 12px; margin-top: 22px; }
.contact-points a, .contact-points span {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #f4f4f8;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #1fbf5b;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(31,191,91,.28);
}

.episode-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.episode-card a { color: #fff; font-weight: 700; margin-top: 12px; display: inline-block; }
.episode-thumb { border-radius: 22px; background: linear-gradient(135deg, rgba(255,70,76,.28), rgba(255,255,255,.04)); margin-bottom: 16px; min-height: 220px; }
.episode-thumb.dark-red { background: linear-gradient(135deg, rgba(138,12,18,.62), rgba(255,255,255,.04)); }
.episode-thumb.black { background: linear-gradient(135deg, rgba(8,8,10,.96), rgba(80,8,12,.6)); }
.split-feature { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.red-border { border-color: rgba(234,29,36,.22); background: rgba(234,29,36,.05); }


.trust-grid .review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trust-grid .review-card h3 {
  margin-bottom: 10px;
}
.project-media-refurb,
.project-media-extension,
.project-media-loft {
  position: relative;
}
.project-media-refurb::after,
.project-media-extension::after,
.project-media-loft::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.16));
}
.project-media-refurb span,
.project-media-extension span,
.project-media-loft span {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
}
.site-footer {
  padding: 28px 0 42px;
  text-align: center;
}
.site-footer p { margin: 0 0 10px; }
.site-footer span { opacity: .55; margin: 0 8px; }
.footer-credit a { text-decoration: underline; text-underline-offset: 3px; }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.thank-card {
  max-width: 720px;
  text-align: center;
  padding: 46px 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
}
.thank-card h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); margin-bottom: 10px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .gateway-grid,
  .hero-business,
  .hero-show,
  .contact-grid,
  .project-grid,
  .overview-grid,
  .service-grid,
  .review-grid,
  .episode-grid,
  .split-feature,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .hero-business,
  .hero-show,
  .contact-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-card.tall { grid-row: auto; }
  .socials-slab, .content-band { flex-direction: column; align-items: stretch; }
  .socials-stack { width: 100%; flex: none; }
}

@media (max-width: 760px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header { padding-top: 10px; }
  .split-hero { padding-top: 18px; }
  .gateway-grid,
  .overview-grid,
  .service-grid,
  .review-grid,
  .episode-grid,
  .split-feature,
  .trust-strip,
  .hero-stats { grid-template-columns: 1fr; }
  .gateway-card { min-height: 480px; padding: 22px; }
  .gateway-top { flex-direction: column; }
  .gateway-logo { max-width: 180px; width: 100%; }
  .hero-business, .hero-show { min-height: auto; padding: 36px 0 56px; }
  .hero-panel { min-height: 440px; }
  .hero-logo-build { top: 13%; width: min(78%, 280px); }
  .hero-logo-show { top: 13%; width: min(88%, 340px); }
  .floating-card { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
  .section-block { padding: 68px 0; }
  .button-row { gap: 10px; }
  .button { width: 100%; }
  .social-button-row .button,
  .band-actions .button,
  .button-row .button { width: 100%; }
  .whatsapp-float { left: 16px; right: 16px; text-align: center; }
}

.card-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #d7d9de);
  color: #09090b;
  box-shadow: 0 16px 40px rgba(210, 213, 220, 0.22);
  width: fit-content;
}
.red-button-look {
  background: linear-gradient(135deg, #ff4147, #da141c);
  color: #fff;
  box-shadow: 0 16px 40px rgba(234,29,36,.28);
}
.gateway-card:hover .card-cta-button {
  transform: translateY(-1px);
}


.media-showcase, .video-message-section { padding-top: 0; }
.before-after-card, .video-message-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.comparison-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  aspect-ratio: 10 / 11;
  background: #0b0b0d;
}
.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.comparison-base { position: absolute; inset: 0; }
.comparison-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.6);
}
.comparison-overlay img { width: 100%; max-width: none; }
.comparison-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  transform: translateX(-50%);
  pointer-events: none;
}
.comparison-handle {
  position: absolute;
  top: 50%;
  width: 56px; height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(8,8,10,.88);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.comparison-handle::before {
  content: '↔';
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}
.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(8,8,10,.75);
  border: 1px solid rgba(255,255,255,.16);
}
.comparison-label.before { left: 18px; }
.comparison-label.after { right: 18px; }
.video-message-card video {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #000;
  max-height: 820px;
}
@media (min-width: 900px) {
  .comparison-slider { aspect-ratio: 16 / 9; min-height: 520px; }
}


.hero-business-single {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding: 12px 0 18px;
}
.hero-copy-centered {
  max-width: 860px;
}
.services-preview-section {
  padding-top: 0;
}
.before-after-tight {
  margin-top: 10px;
}
.services-preview-action {
  margin-top: 22px;
}
.services-preview-action .button {
  min-width: 210px;
}
.services-hero {
  padding-bottom: 18px;
}


.hero-business-photo {
  min-height: calc(100vh - 140px);
}
.hero-photo-panel {
  min-height: 700px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  box-shadow: var(--shadow);
}
.hero-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,9,.08) 0%, rgba(7,7,9,.18) 48%, rgba(7,7,9,.72) 100%);
}
.hero-photo-card {
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.project-spotlight-section,
.gallery-preview-section {
  padding-top: 0;
}
.comparison-slider-wide {
  aspect-ratio: 16 / 9;
  min-height: 420px;
}
.photo-grid {
  display: grid;
  gap: 22px;
}
.photo-grid-preview {
  grid-template-columns: 1.05fr .95fr;
}
.photo-grid-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  min-height: 320px;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card.tall { grid-row: span 2; min-height: 100%; }
.photo-card.wide { grid-column: span 2; }
.gallery-hero { min-height: 48vh; }
@media (max-width: 1040px) {
  .photo-grid-preview,
  .photo-grid-full { grid-template-columns: 1fr 1fr; }
  .photo-card.tall,
  .photo-card.wide { grid-column: auto; grid-row: auto; }
}
@media (max-width: 760px) {
  .hero-photo-panel { min-height: 420px; }
  .comparison-slider-wide { aspect-ratio: 10 / 11; min-height: 360px; }
  .photo-grid-preview,
  .photo-grid-full { grid-template-columns: 1fr; }
  .photo-card,
  .photo-card.tall,
  .photo-card.wide { min-height: 260px; grid-column: auto; grid-row: auto; }
}


.hero-photo-card,
.red-card,
.project-copy-overlay,
.photo-overlay-copy { display:none !important; }

.hero-business-photo .hero-panel,
.hero-show .hero-panel { min-height: 560px; }

.socials-slab { align-items: center; }
.socials-slab .socials-copy { max-width: 720px; }
.socials-slab .social-button-row { margin-top: 18px; }
.socials-stack .button { text-align: center; justify-content: center; }

.episode-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}
.episode-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.logo-thumb {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 20px;
  background: radial-gradient(circle at center, rgba(234,29,36,.22), rgba(255,255,255,.02));
}
.instagram-logo-thumb img {
  width: min(72%, 220px);
  height: auto;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.22));
}
.split-feature-single {
  grid-template-columns: minmax(0, 1fr);
}
.split-feature-single .feature-box { max-width: 760px; }
.trust-strip { display:none; }
.project-spotlight-section-second,
#project-two { display:none !important; }

@media (max-width: 760px) {
  .site-header { padding-top: 4px; }
  .hero-business, .hero-show { padding-top: 8px; }
  .section-block { padding: 48px 0; }
  .socials-slab, .content-band { padding: 20px; gap: 16px; }
  .socials-stack { gap: 10px; }
  .hero-business-photo .hero-panel,
  .hero-show .hero-panel { min-height: 380px; }
  .episode-thumb { min-height: 160px; }
  .logo-thumb { min-height: 140px; }
}


/* Landing page premium tightening */
.landing-page .site-header {
  width: min(var(--max), calc(100% - 24px));
}
.landing-page .split-hero {
  width: min(var(--max), calc(100% - 24px));
  margin: 4px auto 10px;
  padding: 4px 0 18px;
}
.landing-page .gateway-grid {
  gap: 18px;
}
.landing-page .gateway-card {
  border-radius: 32px;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}
.landing-page .building-card {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(15,17,24,.92));
}
.landing-page .gateway-body p {
  color: #d4d7e0;
}
.landing-page .card-cta-button {
  margin-top: auto;
}

@media (max-width: 760px) {
  .landing-page .site-header {
    width: calc(100% - 20px);
    padding-top: 2px;
  }
  .landing-page .split-hero {
    width: calc(100% - 20px);
    margin: 2px auto 8px;
    padding: 0 0 12px;
  }
  .landing-page .gateway-slider-head {
    display: flex;
  }
  .landing-page .gateway-grid.gateway-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .landing-page .gateway-grid.gateway-slider::-webkit-scrollbar {
    display: none;
  }
  .landing-page .gateway-grid.gateway-slider .gateway-card {
    scroll-snap-align: start;
  }
  .landing-page .gateway-card {
    min-height: 430px;
    padding: 20px;
    border-radius: 28px;
  }
  .landing-page .gateway-top {
    gap: 14px;
  }
  .landing-page .gateway-logo {
    max-width: 156px;
  }
  .landing-page .gateway-body h2 {
    margin-bottom: 10px;
  }
  .landing-page .mini-list {
    gap: 8px;
    margin-top: 18px;
  }
  .landing-page .marquee-wrap {
    padding: 12px 0;
    margin-bottom: 12px;
  }
}


/* Landing page slick swipe refinements */
.landing-page .gateway-slider-shell {
  position: relative;
}

@media (max-width: 760px) {
  .landing-page .gateway-slider-head {
    padding-inline: 4px;
  }

  .landing-page .gateway-slider-shell::after {
    content: "";
    position: absolute;
    top: 54px;
    right: -2px;
    width: 48px;
    height: calc(100% - 54px);
    pointer-events: none;
    background: linear-gradient(90deg, rgba(9,9,11,0), rgba(9,9,11,0.82) 72%, rgba(9,9,11,0.96));
    border-radius: 0 28px 28px 0;
  }

  .landing-page .gateway-grid.gateway-slider {
    grid-auto-columns: 88%;
    gap: 12px;
    padding: 0 42px 4px 0;
    scroll-padding-left: 0;
    scroll-padding-right: 42px;
  }

  .landing-page .gateway-grid.gateway-slider .gateway-card {
    min-width: 0;
  }

  .landing-page .gateway-card {
    min-height: 420px;
  }

  .landing-page .gateway-swipe-copy {
    font-size: .88rem;
    font-weight: 600;
    color: #e7e9ef;
  }

  .landing-page .gateway-swipe-copy::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border-top: 2px solid rgba(255,255,255,.8);
    border-right: 2px solid rgba(255,255,255,.8);
    transform: rotate(45deg) translateY(1px);
    animation: swipeNudge 1.8s ease-in-out infinite;
  }
}

@keyframes swipeNudge {
  0%, 100% { transform: rotate(45deg) translate(0, 1px); opacity: .72; }
  50% { transform: rotate(45deg) translate(4px, 1px); opacity: 1; }
}

.hidden-field{display:none!important;visibility:hidden!important;height:0!important;overflow:hidden!important;}
