:root {
  --navy: #0b3e78;
  --navy-deep: #082f5c;
  --navy-soft: #eaf1f8;
  --orange: #f6a313;
  --orange-deep: #df8d00;
  --ink: #17212d;
  --muted: #657080;
  --line: #dfe5eb;
  --surface: #f6f8fa;
  --white: #ffffff;
  --metal: #aeb6bf;
  --shadow-sm: 0 10px 30px rgba(10, 38, 70, .08);
  --shadow-md: 0 20px 60px rgba(10, 38, 70, .13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-h: 88px;
  --font-display: "Futura PT", Futura, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-body: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(246, 163, 19, .28); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section--soft { background: var(--surface); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--dark-image {
  color: #fff;
  background: linear-gradient(90deg, rgba(5, 25, 49, .94), rgba(5, 25, 49, .74)), url('../img/wascomat/laundry-row-dark.jpg') center/cover no-repeat;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 999px; background: var(--orange); }
.section--navy .eyebrow, .section--dark-image .eyebrow { color: #fff; }

h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--navy-deep);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.section--navy h2, .section--navy h3, .section--dark-image h2, .section--dark-image h3 { color: #fff; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); color: #3f4a59; max-width: 760px; }
.section--navy .lead, .section--dark-image .lead { color: rgba(255,255,255,.82); }
.text-muted { color: var(--muted); }
.orange { color: var(--orange); }
.max-copy { max-width: 760px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, .nav__link:focus-visible, .menu-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(246,163,19,.48);
  outline-offset: 3px;
}
.btn--primary { background: var(--orange); color: #18212d; box-shadow: 0 10px 24px rgba(246,163,19,.2); }
.btn--primary:hover { background: #ffb126; box-shadow: 0 12px 28px rgba(246,163,19,.26); }
.btn--secondary { background: transparent; color: var(--navy); border-color: rgba(11,62,120,.25); }
.btn--secondary:hover { border-color: var(--navy); background: rgba(11,62,120,.05); }
.btn--light { background: #fff; color: var(--navy-deep); }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,47,92,.08);
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand { display: inline-block; flex: 0 0 auto; }
.brand img { width: 330px; max-height: 64px; object-fit: contain; object-position: left center; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.nav__list { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; gap: .15rem; }
.nav__link { display: block; text-decoration: none; color: #283545; padding: .65rem .7rem; border-radius: 999px; font-size: .93rem; font-weight: 700; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--navy); background: var(--navy-soft); }
.header-cta { margin-left: .4rem; white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
}
.menu-toggle__icon { width: 20px; height: 14px; position: relative; display: block; }
.menu-toggle__icon::before, .menu-toggle__icon::after, .menu-toggle__icon span {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 999px;
}
.menu-toggle__icon::before { top: 0; }
.menu-toggle__icon span { top: 6px; }
.menu-toggle__icon::after { bottom: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.7rem 0 4.8rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(246,163,19,.12), transparent 30%),
    radial-gradient(circle at 60% 90%, rgba(11,62,120,.08), transparent 34%),
    #fff;
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); gap: 3rem; align-items: center; }
.hero__copy p { max-width: 690px; }
.hero__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 7% 4% 5%;
  border-radius: 44% 56% 48% 52% / 44% 38% 62% 56%;
  background: linear-gradient(145deg, #f7f9fb 0%, #e9eef3 100%);
  box-shadow: var(--shadow-md);
}
.hero__visual img { position: relative; z-index: 1; width: min(100%, 570px); filter: drop-shadow(0 25px 35px rgba(8,47,92,.16)); }
.hero__badge {
  position: absolute; z-index: 2; right: 2%; bottom: 6%; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); border: 1px solid var(--line); padding: .9rem 1.1rem; border-radius: 16px; font-weight: 800; color: var(--navy);
}

.credibility { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.credibility__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credibility__item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--line); }
.credibility__item:last-child { border-right: 0; }
.credibility__value { display: block; color: var(--navy); font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 900; line-height: 1.2; }
.credibility__label { display: block; margin-top: .4rem; color: var(--muted); font-size: .93rem; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4rem; align-items: center; }
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }
.media-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--line); }
.media-card img { width: 100%; height: 100%; object-fit: cover; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; margin-top: 2rem; }
.gallery-card { margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card figcaption { padding: .8rem 1rem 1rem; color: var(--muted); font-size: .92rem; }
.gallery-card:nth-child(1), .gallery-card:nth-child(4) { grid-column: span 7; }
.gallery-card:nth-child(2), .gallery-card:nth-child(3) { grid-column: span 5; }
.gallery-card:nth-child(n+5) { grid-column: span 3; }

.brand-evolution { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin-top: 2rem; }
.brand-panel { border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 1.2rem; min-height: 190px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.brand-panel img { max-height: 130px; object-fit: contain; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2.2rem; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 1.5rem; box-shadow: 0 8px 28px rgba(9,48,92,.05); }
.card__number { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-soft); color: var(--navy); display: grid; place-items: center; font-weight: 900; margin-bottom: 1rem; }
.card p { margin: 0; color: var(--muted); }
.section--navy .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.section--navy .card h3 { color: #fff; }
.section--navy .card p { color: rgba(255,255,255,.74); }
.section--navy .card__number { background: var(--orange); color: #14202b; }

.product-showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: stretch; margin-top: 2.3rem; }
.product-feature { min-height: 480px; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); position: relative; }
.product-feature img { width: 100%; height: 100%; object-fit: cover; }
.product-feature__overlay { position: absolute; inset: auto 1rem 1rem; padding: 1.15rem; border-radius: 16px; background: rgba(8,47,92,.92); color: #fff; backdrop-filter: blur(12px); }
.product-feature__overlay h3 { color: #fff; margin-bottom: .35rem; }
.product-stack { display: grid; gap: 1rem; }
.product-mini { display: grid; grid-template-columns: 180px 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; min-height: 145px; }
.product-mini img { width: 100%; height: 100%; object-fit: cover; background: #f6f7f8; }
.product-mini__copy { padding: 1rem; align-self: center; }
.product-mini__copy h3 { margin-bottom: .35rem; }
.product-mini__copy p { margin: 0; color: var(--muted); font-size: .94rem; }

.page-hero { padding: 4.8rem 0 3.8rem; background: linear-gradient(145deg, #fff, #f4f7fa); border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.page-hero__mark { justify-self: end; width: 180px; opacity: .95; }

.process { counter-reset: step; display: grid; gap: 1rem; margin-top: 2rem; }
.process__step { display: grid; grid-template-columns: 64px 1fr; gap: 1.2rem; align-items: start; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process__step::before { counter-increment: step; content: counter(step, decimal-leading-zero); width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--navy); color: #fff; font-weight: 900; font-size: 1.15rem; }
.process__step h3 { margin-bottom: .35rem; }
.process__step p { margin: 0; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 2rem; border-radius: var(--radius-lg); background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.cta-panel h2 { color: #fff; margin-bottom: .5rem; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.78); max-width: 720px; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; align-items: start; }
.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 2rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.contact-card h2 { color: #fff; }
.contact-card a { color: #fff; }
.contact-card p { color: rgba(255,255,255,.76); }
.form-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-field { display: grid; gap: .38rem; }
.form-field--full { grid-column: 1 / -1; }
label { font-weight: 800; color: #223044; font-size: .93rem; }
input, select, textarea { width: 100%; border: 1px solid #cfd7df; border-radius: 12px; padding: .82rem .9rem; background: #fff; color: var(--ink); }
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; }
.checkbox input { width: 18px; height: 18px; margin-top: .18rem; }
.form-status { margin-top: 1rem; min-height: 1.5rem; font-weight: 700; }
.form-status--error { color: #a12828; }
.form-status--success { color: #166534; }

.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: 2.5rem; font-size: 1.65rem; }
.notice { padding: 1rem 1.1rem; border-radius: 14px; background: #fff7df; border: 1px solid #f0d88a; color: #5d4b16; }

.site-footer { background: #071f3b; color: #fff; padding: 3rem 0 1.5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: 2rem; align-items: start; }
.site-footer .brand img { background: #fff; border-radius: 10px; padding: 8px; width: 300px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-title { font-weight: 900; margin-bottom: .8rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: rgba(255,255,255,.56); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --header-h: 76px; }
  .site-header__inner { min-height: var(--header-h); }
  .brand img { width: 260px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { display: grid; gap: .2rem; }
  .nav__link { padding: .8rem 1rem; }
  .header-cta { margin: .6rem 0 0; width: 100%; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero__visual { min-height: 430px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 4.2rem 0; }
  .hero { padding-top: 4.2rem; }
  .hero__grid, .split, .product-showcase, .page-hero__grid, .contact-grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 380px; max-width: 620px; width: 100%; margin-inline: auto; }
  .split--reverse > :first-child, .split--reverse > :last-child { order: initial; }
  .credibility__grid { grid-template-columns: repeat(2,1fr); }
  .credibility__item:nth-child(2) { border-right: 0; }
  .credibility__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery-card:nth-child(n) { grid-column: span 6; }
  .brand-evolution { grid-template-columns: 1fr; }
  .page-hero__mark { justify-self: start; width: 130px; }
  .contact-card { position: static; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .section { padding: 3.5rem 0; }
  .brand img { width: 215px; }
  .hero { padding: 3.5rem 0; }
  .hero__visual { min-height: 320px; }
  .hero__badge { position: static; margin-top: 1rem; justify-self: center; }
  .credibility__grid { grid-template-columns: 1fr; }
  .credibility__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .credibility__item:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:nth-child(n) { grid-column: 1; }
  .cards { grid-template-columns: 1fr; }
  .product-mini { grid-template-columns: 120px 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__grid > :first-child { grid-column: auto; }
  .site-footer .brand img { width: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== V1.1 redesign ===== */
.utility-bar {
  background: #071f3b;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.utility-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
}
.utility-bar__inner span:not(:first-child)::before {
  content: "·";
  margin-right: 1.15rem;
  color: var(--orange);
}
.site-header { top: 34px; }
.site-header__inner { min-height: 78px; gap: 1rem; }
.brand--header img { width: 275px; max-height: 55px; }
.nav { gap: .15rem; }
.nav__link { padding: .58rem .62rem; font-size: .89rem; border-radius: 10px; }
.nav__link:hover, .nav__link[aria-current="page"] { background: transparent; color: var(--navy); box-shadow: inset 0 -2px var(--orange); }
.header-cta { min-height: 44px; padding: .7rem 1rem; border-radius: 12px; margin-left: .65rem; }

.hero-v11 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(246,163,19,.18), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(11,62,120,.09), transparent 28%),
    linear-gradient(145deg,#fff 0%,#f7f9fb 68%,#eef3f8 100%);
  padding: 5.6rem 0 4.7rem;
}
.hero-v11::after {
  content:"";
  position:absolute;
  width: 440px;
  height: 440px;
  right: -210px;
  bottom: -220px;
  border: 1px solid rgba(11,62,120,.1);
  border-radius:50%;
}
.hero-v11__grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 3.2rem; align-items:center; }
.hero-v11 h1 { font-size: clamp(3rem, 6.4vw, 5.9rem); max-width: 900px; }
.hero-v11__copy > p:not(.lead) { max-width: 720px; font-size: 1.02rem; color:#465261; }
.hero-v11__visual { position:relative; min-height: 540px; display:grid; place-items:center; }
.hero-v11__halo {
  position:absolute;
  width: min(92%, 530px);
  aspect-ratio:1;
  border-radius:50%;
  background: linear-gradient(145deg,#fff,#e8edf2);
  box-shadow: 0 32px 80px rgba(6,37,72,.16), inset 0 0 0 1px rgba(11,62,120,.08);
}
.hero-v11__visual img { position:relative; z-index:2; width:min(100%,550px); filter:drop-shadow(0 28px 35px rgba(7,31,59,.15)); }
.hero-v11__tag { position:absolute; z-index:3; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); color:var(--navy-deep); font-size:.76rem; font-weight:900; letter-spacing:.08em; padding:.72rem .95rem; border-radius:10px; }
.hero-v11__tag--top { right:0; top:12%; }
.hero-v11__tag--bottom { left:1%; bottom:10%; }
.hero-proof { margin-top: 2rem; display:flex; flex-wrap:wrap; gap:.65rem; }
.hero-proof span { border:1px solid rgba(11,62,120,.13); background:rgba(255,255,255,.72); backdrop-filter:blur(8px); border-radius:12px; padding:.68rem .8rem; color:#526071; font-size:.86rem; }
.hero-proof strong { display:block; color:var(--navy); font-size:.93rem; }

.trust-strip { background:var(--navy-deep); color:#fff; }
.trust-strip__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-strip__grid > div { padding:1.15rem 1.2rem; border-right:1px solid rgba(255,255,255,.12); }
.trust-strip__grid > div:last-child { border-right:0; }
.trust-strip b { display:block; color:var(--orange); font-size:.84rem; letter-spacing:.08em; }
.trust-strip span { display:block; color:rgba(255,255,255,.72); font-size:.85rem; margin-top:.15rem; }

.section-heading { max-width: 950px; }
.comeback { background:#fff; }
.archive-story-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:1rem; margin-top:2.3rem; }
.archive-story-card { margin:0; grid-column:span 5; border-radius:18px; overflow:hidden; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); }
.archive-story-card--wide { grid-column:span 7; }
.archive-story-card img { width:100%; height:310px; object-fit:cover; }
.archive-story-card figcaption { padding:1rem 1.1rem 1.15rem; color:#596575; }
.archive-story-card figcaption strong { color:var(--navy-deep); }
.comeback-message { margin-top:1.5rem; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:.65rem; padding:1.1rem 1.25rem; border-radius:16px; background:var(--navy-soft); color:var(--navy-deep); }
.comeback-message span { color:var(--muted); font-weight:800; letter-spacing:.08em; font-size:.75rem; }
.comeback-message strong { font-size:1rem; }
.comeback-message i { color:var(--orange); font-style:normal; font-size:1.4rem; font-weight:900; }
.comeback-message b { background:var(--navy); color:#fff; border-radius:10px; padding:.42rem .7rem; }

.brand-evolution--compact { max-width: 820px; margin: 1.7rem auto 0; gap:.8rem; }
.brand-evolution--compact .brand-panel { min-height: 145px; padding:1.35rem 1.6rem; }
.brand-evolution--compact .brand-panel img { max-height: 82px; max-width: 92%; }

.site-footer__brand { display:inline-flex; width: 190px; background:#fff; border-radius:10px; padding:8px 10px; margin-bottom:.8rem; }
.site-footer__brand img { width:100%; height:auto; }
.site-footer .brand img { width: auto; }

.machine-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.1rem; margin-top:2rem; }
.machine-card { border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#fff; box-shadow:0 10px 32px rgba(8,47,92,.06); display:flex; flex-direction:column; }
.machine-card__image { height:220px; background:linear-gradient(145deg,#f8f9fa,#eef1f4); display:grid; place-items:center; padding:1rem; }
.machine-card__image img { width:100%; height:100%; object-fit:contain; }
.machine-card__body { padding:1.25rem; display:flex; flex-direction:column; flex:1; }
.machine-card__type { color:var(--orange-deep); font-size:.75rem; font-weight:900; letter-spacing:.11em; text-transform:uppercase; }
.machine-card h3 { margin-top:.2rem; font-size:1.7rem; }
.machine-card dl { margin:.25rem 0 1rem; display:grid; gap:.35rem; }
.machine-card dl div { display:flex; justify-content:space-between; gap:1rem; padding-bottom:.35rem; border-bottom:1px solid #edf1f4; }
.machine-card dt { color:var(--muted); font-size:.86rem; }
.machine-card dd { margin:0; color:var(--navy-deep); font-weight:800; font-size:.88rem; text-align:right; }
.machine-card p { color:var(--muted); font-size:.92rem; }
.text-link { margin-top:auto; color:var(--navy); font-weight:900; text-decoration:none; }
.text-link:hover { color:var(--orange-deep); }

.territory-hero { background:linear-gradient(135deg,#fff 0%,#f7f9fb 58%,#eef4fa 100%); }
.territory-facts { display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem; }
.territory-facts > div { border:1px solid var(--line); border-radius:14px; padding:1rem; background:#fff; }
.territory-facts strong { display:block; color:var(--navy-deep); }
.territory-facts span { color:var(--muted); font-size:.9rem; }

.honeypot { position:absolute !important; width:1px !important; height:1px !important; overflow:hidden !important; clip:rect(1px,1px,1px,1px) !important; white-space:nowrap !important; }

@media (max-width: 1120px) {
  .utility-bar { display:none; }
  .site-header { top:0; }
  .brand--header img { width:245px; }
  .nav { inset: var(--header-h) 0 auto; }
  .machine-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .hero-v11 { padding:4rem 0; }
  .hero-v11__grid { grid-template-columns:1fr; }
  .hero-v11__visual { min-height:420px; max-width:620px; width:100%; margin-inline:auto; }
  .trust-strip__grid { grid-template-columns:repeat(2,1fr); }
  .archive-story-card, .archive-story-card--wide { grid-column:span 6; }
  .archive-story-card img { height:270px; }
}
@media (max-width: 640px) {
  .brand--header img { width:205px; }
  .hero-v11 { padding:3.2rem 0; }
  .hero-v11__visual { min-height:330px; }
  .hero-v11__tag { font-size:.64rem; padding:.55rem .65rem; }
  .trust-strip__grid { grid-template-columns:1fr 1fr; }
  .archive-story-grid { grid-template-columns:1fr; }
  .archive-story-card, .archive-story-card--wide { grid-column:1; }
  .archive-story-card img { height:230px; }
  .brand-evolution--compact .brand-panel { min-height:120px; }
  .brand-evolution--compact .brand-panel img { max-height:65px; }
  .site-footer__brand { width:165px; }
  .machine-grid { grid-template-columns:1fr; }
  .machine-card__image { height:200px; }
  .territory-facts { grid-template-columns:1fr; }
}

/* ===== V1.2 machinery redesign ===== */
.machinery-hero { padding-bottom: 4.25rem; }
.machinery-intro { padding-top: 3.5rem; padding-bottom: 2.75rem; border-bottom: 1px solid var(--line); }
.machinery-intro__grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(340px,.75fr); gap:3rem; align-items:end; }
.machinery-intro__grid p { margin:0; color:var(--muted); font-size:1.03rem; }
.machinery-jump { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:2rem; }
.machinery-jump a { display:inline-flex; padding:.72rem 1rem; border:1px solid var(--line); border-radius:999px; background:#fff; color:var(--navy-deep); font-weight:800; text-decoration:none; }
.machinery-jump a:hover { border-color:var(--orange); color:var(--orange-deep); }
.machinery-section-lead { max-width:840px; }
.machine-list { display:grid; gap:1.5rem; margin-top:2.2rem; }
.machine-row { display:grid; grid-template-columns:minmax(340px,.82fr) minmax(0,1.18fr); background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; box-shadow:0 15px 42px rgba(8,47,92,.07); }
.section--soft .machine-row { background:#fff; }
.machine-row__visual { min-height:410px; display:grid; place-items:center; padding:1.5rem; background:linear-gradient(145deg,#fff,#f6f8fa); border-right:1px solid var(--line); }
.machine-row__visual img { width:100%; height:100%; max-height:390px; object-fit:contain; display:block; }
.machine-row__specs { padding:2rem 2.25rem; display:flex; flex-direction:column; justify-content:center; }
.machine-row__type { color:var(--orange-deep); font-size:.76rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.machine-row__specs h3 { margin:.2rem 0 .55rem; font-size:clamp(2rem,3.5vw,3rem); line-height:1; color:var(--navy-deep); }
.machine-row__intro { margin:0 0 1.25rem; color:var(--muted); max-width:720px; }
.machine-row__data { margin:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); border-top:1px solid var(--line); }
.machine-row__data div { padding:.8rem 0; display:flex; justify-content:space-between; gap:1.25rem; border-bottom:1px solid var(--line); }
.machine-row__data div:nth-child(odd) { padding-right:1.3rem; }
.machine-row__data div:nth-child(even) { padding-left:1.3rem; border-left:1px solid var(--line); }
.machine-row__data dt { color:var(--muted); font-size:.9rem; }
.machine-row__data dd { margin:0; color:var(--navy-deep); font-weight:900; text-align:right; }
.machine-row__actions { display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap; margin-top:1.45rem; }
.machine-row__actions .btn { padding:.8rem 1.05rem; font-size:.82rem; }
@media (max-width:900px){
  .machinery-intro__grid,.machine-row { grid-template-columns:1fr; }
  .machine-row__visual { min-height:340px; border-right:0; border-bottom:1px solid var(--line); }
  .machine-row__visual img { max-height:330px; }
}
@media (max-width:640px){
  .machine-row__specs { padding:1.45rem 1.2rem 1.6rem; }
  .machine-row__visual { min-height:280px; padding:1rem; }
  .machine-row__visual img { max-height:270px; }
  .machine-row__data { grid-template-columns:1fr; }
  .machine-row__data div:nth-child(odd),.machine-row__data div:nth-child(even) { padding:.72rem 0; border-left:0; }
  .machine-row__actions { align-items:stretch; flex-direction:column; }
  .machine-row__actions .btn { width:100%; text-align:center; }
}

/* V1.3 contact / numero verde */
.numero-verde-box{margin:1.25rem 0 1.5rem;padding:1rem;background:#fff;border:1px solid rgba(10,45,83,.12);border-radius:18px;text-align:center}.numero-verde-box img{display:block;width:100%;max-width:420px;height:auto;margin:0 auto .9rem}.numero-verde-call{display:inline-flex;justify-content:center}.contact-card a[href^="tel:"]{font-weight:800}


/* V1.6 numero verde + cookie consent */
.numero-verde-call{background:#079447!important;color:#fff!important;border-color:#079447!important;box-shadow:0 10px 24px rgba(7,148,71,.16)}
.numero-verde-call:hover{background:#067a3b!important;border-color:#067a3b!important;color:#fff!important}
.cookie-consent{position:fixed;left:0;right:0;bottom:0;z-index:10000;padding:18px;background:rgba(7,25,48,.98);color:#fff;box-shadow:0 -12px 38px rgba(0,0,0,.24)}
.cookie-consent[hidden],.cookie-modal[hidden]{display:none!important}
.cookie-consent__inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:22px;align-items:center}
.cookie-consent__text strong{display:block;margin-bottom:5px;font-size:1.02rem}.cookie-consent__text p{margin:0;color:rgba(255,255,255,.84);font-size:.94rem;line-height:1.5}.cookie-consent__text a{color:#fff;text-decoration:underline}
.cookie-consent__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.cookie-btn{appearance:none;border:1px solid rgba(255,255,255,.38);border-radius:10px;padding:.78rem 1rem;font:inherit;font-size:.82rem;font-weight:800;letter-spacing:.02em;cursor:pointer}.cookie-btn--accept{background:#f6a313;border-color:#f6a313;color:#082b54}.cookie-btn--reject{background:#fff;border-color:#fff;color:#082b54}.cookie-btn--manage{background:transparent;color:#fff}.cookie-btn:hover{transform:translateY(-1px)}
.cookie-modal{position:fixed;inset:0;z-index:10010;display:grid;place-items:center;padding:20px;background:rgba(5,18,35,.68)}.cookie-modal__panel{width:min(620px,100%);max-height:90vh;overflow:auto;background:#fff;color:#14243a;border-radius:18px;box-shadow:0 24px 70px rgba(0,0,0,.32);padding:26px}.cookie-modal__top{display:flex;justify-content:space-between;gap:20px;align-items:start}.cookie-modal__top h2{margin:0 0 .45rem}.cookie-modal__close{border:0;background:transparent;font-size:1.65rem;line-height:1;cursor:pointer;color:#17375d}.cookie-modal__intro{margin:.25rem 0 1.25rem;color:#536579}.cookie-choice{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px 0;border-top:1px solid rgba(10,45,83,.12)}.cookie-choice__copy strong{display:block;margin-bottom:3px}.cookie-choice__copy span{display:block;color:#65758a;font-size:.9rem;line-height:1.45}.cookie-switch{position:relative;width:48px;height:28px;flex:0 0 auto}.cookie-switch input{position:absolute;opacity:0}.cookie-switch span{position:absolute;inset:0;border-radius:999px;background:#c9d1da;transition:.2s}.cookie-switch span:before{content:"";position:absolute;width:20px;height:20px;left:4px;top:4px;border-radius:50%;background:#fff;box-shadow:0 1px 5px rgba(0,0,0,.22);transition:.2s}.cookie-switch input:checked+span{background:#0b3e78}.cookie-switch input:checked+span:before{transform:translateX(20px)}.cookie-switch input:disabled+span{background:#079447}.cookie-modal__actions{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;margin-top:20px}.cookie-modal__actions .cookie-btn--manage{color:#0b3e78;border-color:rgba(11,62,120,.28)}
@media(max-width:760px){.cookie-consent__inner{grid-template-columns:1fr}.cookie-consent__actions{justify-content:stretch}.cookie-consent__actions .cookie-btn{flex:1 1 100%}.cookie-modal__panel{padding:20px}.cookie-modal__actions .cookie-btn{flex:1 1 100%}}


/* ===== V1.7 brand evolution storytelling ===== */
.brand-story-section .section-heading{max-width:980px}
.brand-story-section .section-heading .lead{max-width:900px}
.brand-evolution-story{max-width:none;grid-template-columns:minmax(0,1fr) minmax(210px,.48fr) minmax(0,1fr);gap:1.3rem;align-items:stretch;margin-top:2.35rem}
.brand-era{position:relative;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 16px 42px rgba(8,47,92,.07);padding:1.35rem 1.4rem 1.5rem;display:flex;flex-direction:column;min-height:330px}
.brand-era__meta{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-bottom:1rem;border-bottom:1px solid var(--line)}
.brand-era__meta span{color:var(--navy);font-weight:900;letter-spacing:.08em;font-size:.78rem}
.brand-era__meta small{color:var(--muted);font-weight:800;letter-spacing:.05em;font-size:.68rem}
.brand-era__logo{flex:1;display:grid;place-items:center;min-height:165px;padding:1.3rem .5rem}
.brand-era__logo img{display:block;max-width:92%;max-height:105px;width:auto;height:auto;object-fit:contain}
.brand-era p{margin:0;color:var(--muted);font-size:.94rem;line-height:1.58}
.brand-era--current{border-color:rgba(246,163,19,.42);box-shadow:0 18px 48px rgba(246,163,19,.10)}
.brand-era--current .brand-era__meta span{color:var(--orange-deep)}
.brand-transition{position:relative;border-radius:24px;background:linear-gradient(155deg,#082f5c 0%,#071f3b 100%);color:#fff;padding:1.5rem 1.1rem;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;box-shadow:0 20px 48px rgba(7,31,59,.18);overflow:hidden}
.brand-transition:before,.brand-transition:after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.09)}
.brand-transition:before{width:180px;height:180px;top:-105px;right:-95px}
.brand-transition:after{width:120px;height:120px;bottom:-72px;left:-68px}
.brand-transition__step{position:relative;z-index:1;width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:var(--orange);color:var(--navy-deep);font-weight:950;margin-bottom:.9rem}
.brand-transition__kicker{position:relative;z-index:1;color:var(--orange);font-size:.75rem;font-weight:950;letter-spacing:.12em}
.brand-transition__flow{position:relative;z-index:1;width:100%;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:.55rem;margin:1rem 0 .85rem}
.brand-transition__flow i{height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.55))}
.brand-transition__flow i:last-child{background:linear-gradient(90deg,rgba(255,255,255,.55),transparent)}
.brand-transition__flow b{color:var(--orange);font-size:1.65rem;letter-spacing:.08em;line-height:1}
.brand-transition strong{position:relative;z-index:1;font-size:1.12rem;color:#fff}
.brand-transition p{position:relative;z-index:1;margin:.2rem 0 0;color:rgba(255,255,255,.75);font-weight:700}
.brand-story-proof{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.8rem;margin-top:1rem}
.brand-story-proof>div{background:#fff;border:1px solid var(--line);border-radius:15px;padding:.9rem 1rem;text-align:center}
.brand-story-proof strong{display:block;color:var(--navy);font-size:.82rem;letter-spacing:.05em}
.brand-story-proof span{display:block;color:var(--muted);font-size:.8rem;margin-top:.18rem}
@media(max-width:900px){
  .brand-evolution-story{grid-template-columns:1fr;max-width:680px;margin-inline:auto}
  .brand-era{min-height:0}
  .brand-era__logo{min-height:140px}
  .brand-transition{min-height:210px}
  .brand-transition__flow{max-width:310px}
  .brand-story-proof{grid-template-columns:1fr;max-width:680px;margin-inline:auto;margin-top:1rem}
}
@media(max-width:640px){
  .brand-story-section .section-heading h2{font-size:clamp(2.15rem,10.5vw,3.15rem)}
  .brand-evolution-story{margin-top:1.7rem;gap:.85rem}
  .brand-era{padding:1rem 1rem 1.15rem;border-radius:20px}
  .brand-era__meta{align-items:flex-start;flex-direction:column;gap:.2rem;padding-bottom:.75rem}
  .brand-era__logo{min-height:125px;padding:1rem .25rem}
  .brand-era__logo img{max-height:78px;max-width:94%}
  .brand-transition{min-height:190px;border-radius:20px;padding:1.25rem 1rem}
  .brand-transition__flow{margin:.75rem 0 .65rem}
  .brand-transition__flow b{font-size:1.45rem}
}

/* SEO / information architecture v2.0 */
.breadcrumbs{background:#fff;border-bottom:1px solid var(--line)}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:.45rem;align-items:center;list-style:none;margin:0;padding:.72rem 0;font-size:.82rem;color:var(--muted)}
.breadcrumbs li+li:before{content:"/";margin-right:.45rem;color:#a5adb6}
.breadcrumbs a{color:var(--navy-deep);text-decoration:none;font-weight:700}
.province-links{display:flex;flex-wrap:wrap;gap:.7rem;margin:1.25rem 0 0}
.province-links a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:.68rem 1rem;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--navy-deep);font-weight:800;text-decoration:none}
.province-links a:hover{border-color:var(--orange);color:var(--navy-deep)}
.province-links--large a{min-width:150px}
.province-links--home{margin:1rem 0 1.2rem}
.cards--compact{margin-top:1.4rem}
.cta-panel--spaced{margin-top:2rem}
@media(max-width:720px){.breadcrumbs ol{padding:.6rem 0}.province-links{gap:.5rem}.province-links a{flex:1 1 calc(50% - .5rem);padding:.65rem .75rem}.province-links--large a{min-width:0}}
