:root {
  --ink: #181714;
  --ink-2: #35322d;
  --muted: #746f66;
  --ocean: #b98947;
  --aqua: #d8b77e;
  --paper: #ffffff;
  --mist: #f7f4ed;
  --soft: #efe9dd;
  --line: rgba(24, 23, 20, .11);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --page: min(1180px, calc(100% - 3rem));
  --reading: min(760px, calc(100% - 3rem));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.58 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.nav-shell {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 164px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 1.8rem; }
.desktop-nav a {
  position: relative;
  padding: .55rem 0;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: .15rem;
  width: 100%; height: 2px;
  background: var(--ocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}
.desktop-nav a:hover::after { transform: scaleX(1); }
.language-link {
  min-width: 44px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .48rem .72rem !important;
}
.language-link::after { display: none; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 140ms var(--ease-out);
}
.menu-toggle:hover { background: var(--mist); }
.menu-toggle:active { transform: scale(.96); }
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  position: relative;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform 180ms var(--ease-out), opacity 160ms ease;
}
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 45;
  padding: .75rem 1.25rem 1.5rem;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(24,23,20,.10);
}
.mobile-menu[aria-hidden="false"] { display: grid; }
.mobile-menu a {
  min-height: 54px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile-menu a::after { content: "↗"; color: var(--ocean); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .language-link-mobile::after { content: none; }


/* Apple-design refinement: responsive type, material chrome, restrained reveal */
.site-header {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border-bottom-color: rgba(24,23,20,.08);
}
.page-hero h1,
.compact-page-hero h1 {
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}
.page-hero-media {
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(24,23,20,.10);
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .page-hero-copy,
  .compact-page-hero {
    text-align: center;
  }
  .page-hero-copy h1,
  .compact-page-hero h1,
  .page-hero-copy .page-lead,
  .compact-page-hero .page-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-copy .back-link {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-media {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
  }
}
@media (max-width: 480px) {
  .page-hero h1,
  .compact-page-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .compact-page-hero {
    padding-left: .15rem;
    padding-right: .15rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (prefers-contrast: more) {
  .site-header {
    background: #fff;
    border-bottom-color: var(--ink);
  }
}
main { min-height: 60vh; }
.kicker {
  margin: 0 0 .85rem;
  color: var(--ocean);
  font-size: .7rem;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker-light { color: #a6e6eb; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: .82rem 1.05rem;
  border: 0;
  border-radius: 14px;
  font-size: .88rem;
  font-weight: 720;
  letter-spacing: -.01em;
  transition: transform 150ms var(--ease-out), background 180ms ease, color 180ms ease;
}
.button:active, .pressable:active { transform: scale(.97); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--ink-2); }
.button-light { background: white; color: var(--ink); }
.text-action, .text-link {
  display: inline-flex; align-items: center; gap: .45rem;
  width: fit-content;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 680;
}
.text-action span, .button span {
  transition: transform 160ms var(--ease-out);
}
.text-action:hover span, .button:hover span { transform: translate(.16rem, -.16rem); }
.section-lead, .page-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 70ms);
}
.reveal.is-visible, [data-reveal].is-visible { opacity: 1; transform: none; }
.image-reveal { clip-path: inset(0 0 10% 0 round 30px); }
.image-reveal.is-visible { clip-path: inset(0 0 0 0 round 30px); }
.image-reveal {
  transition-property: opacity, transform, clip-path;
  transition-duration: 650ms;
  transition-timing-function: var(--ease-out);
}
.home-hero {
  width: var(--page);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.hero-copy-block { max-width: 650px; }
.hero-copy-block h1 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: .91;
  font-weight: 690;
  letter-spacing: -.066em;
}
.hero-intro {
  max-width: 610px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-media {
  display: block;
  position: relative;
  min-height: min(72vh, 720px);
  overflow: hidden;
  border-radius: 36px;
  background: var(--mist);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 82px; height: 82px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-section { width: var(--page); margin: 0 auto; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section-heading-row {
  max-width: 940px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.section-heading-row h2, .about-editorial h2, .b2b-editorial h2,
.quality-copy-block h2, .contact-band h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  line-height: .96;
  font-weight: 680;
  letter-spacing: -.055em;
}
.section-heading-row > p { max-width: 620px; margin: 1.25rem auto 0; color: var(--muted); }
.product-path-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}
.product-path {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  color: white;
  isolation: isolate;
}
.product-path:first-child { grid-row: 1 / 3; }
.product-path img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform 360ms var(--ease-out), opacity 240ms ease;
  z-index: -1;
}
.product-path::after {
  content: "";
  position: absolute; inset: 36% 0 0;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(4,22,29,.78));
}
.product-path:hover img { transform: scale(1.025); opacity: .8; }
.product-path-copy {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.5rem, 3vw, 2.7rem);
}
.product-path-copy span { font-size: .68rem; letter-spacing: .15em; opacity: .72; }
.product-path-copy h3 {
  margin: .55rem 0 .35rem;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: .96;
  letter-spacing: -.048em;
}
.product-path-copy p { max-width: 450px; margin: 0; color: rgba(255,255,255,.75); font-size: .9rem; }
.product-path-copy b {
  position: absolute; right: 1.4rem; bottom: 1.35rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 160ms var(--ease-out), background 160ms ease;
}
.product-path:hover .product-path-copy b { transform: translate(.12rem,-.12rem); background: rgba(255,255,255,.12); }
.about-editorial {
  max-width: 900px;
  text-align: center;
}
.about-editorial .section-lead { max-width: 720px; margin: 1.4rem auto 1.6rem; }
.about-editorial .text-action { margin: 0 auto; }
.quality-editorial {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 700px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--ink);
  color: white;
}
.quality-photo { min-height: 620px; overflow: hidden; }
.quality-photo img { width: 100%; height: 100%; object-fit: cover; }
.quality-copy-block {
  padding: clamp(3.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quality-copy-block > p:not(.kicker) { max-width: 540px; margin: 1.35rem 0 2rem; color: rgba(255,255,255,.67); }
.quality-list { border-top: 1px solid rgba(255,255,255,.18); margin-bottom: 2rem; }
.quality-list > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.quality-list span { color: #9be3e9; font-size: .68rem; }
.quality-list strong { font-size: .92rem; font-weight: 620; }
.text-action-light { color: white; }
.b2b-editorial { max-width: 900px; text-align: center; }
.b2b-editorial .b2b-list { max-width: 720px; margin: 2.25rem auto 0; border-top: 1px solid var(--line); text-align: left; }
.b2b-list > div { display: grid; grid-template-columns: 3.5rem 1fr; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.b2b-list span { color: var(--ocean); font-size: .7rem; font-weight: 700; }
.b2b-list p { margin: 0; font-weight: 650; }
.contact-band {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: clamp(4.5rem, 8vw, 7rem);
  border-radius: 36px;
  text-align: center;
  color: white;
  background: var(--ocean);
}
.contact-band h2 { max-width: 820px; margin: 0 auto 2rem; }
.contact-band .button { margin: 0 auto; }
.page-hero {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0 2rem;
  display: grid;
  justify-items: center;
  text-align: center;
}
.page-hero-copy { width: min(860px, 100%); }
.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.3rem, 7.2vw, 6.5rem);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 690;
}
.page-hero-copy .page-lead {
  max-width: 720px;
  margin: 1.4rem auto 0;
}
.page-hero-media {
  width: min(1080px, 100%);
  height: clamp(360px, 56vw, 680px);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: 34px;
  background: var(--mist);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.compact-page-hero { padding-bottom: clamp(3rem, 5vw, 5rem); }
.compact-page-hero .page-hero-copy { width: min(820px, 100%); }
.product-hero .back-link {
  display: inline-flex;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
}
.content-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.story-section { max-width: 980px; text-align: center; }
.story-section h2,
.statement-section h2,
.category-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 680;
}
.story-cards {
  margin-top: 2.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  text-align: left;
}
.story-cards article {
  min-height: 190px;
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--mist);
}
.story-cards span { color: var(--ocean); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.story-cards p { margin: 2.2rem 0 0; color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
.fact-strip, .feature-list, .quality-principles, .category-index {
  width: var(--page);
  margin: 0 auto;
}
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.fact-strip article,
.feature-list article,
.quality-principles article {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}
.fact-strip span,
.feature-list span,
.quality-principles span {
  color: var(--ocean);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .12em;
}
.fact-strip strong { display: block; margin-top: 2rem; font-size: 1.3rem; letter-spacing: -.025em; }
.fact-strip p { margin: .5rem 0 0; color: var(--muted); font-size: .92rem; }
.feature-list, .quality-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.quality-principles { grid-template-columns: repeat(4, minmax(0,1fr)); }
.feature-list h3, .quality-principles h2 {
  margin: 2.4rem 0 .55rem;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.feature-list p, .quality-principles p { margin: 0; color: var(--muted); font-size: .9rem; }
.source-control-section {
  width: var(--page);
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 34px;
  background: var(--ink);
  color: var(--paper);
}
.source-control-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.source-control-intro .kicker { color: var(--aqua); }
.source-control-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 680;
}
.source-control-intro > p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.7;
}
.source-control-steps {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.16);
}
.source-control-steps article { padding: 1.7rem 1.5rem 0 0; }
.source-control-steps article + article {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,.16);
}
.source-control-steps span {
  color: var(--aqua);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .12em;
}
.source-control-steps h3 {
  margin: 2rem 0 .7rem;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.source-control-steps p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
  line-height: 1.65;
}
.statement-section {
  max-width: 900px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.statement-section > p:last-child {
  max-width: 700px;
  margin: 1.4rem auto 0;
  color: var(--muted);
}
.category-cta {
  max-width: 940px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.category-cta .button { margin: 1.8rem auto 0; }
.category-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.category-link {
  min-height: 480px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 28px;
  background: var(--mist);
}
.category-image { min-height: 330px; overflow: hidden; }
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--ease-out); }
.category-link:hover .category-image img { transform: scale(1.025); }
.category-copy { position: relative; padding: 1.35rem; }
.category-copy span { color: var(--ocean); font-size: .68rem; font-weight: 700; }
.category-copy h2 { margin: .55rem 0 .4rem; font-size: 1.75rem; letter-spacing: -.04em; }
.category-copy p { margin: 0; color: var(--muted); font-size: .9rem; }
.category-copy b { position: absolute; right: 1.2rem; top: 1.25rem; font-weight: 500; }
.contact-page {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-intro h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .94;
  letter-spacing: -.058em;
  font-weight: 690;
}
.contact-intro .page-lead { max-width: 560px; margin: 1.35rem 0 0; }
.contact-company {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.contact-company strong { font-size: .78rem; letter-spacing: .12em; }
.contact-company p { margin: .8rem 0; color: var(--muted); }
.contact-public { display: flex; gap: 1rem 1.4rem; flex-wrap: wrap; }
.contact-public a { color: var(--ocean); font-weight: 650; font-size: .92rem; }
.contact-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  background: var(--mist);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { min-width: 0; display: grid; gap: .42rem; }
.contact-form label > span { font-size: .8rem; font-weight: 680; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(7,30,39,.14);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: .8rem .9rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(10,107,127,.10);
}
.form-wide { grid-column: 1 / -1; }
.form-file small { color: var(--muted); font-size: .75rem; }
.form-submit { cursor: pointer; background: var(--ink); color: white; }
.form-submit[disabled] { opacity: .55; cursor: wait; }
.form-status { min-height: 1.5em; margin: 0; color: var(--muted); font-size: .86rem; }
.honeypot { position: absolute!important; width:1px!important; height:1px!important; overflow:hidden!important; clip:rect(0 0 0 0)!important; white-space:nowrap!important; }
.site-footer {
  margin-top: 1.5rem;
  padding: 4rem 0 2rem;
  background: var(--ink);
  color: white;
}
.footer-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
}
.footer-brand img { width: 180px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 30rem; margin: 0; color: rgba(255,255,255,.58); font-size: .9rem; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 1.2rem; align-content: start; }
.footer-nav a { color: rgba(255,255,255,.72); font-size: .88rem; }
.footer-nav a:hover { color: white; }
.footer-bottom {
  width: var(--page);
  margin: 2.8rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.44);
  font-size: .77rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 900px) {
  :root { --page: min(100% - 2rem, 1180px); --reading: min(100% - 2rem, 760px); }
  .nav-shell { min-height: 72px; }
  .brand img { width: 145px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .home-hero { min-height: auto; grid-template-columns: 1fr; gap: 2.2rem; padding-top: 4rem; }
  .hero-copy-block { max-width: 760px; text-align: center; margin: 0 auto; }
  .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { min-height: 58svh; max-height: 620px; border-radius: 32px; }
  .product-path-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 300px; }
  .product-path:first-child { grid-column: 1 / 3; grid-row: 1; }
  .quality-editorial { grid-template-columns: 1fr; }
  .quality-photo { min-height: 480px; }
  .quality-copy-block { text-align: center; align-items: center; }
  .quality-list { width: min(620px,100%); text-align: left; }
  .page-hero { padding-top: 4rem; }
  .feature-list, .quality-principles { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-index { grid-template-columns: 1fr 1fr; }
  .contact-page { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-intro { max-width: 720px; text-align: center; margin: 0 auto; }
  .contact-intro .page-lead { margin-left: auto; margin-right: auto; }
  .contact-company { max-width: 520px; margin-left: auto; margin-right: auto; }
  .contact-public { justify-content: center; }
  .footer-shell { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --page: min(100% - 1.5rem, 1180px); --reading: min(100% - 1.5rem, 760px); }
  .hero-copy-block h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-media { min-height: 52svh; border-radius: 28px; }
  .home-section { padding: 4.7rem 0; }
  .section-heading-row h2, .about-editorial h2, .b2b-editorial h2,
  .quality-copy-block h2, .contact-band h2 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
  .product-path-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 390px); gap: 12px; }
  .product-path:first-child { grid-column: 1; grid-row: auto; }
  .product-path { border-radius: 26px; }
  .quality-editorial { width: calc(100% - 1rem); border-radius: 30px; }
  .quality-photo { min-height: 75vw; }
  .quality-copy-block { padding: 3.75rem 1.1rem; }
  .contact-band { width: calc(100% - 1rem); padding: 4rem 1rem; border-radius: 30px; }
  .page-hero { width: calc(100% - 1.5rem); padding: 3.6rem 0 1.5rem; }
  .page-hero-copy { width: 100%; text-align: center; padding: 0 .35rem; }
  .page-hero-copy h1 { font-size: clamp(2.85rem, 13vw, 4.3rem); }
  .page-hero-copy .page-lead { font-size: 1rem; }
  .page-hero-media { width: 100%; height: 72vw; min-height: 290px; max-height: 430px; margin-top: 2.2rem; border-radius: 30px; }
  .story-section { padding: 4.4rem 0; }
  .story-section h2, .statement-section h2, .category-cta h2 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .story-cards { grid-template-columns: 1fr; gap: 12px; }
  .story-cards article { min-height: 0; border-radius: 22px; }
  .story-cards p { margin-top: 1.6rem; }
  .fact-strip, .feature-list, .quality-principles, .category-index { grid-template-columns: 1fr; gap: 10px; }
  .fact-strip article, .feature-list article, .quality-principles article { border-radius: 22px; }
  .source-control-section { border-radius: 28px; padding: 2rem 1.25rem; }
  .source-control-intro { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .source-control-intro h2 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .source-control-steps { grid-template-columns: 1fr; }
  .source-control-steps article { padding: 1.6rem 0; }
  .source-control-steps article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .source-control-steps h3 { margin-top: 1.2rem; }
  .category-link { min-height: 430px; border-radius: 24px; }
  .contact-page { width: calc(100% - 1.5rem); padding-top: 3.6rem; }
  .contact-intro h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .contact-form { grid-template-columns: 1fr; }
  .form-wide { grid-column: 1; }
  .contact-panel { padding: 1rem; border-radius: 24px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .image-reveal { opacity: 1!important; transform: none!important; clip-path: none!important; transition: none!important; }
  .product-path img, .category-image img, .button, .text-action span { transition: none!important; }
}


/* Final responsive overrides */
.category-index {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.category-link { grid-column: span 6; }
.category-link:first-child { grid-column: span 7; }
.category-link:nth-child(2) { grid-column: span 5; }
.category-link:nth-child(3) {
  grid-column: 1 / -1;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: minmax(380px, 31vw);
}
.category-link:nth-child(3) .category-image { min-height: 0; }
.category-link:nth-child(3) .category-copy { align-self: stretch; justify-content: center; }

@media (max-width: 900px) {
  :root {
    --page: min(1180px, calc(100% - 2rem));
    --reading: min(760px, calc(100% - 2rem));
  }
  .desktop-nav { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
  .nav-shell { min-height: 72px; }
  .brand img { width: 148px; }

  .page-hero {
    width: var(--page);
    max-width: calc(100% - 2rem);
    padding-top: 3.75rem;
  }
  .page-hero-copy,
  .compact-page-hero .page-hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .page-hero-copy h1,
  .compact-page-hero h1,
  .page-hero-copy .page-lead,
  .compact-page-hero .page-lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-media {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 28px;
  }

  .category-index {
    grid-template-columns: 1fr;
    gap: .9rem;
  }
  .category-link,
  .category-link:first-child,
  .category-link:nth-child(2),
  .category-link:nth-child(3) {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 62vw) auto;
    min-height: 0;
  }
  .category-image { min-height: 0; }
  .category-copy { min-height: 160px; }

  .footer-shell { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  :root {
    --page: min(1180px, calc(100% - 1.5rem));
    --reading: min(760px, calc(100% - 1.5rem));
  }
  .page-hero {
    max-width: calc(100% - 1.5rem);
  }
  .page-hero h1,
  .compact-page-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    line-height: .98;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .category-link,
  .category-link:first-child,
  .category-link:nth-child(2),
  .category-link:nth-child(3) {
    grid-template-rows: 240px auto;
  }
}


/* Grid wrappers carry reveal state, links fill the editorial cells */
.category-index > .reveal {
  min-width: 0;
  grid-column: span 6;
}
.category-index > .reveal:first-child { grid-column: span 7; }
.category-index > .reveal:nth-child(2) { grid-column: span 5; }
.category-index > .reveal:nth-child(3) { grid-column: 1 / -1; }
.category-index > .reveal > .category-link {
  width: 100%;
  height: 100%;
}
.category-index > .reveal:nth-child(3) > .category-link {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: minmax(380px, 31vw);
}
.category-index > .reveal:nth-child(3) .category-image { min-height: 0; }
.category-index > .reveal:nth-child(3) .category-copy {
  align-self: stretch;
  justify-content: center;
}

@media (max-width: 900px) {
  .category-index > .reveal,
  .category-index > .reveal:first-child,
  .category-index > .reveal:nth-child(2),
  .category-index > .reveal:nth-child(3) {
    grid-column: 1;
  }
  .category-index > .reveal:nth-child(3) > .category-link {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 62vw) auto;
  }
}
@media (max-width: 480px) {
  .page-hero {
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
  }
  .category-index > .reveal:nth-child(3) > .category-link {
    grid-template-rows: 240px auto;
  }
}


/* Product expansion + mobile footer polish */
.product-path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 360px);
}
.product-path:first-child {
  grid-column: auto;
  grid-row: auto;
}

.category-index > .reveal,
.category-index > .reveal:first-child,
.category-index > .reveal:nth-child(2),
.category-index > .reveal:nth-child(3),
.category-index > .reveal:nth-child(4) {
  grid-column: span 6;
}
.category-index > .reveal:nth-child(3) > .category-link,
.category-index > .reveal:nth-child(4) > .category-link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}
.category-index > .reveal:nth-child(3) .category-image,
.category-index > .reveal:nth-child(4) .category-image {
  min-height: 330px;
}
.category-index > .reveal:nth-child(3) .category-copy,
.category-index > .reveal:nth-child(4) .category-copy {
  align-self: auto;
  justify-content: initial;
}

