:root {
  --navy: #071e36;
  --navy-deep: #03111f;
  --navy-soft: rgba(7, 30, 54, 0.08);
  --gold: #c7a064;
  --gold-soft: rgba(199, 160, 100, 0.14);
  --gold-strong: #ddb67a;
  --white: #ffffff;
  --soft-white: #f8f6f1;
  --footer-gray: #ebe9e4;
  --text-soft: #607086;
  --line: rgba(7, 30, 54, 0.1);
  --shadow: 0 24px 60px rgba(7, 30, 54, 0.16);
  --shadow-soft: 0 18px 42px rgba(7, 30, 54, 0.1);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at top left, rgba(199, 160, 100, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

p,
li,
a,
span {
  letter-spacing: 0.01em;
}

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

.section {
  padding: 110px 0;
}

.weight-heavy {
  font-weight: 800;
}

.weight-light {
  font-weight: 300;
}

.section-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold);
}

.section-label.light {
  color: var(--white);
}

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

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.18rem;
}

.site-shell {
  overflow: clip;
}

.topbar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
}

.topbar p,
.topbar a {
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--gold-strong);
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(135deg, rgba(3, 17, 31, 0.96), rgba(7, 30, 54, 0.92));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(3, 17, 31, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(135deg, rgba(3, 17, 31, 0.98), rgba(7, 30, 54, 0.96));
  box-shadow: 0 20px 44px rgba(3, 17, 31, 0.24);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 0;
}

.logo-wrap {
  width: 200px;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-wrap img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  transform: scale(2.6);
  transform-origin: center center;
}

.logo,
.footer-logo,
.contact-logo {
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  position: relative;
  transition: color 0.25s ease;
}

.nav a:not(.nav-cta)::after,
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.nav-cta,
.btn,
.collection-card,
.trust-card,
.info-card,
.metric,
.contact-card,
.process-overlay-card,
.collection-card figure img,
.company-gallery img,
.masonry-grid img {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: var(--navy) !important;
  box-shadow: 0 12px 24px rgba(199, 160, 100, 0.22);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e7c48f, var(--gold-strong));
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 70;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.closing-banner-media,
.closing-overlay,
.feature-banner-media,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media img,
.closing-banner-media img,
.feature-banner-media img,
.process-visual img,
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(92deg, rgba(3, 17, 31, 0.92) 0%, rgba(7, 30, 54, 0.72) 34%, rgba(7, 30, 54, 0.28) 72%, rgba(7, 30, 54, 0.18) 100%);
}

.hero-glow {
  pointer-events: none;
}

.hero-glow-one {
  background: radial-gradient(circle at 20% 30%, rgba(199, 160, 100, 0.24), transparent 22%);
}

.hero-glow-two {
  background: radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.12), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 28px;
  padding: 86px 0 74px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;
  font-size: 1.08rem;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.btn:hover,
.contact-card a:hover,
.collection-card:hover,
.trust-card:hover,
.info-card:hover,
.metric:hover {
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(199, 160, 100, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 36px rgba(199, 160, 100, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-trustline,
.feature-points,
.contact-note,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trustline {
  margin-top: 26px;
}

.hero-trustline span,
.feature-points span,
.contact-note span,
.hero-badges span,
.mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-side-card {
  align-self: start;
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-side-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 16px;
}

.hero-side-card p:not(.section-label) {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-stats {
  grid-column: 1 / -1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
}

.hero-stats article,
.metric,
.info-card,
.contact-card,
.feature-panel,
.floating-card,
.trust-card,
.collection-card,
.process-overlay-card,
.process-visual,
.cta-band-inner {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong,
.metric strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--navy);
}

.hero-stats span,
.metric span {
  color: var(--text-soft);
}

.trust-strip {
  position: relative;
  margin-top: -34px;
  z-index: 2;
}

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

.trust-card {
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 30, 54, 0.06);
}

.trust-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--gold);
  background: linear-gradient(180deg, rgba(199, 160, 100, 0.14), rgba(199, 160, 100, 0.04));
}

.intro {
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.7) 0%, var(--white) 100%);
}

.intro-grid,
.company-grid,
.contact-grid,
.process-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.intro-copy p:not(.section-label),
.company-copy p,
.contact-copy p,
.feature-panel p,
.heading-side-copy,
.process-copy > p,
.cta-band-actions p {
  font-size: 1rem;
  color: var(--text-soft);
}

