/* ==========================================================================
   Damore Group GmbH — Swiss Editorial
   Sito statico: nessuna dipendenza, nessuna risorsa esterna.
   Animazioni solo CSS; senza JavaScript il contenuto resta leggibile.
   ========================================================================== */

:root {
  --paper: #f6f4ef;
  --ink: #1b1a16;
  --ink-soft: #5d5a51;
  --line: #e1ddd2;
  --signal: #c2331b;
  --card: #ffffff;
  --secondary: #edeae2;

  --night: #16150f;
  --night-ink: #efede6;
  --night-soft: #a5a196;
  --night-line: rgba(239, 237, 230, 0.14);
  --night-card: rgba(239, 237, 230, 0.045);
  --signal-dark: #e2593b;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display: "Instrument Sans", var(--font-body);
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  font-feature-settings: "ss01" on, "cv05" on;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }
[hidden] { display: none !important; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.site-footer :focus-visible,
.suppliers :focus-visible { outline-color: var(--night-ink); }

/* ---------- Utilities ---------- */
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rail { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.rail-dark { border-left: 1px solid var(--night-line); border-right: 1px solid var(--night-line); }

.section { border-top: 1px solid var(--line); }
.section-pad { padding-block: 4rem; }
@media (min-width: 1024px) {
  .section-pad { padding-block: 6rem; }
}

.bg-signal { background: var(--signal); }
.text-signal { color: var(--signal); }
.text-signal-dark { color: var(--signal-dark); }

.h2 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.h2-dark {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lead {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--ink-soft);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-sm { width: 1rem; height: 1rem; }
.icon-xs { width: 0.875rem; height: 0.875rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--signal); }
.btn-ghost { border: 1px solid rgba(27, 26, 22, 0.25); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-cta { padding: 0.5rem 1rem; font-size: 0.8125rem; gap: 0.375rem; }
.btn-dark-solid { background: var(--night-ink); color: var(--night); }
.btn-dark-solid:hover { opacity: 0.85; }
.btn-dark-ghost { border: 1px solid var(--night-line); }
.btn-dark-ghost:hover { border-color: var(--night-soft); }
.btn-light-ghost { border: 1px solid rgba(246, 244, 239, 0.25); padding: 0.625rem 1rem; font-size: 0.8125rem; }
.btn-light-ghost:hover { background: var(--paper); color: var(--ink); }

.linklike {
  margin-top: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.linklike:hover { color: var(--signal); text-decoration-color: var(--signal); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.skip-link:focus {
  left: 0.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
}
.header-bg {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: var(--paper);
  transition: background-color 0.3s, border-color 0.3s;
}
.site-header.scrolled .header-bg {
  background: rgba(246, 244, 239, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--ink);
}
.brand-mark-svg { width: 0.875rem; height: 0.875rem; }
.brand-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.only-desktop { display: none; }
@media (min-width: 640px) {
  .only-desktop { display: inline; }
  .only-mobile { display: none; }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}
.main-nav a {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--signal);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { display: none; }
@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

.lang-switch {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}
.lang-btn {
  padding: 0.375rem 0.625rem;
  color: var(--ink-soft);
  transition: background-color 0.2s, color 0.2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--ink); color: var(--paper); }
.lang-switch-dark { border-color: var(--night-line); margin-top: 1.5rem; }
.lang-switch-dark .lang-btn { color: var(--night-soft); }
.lang-switch-dark .lang-btn:hover { color: var(--night-ink); }
.lang-switch-dark .lang-btn.active { background: var(--night-ink); color: var(--night); }

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
}
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-open { display: none; }
.menu-toggle.open .icon-close { display: block; }
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset-inline: 0;
  top: 4rem;
  bottom: 0;
  z-index: 40;
  background: var(--paper);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; padding-block: 1.5rem; }
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.mobile-link .icon { color: var(--ink-soft); }
.mobile-cta { margin-top: 2rem; padding: 1rem 1.25rem; font-size: 0.875rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 4rem);
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, 1fr); }
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0.25rem 2.5rem;
}
@media (min-width: 768px) {
  .hero-copy { padding-inline: 1.5rem; }
}
@media (min-width: 1280px) {
  .hero-copy { padding-inline: 2.5rem; }
}
@media (min-width: 1024px) {
  .hero-copy {
    grid-column: span 7 / span 7;
    padding-top: 9rem;
    padding-bottom: 3.5rem;
    padding-right: 3rem;
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  animation: fade-up 0.6s var(--ease) both;
}
.dot { width: 6px; height: 6px; flex-shrink: 0; }

.hero-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.9vw, 3.9rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.hero-line { display: block; overflow: hidden; }
.hero-line > span { display: block; animation: line-up 0.9s var(--ease) 0.08s both; }
.hero-line-2 { overflow: hidden; padding-bottom: 0.5rem; }
.hero-line-2 > span { color: var(--ink-soft); animation-delay: 0.2s; }

.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.625;
  color: var(--ink-soft);
  animation: fade-up 0.7s var(--ease) 0.4s both;
}
.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  animation: fade-up 0.7s var(--ease) 0.52s both;
}