@media (max-width: 900px) {
  .category-index > .reveal:nth-child(4) {
    grid-column: 1;
  }
  .category-index > .reveal:nth-child(4) > .category-link {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 62vw) auto;
  }
}

@media (max-width: 620px) {
  .product-path-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 390px);
  }
  .product-path:first-child {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer {
    text-align: center;
  }
  .footer-shell {
    justify-items: center;
  }
  .footer-brand {
    display: grid;
    justify-items: center;
    max-width: 320px;
  }
  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-nav {
    width: 100%;
    justify-items: center;
  }
  .footer-nav a {
    width: fit-content;
  }
  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}


/* Final hero/header polish */
.button-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(7, 30, 39, .18);
}
.button-outline:hover {
  background: var(--mist);
  border-color: rgba(7, 30, 39, .28);
}
.hero-actions {
  gap: .75rem;
}
.hero-actions .button {
  min-width: 176px;
}

@media (max-width: 620px) {
  .site-header {
    min-height: 88px;
  }
  .nav-shell {
    min-height: 88px;
    position: relative;
    justify-content: flex-end;
  }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .brand img {
    width: 180px;
  }
  .menu-toggle {
    margin-left: auto;
    z-index: 2;
  }
  .hero-copy-block h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
    line-height: .9;
    letter-spacing: -.068em;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 370px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions .button {
    min-width: 0;
    width: 100%;
    padding-left: .85rem;
    padding-right: .85rem;
  }
}


