:root {
  --navy: #0c3d6e;
  --navy-deep: #082a4a;
  --navy-soft: #16548f;
  --brand-blue: #0160aa;
  --brand-red: #ed1c24;
  --steel: #5b6b7c;
  --mist: #f3f6f9;
  --mist-2: #e8eef4;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5c6b7a;
  --line: rgba(12, 61, 110, 0.1);
  --line-strong: rgba(12, 61, 110, 0.16);
  --accent: #ed1c24;
  --accent-soft: #f0474d;
  --shadow: 0 16px 40px rgba(12, 61, 110, 0.08);
  --shadow-lg: 0 24px 60px rgba(12, 61, 110, 0.12);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1140px;
  --header-offset: 6.75rem;
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  background:
    radial-gradient(1200px 500px at 12% -10%, rgba(1, 96, 170, 0.07), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(237, 28, 36, 0.04), transparent 50%),
    var(--mist);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.topbar-inner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.45rem 0;
}

.topbar a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s var(--ease);
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #fff;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.topbar-sep {
  width: 1px;
  height: 0.85rem;
  background: rgba(255, 255, 255, 0.22);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  text-decoration: none;
}

.brand-emblem {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid rgba(1, 96, 170, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 24px rgba(12, 61, 110, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.brand-emblem img,
.brand-emblem svg {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.brand-name em {
  font-style: normal;
  color: var(--brand-red);
}

.brand-tag {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 500;
  white-space: nowrap;
}

/* Legacy img-only logo fallback */
.brand-logo {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: min(120px, 42vw);
  object-fit: contain;
}

.brand-logo-sm {
  height: 4.25rem;
  max-width: 140px;
}

.brand-lockup {
  display: block;
  height: 2.85rem;
  width: auto;
  max-width: min(280px, 58vw);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav > a,
.nav-drop > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.nav > a:hover,
.nav > a:focus-visible,
.nav-drop > summary:hover,
.nav > a.is-active,
.nav-drop.is-active > summary {
  color: var(--navy);
}

.nav-drop {
  position: relative;
}

.nav-drop > summary::-webkit-details-marker {
  display: none;
}

.nav-drop > summary::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-drop[open] > summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 15rem;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.15rem;
}

.nav-mega a {
  display: block;
  padding: 0.7rem 0.8rem;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-mega a:hover,
.nav-mega a:focus-visible,
.nav-mega a.is-active {
  background: var(--mist);
  color: var(--navy);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0 1.05rem;
  background: var(--navy);
  color: #fff !important;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--navy-soft);
}

.nav-phone {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 28, 49, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  z-index: 56;
}

.nav-toggle span {
  width: 1.05rem;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn svg {
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-soft);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: var(--accent-soft);
}

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #0e7a6e;
}

/* Floating quick contact */
.quick-contact {
  position: fixed;
  right: max(10px, env(safe-area-inset-right, 0px));
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: none;
}

.quick-contact a {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(6, 16, 28, 0.24);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 16, 28, 0.3);
}

.quick-contact-call {
  background: var(--brand-red);
}

.quick-contact-call:hover,
.quick-contact-call:focus-visible {
  background: var(--accent-soft);
}

.quick-contact-wa {
  background: #25d366;
}

.quick-contact-wa:hover,
.quick-contact-wa:focus-visible {
  background: #1ebe57;
}

.quick-contact svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  display: block;
}

.scroll-top {
  position: fixed;
  right: max(10px, env(safe-area-inset-right, 0px));
  bottom: calc(max(10px, env(safe-area-inset-bottom, 0px)) + 7.6rem);
  z-index: 70;
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(12, 61, 110, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.scroll-top svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

@media (max-width: 980px) {
  .quick-contact {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    gap: 0.7rem;
  }

  .scroll-top {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: calc(max(10px, env(safe-area-inset-bottom, 0px)) + 8.4rem);
    width: 3.5rem;
    height: 3.5rem;
  }

  .scroll-top svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .quick-contact a {
    width: 3.5rem;
    height: 3.5rem;
    min-height: 3.5rem;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .quick-contact a span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .quick-contact svg {
    width: 1.45rem;
    height: 1.45rem;
  }
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--navy);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--navy);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--mist);
}

/* Page hero */
.page-hero {
  position: relative;
  background: #06101c;
  color: #fff;
  overflow: hidden;
  min-height: clamp(16rem, 34vw, 22rem);
  display: flex;
  align-items: flex-end;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.05);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 28, 0.9) 0%, rgba(6, 16, 28, 0.62) 48%, rgba(6, 16, 28, 0.35) 100%),
    linear-gradient(180deg, rgba(6, 16, 28, 0.25) 0%, transparent 40%, rgba(6, 16, 28, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.25rem 0 3.1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.45;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1.6rem + 2.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 14ch;
}

.page-hero p {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* Cinema hero slider */
.cinema-hero {
  background: #06101c;
  position: relative;
}

.cinema-stage {
  position: relative;
  min-height: min(86vh, 760px);
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.cinema-stage:active {
  cursor: grabbing;
}

.cinema-slides,
.cinema-slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.cinema-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

.cinema-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.cinema-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.08) brightness(0.98);
  transition: transform 8s linear;
  image-rendering: -webkit-optimize-contrast;
}

.cinema-slide.is-active img {
  transform: scale(1);
}

.cinema-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 16, 28, 0.82) 0%, rgba(6, 16, 28, 0.45) 42%, rgba(6, 16, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 16, 28, 0.35) 0%, transparent 28%, rgba(6, 16, 28, 0.78) 100%);
}