.hero-media {
  position: relative;
  border-top: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .hero-media {
    grid-column: span 5 / span 5;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}
.hero-figure {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.25rem 2.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .hero-figure { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .hero-figure {
    margin-top: 0;
    padding: 6rem 0.25rem 6rem 2.5rem;
  }
}
@media (min-width: 1280px) {
  .hero-figure { padding-left: 3rem; }
}
.hero-figure-wrap {
  position: relative;
  isolation: isolate;
  animation: clip-down 1.1s var(--ease) 0.45s both;
}
.hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .hero-img { aspect-ratio: 4 / 4.4; }
}
/* cornice scorciata + segno d'angolo */
.hero-figure-wrap::before,
.about-figure-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(8px, 8px);
  border: 1px solid rgba(27, 26, 22, 0.3);
  z-index: -1;
}
.hero-figure-wrap::after,
.about-figure-wrap::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 10px;
  height: 10px;
  background: var(--signal);
}
.fig-caption {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  animation: fade-in 0.8s ease 0.9s both;
}

/* Strip di fatti verificabili */
.facts-strip { border-top: 1px solid var(--line); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .facts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .facts-grid { grid-template-columns: repeat(5, 1fr); } }
.fact-cell { padding: 1rem 1rem 1rem 1.5rem; }
.fc-0 { padding-left: 0.25rem; }
@media (min-width: 768px) { .fc-0 { padding-left: 1.5rem; } }
@media (min-width: 1280px) { .fc-0 { padding-left: 2.5rem; } }
.fc-4 { grid-column: span 2; padding-right: 0.25rem; }
@media (min-width: 640px) { .fc-4 { grid-column: auto; } }
@media (min-width: 768px) { .fc-4 { padding-right: 1.5rem; } }
@media (min-width: 1280px) { .fc-4 { padding-right: 2.5rem; } }
@media (min-width: 640px) { .fact-cell { padding-right: 1.25rem; } }

