/* =========================================================
   NATURA FRANCE — Editorial natural french apothecary
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Color */
  --ink: #1f2a23;
  --ink-soft: #3b4a3f;
  --paper: #fdfcf7;
  --cream: #f6f1e6;
  --cream-deep: #ece2c8;
  --sage: #5a7a5e;
  --sage-deep: #3e5a41;
  --sage-tint: #cfddd0;
  --rose: #c8866b;
  --rose-deep: #a86850;
  --rose-tint: #ecd1c0;
  --sky: #a3bdc5;
  --sky-tint: #d9e5e7;
  --line: rgba(31, 42, 35, 0.14);
  --line-soft: rgba(31, 42, 35, 0.08);
  --shadow-1: 0 1px 2px rgba(31, 42, 35, 0.04), 0 8px 24px rgba(31, 42, 35, 0.06);
  --shadow-2: 0 2px 6px rgba(31, 42, 35, 0.06), 0 24px 48px rgba(31, 42, 35, 0.10);

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 0.75rem;
  --gap-md: 1.25rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;
  --gap-2xl: 5rem;
  --gap-3xl: 7rem;

  /* Container */
  --container: 1280px;
  --container-pad: 1.25rem;
  --header-h: 64px;
}

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
    --header-h: 72px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-pad: 3rem;
  }
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* Subtle paper grain everywhere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

::selection { background: var(--sage); color: var(--cream); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: "SOFT" 60;
  color: var(--sage-deep);
}

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
.eyebrow-light { color: var(--cream); }
.eyebrow-light .dot { background: var(--rose); }

/* ---------- HEADER & NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 230, 0.85);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background 220ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 241, 230, 0.94);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark { color: var(--sage); display: inline-flex; }
.brand-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
  font-variation-settings: "SOFT" 80;
}

.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  position: relative;
  transition: color 180ms ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.25rem;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms cubic-bezier(.6,.01,.05,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: none;
  padding: 0.6rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}
.nav-cta:hover { background: var(--sage-deep); transform: translateY(-1px); }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: background 180ms ease, border-color 180ms ease;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.6,.01,.05,1), opacity 200ms ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; gap: 1.6rem; align-items: center; }
  .nav-cta { display: inline-flex; align-items: center; }
  .hamburger { display: none; }
}

/* ---------- DRAWER ---------- */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  padding-top: var(--header-h);
  transform: translateY(-100%);
  transition: transform 420ms cubic-bezier(.6,.01,.05,1);
  overflow-y: auto;
}
.nav-drawer.is-open {
  transform: translateY(0);
}
.nav-drawer-inner {
  padding: 2rem var(--container-pad) 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: calc(100vh - var(--header-h));
  position: relative;
}
.drawer-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.2rem;
  display: block;
}
.nav-drawer a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-height: 44px;
  transition: color 180ms ease, padding-left 280ms ease;
}
.nav-drawer a:hover, .nav-drawer a:focus {
  color: var(--sage-deep);
  padding-left: 0.5rem;
}
.drawer-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.drawer-foot a {
  border: none;
  font-family: var(--body);
  font-size: 1.1rem;
  padding: 0.5rem 0;
  color: var(--rose-deep);
}

