:root {
  --navy: #06234a;
  --deep: #041a38;
  --blue: #0b3568;
  --blue-700: #114f84;
  --blue-500: #2f7db4;
  --blue-300: #8fc6e6;
  --blue-150: #d8edf7;
  --blue-075: #edf7fc;
  --cyan: #08b6d8;
  --cyan-dark: #008eaf;
  --cyan-soft: #bceef7;
  --cyan-pale: #e8fbfe;
  --ink: #122033;
  --muted: #637082;
  --line: #dce5ee;
  --soft: #f3f7fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(4, 26, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Manrope", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

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

.site-header {
  min-height: 100vh;
  color: var(--white);
  background: var(--deep);
}

.navbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 26, 56, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}

.brand-logo {
  width: 230px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu > li {
  position: relative;
}

.main-menu a,
.submenu-toggle {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: #e8f2fb;
  font: inherit;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.main-menu > li > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.2) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms ease, opacity 240ms ease;
}

.main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.main-menu > li > a:hover::before,
.main-menu > li > a:focus-visible::before,
.main-menu > li > a.is-active::before {
  opacity: 1;
  transform: translateX(120%);
}

.main-menu > li > a:hover::after,
.main-menu > li > a:focus-visible::after,
.main-menu > li > a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-menu a:hover,
.submenu-toggle:hover,
.main-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.main-menu > li > a.is-active {
  color: var(--cyan);
  background: rgba(8, 182, 216, 0.12);
}

.nav-cta {
  border: 1px solid rgba(22, 184, 217, 0.5);
  background: rgba(8, 182, 216, 0.16) !important;
}

.submenu-toggle {
  display: none;
}

.dropdown,
.subdropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: 270px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(220, 229, 238, 0.8);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown a,
.subdropdown a {
  display: flex;
  min-height: 38px;
  color: var(--ink);
  font-size: 0.88rem;
  transition: color 180ms ease, background 180ms ease;
}

.dropdown a::after,
.subdropdown a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.dropdown a:hover::after,
.dropdown a:focus-visible::after,
.dropdown a.is-active::after,
.subdropdown a:hover::after,
.subdropdown a:focus-visible::after,
.subdropdown a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dropdown a.is-active,
.subdropdown a.is-active {
  color: var(--cyan-dark);
  background: #e9f7fb;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-submenu:hover > .subdropdown,
.has-submenu:focus-within > .subdropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-submenu {
  position: relative;
}

.subdropdown {
  top: -10px;
  left: calc(100% + 10px);
  width: 260px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 78px) 42px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--deep);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 78% 20%, rgba(8, 182, 216, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(4, 26, 56, 0.96), rgba(6, 35, 74, 0.78) 48%, rgba(4, 26, 56, 0.28));
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--slide-image) center/cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 4;
  align-self: end;
  justify-self: center;
  width: 100%;
  max-width: 860px;
  margin-bottom: clamp(150px, 18vh, 220px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lines {
  position: relative;
  min-height: 32px;
  max-width: 860px;
  margin: 0;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 860px;
  margin: 0;
  padding: 0 18px;
  color: var(--white);
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero-line.is-active {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-line.is-active::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 5px;
  vertical-align: -0.12em;
  background: var(--cyan);
  animation: cursorBlink 900ms steps(2, start) infinite;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  color: #dbe8f5;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--deep);
  background: var(--cyan);
  box-shadow: 0 18px 38px rgba(22, 184, 217, 0.26);
}

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

.button.ghost {
  color: var(--white);
  background: transparent;
}

.hero-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-panel span,
.hero-panel a {
  min-height: 96px;
  padding: 22px;
  color: #eff7ff;
  font-weight: 800;
  background: transparent;
}

.quick-access a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  transition: color 180ms ease, transform 160ms ease;
  text-transform: uppercase;
}

.quick-access a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.16) 49%, transparent 62%);
  opacity: 0;
  transform: translateX(-135%);
  transition: transform 520ms ease, opacity 240ms ease;
}

.quick-access a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.quick-access a:hover {
  transform: translateY(-2px);
}

.quick-access a:hover::before,
.quick-access a:focus-visible::before {
  opacity: 1;
  transform: translateX(135%);
}

.quick-access a:hover::after,
.quick-access a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.quick-access strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.quick-access span {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 0;
  color: #bfd4e8;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  background: transparent;
}

main {
  display: flex;
  flex-direction: column;
}

#nosotros {
  order: 1;
}

#servicios {
  order: 2;
}

#negocios {
  order: 3;
}

#importacion {
  order: 4;
}

#unidades {
  order: 5;
}

.proof-strip {
  order: 6;
}

#exportacion {
  order: 7;
}

