:root {
  --navy-950: #031827;
  --navy-900: #06243a;
  --navy-800: #0a3351;
  --navy-700: #174865;
  --gold-600: #9b620c;
  --gold-500: #bd821d;
  --gold-300: #dfbd79;
  --ivory: #f6f3ec;
  --sand: #ece5d8;
  --white: #ffffff;
  --ink: #132a3a;
  --muted: #5e6d77;
  --line: #d9dedf;
  --shadow-sm: 0 10px 30px rgba(3, 24, 39, 0.08);
  --shadow-lg: 0 30px 70px rgba(3, 24, 39, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(780px, 100%);
}

.section {
  padding: 104px 0;
}

.section--compact {
  padding: 72px 0;
}

.section--ivory {
  background: var(--ivory);
}

.section--navy {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(189, 130, 29, 0.18), transparent 28rem),
    var(--navy-950);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section--navy .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--gold-300);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.75rem);
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.page-hero h1,
.hero h1 {
  color: var(--white);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.section--navy .lead,
.page-hero .lead,
.hero .lead {
  color: rgba(255, 255, 255, 0.77);
}

.muted {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ce9226;
  box-shadow: 0 10px 24px rgba(189, 130, 29, 0.24);
}

.button:disabled {
  transform: none;
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button--navy {
  background: var(--navy-900);
  color: var(--white);
}

.button--navy:hover {
  background: var(--navy-800);
  box-shadow: 0 10px 24px rgba(6, 36, 58, 0.2);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 24, 39, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 47px;
  height: 40px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-group {
  margin-top: 6px;
  color: var(--gold-300);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 690;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold-500);
  content: "";
  transition: transform 180ms ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-link {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.header-contact {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-2px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 70%, rgba(189, 130, 29, 0.15), transparent 28rem),
    linear-gradient(90deg, rgba(3, 24, 39, 0.08), rgba(3, 24, 39, 0));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 70px;
  padding: 78px 0;
}

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

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
}

.hero .lead {
  max-width: 630px;
}

.hero-media {
  position: relative;
  min-height: 610px;
}

.hero-media::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 140px;
  height: 140px;
  border-top: 2px solid var(--gold-500);
  border-right: 2px solid var(--gold-500);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 610px;
  border-radius: 180px 20px 20px 20px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-media.hero-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-media.hero-collage img {
  width: 100%;
  min-height: 0;
  height: 100%;
  border-radius: 18px;
  background: var(--white);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-media.hero-collage img:first-child {
  grid-row: 1 / 3;
  border-radius: 150px 18px 18px 18px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: min(300px, calc(100% - 48px));
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(3, 24, 39, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 0.95rem;
}

.hero-note span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

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

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.capability {
  position: relative;
  padding: 32px 36px;
}

.capability + .capability {
  border-left: 1px solid var(--line);
}

.capability small,
.capability strong {
  display: block;
}

.capability small {
  margin-bottom: 4px;
  color: var(--gold-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability strong {
  color: var(--navy-950);
  font-size: 1.02rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 98px;
  background:
    linear-gradient(120deg, rgba(3, 24, 39, 1) 10%, rgba(10, 51, 81, 0.96) 100%);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(223, 189, 121, 0.28);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero .lead {
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

/* Layout components */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 760px;
}

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

.cards--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-sm);
}

.card-number {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.card-link span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-copy {
  max-width: 590px;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.split-media--portrait img {
  height: 640px;
}

.image-badge {
  position: absolute;
  right: -18px;
  bottom: 26px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.image-badge small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

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

.fact-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.fact-list li::before {
  color: var(--gold-600);
  content: "\2713";
  font-weight: 900;
}

.dark-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.dark-grid .lead {
  color: rgba(255, 255, 255, 0.72);
}

.line-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.line-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.line-list span {
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.line-list strong {
  font-size: 1.1rem;
}

.line-list p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.media-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.media-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.media-card-body {
  padding: 28px;
}

.media-card-body p:last-child {
  margin-bottom: 0;
}

.label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--gold-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.brand-band h2,
.brand-band h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.brand-band p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

/* Companies */
.company-section {
  scroll-margin-top: 95px;
}

.company-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  margin-bottom: 48px;
}

.company-intro h2 {
  margin-bottom: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.product-tile {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  border-radius: var(--radius-md);
  background: var(--navy-900);
}

.product-tile:nth-child(1),
.product-tile:nth-child(5) {
  grid-column: span 6;
}

.product-tile:nth-child(2),
.product-tile:nth-child(6) {
  grid-column: span 6;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-tile::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(3, 24, 39, 0.86));
  content: "";
}

.product-tile:hover img {
  transform: scale(1.035);
}

.product-name {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 750;
}

.partnership-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partnership-gallery img {
  width: 100%;
  height: 310px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.mosqueta-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 20px;
}

.mosqueta-logo-panel {
  display: grid;
  min-height: 480px;
  place-items: center;
  padding: 45px;
  border-radius: var(--radius-md);
  background: var(--white);
}

.mosqueta-logo-panel img {
  max-height: 300px;
  object-fit: contain;
}

.mosqueta-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mosqueta-products img {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.mosqueta-copy-panel {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
}

.mosqueta-copy-panel h2 {
  color: var(--white);
}

.operation-panel {
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.operation-panel h3 {
  color: var(--white);
}

.operation-flow {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.operation-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.operation-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.73rem;
  font-weight: 850;
}

.project-card-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: var(--gold-500);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta .button {
  flex: 0 0 auto;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 70px;
}

.contact-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list small,
.contact-list strong,
.contact-list a {
  display: block;
}

.contact-list small {
  margin-bottom: 4px;
  color: var(--gold-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--navy-900);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd3d6;
  border-radius: 10px;
  background: #fbfcfc;
  color: var(--ink);
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  outline: 3px solid rgba(189, 130, 29, 0.17);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-status {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 650;
}

.model-note {
  margin: 20px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--gold-500);
  background: var(--ivory);
  color: var(--muted);
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.8fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 430px;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: block;
    grid-column: 1 / -1;
    padding: 34px 24px;
    background: var(--navy-950);
  }

  .js .site-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  }

  .js .site-nav.is-open {
    display: block;
  }

  .nav-list {
    width: 100%;
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .js .site-nav .nav-list {
    width: var(--container);
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-list a {
    display: block;
    padding: 18px 0;
    font-size: 1.2rem;
  }

  .nav-list a::after {
    display: none;
  }

  .header-actions {
    position: absolute;
    right: 72px;
  }

  .header-contact {
    display: none;
  }

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

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 90px 0 72px;
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
    height: 520px;
  }

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

  .split,
  .split--reverse,
  .company-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-copy {
    order: -1;
  }

  .company-intro {
    gap: 24px;
  }

  .dark-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(1180px, calc(100% - 28px));
  }

  .section {
    padding: 76px 0;
  }

  .section--compact {
    padding: 56px 0;
  }

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

  .js .site-nav {
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
  }

  .brand img {
    width: 40px;
    height: 34px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-group {
    font-size: 0.55rem;
  }

  .header-actions {
    right: 62px;
  }

  .hero-grid {
    padding-top: 68px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
  }

  .hero-media,
  .hero-media img {
    height: 390px;
  }

  .hero-media img {
    border-radius: 100px 16px 16px 16px;
  }

  .hero-media::before {
    top: -10px;
    right: -6px;
    width: 90px;
    height: 90px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
  }

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

  .capability {
    padding: 24px 0;
  }

  .capability + .capability {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-hero {
    padding: 80px 0 72px;
  }

  .section-head,
  .cta-inner,
  .brand-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cards,
  .cards--four,
  .media-cards,
  .mosqueta-grid,
  .mosqueta-products,
  .partnership-gallery,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 240px;
    padding: 28px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .split-media img,
  .split-media--portrait img {
    height: 420px;
  }

  .image-badge {
    right: 12px;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .product-tile,
  .product-tile:nth-child(1),
  .product-tile:nth-child(2),
  .product-tile:nth-child(5),
  .product-tile:nth-child(6) {
    grid-column: auto;
  }

  .mosqueta-logo-panel,
  .mosqueta-copy-panel,
  .mosqueta-products img {
    min-height: 0;
    height: 410px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .brand-copy {
    display: none;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-tile,
  .product-tile:nth-child(1),
  .product-tile:nth-child(2),
  .product-tile:nth-child(5),
  .product-tile:nth-child(6) {
    grid-column: 1;
  }

  .button-row .button {
    width: 100%;
  }
}

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

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