body.is-locked { overflow: hidden; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  min-height: 48px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-radius: 999px;
  transition: transform 220ms cubic-bezier(.6,.01,.05,1), background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(62, 90, 65, 0.28);
}
.btn-primary:hover { background: var(--ink); box-shadow: 0 6px 20px rgba(31, 42, 35, 0.32); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--sage-deep); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 2rem 0 3rem;
  background:
    radial-gradient(1100px 600px at 100% -10%, var(--cream-deep) 0%, transparent 60%),
    radial-gradient(900px 500px at -20% 20%, var(--sage-tint) 0%, transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  font-size: 0.72rem;
  color: var(--sage-deep);
}
.hero-meta-line {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 13vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 400;
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.hero-title-accent {
  display: inline-block;
  position: relative;
  padding-right: 0.15em;
  color: var(--rose-deep);
}
.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0; right: -0.1em;
  bottom: 0.05em;
  height: 0.45em;
  background: var(--rose-tint);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.85;
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-lede em {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08em;
  color: var(--sage-deep);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-decor {
  display: none;
  pointer-events: none;
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hero-foot > div {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.3rem 0;
}
.hero-foot .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rose-deep);
  flex-shrink: 0;
  width: 1.6em;
}
.hero-foot .lab {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (min-width: 768px) {
  .hero { padding: 3rem 0 5rem; }
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-areas:
      "meta meta"
      "title decor"
      "lede decor"
      "cta decor"
      "foot foot";
    gap: 2rem 3rem;
  }
  .hero-meta { grid-area: meta; }
  .hero-title { grid-area: title; font-size: clamp(4rem, 8.5vw, 7rem); }
  .hero-lede { grid-area: lede; font-size: 1.15rem; max-width: 42ch; }
  .hero-cta { grid-area: cta; }
  .hero-decor {
    grid-area: decor;
    display: block;
    align-self: center;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 400 / 600;
    justify-self: end;
    color: var(--sage-deep);
    transform: rotate(2deg);
  }
  .hero-decor svg { width: 100%; height: 100%; display: block; }
  .hero-foot {
    grid-area: foot;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .hero-foot .num { font-size: 1.6rem; }
  .hero-foot .lab { font-size: 0.95rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: clamp(5rem, 8vw, 8.5rem); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 1.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  animation: marquee 38s linear infinite;
}
.marquee-track .sep { color: var(--rose); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  max-width: 56ch;
}
@media (min-width: 768px) {
  .sec-head { gap: 1.1rem; margin-bottom: 4rem; }
}

.sec-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 40, "opsz" 144;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
}
.sec-title-light { color: var(--cream); }
.sec-title-light em { color: var(--rose); }
.sec-sub-light { color: rgba(246, 241, 230, 0.78); }

@media (min-width: 768px) {
  .sec-title { font-size: clamp(2.8rem, 5vw, 4.4rem); }
}

/* ---------- FILOSOFIA ---------- */
.section-filosofia {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.filo-grid {
  display: grid;
  gap: 2rem;
}
.filo-lede {
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-weight: 400;
  font-variation-settings: "SOFT" 30, "opsz" 96;
  max-width: 28ch;
}
.filo-lede em {
  font-style: italic;
  color: var(--sage-deep);
}

.values {
  display: grid;
  gap: 1.25rem;
}
.values li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
}
.values li:last-child { border-bottom: 1px solid var(--line-soft); }
.v-num {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--rose-deep);
  font-weight: 400;
  line-height: 1;
  padding-top: 0.2rem;
}
.values h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 40;
}
.values p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (min-width: 900px) {
  .filo-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }
  .filo-lede { font-size: 1.7rem; }
  .values li { padding: 1.75rem 0; }
}

/* ---------- CATEGORIE ---------- */
.section-categorie {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-top: 1px solid var(--line);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cat-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.6,.01,.05,1), box-shadow 320ms ease;
  color: var(--sage-deep);
  border: 1px solid var(--line-soft);
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 0% 0%, rgba(90, 122, 94, 0.06), transparent 60%);
  pointer-events: none;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.cat-icon {
  width: 64px;
  height: 76px;
  margin-bottom: 0.5rem;
}
.cat-icon svg { width: 100%; height: 100%; color: var(--sage-deep); }

.cat-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--rose-deep);
  letter-spacing: 0.01em;
}

.cat-card h3 {
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50;
}
.cat-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cat-tag {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}

@media (min-width: 600px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .cat-card { padding: 2rem 1.75rem; }
  .cat-card:nth-child(2n) { transform: translateY(2rem); }
  .cat-card:nth-child(2n):hover { transform: translateY(calc(2rem - 4px)); }
}

/* ---------- FAMIGLIA ---------- */
.section-famiglia {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.fam-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.fam-card {
  padding: 1.75rem 1.5rem;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.fam-card::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.fam-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--sage-deep);
  letter-spacing: -0.005em;
  font-variation-settings: "SOFT" 70;
}
.fam-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 768px) {
  .fam-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .fam-card { padding: 2rem 1.75rem; }
}

/* ---------- ORDINARE ---------- */
.section-ordinare {
  background:
    radial-gradient(900px 400px at 90% 0%, var(--sky-tint) 0%, transparent 60%),
    var(--cream);
  border-top: 1px solid var(--line);
}

.paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.path {
  background: var(--paper);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.path::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--sage);
}
.path-alt::before { background: var(--rose); }