.copy-points,
.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.copy-points div,
.contact-highlights div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(7, 30, 54, 0.06);
  box-shadow: var(--shadow-soft);
}

.copy-points strong,
.contact-highlights strong {
  display: block;
  margin-bottom: 8px;
}

.copy-points p,
.contact-highlights p {
  margin: 0;
}

.intro-visual {
  position: relative;
  min-height: 560px;
}

.floating-card {
  position: absolute;
  overflow: hidden;
  padding: 16px;
}

.material-card {
  inset: 0 72px 120px 0;
}

.palette-card {
  right: 0;
  bottom: 34px;
  width: min(290px, 54%);
}

.logo-mini-card {
  left: 28px;
  bottom: 0;
  width: 220px;
  padding: 16px 20px;
  background: rgba(7, 30, 54, 0.92);
}

.logo-mini-card img {
  height: 100%;
  object-fit: contain;
}

.collections {
  position: relative;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 44px;
}

.heading-side-copy {
  max-width: 420px;
  margin: 0;
}

.split-heading {
  align-items: center;
}

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

.collection-card {
  overflow: hidden;
  border: 1px solid rgba(7, 30, 54, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.collection-card:hover,
.trust-card:hover,
.info-card:hover,
.metric:hover,
.contact-card:hover,
.process-overlay-card:hover {
  box-shadow: 0 30px 60px rgba(7, 30, 54, 0.16);
}

.collection-card figure {
  height: 260px;
  overflow: hidden;
}

.collection-card:hover figure img,
.company-gallery figure:hover img,
.masonry-grid figure:hover img,
.process-visual:hover img {
  transform: scale(1.05);
}

.collection-card-body {
  padding: 24px;
}

.collection-card-body h3 {
  margin: 10px 0 12px;
}

.collection-card-body p {
  margin: 0;
  color: var(--text-soft);
}

.mini-tag {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: rgba(199, 160, 100, 0.18);
}

.mini-tag.inverse {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

/* ==========================================
   MODIFICACIÓN ENFOCADA: .feature-banner (ESPACIO LATERAL)
   ========================================== */
.feature-banner {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 12% 24px; /* Añadido padding lateral de 24px para dar espacio a los lados */
}

.feature-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 31, 0.96) 0%, rgba(7, 30, 54, 0.85) 35%, rgba(7, 30, 54, 0.4) 70%, rgba(7, 30, 54, 0.15) 100%);
  z-index: 1;
}

.feature-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1180px; /* Asegura que el contenido se alinee con el contenedor global */
  margin: 0 auto;    /* Centra el bloque de contenido dentro del espacio lateral */
}

.feature-story {
  max-width: 620px;
  color: var(--white);
}

.feature-story h2 {
  max-width: 13ch;
}

.feature-story p:not(.section-label) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.feature-story-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-story-grid article {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.feature-story-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-story-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
}

.feature-panel {
  max-width: 540px;
  padding: 42px;
  justify-self: end;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.94);
}

/* ========================================== */

.standards {
  background:
    radial-gradient(circle at top right, rgba(199, 160, 100, 0.2), transparent 22%),
    linear-gradient(180deg, var(--navy) 0%, #0b2847 100%);
  color: var(--white);
}

.standards .section-heading h2,
.standards .heading-side-copy,
.standards .info-card h3,
.standards .info-card p {
  color: inherit;
}

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

.info-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.process {
  background: linear-gradient(180deg, var(--white) 0%, rgba(248, 246, 241, 0.86) 100%);
}

.process-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(7, 30, 54, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-steps article span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(199, 160, 100, 0.16), rgba(199, 160, 100, 0.04));
  color: var(--gold);
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 6px;
}

.process-steps p,
.cta-band-actions p,
.contact-card p,
.footer-brand p {
  margin: 0;
}

.process-visual {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.process-overlay-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 320px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 30, 54, 0.06);
}

.process-overlay-card strong {
  display: block;
  margin-bottom: 8px;
}

.process-overlay-card p {
  color: var(--text-soft);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.metric {
  padding: 24px;
  background: var(--soft-white);
  border: 1px solid rgba(7, 30, 54, 0.06);
}

.company-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.company-gallery figure,
.masonry-grid figure,
.process-visual {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.company-gallery img,
.masonry-grid img {
  height: 100%;
  object-fit: cover;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 246, 241, 0.88) 100%);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 18px;
}

.masonry-grid .wide {
  grid-column: span 6;
  grid-row: span 2;
}