#logistica {
  order: 8;
}

#tienda {
  order: 9;
}

#contacto {
  order: 10;
}

.section {
  padding: clamp(68px, 8vw, 118px) clamp(18px, 5vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.split p,
.section-heading p,
.contact-info p {
  color: var(--muted);
  font-size: 1.05rem;
}

.muted {
  background: var(--soft);
}

#servicios {
  color: var(--white);
  background: #004a69;
}

#servicios .eyebrow {
  color: var(--cyan-pale);
}

#servicios h2,
#servicios h3 {
  color: var(--white);
}

#servicios .section-heading p,
#servicios .card p {
  color: #e8f6fb;
}

#servicios .card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 0 18px 0 0;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease;
}

#servicios .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.2) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms ease, opacity 240ms ease;
  pointer-events: none;
}

#servicios .card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

#servicios .card:hover {
  transform: translateY(-2px);
}

#servicios .card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

#servicios .card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

#servicios .card > * {
  position: relative;
  z-index: 1;
  transition: color 180ms ease;
}

#servicios .card-kicker {
  margin-bottom: 33px;
  color: #2f7db4;
  font-size: 1.15rem;
}

#servicios .card:hover .card-kicker,
#servicios .card:hover h3 {
  color: var(--white);
}

#servicios .card:hover p {
  color: var(--cyan-pale);
}

#negocios {
  background: var(--white);
}

#negocios .section-heading {
  max-width: 900px;
}

#negocios .statement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#negocios .statement-grid span {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 96px;
  padding: 0 18px 12px 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  background: transparent;
  transition: color 180ms ease, transform 180ms ease;
}

#negocios .statement-grid span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(47, 125, 180, 0.16) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms ease, opacity 240ms ease;
  pointer-events: none;
}

#negocios .statement-grid span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2f7db4, transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

#negocios .statement-grid span:hover {
  color: #2f7db4;
  transform: translateY(-2px);
}

#negocios .statement-grid span:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

#negocios .statement-grid span:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.image-card {
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.image-card.tall {
  min-height: 620px;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(8, 182, 216, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(4, 26, 56, 0.98), rgba(6, 35, 74, 0.9));
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.08) 49%, transparent 62%);
  opacity: 0.55;
  transform: translateX(-32%);
  pointer-events: none;
}

.about-copy,
.about-image {
  position: relative;
  z-index: 1;
}

.about-copy {
  max-width: 760px;
  text-transform: uppercase;
}

.about-copy .eyebrow {
  font-weight: 700;
}

.about-copy h2 {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.about-copy p {
  max-width: 660px;
  color: #c8d9ea;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.about-copy p:last-child {
  position: relative;
  margin-top: 26px;
  padding-top: 20px;
}

.about-copy p:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 72%);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.about-image {
  border-radius: 8px;
  box-shadow: none;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.14) 48%, transparent 62%),
    linear-gradient(0deg, rgba(4, 26, 56, 0.34), rgba(4, 26, 56, 0.06));
  mix-blend-mode: screen;
  opacity: 0.58;
  pointer-events: none;
}

.about-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
}

.about-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  background: var(--deep);
}

.about-gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: opacity 220ms ease, transform 420ms ease;
}

.about-gallery figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.16) 49%, transparent 62%),
    linear-gradient(0deg, rgba(4, 26, 56, 0.76), rgba(4, 26, 56, 0.12));
  opacity: 0.72;
  transform: translateX(-135%);
  transition: transform 520ms ease, opacity 220ms ease;
  pointer-events: none;
}

.about-gallery figure::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-gallery figure:hover img {
  opacity: 0.96;
  transform: scale(1.06);
}

.about-gallery figure:hover::before {
  opacity: 0.88;
  transform: translateX(135%);
}

.about-gallery figure:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-gallery figcaption {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 28px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 28px 8px;
  background: var(--white);
}

.card.wide {
  grid-column: span 2;
}

.service-grid .card.wide {
  grid-column: auto;
}

.service-grid .card p {
  text-align: left;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan-dark);
  font-weight: 900;
}

.highlight,
.quote {
  padding-left: 20px;
  border-left: 4px solid var(--cyan);
  color: var(--navy) !important;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--deep);
}

.proof-strip div {
  min-height: 170px;
  padding: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.proof-number {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 0.92;
}

.proof-strip p {
  max-width: 260px;
  margin: 0;
  color: #d8e7f6;
  font-weight: 800;
}

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

.shop-section,
.product-modal {
  text-transform: uppercase;
}

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

.shop-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(4, 26, 56, 0.06);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.shop-card:hover {
  border-color: rgba(8, 182, 216, 0.38);
  box-shadow: 0 16px 34px rgba(4, 26, 56, 0.1);
  transform: translateY(-2px);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  background: var(--soft);
}

.shop-card div {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.shop-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.45;
}

.shop-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
}