@media (max-width: 620px) {
  .home-hero > *,
  .hero-copy-block,
  .hero-media {
    min-width: 0;
    width: 100%;
  }
  .hero-actions {
    width: 100%;
    max-width: 370px;
  }
  .kicker {
    overflow-wrap: anywhere;
  }
}


/* Equal hero CTA geometry */
.hero-actions .button {
  height: 72px;
  min-height: 72px;
  gap: .7rem;
  line-height: 1.15;
  text-align: center;
}
.hero-actions .button-dark {
  border: 1px solid transparent;
}
@media (max-width: 620px) {
  .hero-actions .button {
    height: 72px;
    min-height: 72px;
    padding: .75rem .7rem;
    white-space: nowrap;
    font-size: .84rem;
  }
}


/* Keep translated hero CTA labels fully visible */
.hero-actions .button {
  min-width: 0;
}
.hero-actions .button-label {
  min-width: 0;
  text-align: center;
}
.hero-actions .button-arrow {
  flex: 0 0 auto;
}

@media (max-width: 620px) {
  .hero-actions .button {
    height: 80px;
    min-height: 80px;
    white-space: normal;
    gap: .55rem;
    padding: .7rem .55rem;
  }
  .hero-actions .button-label {
    display: block;
    max-width: calc(100% - 1.3rem);
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.15;
  }
}