.masonry-grid figure:nth-child(2) {
  grid-column: span 6;
  grid-row: span 2;
}

.masonry-grid figure:nth-child(3),
.masonry-grid figure:nth-child(4),
.masonry-grid figure:nth-child(5),
.masonry-grid figure:nth-child(6),
.masonry-grid figure:nth-child(7) {
  grid-column: span 4;
  grid-row: span 2;
}

.cta-band {
  padding-top: 0;
}

.cta-band-inner {
  padding: 38px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  border: 1px solid rgba(7, 30, 54, 0.06);
  background:
    radial-gradient(circle at top right, rgba(199, 160, 100, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 241, 0.92));
}

.cta-band-actions {
  display: grid;
  gap: 18px;
  align-content: center;
}

.closing-banner {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.closing-overlay {
  background: linear-gradient(90deg, rgba(3, 17, 31, 0.9) 0%, rgba(7, 30, 54, 0.62) 42%, rgba(7, 30, 54, 0.18) 100%);
}

.closing-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 120px 0;
}

.closing-content p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  background: var(--white);
}

.contact-card {
  padding: 34px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, var(--navy) 0%, #0c2744 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.contact-logo {
  width: 132px;
}

.contact-card a,
.contact-card p {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}

.contact-note {
  margin-top: 10px;
}

.site-footer {
  padding: 34px 0 46px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-logo {
  width: 148px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero-content,
  .cta-band-inner,
  .intro-grid,
  .company-grid,
  .contact-grid,
  .process-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-side-card {
    max-width: 560px;
    margin-top: 0;
  }

  .trust-strip-grid,
  .collection-grid,
  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none !important;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    box-shadow: none;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 65;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav a {
    width: auto;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    color: var(--white);
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .nav a:hover {
    color: var(--gold);
    transform: scale(1.05);
  }

  .nav a.nav-cta {
    margin-top: 14px;
    padding: 12px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  }

  .hero-stats,
  .metric-row,
  .company-gallery,
  .copy-points,
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    min-height: 500px;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .masonry-grid .wide,
  .masonry-grid figure:nth-child(2),
  .masonry-grid figure:nth-child(3),
  .masonry-grid figure:nth-child(4),
  .masonry-grid figure:nth-child(5),
  .masonry-grid figure:nth-child(6),
  .masonry-grid figure:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 82px 0 56px;
  }

  .hero-overlay,
  .closing-overlay {
    background: linear-gradient(180deg, rgba(3, 17, 31, 0.92) 0%, rgba(7, 30, 54, 0.64) 58%, rgba(7, 30, 54, 0.34) 100%);
  }

  /* REAJUSTE RESPONSIVO EN EL BANNER: Se añade espacio lateral también en pantallas pequeñas */
  .feature-banner {
    padding: 90px 24px;
  }

  .feature-banner::after {
    background: linear-gradient(180deg, rgba(3, 17, 31, 0.96) 0%, rgba(7, 30, 54, 0.85) 100%);
  }

  .trust-strip {
    margin-top: -18px;
  }

  .trust-strip-grid,
  .collection-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    min-height: 420px;
  }

  .material-card {
    inset: 0 26px 104px 0;
  }

  .palette-card {
    width: 200px;
  }

  .logo-mini-card {
    width: 180px;
  }

  .feature-panel,
  .contact-card,
  .hero-stats article,
  .metric,
  .info-card,
  .process-overlay-card,
  .trust-card,
  .collection-card-body,
  .cta-band-inner,
  .feature-story-grid article {
    padding: 24px;
  }

  .feature-banner-content,
  .feature-story-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-panel {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100vw - 28px, 1180px);
  }

  .topbar-links,
  .hero-actions,
  .hero-trustline,
  .hero-badges,
  .feature-points,
  .contact-note,
  .footer-links {
    gap: 10px;
  }

  .topbar-links,
  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-side-card {
    padding: 22px;
  }

  .collection-card figure {
    height: 220px;
  }

  .process-steps article {
    grid-template-columns: 1fr;
  }

  .process-steps article span {
    width: 54px;
    height: 54px;
  }

  .process-visual {
    min-height: 460px;
  }

  .cta-band-inner {
    padding: 26px;
  }

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

  .logo-wrap {
    width: 155px;
  }
  
  .logo-wrap img {
    height: 50px;
    transform: scale(2.6);
    transform-origin: center center;
  }

  .footer-logo,
  .contact-logo {
    width: 126px;
  }

  .nav {
    left: 0;
    right: 0;
  }
}