@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Wix+Madefor+Text:wght@400;600;700&display=swap");

:root {
  --bg: #070b12;
  --surface: #0a0d14;
  --text: #ffffff;
  --accent: #0055ff;
  --line: rgba(255, 255, 255, 0.78);
  --container: 1150px;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --sans: "Wix Madefor Text", Arial, sans-serif;
  --section-title-size: clamp(34px, 3.3vw, 44.75px);
  --product-image-border: 1px solid rgba(255, 255, 255, 0.30);
  --product-image-radius: 10px;
  --product-image-shadow: 0 0 15px 5px rgba(0, 85, 255, 0.32), 0 26px 60px rgba(0, 0, 0, 0.54);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--mono);
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 147px;
  border-bottom: 1px solid var(--accent);
  background: #050910;
}
.nav-wrap { display: flex; height: 146px; align-items: center; justify-content: space-between; }
.brand { flex: 0 0 auto; }
.brand img { width: 457px; height: 141px; object-fit: contain; }
.site-nav {
  display: flex;
  min-width: 446px;
  height: 49px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-inline: 36px;
  border-radius: 10px;
  background: #47474a;
}
.site-nav a { padding: 6px 0; color: #fff; font-size: 14.75px; font-weight: 400; }
.site-nav a:hover, .site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 3px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  color: #fff;
  background: #47474a;
  cursor: pointer;
}

/* Inicio: portada */
.hero { position: relative; min-height: 726px; overflow: hidden; background: #05070c; }
.hero video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero video { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(3, 6, 11, 0.42), rgba(3, 6, 11, 0.08) 68%, rgba(3, 6, 11, 0.28)); }
.hero-content {
  position: relative;
  z-index: 1;
  display: block;
  width: min(calc(100% - 128px), 1222px);
  max-width: none;
  min-height: 726px;
  padding-top: 48px;
}
.hero-content .eyebrow {
  margin-bottom: 60px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-content h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(46px, 4.7vw, 64px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
}

/* Inicio: productos */
.products-showcase {
  position: relative;
  min-height: 798px;
  overflow: visible;
  padding: 0;
  background: #060b13 url("assets/images/home-background.png") center / cover no-repeat;
}
.products-showcase .container {
  display: grid;
  width: min(calc(100% - 160px), 1196px);
  min-height: 798px;
  grid-template-columns: 430px 701px;
  gap: 66px;
}
.section-heading { padding-top: 40px; }
.section-heading h2 { margin: 0 0 16px; font-size: clamp(40px, 3.7vw, 50.55px); font-weight: 400; line-height: 1.08; }
.section-heading p { max-width: 372px; margin: 0; color: #fff; font-size: 17.05px; line-height: 1.26; }
.product-grid {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, 342px);
  grid-template-rows: repeat(2, 368px);
  gap: 28px 17px;
  transform: translateY(-60px);
}
.product-image-frame,
.product-card {
  border: var(--product-image-border);
  border-radius: var(--product-image-radius);
  box-shadow: var(--product-image-shadow);
}
.product-card {
  position: relative;
  width: 342px;
  height: 337px;
  overflow: hidden;
  background: #070b12;
}
.product-card:nth-child(2), .product-card:nth-child(3) { height: 368px; }
.product-card:nth-child(2) { transform: translateY(84px); }
.product-card:nth-child(4) { height: 337px; transform: translateY(86px); }
.product-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 350ms ease; }
.product-card:hover img { transform: scale(1.025); }
.product-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 11, 0.86), rgba(3, 6, 11, 0.08) 45%, rgba(3, 6, 11, 0.12));
  content: "";
}
.product-card-content { position: absolute; z-index: 1; top: 20px; right: 20px; left: 20px; }
.product-card-content h3 { margin: 0; font-size: 25.25px; font-weight: 400; line-height: 1.2; }
.product-card-content p { display: none; }

/* Inicio: asesoramiento */
.advice-showcase {
  min-height: 520px;
  padding: 58px 0;
  border-block: 1px solid var(--line);
  background: #060b13 url("assets/images/page-background.png") center / cover no-repeat;
}
.advice-showcase-layout {
  display: grid;
  width: min(calc(100% - 120px), 1196px);
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 64px;
}
.advice-showcase-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(40px, 3.7vw, 50.55px);
  font-weight: 400;
  line-height: 1.08;
}
.advice-showcase-copy p {
  margin: 0 0 21px;
  color: #fff;
  font-size: 17.05px;
  line-height: 1.26;
  text-align: justify;
  text-justify: inter-word;
}
.advice-showcase-copy p:last-child { margin-bottom: 0; }
.advice-showcase-media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: #03070d;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 85, 255, 0.1);
}
.advice-showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.advice-showcase-media:hover img { transform: scale(1.025); }
.advice-showcase-media:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