/* First-party human verification */
.captcha-box {
  display: grid;
  grid-template-columns: 1fr 132px auto;
  align-items: end;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid rgba(7,30,39,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.captcha-copy {
  display: grid;
  gap: .3rem;
  min-width: 0;
}
.captcha-label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--muted);
}
.captcha-copy strong {
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.captcha-answer {
  display: grid;
  gap: .35rem;
}
.captcha-answer > span {
  font-size: .76rem;
  font-weight: 700;
}
.captcha-answer input {
  min-height: 46px;
}
.captcha-refresh {
  min-height: 46px;
  padding: .65rem .85rem;
  border: 1px solid rgba(7,30,39,.14);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 680;
  cursor: pointer;
}
.captcha-refresh:hover {
  background: var(--mist);
}
@media (max-width: 620px) {
  .captcha-box {
    grid-template-columns: 1fr 110px;
    align-items: end;
  }
  .captcha-refresh {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Uniform mobile product-category cards */
@media (max-width: 620px) {
  .category-index > .reveal,
  .category-index > .reveal:first-child,
  .category-index > .reveal:nth-child(2),
  .category-index > .reveal:nth-child(3),
  .category-index > .reveal:nth-child(4) {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
  }
  .category-index > .reveal > .category-link,
  .category-index > .reveal:nth-child(3) > .category-link,
  .category-index > .reveal:nth-child(4) > .category-link {
    width: 100% !important;
    max-width: none;
    min-width: 0;
    height: 430px;
    min-height: 430px;
    grid-template-columns: 1fr;
    grid-template-rows: 240px 190px;
  }
  .category-index > .reveal .category-image,
  .category-index > .reveal:nth-child(3) .category-image,
  .category-index > .reveal:nth-child(4) .category-image {
    width: 100%;
    height: 240px;
    min-height: 240px;
  }
  .category-index > .reveal .category-copy,
  .category-index > .reveal:nth-child(3) .category-copy,
  .category-index > .reveal:nth-child(4) .category-copy {
    height: 190px;
    min-height: 190px;
  }
}


/* DELIZE identity */
.site-header {
  background: rgba(252, 250, 245, .87);
}
.brand img { width: 142px; }
.kicker { color: var(--ocean); }
.kicker-light { color: #ead9b8; }
.delize-hero .hero-copy-block { max-width: 740px; }
.delize-hero h1 { max-width: 12ch; }
.business-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}
.business-panel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  color: white;
}
.business-panel img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.business-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,23,20,.84) 4%, rgba(24,23,20,.18) 62%, rgba(24,23,20,.04));
  pointer-events: none;
}
.business-panel-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1.3rem, 3vw, 2.4rem);
  right: clamp(1.3rem, 3vw, 2.4rem);
  bottom: clamp(1.4rem, 3vw, 2.4rem);
}
.business-panel-copy > span {
  display: block;
  margin-bottom: 2rem;
  font-size: .72rem;
  opacity: .72;
}
.business-panel-copy .mini-kicker {
  margin: 0 0 .55rem;
  color: #ead9b8;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .16em;
}
.business-panel-copy h3 {
  max-width: 13ch;
  margin: 0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.business-panel-copy p:last-of-type {
  max-width: 38rem;
  margin: 0;
  color: rgba(255,255,255,.78);
}
.business-panel-copy b {
  position: absolute;
  right: 0;
  bottom: .15rem;
  font-size: 1.3rem;
  font-weight: 500;
}
@media (hover:hover) and (pointer:fine) {
  .business-panel:hover img { transform: scale(1.025); }
}
.reach-editorial { padding-top: clamp(5rem, 8vw, 9rem); }
.reach-editorial > h2 { max-width: 780px; }
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reach-grid article {
  min-height: 250px;
  padding: 1.6rem 1.8rem 1.8rem 0;
}
.reach-grid article + article {
  padding-left: 1.8rem;
  border-left: 1px solid var(--line);
}
.reach-grid span { color: var(--ocean); font-size: .72rem; }
.reach-grid h3 { margin: 2.1rem 0 .7rem; font-size: 1.35rem; letter-spacing: -.025em; }
.reach-grid p { margin: 0; color: var(--muted); }
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 1rem;
  padding: .38rem .7rem;
  border: 1px solid rgba(185,137,71,.35);
  border-radius: 999px;
  background: #f7f1e8;
  color: #7d5f35;
  font-size: .67rem;
  font-weight: 780;
  letter-spacing: .12em;
}
.contact-company strong:first-child {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.15rem;
}
.site-footer {
  background: #181714;
}
.contact-band, .quality-editorial {
  background: #181714;
}
.button-dark { background: #181714; }
.button-dark:hover { background: #35322d; }
.button-outline { border-color: rgba(24,23,20,.18); }
@media (max-width: 820px) {
  .business-split-grid { grid-template-columns: 1fr; }
  .business-panel, .business-panel img { min-height: 520px; }
  .reach-grid { grid-template-columns: 1fr; }
  .reach-grid article, .reach-grid article + article {
    min-height: auto;
    padding: 1.6rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .reach-grid article:first-child { border-top: 0; }
}
@media (max-width: 520px) {
  .brand img { width: 124px; }
  .business-panel, .business-panel img { min-height: 460px; }
  .business-panel-copy h3 { font-size: clamp(2rem, 10vw, 2.7rem); }
}

/* DELIZE Portuguese mobile type safety */
.hero-copy-block h1,
.contact-band h2,
.section-heading-row h2,
.about-editorial h2 {
  overflow-wrap: anywhere;
  hyphens: auto;
}
@media (max-width: 620px) {
  .hero-copy-block h1 {
    font-size: clamp(2.45rem, 10.4vw, 3.35rem);
    line-height: .94;
    letter-spacing: -.055em;
  }
  .contact-band h2 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: .98;
    letter-spacing: -.045em;
  }
}

/* DELIZE headline proportions: longer wording needs a calmer editorial scale */
.delize-hero h1,
.hero-copy-block h1 {
  max-width: none;
  font-size: clamp(3.45rem, 5vw, 5.8rem);
  line-height: .93;
  letter-spacing: -.055em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.contact-band h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (max-width: 620px) {
  .hero-copy-block h1 {
    font-size: clamp(2.1rem, 8.8vw, 2.8rem);
    line-height: .96;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    word-break: normal;
  }
  html[lang="pt-PT"] .page-hero h1 {
    font-size: clamp(2.25rem, 9.4vw, 3.25rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .contact-band h2 {
    font-size: clamp(1.95rem, 7.9vw, 2.6rem);
    line-height: 1;
  }
}

@media (min-width: 901px) {
  .delize-hero h1,
  .hero-copy-block h1 {
    font-size: clamp(3.1rem, 4.25vw, 5rem);
    line-height: .95;
  }
}
@media (min-width: 901px) {
  .delize-hero h1,
  .hero-copy-block h1 { font-size: clamp(3.1rem, 4.15vw, 5rem); }
}

.contact-direct-panel h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.05em;
}
.contact-direct-panel > p:not(.kicker) {
  max-width: 600px;
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
}
.contact-email-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
  padding: .9rem 1.1rem;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 720;
}
.contact-topic-list {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.contact-topic-list > div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}
.contact-topic-list span { color: var(--ocean); font-size: .68rem; font-weight: 760; }
.contact-topic-list strong { font-size: .9rem; }
@media (max-width:620px) {
  .contact-direct-panel h2 { font-size: clamp(2.2rem, 9.2vw, 3rem); max-width: none; }
}