.fc-1 { border-left: 1px solid var(--line); }
.fc-2 { border-top: 1px solid var(--line); }
.fc-3 { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.fc-4 { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
@media (min-width: 640px) {
  .fc-2 { border-top: 0; border-left: 1px solid var(--line); }
  .fc-3 { border-left: 0; }
  .fc-4 { border-left: 0; }
}
@media (min-width: 1024px) {
  .fc-3 { border-left: 1px solid var(--line); border-top: 0; }
  .fc-4 { border-left: 1px solid var(--line); border-top: 0; }
}
.fact-cell dt { color: var(--ink-soft); }
.fact-cell dd {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375;
}
.fact-cell dd a {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.fact-cell dd a:hover { color: var(--signal); text-decoration-color: var(--signal); }

/* ---------- 01 — Richiesta ---------- */
.request-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .request-grid { grid-template-columns: repeat(12, 1fr); }
}
.request-copy { padding: 4rem 0.25rem; }
@media (min-width: 768px) { .request-copy { padding-inline: 1.5rem; } }
@media (min-width: 1024px) {
  .request-copy {
    grid-column: span 6 / span 6;
    padding: 6rem 3rem 6rem 1.5rem;
  }
}
@media (min-width: 1280px) {
  .request-copy { padding-left: 2.5rem; }
}
.shop-note {
  margin-top: 1.75rem;
  max-width: 30rem;
  border-left: 2px solid var(--signal);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.875rem 1rem;
}
.shop-note p { font-size: 0.875rem; line-height: 1.625; }

.fact-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.fact-row {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  column-gap: 0.75rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.fact-bullet { width: 6px; height: 6px; margin-top: 0.4rem; }
.fact-row h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.fact-row p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--ink-soft);
}
.bridge {
  margin-top: 2rem;
  max-width: 30rem;
  font-size: 0.8125rem;
  line-height: 1.625;
  color: rgba(93, 90, 81, 0.9);
  border-left: 2px solid var(--line);
  padding-left: 1rem;
}

.request-formcol {
  background: rgba(255, 255, 255, 0.6);
  padding: 4rem 0.25rem;
}
@media (min-width: 768px) {
  .request-formcol { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .request-formcol {
    grid-column: span 6 / span 6;
    border-left: 1px solid var(--line);
    padding: 6rem 1.5rem 6rem 3rem;
  }
}
@media (min-width: 1280px) {
  .request-formcol { padding: 6rem 2.5rem; }
}

.form-card {
  position: relative;
  border: 1px solid rgba(27, 26, 22, 0.2);
  background: var(--card);
  padding: 1.5rem;
}
@media (min-width: 640px) { .form-card { padding: 2.25rem; } }
.corner-mark {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 10px;
  height: 10px;
  background: var(--signal);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.form-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .span-2 { grid-column: 1 / -1; }
}
.field label { display: block; color: var(--ink-soft); }
.field input,
.field textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(27, 26, 22, 0.25);
  background: transparent;
  padding: 0.625rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  border-radius: 0;
}
.field input { height: 2.75rem; }
.field textarea { resize: none; }
.field input:focus-visible,
.field textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 0; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-soft); opacity: 0.7; }
.btn-submit { margin-top: 1.75rem; width: 100%; }
@media (min-width: 640px) { .btn-submit { width: auto; } }
.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgba(93, 90, 81, 0.9);
}
.form-email { margin-top: 0.5rem; font-size: 0.8125rem; font-weight: 500; }
.form-email a {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.form-email a:hover { color: var(--signal); text-decoration-color: var(--signal); }

/* Risultato: testo composto */
.result-check {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--ink);
  color: var(--paper);
}
.result-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.result-lead {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--ink-soft);
}
.result-email {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(27, 26, 22, 0.2);
  background: var(--paper);
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: border-color 0.2s;
}
.result-email:hover { border-color: var(--signal); }
.result-email .icon { color: var(--signal); }
.composed-label { margin-top: 1.75rem; color: var(--ink-soft); }
#composed-text {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(27, 26, 22, 0.25);
  background: var(--paper);
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.625;
  color: var(--ink);
  resize: vertical;
  border-radius: 0;
}
#composed-text:focus-visible { outline: 2px solid var(--ink); outline-offset: 0; }
.result-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .result-actions { flex-direction: row; } }
#copy-btn .icon-copied { display: none; }
#copy-btn.copied .icon-copy { display: none; }
#copy-btn.copied .icon-copied { display: block; }

/* ---------- 02 — Cosa facciamo ---------- */
.abc-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .abc-grid { grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
}
.abc-cell {
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .abc-cell {
    padding: 2.5rem 2rem;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    transition: background-color 0.3s;
  }
  .abc-cell:last-child { border-right: 0; }
  .abc-cell:hover { background: rgba(255, 255, 255, 0.7); }
}
.abc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.abc-head .mono-label { color: var(--ink-soft); }
.abc-icon { color: var(--ink-soft); width: 1.25rem; height: 1.25rem; transition: color 0.3s; }
.abc-cell:hover .abc-icon { color: var(--signal); }
.abc-cell h3 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.abc-cell p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--ink-soft);
}

