@font-face {
  font-family: "UbuntuLocal";
  src: url("../fonts/Ubuntu.woff2") format("woff2"),
       url("../fonts/Ubuntu.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "UbuntuLocal";
  src: url("../fonts/Ubuntu-Light.woff2") format("woff2"),
       url("../fonts/Ubuntu-Light.woff") format("woff");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "OpenSansLocal";
  src: url("../fonts/Open-Sans-subset0.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #050b16;
  --bg-soft: #0b162b;
  --panel: rgba(13, 25, 46, 0.82);
  --panel-strong: rgba(8, 17, 34, 0.94);
  --text: #f5f7fb;
  --muted: #a5b1c4;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #143fa8;
  --blue-soft: #1d62d6;
  --maroon: #8e214c;
  --maroon-soft: #c43a6f;
  --green: #167b59;
  --gold: #c79e43;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: min(1160px, calc(100vw - 32px));
  --top-chrome-height: 120px;
  --section-space: clamp(64px, 7vw, 84px);
  --section-space-mobile: 64px;
  --surface-border: 1px solid var(--line);
  --surface-fill: rgba(255, 255, 255, 0.05);
  --surface-fill-hover: rgba(255, 255, 255, 0.09);
  --surface-border-hover: rgba(255, 255, 255, 0.24);
  --interactive-transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #071120;
  color: var(--text);
  font-family: "OpenSansLocal", Arial, sans-serif;
  line-height: 1.6;
}

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

figure {
  margin: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(29, 98, 214, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #081120;
  transition: top 0.2s ease;
}

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

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

.surface-card {
  border: var(--surface-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: #8fb0ff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface-fill);
  color: var(--text);
}

.icon-button,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--interactive-transition);
}

.icon-button {
  width: 48px;
  height: 48px;
}

.icon-button:hover,
.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--surface-border-hover);
  background: var(--surface-fill-hover);
}

.icon-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.whatsapp-button {
  background: rgba(14, 39, 27, 0.9);
  border-color: rgba(37, 211, 102, 0.35);
}

.mail-button {
  background: rgba(15, 34, 64, 0.92);
  border-color: rgba(92, 156, 255, 0.34);
}

.mail-button:hover {
  background: rgba(21, 48, 90, 0.98);
  border-color: rgba(122, 178, 255, 0.54);
}

.whatsapp-button:hover {
  background: rgba(22, 76, 49, 0.95);
  border-color: rgba(37, 211, 102, 0.55);
}

.whatsapp-button-spaced {
  margin-top: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 22, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 84px;
  padding-inline: clamp(16px, 3vw, 38px);
}

.brand {
  display: inline-grid;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "UbuntuLocal", Arial, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.25;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  justify-content: center;
  align-items: center;
  min-width: 0;
  gap: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: max(580px, calc(100svh - var(--top-chrome-height)));
  padding: 16px 0;
  display: flex;
  align-items: center;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #020712;
}

.hero-video-shell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 98, 214, 0.28), transparent 28rem),
    linear-gradient(115deg, rgba(5, 11, 22, 0.9) 12%, rgba(5, 11, 22, 0.56) 48%, rgba(5, 11, 22, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(5, 11, 22, 0) 0%, rgba(5, 11, 22, 0.9) 85%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: 100%;
  padding: clamp(16px, 1.8vw, 20px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(7, 17, 32, 0.38), rgba(7, 17, 32, 0.58));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
  gap: 14px;
  align-items: center;
}

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

.hero-brand-mark {
  justify-self: center;
  width: clamp(76px, 8vw, 116px);
  height: auto;
  margin: 0;
}

.hero-highlight {
  justify-self: center;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "UbuntuLocal", Arial, sans-serif;
  font-size: clamp(1.05rem, 0.92rem + 0.52vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.hero h1,
.section-title {
  margin: 0;
  font-family: "UbuntuLocal", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 15ch;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}

.section-copy,
.section-inline-copy,
.service-copy p,
.contact-card p,
.footer-shell p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-wrap: pretty;
}

.section-copy {
  max-width: 62ch;
}

.section-inline-copy {
  max-width: none;
  white-space: nowrap;
}

.hero-panel {
  display: grid;
  max-width: 460px;
  gap: 14px;
  justify-self: end;
  align-self: center;
  align-content: start;
  transform: translateY(-14px);
}

.hero-panel-card {
  padding: 24px 24px 22px;
  background: linear-gradient(160deg, rgba(9, 21, 42, 0.82), rgba(17, 29, 55, 0.72));
}

.panel-label,
.contact-label {
  margin: 0 0 14px;
  color: #b8c9f9;
  font-family: "UbuntuLocal", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 20px;
  color: #d9e1ef;
  font-size: 1.04rem;
  line-height: 1.55;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft), var(--maroon-soft));
}