.cinema-content {
  position: absolute;
  z-index: 3;
  left: max(1rem, calc((100% - var(--container)) / 2));
  right: 1rem;
  bottom: 7.5rem;
  max-width: 40rem;
  color: #fff;
}

.cinema-kicker,
.cinema-title,
.cinema-text,
.cinema-actions {
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.cinema-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ec4ea;
  font-weight: 600;
}

.cinema-title {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.cinema-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 1.8rem + 3.5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.cinema-line {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.45rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}

.cinema-text {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  font-size: 1.02rem;
}

.cinema-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.cinema-controls {
  position: absolute;
  z-index: 4;
  right: max(1rem, calc((100% - var(--container)) / 2));
  bottom: 7.5rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cinema-navbtn,
.cinema-play {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.cinema-navbtn:hover,
.cinema-play:hover,
.cinema-navbtn:focus-visible,
.cinema-play:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.cinema-play .icon-play,
.cinema-play.is-paused .icon-pause {
  display: none;
}

.cinema-play.is-paused .icon-play {
  display: block;
}

.cinema-play .icon-pause,
.cinema-play .icon-play {
  width: 0.7rem;
  height: 0.7rem;
  position: relative;
}

.cinema-play .icon-pause::before,
.cinema-play .icon-pause::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.18rem;
  height: 100%;
  background: currentColor;
}

.cinema-play .icon-pause::before { left: 0.1rem; }
.cinema-play .icon-pause::after { right: 0.1rem; }

.cinema-play .icon-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.35rem 0 0.35rem 0.6rem;
  border-color: transparent transparent transparent currentColor;
}

.cinema-counter {
  margin-left: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.cinema-counter i {
  margin: 0 0.25rem;
  font-style: normal;
  opacity: 0.5;
}

.cinema-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.cinema-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand-red), #ff7a7f);
}

.cinema-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem 0 1.35rem;
  position: relative;
  z-index: 5;
  margin-top: -4.2rem;
}

.slider-thumb {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(6, 16, 28, 0.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.slider-thumb:hover,
.slider-thumb:focus-visible {
  transform: translateY(-3px);
  border-color: var(--brand-blue);
}

.slider-thumb.is-active {
  border-color: var(--brand-red);
  box-shadow: 0 20px 44px rgba(12, 61, 110, 0.2);
}

.slider-thumb-media {
  display: block;
  width: 4.2rem;
  height: 3.1rem;
  overflow: hidden;
  background: var(--mist-2);
}

.slider-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-thumb-meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.slider-thumb-num {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--brand-blue);
  font-weight: 600;
}

.slider-thumb-label {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-thumb-bar {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(12, 61, 110, 0.1);
  overflow: hidden;
}

.slider-thumb-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand-red);
}

.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;
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-mist {
  background: var(--mist);
}

.section-white {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.35rem + 1.7vw, 2.85rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-head .section-title {
  position: relative;
  padding-bottom: 0.85rem;
}

.section-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
}

.section-navy .section-title {
  color: #fff;
}

.section-copy {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-weight: 300;
}

.section-navy .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.07s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Feature / service cards — used as interaction containers */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(1, 96, 170, 0.22);
}

.feature-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--mist-2);
  position: relative;
}

.feature-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(6, 16, 28, 0.18));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.feature-card:hover .feature-card-media::after {
  opacity: 1;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 0.85s var(--ease), filter 0.35s var(--ease);
}

.feature-card:hover .feature-card-media img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.05);
}

.feature-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.2rem 1.35rem;
  flex: 1;
}

.feature-card-body .index {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}

.feature-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--navy);
}

.feature-card-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  flex: 1;
}

.feature-card-body .link {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.feature-card-lift .link::after {
  content: " →";
}

.media-frame {
  box-shadow: var(--shadow-lg);
}

.trust-strip {
  padding-block: 0 !important;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: -1.5rem 0 0;
  position: relative;
  z-index: 2;
}

.trust-grid > div {
  background: var(--white);
  padding: 1.35rem 1rem;
  text-align: center;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
}

.trust-grid span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-template-rows: auto;
  gap: 1rem;
}

.project-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist-2);
  min-height: 280px;
}

.project-shot-lg {
  grid-row: span 1;
  min-height: 420px;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.92) contrast(1.04);
}

