:root {
  --ink: #08233f;
  --charcoal: #0b2f55;
  --steel: #7090c0;
  --teal: #1050a0;
  --teal-dark: #063f83;
  --safety: #2060a0;
  --rust: #a0b8dc;
  --paper: #f3f8fd;
  --white: #ffffff;
  --line: rgba(8, 35, 63, 0.14);
  --shadow: 0 18px 45px rgba(8, 35, 63, 0.18);
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--safety);
  color: var(--white);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100% - 32px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 35, 63, 0.95);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(6, 31, 58, 0.98);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 160px;
  max-width: 360px;
  padding: 0.28rem;
  background: var(--white);
  border-radius: 6px;
}

.brand-logo {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.45rem 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #d0e0f0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 76svh;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 30%;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 27, 52, 0.9) 0%, rgba(16, 80, 160, 0.68) 50%, rgba(112, 144, 192, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 27, 52, 0.24), rgba(6, 27, 52, 0.24));
}

.hero-content {
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.production-band .eyebrow {
  color: var(--rust);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  font-size: 3.7rem;
  letter-spacing: 0;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:focus-visible,
.nav-toggle:focus-visible,
.tab-button:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(16, 80, 160, 0.5);
  outline-offset: 2px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-outline {
  background: var(--white);
  color: var(--teal-dark);
  border-color: rgba(16, 80, 160, 0.34);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 860px;
  margin: 2.5rem 0 0;
}

.hero-facts div {
  border-top: 3px solid #a0b8dc;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.9rem;
  backdrop-filter: blur(8px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.25rem 0 0;
  font-weight: 800;
}

.section {
  padding: 5rem 0;
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.intro-grid article {
  border-left: 3px solid var(--teal);
  padding-left: 1rem;
}

.mini-icon {
  display: inline-flex;
  color: var(--rust);
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.intro-grid h2 {
  font-size: 1.18rem;
}

.intro-grid p {
  margin: 0.65rem 0 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 3rem;
  align-items: center;
}

.section-copy > p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(16, 23, 25, 0.78);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mission-grid article,
.service-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mission-grid article {
  padding: 1.15rem;
}

.mission-grid p {
  margin: 0.55rem 0 0;
}

.image-feature {
  margin: 0;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-feature figcaption {
  margin-top: 0.75rem;
  color: rgba(16, 23, 25, 0.68);
  font-size: 0.92rem;
}

.service-section {
  background: #edf5fc;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.4rem;
}

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

.service-card {
  padding: 1.35rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(16, 80, 160, 0.12);
  border-radius: 8px;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.service-card li + li {
  margin-top: 0.45rem;
}

.production-band {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.production-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 27, 52, 0.84), rgba(16, 80, 160, 0.24));
  z-index: -1;
}

.production-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.production-copy {
  width: min(100% - 32px, var(--shell));
  margin: 0 auto;
  padding: 4rem 0;
  max-width: var(--shell);
}

.production-copy h2,
.production-copy p:not(.eyebrow) {
  max-width: 640px;
}

.production-copy p:not(.eyebrow) {
  font-size: 1.1rem;
}

.gallery-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.tab-button {
  border: 0;
  background: transparent;
  color: var(--charcoal);
  border-radius: 6px;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  background: var(--teal);
  color: var(--white);
}

.gallery-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-panel[hidden] {
  display: none;
}

.gallery-panel figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-panel figcaption {
  padding: 0.75rem 0.85rem;
  font-weight: 800;
}

.clients-section {
  background: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-grid img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  background: var(--white);
  padding: 1.35rem;
}

.contact-section {
  background: #0b2f55;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.88);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #d0e0f0;
}

.business-data {
  margin-top: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 23, 25, 0.22);
  border-radius: 6px;
  padding: 0.72rem 0.78rem;
  background: #fbfbf8;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  background: #061f3a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: #d0e0f0;
  font-weight: 800;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #083b1d;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.8rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .intro-grid,
  .services-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-feature {
    max-width: 520px;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    width: 190px;
    max-width: calc(100vw - 96px);
  }

  .brand-logo {
    height: 40px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 3.25rem 0 2.2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .mission-grid,
  .gallery-panel,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 1.4rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .gallery-tabs {
    display: grid;
    width: 100%;
  }

  .tab-button {
    width: 100%;
  }

  .client-grid img {
    height: 116px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
  }
}