.cat-head {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .cat-head { margin-top: 5rem; } }
.cat-head .mono-label { color: var(--ink-soft); }
.cat-note { max-width: 28rem; font-size: 0.75rem; color: rgba(93, 90, 81, 0.8); }
.cat-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(5, 1fr); } }
.cat-imgwrap {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--secondary);
}
.cat-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}
.cat-item:hover .cat-imgwrap img { transform: scale(1.04); }
.cat-caption { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.cat-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cat-rule { height: 1px; flex: 1; background: var(--line); }
.cat-sec { color: rgba(93, 90, 81, 0.7); }

/* ---------- 03 — Fornitori (sezione scura) ---------- */
.suppliers {
  background: var(--night);
  color: var(--night-ink);
  border-top: 1px solid var(--ink);
  scroll-margin-top: 5rem;
}
.sup-head { max-width: 48rem; }
.sup-head .lead { color: var(--night-soft); font-size: 1.0625rem; margin-top: 1.5rem; }

.sup-blocks {
  margin-top: 3.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--night-line);
}
@media (min-width: 768px) {
  .sup-blocks { grid-template-columns: repeat(3, 1fr); }
}
.sup-block { padding-block: 2rem; border-bottom: 1px solid var(--night-line); }
@media (min-width: 768px) {
  .sup-block { padding-block: 2.5rem; border-bottom: 0; padding-right: 2rem; }
  .sup-block + .sup-block {
    border-left: 1px solid var(--night-line);
    padding-left: 2rem;
    padding-right: 0;
  }
}
.sup-block h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sup-block p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--night-soft);
}

.sup-cards {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .sup-cards { grid-template-columns: repeat(12, 1fr); }
  .sup-card-contact { grid-column: span 7 / span 7; }
  .sup-card-profiles { grid-column: span 5 / span 5; }
}
.sup-card {
  border: 1px solid var(--night-line);
  background: var(--night-card);
  padding: 1.75rem;
}
@media (min-width: 640px) { .sup-card { padding: 2.25rem; } }
.sup-card-contact > .mono-label { color: var(--night-soft); }
.sup-contact-row {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .sup-contact-row { flex-direction: row; align-items: center; }
}
.avatar {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  background: var(--night-ink);
  color: var(--night);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.sup-owner {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sup-role { margin-top: 0.125rem; font-size: 0.875rem; color: var(--night-soft); }
.sup-contact-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sup-contact-links a,
.about-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--night-line);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.sup-contact-links a:hover {
  color: var(--signal-dark);
  text-decoration-color: var(--signal-dark);
}
.sup-contact-links .icon { color: var(--night-soft); }
.sup-sla {
  margin-top: 1.75rem;
  border-top: 1px solid var(--night-line);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--night-soft);
}
.sup-card-profiles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.sup-profiles-text { margin-top: 1rem; font-size: 0.9375rem; line-height: 1.625; color: var(--night-soft); }
.sup-profile-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .sup-profile-btns { flex-direction: row; } }
@media (min-width: 1024px) and (max-width: 1279px) {
  .sup-profile-btns { flex-direction: column; }
}
@media (min-width: 1280px) { .sup-profile-btns { flex-direction: row; } }