.path-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.path-letter {
  font-family: var(--display);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.85;
  color: var(--sage-deep);
  font-variation-settings: "SOFT" 80;
}
.path-alt .path-letter { color: var(--rose-deep); }

.path-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--sage-tint);
  color: var(--sage-deep);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.path-alt .path-tag { background: var(--rose-tint); color: var(--rose-deep); }

.path h3 {
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 50;
}
.path-body {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.path-steps {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
}
.path-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.35rem 0;
}
.path-steps li span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-deep);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--line);
}

.path .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.ordinare-note {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-style: normal;
  font-variation-settings: "SOFT" 30;
}
.ordinare-note em {
  font-style: italic;
  color: var(--sage-deep);
}

@media (min-width: 768px) {
  .paths { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .path { padding: 2.25rem 2rem 2rem; }
  .path h3 { font-size: 1.85rem; }
  .ordinare-note { margin-top: 3rem; font-size: 1.2rem; }
}

/* ---------- CONTATTI ---------- */
.section-contatti {
  background:
    radial-gradient(800px 400px at 80% 100%, rgba(200, 134, 107, 0.18) 0%, transparent 60%),
    radial-gradient(800px 400px at 20% 0%, rgba(90, 122, 94, 0.22) 0%, transparent 60%),
    var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(246, 241, 230, 0.1);
}

.section-contatti .sec-title { color: var(--cream); }
.section-contatti .sec-title em { color: var(--rose); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0.25rem 1rem;
  padding: 1.5rem 1.25rem;
  background: rgba(246, 241, 230, 0.04);
  border: 1px solid rgba(246, 241, 230, 0.12);
  border-radius: 14px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(.6,.01,.05,1);
  min-height: 100px;
  align-content: center;
}
.contact-card:hover {
  background: rgba(246, 241, 230, 0.08);
  border-color: rgba(246, 241, 230, 0.25);
  transform: translateY(-2px);
}
.contact-card-static:hover { transform: none; cursor: default; background: rgba(246, 241, 230, 0.04); border-color: rgba(246, 241, 230, 0.12); }

.c-label {
  grid-column: 1;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.c-channel {
  grid-column: 1;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--cream);
  font-variation-settings: "SOFT" 50;
}
.c-value {
  grid-column: 1;
  font-size: 0.92rem;
  color: rgba(246, 241, 230, 0.7);
}
.c-arrow {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--rose);
  transition: transform 280ms cubic-bezier(.6,.01,.05,1);
}
.contact-card:hover .c-arrow { transform: translateX(4px); }

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-card { padding: 2rem 1.75rem; }
  .c-channel { font-size: 1.7rem; }
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-social {
  border-top: 1px solid rgba(246, 241, 230, 0.12);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}
.social-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.6);
}
.social-row { display: flex; gap: 0.6rem; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246, 241, 230, 0.2);
  color: rgba(246, 241, 230, 0.7);
}
.social-note {
  font-size: 0.85rem;
  color: rgba(246, 241, 230, 0.55);
  font-style: italic;
  font-family: var(--display);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--cream);
}
.footer-mark { color: var(--sage); }
.footer-brand em {
  font-style: italic;
  color: var(--rose);
  font-variation-settings: "SOFT" 80;
}

.footer-tag {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.4;
  color: rgba(246, 241, 230, 0.78);
  font-style: italic;
  font-variation-settings: "SOFT" 40;
  max-width: 28ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.92rem;
}
.footer-nav a {
  color: rgba(246, 241, 230, 0.7);
  padding: 0.4rem 0;
  transition: color 180ms ease;
}
.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 230, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(246, 241, 230, 0.55);
}
.footer-credit a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(246, 241, 230, 0.4);
  transition: text-decoration-color 180ms ease;
}
.footer-credit a:hover { text-decoration-color: var(--rose); }

@media (min-width: 768px) {
  .site-footer { padding: 4rem 0 2rem; }
  .footer-grid {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 1.5rem 3rem;
    align-items: start;
  }
  .footer-brand { grid-column: 1; grid-row: 1; }
  .footer-tag { grid-column: 2; grid-row: 1; align-self: center; }
  .footer-nav { grid-column: 3; grid-row: 1; align-self: center; justify-content: flex-end; }
  .footer-bottom {
    grid-column: 1 / 4;
    grid-row: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- REVEAL (scroll-in) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 720ms cubic-bezier(.2,.6,.2,1),
    transform 720ms cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