.trust-band,
.section,
.site-footer {
  position: relative;
}

.brandbar-band {
  position: relative;
  z-index: 1;
  padding: 0;
  background: rgba(5, 11, 22, 0.94);
}

#wb_TEI {
  text-align: center;
}

#TEI {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
}

#TEI .row {
  display: flex;
  width: 100%;
}

#TEI .col-1,
#TEI .col-2,
#TEI .col-3 {
  flex: 1 1 33.333%;
  min-width: 0;
  padding: clamp(2px, 0.2vw, 4px) clamp(8px, 1.4vw, 16px);
}

#TEI .col-1 {
  background: #e91e26;
}

#TEI .col-2 {
  background: #5cba48;
}

#TEI .col-3 {
  background: #394fa1;
}

#wb_Text6,
#wb_INFORMATION,
#wb_ENTERTAINAMENT {
  color: #ffffff;
  font-family: "UbuntuLocal", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(0.78rem, 0.5rem + 1.05vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: clamp(0.015em, 0.04vw, 0.06em);
  text-align: center;
}

#wb_Text6 p,
#wb_INFORMATION p,
#wb_ENTERTAINAMENT p {
  margin: 0;
  padding: 0;
}

.trust-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.trust-copy {
  padding: 28px;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.85), rgba(13, 24, 45, 0.74));
}

.logo-wall {
  display: flex;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: transparent;
}

.logo-wall img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.trust-band,
.section,
.section-story,
.section-contact {
  padding-block: var(--section-space);
}

.section-contrast {
  background: linear-gradient(180deg, rgba(7, 17, 32, 0.65), rgba(10, 20, 36, 0.92));
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: clamp(24px, 3vw, 30px);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

#services-title {
  font-size: clamp(1.65rem, 2.15vw, 2.55rem);
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 22, 43, 0.95), rgba(8, 18, 36, 0.9));
  border: var(--surface-border);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  min-height: 100%;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(233, 30, 38, 0.28) 0%, rgba(233, 30, 38, 0.08) 28%, transparent 42%),
    linear-gradient(180deg, rgba(92, 186, 72, 0.18) 0%, rgba(92, 186, 72, 0.04) 58%, transparent 100%),
    linear-gradient(315deg, rgba(57, 79, 161, 0.28) 0%, rgba(57, 79, 161, 0.08) 30%, transparent 48%);
  transition: opacity 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 4px;
  opacity: 0;
  background: linear-gradient(90deg, #e91e26 0 33.333%, #5cba48 33.333% 66.666%, #394fa1 66.666% 100%);
  transition: opacity 0.28s ease, transform 0.28s ease;
  transform: scaleX(0.4);
  transform-origin: center;
}

.service-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-copy {
  position: relative;
  z-index: 1;
  padding: 18px 20px 22px;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 176, 255, 0.28);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
}

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

.service-copy h3,
.portfolio-card-copy strong {
  margin: 0;
  font-family: "UbuntuLocal", Arial, sans-serif;
  line-height: 1.15;
}

.service-copy p {
  margin-top: 12px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--surface-border);
  background: #071120;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-video::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 4px;
  opacity: 0;
  background: linear-gradient(90deg, #e91e26 0 33.333%, #5cba48 33.333% 66.666%, #394fa1 66.666% 100%);
  transition: opacity 0.28s ease, transform 0.28s ease;
  transform: scaleX(0.4);
  transform-origin: center;
}

.portfolio-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.28s ease;
}

.portfolio-video img {
  transform: scale(1.12);
  transform-origin: center;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.1), rgba(5, 11, 22, 0.86));
  transition: opacity 0.28s ease, background 0.28s ease;
}

.portfolio-video:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 176, 255, 0.28);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
}

.portfolio-video:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.portfolio-video:hover img {
  filter: brightness(1.08) saturate(1.08) contrast(1.04);
}

.portfolio-video:hover::after {
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.06), rgba(5, 11, 22, 0.78));
}

.portfolio-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  transition: transform 0.28s ease;
}

.portfolio-card-copy strong,
.portfolio-card-copy span {
  display: block;
}

.portfolio-card-copy strong {
  font-family: "UbuntuLocal", Arial, sans-serif;
  line-height: 1.22;
}

.portfolio-card-copy span {
  margin-top: 6px;
  color: rgba(239, 244, 255, 0.82);
  font-size: 0.86rem;
}

.portfolio-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 17, 32, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.portfolio-play i {
  margin-left: 4px;
  color: #ffffff;
  font-size: 1.2rem;
}