.project-shot:hover img {
  transform: scale(1.04);
}

.project-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(6, 16, 28, 0.78));
  color: #fff;
  display: grid;
  gap: 0.2rem;
}

.project-shot figcaption span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec4ea;
}

.project-shot figcaption strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 96, 170, 0.22);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist-2);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
  filter: saturate(0.94) contrast(1.03);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.3rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.blog-meta span {
  color: var(--brand-red);
  font-weight: 600;
}

.blog-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.blog-card-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  flex: 1;
}

.blog-card-body .link {
  margin-top: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.blog-card-body .link::after {
  content: " →";
}

.blog-article {
  max-width: 44rem;
}

.blog-article .blog-meta {
  margin-bottom: 1.25rem;
}

.blog-article p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.02rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--white);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Split content */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split-media {
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--mist-2);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split-copy .lead {
  margin: 0.9rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.65rem);
  line-height: 1.35;
  color: var(--navy);
}

.split-copy p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-weight: 300;
}

.check-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.35rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 0;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.4rem);
  font-weight: 400;
  max-width: 16ch;
}

.cta-band p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Content page */
.prose {
  max-width: 46rem;
}

.prose h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--navy);
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 300;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.side-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem;
  position: sticky;
  top: 5.5rem;
}

.side-panel h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 400;
}

.side-panel ul {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.side-panel li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 0.9rem;
  position: relative;
}

.side-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.contact-card h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
}

.contact-list {
  display: grid;
  gap: 1.1rem;
}

.contact-list span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.contact-list p,
.contact-list a {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
}

.contact-list a:hover {
  color: var(--navy-soft);
}

.contact-map {
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 360px;
  background: var(--white);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.15);
}

/* Footer */
.site-footer {
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 1.85rem;
  align-items: start;
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem 0.7rem 0.7rem;
  background: linear-gradient(180deg, #fff, #f7fafc);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(12, 61, 110, 0.06);
}

.footer-brand .brand-emblem {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  box-shadow: none;
}

.footer-brand .brand-emblem img {
  width: 1.95rem;
  height: 1.95rem;
}

.site-footer .brand-logo {
  height: 4.5rem;
  max-width: 150px;
}

.footer-lead {
  margin: 1rem 0 0;
  max-width: 24rem;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 0.95rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 600;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--navy);
}

.footer-contact address {
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.footer-tel {
  display: inline-block;
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.footer-mail {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  word-break: break-word;
  color: var(--muted) !important;
}

.footer-mail:hover,
.footer-mail:focus-visible {
  color: var(--brand-blue) !important;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.05rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--steel);
}

.footer-bottom a {
  color: var(--brand-blue);
}

/* Responsive */
@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 0.98rem;
    letter-spacing: 0.04em;
  }

  .brand-emblem {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 10px;
  }

  .brand-emblem img {
    width: 1.85rem;
    height: 1.85rem;
  }

  .header-inner {
    position: relative;
    z-index: 56;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(20rem, 88vw);
    height: 100dvh;
    margin: 0;
    padding: 5rem 1.2rem max(1.5rem, env(safe-area-inset-bottom));
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(110%);
    transition: transform 0.35s var(--ease);
    z-index: 54;
    overflow-y: auto;
    pointer-events: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-backdrop {
    z-index: 53;
  }

  .nav > a,
  .nav-drop > summary {
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-mega {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.2rem 0 0.6rem 0.6rem;
    background: transparent;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 56;
  }

  .split,
  .split.reverse,
  .feature-grid,
  .steps,
  .stats,
  .service-detail-grid,
  .contact-layout,
  .footer-inner,
  .trust-grid,
  .blog-grid,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse {
    direction: ltr;
  }

  .cinema-stage {
    min-height: min(78vh, 640px);
  }

  .cinema-content {
    bottom: 5.5rem;
    max-width: 92%;
  }

  .cinema-controls {
    bottom: 5.5rem;
  }

  .cinema-thumbs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -2.5rem;
  }

  .project-shot-lg {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .feature-grid,
  .steps,
  .stats,
  .split,
  .service-detail-grid,
  .contact-layout,
  .footer-inner,
  .trust-grid,
  .blog-grid,
  .project-grid,
  .cinema-thumbs {
    grid-template-columns: 1fr;
  }

  .cinema-stage {
    min-height: min(72vh, 560px);
  }

  .cinema-content {
    bottom: 4.25rem;
    right: 1rem;
  }

  .cinema-controls {
    left: max(1rem, calc((100% - var(--container)) / 2));
    right: auto;
    bottom: auto;
    top: 1rem;
  }

  .cinema-thumbs {
    margin-top: 0;
    padding-top: 0.85rem;
  }

  .slider-thumb {
    grid-template-columns: 3.6rem 1fr;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cinema-slide img,
  .slide img {
    transform: none !important;
    transition: none !important;
  }
}