/* Inicio: Nuestra meta */
.mission {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #060b13 url("assets/images/page-background.png") center / cover no-repeat;
}
.mission .container {
  position: relative;
  width: min(calc(100% - 154px), 1208px);
  min-height: 543px;
  padding-top: 20px;
}
.mission h2 { margin: 0 0 0 22px; font-size: clamp(40px, 3.7vw, 50.55px); font-weight: 400; line-height: 1.08; }
.mission-watermark {
  margin: 16px 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  filter: none;
}
.feature-list { display: grid; margin-top: 56px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature { min-height: 258px; padding: 0 40px; border-right: 1px solid rgba(255, 255, 255, 0.72); }
.feature:first-child { padding-left: 0; }
.feature:last-child { padding-right: 0; border-right: 0; }
.feature strong {
  display: block;
  min-height: 62px;
  margin-bottom: 25px;
  color: var(--accent);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}
.feature p { margin: 0; color: #fff; font-size: 14.92px; line-height: 1.25; text-align: justify; }
.mission-claim {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  margin: 0;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 25.6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

/* Productos */
.page-hero {
  position: relative;
  min-height: 213px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #060b13 url("assets/images/page-background.png") center / cover no-repeat;
}
.products-page .page-hero .container { width: min(calc(100% - 190px), 1163px); padding-top: 71px; }
.products-page .page-hero .eyebrow {
  margin: 0 0 27px;
  color: #fff;
  font-size: var(--section-title-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}
.products-page .page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.85vw, 25.27px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.2;
}
.product-detail {
  min-height: 722px;
  padding: 64px 0 59px;
  border-bottom: 1px solid var(--line);
  background: #060b13 url("assets/images/page-background.png") center / cover no-repeat;
  scroll-margin-top: 147px;
}
.product-detail-layout {
  display: grid;
  width: min(calc(100% - 142px), 1192px);
  min-height: 586px;
  grid-template-columns: 530px minmax(0, 1fr);
  gap: 10px;
  padding: 62px 32px 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  background: rgba(3, 7, 13, 0.27);
}
.gallery { min-width: 0; }
.gallery-stage { position: relative; width: 530px; overflow: hidden; aspect-ratio: 16 / 9; background: #03070d; }
.gallery-stage img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #d8d8d8;
  background: rgba(3, 6, 12, 0.52);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}
.gallery-control.prev { left: 20px; }
.gallery-control.next { right: 20px; }
.gallery-thumbs { display: none; }
.product-copy { min-width: 0; margin-top: -22px; }
.product-copy .eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 29.84px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}
.product-copy h2, .product-copy h3, .product-copy p, .spec-list { font-size: 14.92px; line-height: 1.25; }
.product-copy h2 { margin: 0; font-weight: 600; }
.product-copy h3 { margin: 17px 0 8px; font-weight: 600; }
.product-copy p { margin-bottom: 0; color: #fff; }
.products-page .product-copy p,
.products-page .spec-list li { text-align: justify; }
.product-copy .lead { margin-top: 17px; }
.product-copy p + p { margin-top: 14px; }
.spec-list { margin: 0 0 14px; padding: 0; list-style: none; }
.spec-list li {
  display: grid;
  min-height: 18.65px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: #fff;
}
.spec-list li::before {
  color: var(--accent);
  content: "+";
  font-size: 18px;
  line-height: 1;
}
.btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}
.btn-primary, .product-copy .btn {
  width: min(100%, 537px);
  margin-top: 14px;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-family: var(--mono);
  font-size: 13.33px;
  font-weight: 400;
  transition: background-color 180ms ease;
}
.btn-primary:hover, .product-copy .btn:hover {
  color: #fff;
  background: #0046d4;
}
.btn-primary:focus-visible, .product-copy .btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Asesoramiento */
.advice-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #060b13 url("assets/images/page-background.png") center / cover no-repeat;
}
.advice-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 5, 10, 0.16), rgba(2, 5, 10, 0.36));
  content: "";
}
.advice-section .eyebrow,
.advice-section h1,
.advice-section .advice-intro-copy,
.advice-section .advice-details > p,
.advice-section .scope-list li,
.advice-section .scope-note,
.advice-section .advice-closing h2,
.advice-section .advice-closing p:not(.contact-eyebrow) {
  text-align: justify;
  text-justify: inter-word;
}
.advice-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  grid-template-areas:
    "intro visual"
    "details visual"
    "closing closing";
  align-items: start;
  gap: 34px 56px;
  padding-block: 68px 78px;
}
.advice-intro { grid-area: intro; }
.advice-intro > .eyebrow {
  margin: 0 0 27px;
  color: #fff;
  font-family: var(--mono);
  font-size: var(--section-title-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}
.advice-intro h1 {
  max-width: 650px;
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--mono);
  font-size: clamp(22px, 2.2vw, 29.84px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}
.advice-intro-copy {
  max-width: 640px;
  margin-bottom: 0;
  color: #fff;
  font-family: var(--mono);
  font-size: 17.05px;
  line-height: 1.26;
}
.advice-visual {
  grid-area: visual;
  align-self: start;
  width: 100%;
  margin-top: clamp(64.4px, calc(3.63vw + 27px), 76.23px);
}
.advice-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  background: #03070d;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.54), 0 0 45px rgba(0, 85, 255, 0.12);
}
.advice-hero::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 65%, rgba(2, 6, 12, 0.15));
  pointer-events: none;
  content: "";
}
.advice-hero img { width: 100%; height: 100%; object-fit: cover; }
.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.advice-details { grid-area: details; }
.advice-details > p:first-child {
  max-width: 640px;
  margin: 0 0 25px;
  color: #fff;
  font-family: var(--mono);
  font-size: 17.05px;
  line-height: 1.26;
}
.scope-list { margin: 0; padding: 0; list-style: none; }
.scope-list li {
  display: grid;
  min-height: 48px;
  grid-template-columns: 27px 1fr;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--mono);
  font-size: 14.92px;
  line-height: 1.25;
}
.scope-list li::before { color: var(--accent); content: "+"; font-size: 22px; }
.scope-note {
  margin: 22px 0 0;
  color: #fff;
  font-family: var(--mono);
  font-size: 17.05px;
  line-height: 1.26;
}
.advice-closing {
  grid-area: closing;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  margin-top: 10px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: radial-gradient(circle at 82% 50%, rgba(0, 85, 255, 0.18), transparent 42%), rgba(8, 14, 24, 0.94);
}
.advice-closing .contact-eyebrow { margin-bottom: 32px; text-align: left; }
.advice-closing h2 {
  margin: 0 0 13px;
  font-family: var(--mono);
  font-size: clamp(22px, 2.2vw, 29.84px);
  font-weight: 400;
  line-height: 1.25;
}
.advice-closing p:not(.contact-eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-family: var(--mono);
  font-size: 17.05px;
  line-height: 1.26;
}
.advice-closing .btn { width: 537px; max-width: 100%; min-width: 0; margin-top: 0; }