.portfolio-video:hover .portfolio-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(20, 63, 168, 0.88);
}

.portfolio-video:hover .portfolio-card-copy {
  transform: translateY(-4px);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: center;
}

.story-card {
  display: grid;
  justify-self: start;
  justify-items: center;
  align-content: start;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  margin-left: 26px;
  padding: 0;
  text-align: center;
}

.story-card img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.story-card strong {
  display: block;
  margin: 0;
  font-family: "UbuntuLocal", Arial, sans-serif;
  font-size: 1.1rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding: 26px;
  background: linear-gradient(165deg, rgba(13, 26, 47, 0.95), rgba(7, 16, 30, 0.95));
  text-align: left;
}

.contact-block {
  display: grid;
  justify-items: start;
  min-width: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: max-content auto max-content;
  align-items: start;
  gap: 24px;
  justify-content: start;
}

.contact-divider {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.2);
  align-self: end;
}

.contact-card a {
  color: #f7f9ff;
  font-family: "UbuntuLocal", Arial, sans-serif;
  font-size: 1.05rem;
}

.contact-block > .contact-label + a:not(.icon-button) {
  display: inline-block;
  margin-top: 8px;
}

.contact-block > .contact-label + .social-links {
  margin-top: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.social-links a {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 18, 0.9);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.footer-shell strong {
  display: block;
  margin-bottom: 8px;
  font-family: "UbuntuLocal", Arial, sans-serif;
}

.footer-shell p {
  margin: 0;
}

.footer-meta {
  align-self: end;
  text-align: right;
}

@media (max-width: 1080px) {
  :root {
    --top-chrome-height: 104px;
  }

  .site-nav {
    gap: 14px;
    padding-inline: 14px;
  }

  .hero {
    min-height: max(600px, calc(100svh - var(--top-chrome-height)));
  }

  .hero-grid,
  .trust-band-shell,
  .story-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-panel {
    max-width: none;
    justify-self: stretch;
    align-self: auto;
    transform: none;
  }

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

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

@media (max-width: 860px) {
  :root {
    --top-chrome-height: 118px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    gap: 14px;
    min-height: 78px;
    padding: 14px clamp(14px, 3.5vw, 24px);
  }

  .brand-copy span:last-child {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 2px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    background: rgba(8, 17, 34, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 0.98rem;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: rgba(255, 255, 255, 0.06);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: max(500px, calc(100svh - var(--top-chrome-height)));
    padding: 16px 0;
  }

  .hero-shell {
    gap: 12px;
  }
}

@media (max-width: 700px) {
  #TEI .col-1,
  #TEI .col-2,
  #TEI .col-3 {
    padding: 8px 6px;
  }

  #wb_Text6,
  #wb_INFORMATION,
  #wb_ENTERTAINAMENT {
    font-size: clamp(0.54rem, 0.42rem + 0.7vw, 0.74rem);
    letter-spacing: 0.01em;
  }

  .trust-band,
  .section,
  .section-story,
  .section-contact {
    padding-block: var(--section-space-mobile);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    line-height: 1.08;
  }

  #services-title {
    white-space: normal;
  }

  .section-inline-copy {
    white-space: normal;
  }

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

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

  .story-card {
    justify-self: center;
    margin-left: 0;
    text-align: center;
  }

  .portfolio-card {
    aspect-ratio: 16 / 11;
  }

  .portfolio-card-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .portfolio-play {
    width: 56px;
    height: 56px;
  }

  .contact-card {
    gap: 18px;
  }

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

  .contact-divider {
    display: none;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

}

@media (max-width: 520px) {
  :root {
    --top-chrome-height: 128px;
  }

  .hero {
    padding-top: 14px;
    min-height: max(450px, calc(100svh - var(--top-chrome-height)));
  }

  .header-shell {
    gap: 12px;
    min-height: 74px;
    padding-inline: 12px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .hero-shell {
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
  }

  .hero-highlight {
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 4vw, 1.04rem);
  }

  .hero-brand-mark {
    width: clamp(68px, 20vw, 86px);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.4rem, 6.8vw, 1.75rem);
  }

  .panel-label,
  .contact-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .panel-list li,
  .contact-card a {
    font-size: 0.98rem;
  }

  .hero-panel-card,
  .trust-copy,
  .contact-card {
    padding: 20px;
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

}

@media (max-width: 400px) {
  #wb_Text6,
  #wb_INFORMATION,
  #wb_ENTERTAINAMENT {
    font-size: 0.5rem;
    letter-spacing: 0;
  }

  .hero-panel-card,
  .trust-copy,
  .contact-card {
    padding: 18px;
  }

  .hero-brand-mark {
    width: 70px;
  }
}