/* ---------- 04 — Chi siamo ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(12, 1fr); }
}
.about-copy { padding: 4rem 0.25rem; }
@media (min-width: 768px) { .about-copy { padding-inline: 1.5rem; } }
@media (min-width: 1024px) {
  .about-copy { grid-column: span 7 / span 7; padding: 6rem 3rem 6rem 1.5rem; }
}
@media (min-width: 1280px) {
  .about-copy { padding-left: 2.5rem; }
}
.principles-title { margin-top: 3rem; color: var(--ink-soft); }
.principles {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.principles li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}
.check {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--paper);
}
.check .icon { width: 0.875rem; height: 0.875rem; }
.principles li > span:last-child {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.about-contact {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(27, 26, 22, 0.2);
  background: var(--card);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .about-contact { flex-direction: row; align-items: center; }
}
.about-contact > div:first-child .mono-label { color: var(--ink-soft); }
.about-owner {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.about-contact-links { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; }
.about-contact-links a {
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration-color: var(--line);
}
.about-contact-links a:hover { color: var(--signal); text-decoration-color: var(--signal); }
.about-registry { text-align: left; }
@media (min-width: 640px) { .about-registry { text-align: right; } }
.about-registry .mono-label { color: var(--ink-soft); }
.about-registry > a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.about-registry > a:hover { color: var(--signal); text-decoration-color: var(--signal); }
.registry-id {
  margin-top: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.about-media {
  border-top: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .about-media { grid-column: span 5 / span 5; border-top: 0; border-left: 1px solid var(--line); }
}
.about-media-inner { height: 100%; padding: 4rem 0.25rem; }
@media (min-width: 768px) { .about-media-inner { padding-inline: 1.5rem; } }
@media (min-width: 1024px) {
  .about-media-inner { padding: 6rem 1.5rem 6rem 3rem; }
}
@media (min-width: 1280px) {
  .about-media-inner { padding: 6rem 2.5rem; }
}
.about-figure { position: sticky; }
@media (min-width: 1024px) { .about-figure { top: 7rem; } }
.about-figure-wrap { position: relative; isolation: isolate; }
.about-figure-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-figure .fig-caption { animation: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-grid {
  border-color: rgba(239, 237, 230, 0.09);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
  padding-inline: 0.25rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    padding-inline: 1.5rem;
  }
  .f-impressum { grid-column: span 5 / span 5; }
  .f-nav { grid-column: span 3 / span 3; }
  .f-contact { grid-column: span 4 / span 4; }
}
@media (min-width: 1280px) { .footer-grid { padding-inline: 2.5rem; } }
.footer-grid .mono-label { color: rgba(246, 244, 239, 0.5); }
.f-impressum address {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(246, 244, 239, 0.8);
}
.f-ids { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; }
.f-represented { margin-top: 0.75rem; font-size: 0.8125rem; color: rgba(246, 244, 239, 0.6); }
.f-impressum > a {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(246, 244, 239, 0.8);
  text-decoration: underline;
  text-decoration-color: rgba(246, 244, 239, 0.3);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.f-impressum > a:hover { color: var(--paper); text-decoration-color: var(--paper); }
.f-nav nav { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.f-nav nav a {
  width: fit-content;
  font-size: 0.875rem;
  color: rgba(246, 244, 239, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.f-nav nav a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.f-contact a:not(.btn) {
  display: block;
  width: fit-content;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(246, 244, 239, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.f-contact a:not(.btn):hover { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.f-contact a:not(.btn) + a:not(.btn) { margin-top: 0.625rem; }
.f-top { margin-top: 2rem; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(246, 244, 239, 0.15);
  padding-block: 1.25rem;
  padding-inline: 0.25rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}
@media (min-width: 768px) { .footer-bottom { padding-inline: 1.5rem; } }
@media (min-width: 1280px) { .footer-bottom { padding-inline: 2.5rem; } }
.footer-bottom > p:first-child { font-size: 0.75rem; color: rgba(246, 244, 239, 0.5); }
.footer-bottom .mono-label { color: rgba(246, 244, 239, 0.4); }

/* ---------- Animazioni (solo CSS) ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes line-up {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}
@keyframes clip-down {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* Reveal: attivo solo se JS ha aggiunto la classe .js — senza JS tutto visibile */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero-line > span,
  .hero-figure-wrap { animation: none; transform: none; clip-path: none; }
}