.shop-label {
  align-self: flex-start;
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: transparent;
}

.shop-label.export {
  color: var(--white);
  background: var(--blue);
}

.shop-price {
  margin: 4px 0 16px;
  color: var(--navy) !important;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
}

.shop-price span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid var(--deep);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  background: var(--deep);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.shop-link:hover,
.detail-quote:hover {
  color: var(--deep);
  border-color: var(--deep);
  background: var(--white);
}

.shop-detail-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  color: var(--cyan-dark);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
}

.shop-detail-link:hover {
  color: var(--navy);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 26, 56, 0.72);
}

.product-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(4, 26, 56, 0.24);
}

.detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--white);
  cursor: pointer;
}

.detail-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  background: var(--soft);
}

.detail-content {
  padding: clamp(26px, 4vw, 44px);
}

.detail-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.detail-content h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
}

.detail-summary {
  color: var(--muted);
  font-weight: 300;
}

.detail-bullets {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.detail-bullets li {
  padding-left: 16px;
  border-left: 2px solid var(--cyan);
  color: var(--ink);
  font-weight: 400;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.detail-specs span {
  padding: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
  background: var(--white);
}

.detail-specs strong {
  display: block;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.detail-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--deep);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--deep);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 28px 8px;
  background: var(--soft);
}

.quote-title {
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 900;
}

.quote-empty {
  margin: 0;
  color: var(--muted);
}

.quote-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  background: #e9f7fb;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.business-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 26, 56, 0.07);
}

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

.business-card div {
  padding: 16px;
}

.business-card h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.16;
}

.business-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.42;
}

.tag-row,
.sector-list,
.process-list,
.statement-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row {
  margin-top: 16px;
}

.tag-row span,
.sector-list span,
.process-list span {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  background: #e9f7fb;
}

.logistics-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 26, 56, 0.94), rgba(6, 35, 74, 0.72)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.logistics-band h2,
.logistics-band p {
  color: var(--white);
}

.band-content {
  max-width: 880px;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px 8px 28px 8px;
  background: var(--line);
}

.statement-grid span {
  min-height: 135px;
  padding: 24px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  background: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--deep);
}

.contact-section h2,
.contact-section .contact-info p,
.contact-section address,
.contact-section a {
  color: var(--white);
}

address {
  margin-top: 24px;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

label {
  color: #d8e8f5;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  background: rgba(255, 255, 255, 0.1);
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 78px);
  color: #c6d6e7;
  background: #051426;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 8px;
}

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

  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 12px 18px 22px;
    background: rgba(4, 26, 56, 0.98);
  }

  .main-menu.is-open {
    display: block;
  }

  .main-menu a {
    justify-content: space-between;
    width: 100%;
  }

  .has-dropdown {
    display: grid;
    grid-template-columns: 1fr 42px;
  }

  .has-dropdown > a {
    grid-column: 1;
  }

  .submenu-toggle {
    display: inline-flex;
    grid-column: 2;
    width: 42px;
    padding: 0;
  }

  .submenu-toggle::after {
    content: "+";
    width: 100%;
    color: var(--cyan);
    font-weight: 900;
    text-align: center;
  }

  .dropdown,
  .subdropdown {
    position: static;
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin: 4px 0 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-dropdown.is-open > .dropdown,
  .has-submenu:hover > .subdropdown,
  .has-submenu:focus-within > .subdropdown {
    display: block;
  }

  .cards,
  .business-grid,
  .shop-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-panel,
  .split,
  .contact-section,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-modal {
    padding: 14px;
  }

  .detail-image {
    min-height: 280px;
    max-height: 360px;
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .cards,
  .business-grid,
  .shop-grid,
  .about-gallery,
  .proof-strip,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .business-card.featured,
  .card.wide {
    grid-column: auto;
  }

  .image-card,
  .image-card.tall {
    min-height: 320px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 160px;
  }

  .brand-logo {
    width: 160px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions .button {
    width: 100%;
  }
}

.shop-section h2,
.shop-section h3,
.shop-section p,
.shop-section span,
.shop-section button,
.shop-section li,
.product-modal h3,
.product-modal p,
.product-modal span,
.product-modal strong,
.product-modal button,
.product-modal li {
  text-transform: uppercase;
}

.shop-card h3,
.product-detail h3,
.detail-specs strong {
  font-weight: 800;
}

.shop-card p,
.detail-summary,
.detail-bullets li,
.detail-specs span {
  font-weight: 300;
}

.shop-link,
.detail-quote {
  font-weight: 600;
}