/* Nosotros */
.about-section {
  min-height: 761px;
  padding: 43px 0 70px;
  background: #060b13 url("assets/images/page-background.png") center / cover no-repeat;
}
.about-copy { width: min(calc(100% - 80px), 923px); }
.about-copy h1 { margin: 0 0 27px; font-size: var(--section-title-size); font-weight: 400; line-height: 1.1; }
.about-copy p { margin: 0 0 21px; color: #fff; font-size: 17.05px; line-height: 1.26; }
.about-page .about-copy p { text-align: justify; }
.about-copy .brand-line { margin-top: 0; padding-top: 0; border: 0; color: #fff; font-size: 17.05px; font-weight: 400; letter-spacing: 0; }

/* Contacto */
.contact-stage {
  min-height: 625px;
  padding: 34px 0 28px;
  background: #070b12;
}
.contact-grid {
  display: grid;
  width: min(calc(100% - 80px), 1280px);
  grid-template-columns: minmax(330px, 0.56fr) minmax(560px, 1fr);
  align-items: start;
  gap: clamp(64px, 7.8vw, 106px);
}
.contact-intro { min-width: 0; padding-top: 2px; }
.contact-eyebrow {
  margin: 0 0 32px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.contact-intro h1 {
  max-width: 410px;
  margin: 0 0 36px;
  font-family: var(--mono);
  font-size: var(--section-title-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}
.contact-lead {
  max-width: 380px;
  margin: 0 0 33px;
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.3;
}
.contact-page .contact-lead { text-align: justify; }
.contact-details { max-width: 350px; }
.contact-detail {
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-detail-label {
  margin: 0 0 7px;
  color: #d9e9ff;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-detail .contact-image-link { width: 250px; height: 26px; }
.contact-detail .contact-image-link img { width: 250px; height: 26px; object-fit: contain; object-position: left center; }
.contact-panel { min-width: 0; }
.contact-form {
  display: grid;
  width: 100%;
  min-height: 563px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 19px;
  row-gap: 20px;
  padding: 40px 38px;
  border: 1px solid #2d3746;
  border-radius: 16px;
  background: #111722;
}
.field { display: grid; align-content: start; gap: 10px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #fff; font-family: var(--mono); font-size: 13px; }
.field input, .field textarea {
  width: 100%;
  padding: 0 13px;
  border: 1px solid #3a424d;
  border-radius: 10px;
  outline: 0;
  color: #fff;
  background: #090d14;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field input { height: 46px; }
.field textarea { min-height: 220px; padding-block: 12px; resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 85, 255, 0.18);
}
.contact-form .btn {
  width: 100%;
  min-height: 47px;
  margin: 0;
  font-family: var(--mono);
}
.contact-form-note {
  margin: 1px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
}

/* Pie de página */
.site-footer { min-height: 213px; border-top: 1px solid rgba(255, 255, 255, 0.78); background: #050910; }
.site-footer > .container { width: min(calc(100% - 100px), 1252px); }
.footer-top { display: grid; min-height: 80px; grid-template-columns: 184px 1fr; align-items: center; gap: 14px; }
.footer-brand img { width: 184px; height: 73px; object-fit: contain; }
.footer-copy p { margin: 0; font-size: 17.05px; line-height: 1.26; }
.footer-nav {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border-block: 1px solid rgba(255, 255, 255, 0.78);
}
.footer-nav a, .footer-contact, .footer-bottom { font-size: 14.75px; }
.footer-nav a:hover, .footer-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 3px; }
.footer-lower { position: relative; min-height: 55px; padding-top: 5px; }
.footer-contact { display: grid; width: 365px; gap: 3px; align-content: start; }
.footer-location { margin: 0 0 1px; font-size: 14.75px; line-height: 1.18; }
.contact-image-link { display: block; width: 250px; height: 26px; }
.contact-image-link img { display: block; width: 250px; height: 26px; object-fit: contain; object-position: left center; }
.contact-email-link {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14.75px;
  line-height: 1.18;
  white-space: nowrap;
}
.contact-email-link svg { width: 24px; height: 15px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2.5; }
.contact-email-link:hover span { text-decoration: underline; text-underline-offset: 3px; }
.footer-socials { position: absolute; top: 14px; left: 50%; display: flex; gap: 9px; transform: translateX(-50%); }
.footer-socials span, .footer-socials a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}
.footer-socials img { display: block; width: 28px; height: 28px; object-fit: contain; }
.footer-bottom { min-height: 34px; text-align: center; }

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
  place-items: center;
}
.whatsapp-float svg { width: 27px; fill: currentColor; }
.lightbox { position: fixed; z-index: 100; inset: 0; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(0, 0, 0, 0.93); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 88vh; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  place-items: center;
}

@media (max-width: 1050px) {
  .site-header, .nav-wrap { height: 110px; }
  .brand img { width: 310px; height: 102px; }
  .site-nav { min-width: 410px; }
  .products-showcase .container { width: min(calc(100% - 60px), 930px); grid-template-columns: 270px 1fr; gap: 28px; }
  .advice-showcase-layout { width: min(calc(100% - 60px), 930px); grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); gap: 34px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .product-card { width: 100%; }
  .product-detail-layout { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .gallery-stage { width: 100%; }
  .advice-layout { grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr); column-gap: 34px; }
  .contact-grid { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: 40px; }
}

@media (max-width: 900px) {
  .site-header, .nav-wrap { height: 92px; }
  .brand img { width: 255px; height: 86px; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    min-width: 0;
    height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 22px;
    border-radius: 0;
    border-bottom: 1px solid var(--accent);
    background: #202126;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 0; }
  .hero, .hero-content { min-height: 620px; }
  .hero-content { width: min(calc(100% - 48px), 700px); }
  .hero-content .eyebrow { margin-bottom: 42px; font-size: 16px; }
  .products-showcase { min-height: auto; padding: 58px 0 72px; }
  .products-showcase .container { display: block; width: min(calc(100% - 48px), 700px); min-height: 0; }
  .section-heading { padding: 0 0 38px; }
  .product-grid { grid-template-rows: auto; gap: 18px; transform: none; }
  .product-card, .product-card:nth-child(2), .product-card:nth-child(3), .product-card:nth-child(4) {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    transform: none;
  }
  .advice-showcase { min-height: 0; padding: 58px 0 64px; }
  .advice-showcase-layout { width: min(calc(100% - 48px), 700px); grid-template-columns: 1fr; gap: 32px; }
  .advice-showcase-media { width: 100%; }
  .mission, .mission .container { min-height: 0; }
  .mission .container { width: min(calc(100% - 48px), 700px); padding: 55px 0 105px; }
  .mission h2, .mission-watermark { margin-left: 0; }
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 0; }
  .feature, .feature:first-child, .feature:last-child { min-height: 0; padding: 0 28px; }
  .feature:nth-child(2) { border-right: 0; }
  .feature strong { min-height: 0; margin-bottom: 13px; font-size: 19px; }
  .product-detail { padding: 36px 0; scroll-margin-top: 92px; }
  .product-detail-layout { width: min(calc(100% - 36px), 700px); min-height: 0; grid-template-columns: 1fr; gap: 42px; padding: 30px; }
  .product-copy { margin-top: 0; }
  .advice-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "visual" "details" "closing";
    gap: 32px;
    padding-block: 56px 64px;
  }
  .advice-visual { width: min(100%, 760px); margin: 0 auto; }
  .advice-closing { grid-template-columns: 1fr; gap: 28px; }
  .advice-closing .btn { justify-self: start; }
  .about-section { min-height: 0; padding: 58px 0 70px; }
  .about-copy { width: min(calc(100% - 48px), 700px); }
  .contact-stage { min-height: 0; padding: 55px 0 70px; }
  .contact-grid { width: min(calc(100% - 36px), 700px); grid-template-columns: 1fr; gap: 36px; }
  .contact-intro h1 { max-width: 560px; }
  .contact-lead { max-width: 560px; }
  .contact-form { min-height: 0; }
  .site-footer { padding: 20px 0; }
  .site-footer > .container { width: min(calc(100% - 40px), 700px); }
  .footer-copy p { font-size: 14px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .brand img { width: 215px; }
  .hero, .hero-content { min-height: calc(100svh - 92px); }
  .hero-content { width: calc(100% - 36px); padding-top: 44px; }
  .hero-content h1 { font-size: 40px; }
  .hero-content .eyebrow { font-size: 14px; letter-spacing: 0.09em; }
  .product-grid, .feature-list, .contact-form { grid-template-columns: 1fr; }
  .feature, .feature:first-child, .feature:last-child { padding: 0 0 25px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .feature:last-child { border-bottom: 0; }
  .mission-watermark { font-size: 23px; }
  .mission-claim { padding-inline: 10px; font-size: 18px; }
  .products-page .page-hero .container { width: calc(100% - 36px); padding-top: 42px; }
  .page-hero { min-height: 220px; }
  .product-detail-layout { width: calc(100% - 24px); padding: 18px; }
  .product-copy .eyebrow { font-size: 23px; }
  .advice-showcase { padding: 46px 0 54px; }
  .advice-showcase-copy p,
  .advice-intro-copy,
  .advice-details > p:first-child,
  .scope-note,
  .advice-closing p:not(.contact-eyebrow) { font-size: 15px; line-height: 1.32; }
  .advice-intro h1 { font-size: 23px; }
  .scope-list li { min-height: 44px; font-size: 13.5px; }
  .advice-closing { padding: 28px 22px; }
  .advice-closing .btn { width: 100%; min-width: 0; }
  .contact-intro h1 { font-size: var(--section-title-size); }
  .contact-form { padding: 30px 22px; }
  .contact-form .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 10px; padding-bottom: 16px; }
  .footer-brand img { width: 184px; }
  .footer-nav { flex-wrap: wrap; gap: 8px 22px; padding: 10px 0; }
  .footer-lower { display: grid; gap: 16px; padding: 14px 0; }
  .footer-contact { width: 100%; }
  .footer-socials { position: static; justify-content: center; transform: none; }
  .footer-bottom { font-size: 12px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
