/* ==========================================================================
   LEONARDO CAPECCHI — Personal Sales Experience
   Design system: editorial / luxury minimal. Ink, paper, stone. One accent.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,340;9..144,440;9..144,560&family=Inter:wght@400;500;600&display=swap");

:root{
  /* palette */
  --ink:#15130f;
  --ink-85: rgba(21,19,15,.85);
  --ink-60: rgba(21,19,15,.62);
  --ink-40: rgba(21,19,15,.42);
  --paper:#f6f1e7;
  --paper-2:#efe7d8;
  --paper-solid:#fbf8f2;
  --line: rgba(21,19,15,.14);
  --line-strong: rgba(21,19,15,.28);
  --stone:#8f8371;
  --ember:#9c3d1f;

  --nemea-bg:#0d0c0a;
  --nemea-bg-2:#151310;
  --nemea-text:#f2ede1;
  --nemea-text-60: rgba(242,237,225,.62);
  --nemea-line: rgba(242,237,225,.16);

  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --gutter: clamp(20px, 6vw, 64px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,p,figure{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- layout helpers ---------- */
.section{ position:relative; padding-block: clamp(72px, 12vw, 156px); }
.section-inner{ max-width: var(--container); margin-inline:auto; padding-inline: var(--gutter); }
.section--tight{ padding-block: clamp(56px, 9vw, 110px); }
.section--paper2{ background: var(--paper-2); }
.section--dark{ background: var(--nemea-bg); color: var(--nemea-text); }
.section--divider{ border-top:1px solid var(--line); }
.section--dark.section--divider{ border-top-color: var(--nemea-line); }

.eyebrow{
  font-family: var(--font-sans);
  font-weight:600;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 1.1em;
}
.section--dark .eyebrow{ color: var(--nemea-text-60); }

.h-1{ font-family: var(--font-display); font-weight:440; font-size: clamp(2.4rem, 8vw, 4.6rem); line-height:1.04; letter-spacing:-.01em; }
.h-2{ font-family: var(--font-display); font-weight:440; font-size: clamp(1.9rem, 6vw, 3.1rem); line-height:1.08; letter-spacing:-.01em; }
.h-3{ font-family: var(--font-display); font-weight:440; font-size: clamp(1.5rem, 4.4vw, 2.1rem); line-height:1.14; }

.lede{ font-family: var(--font-display); font-weight:400; font-size: clamp(1.2rem, 3.4vw, 1.55rem); line-height:1.42; color: var(--ink-85); }
.section--dark .lede{ color: var(--nemea-text); }

.prose{ font-size: clamp(1rem, 2vw, 1.09rem); line-height:1.75; color: var(--ink-60); max-width: 46ch; }
.section--dark .prose{ color: var(--nemea-text-60); }
.prose + .prose{ margin-top:1.4em; }
.prose strong{ color:var(--ink); font-weight:600; }
.section--dark .prose strong{ color: var(--nemea-text); }

.beat{ margin: 0 0 .35em 0; }
.beat-group{ margin-bottom: 1.6em; }
.beat-group:last-child{ margin-bottom:0; }

.rule{ width:40px; height:1px; background: var(--line-strong); border:0; margin: 1.6em 0; }
.section--dark .rule{ background: var(--nemea-line); }

.kicker-num{ font-family:var(--font-display); font-size:.95rem; color:var(--ink-40); }

/* ---------- reveal animation ---------- */
[data-reveal]{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--rd, 0ms);
}
[data-reveal].is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}

/* ---------- nav / progress ---------- */
.topbar{
  position:fixed; inset:0 0 auto 0; z-index:40;
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px var(--gutter);
  pointer-events:none;
  mix-blend-mode: difference;
}
.topbar span{
  font-family: var(--font-sans); font-weight:600; font-size:.72rem;
  letter-spacing:.16em; text-transform:uppercase; color:#f6f1e7;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background: var(--ink);
}
.hero__media{
  position:relative; flex:none; width:100%;
  aspect-ratio: 4 / 5; max-height: 62svh; overflow:hidden;
}
.hero__media img{
  width:100%; height:100%; object-fit:cover; object-position: 50% 12%;
  filter: saturate(1.02);
}
.hero__media-scrim{
  position:absolute; inset:auto 0 0 0; height:38%;
  background: linear-gradient(180deg, rgba(13,12,10,0) 0%, rgba(13,12,10,.72) 100%);
}
.hero__name{
  position:absolute; left:var(--gutter); right:var(--gutter); bottom: 16px; z-index:2;
  font-family: var(--font-sans); font-weight:600; font-size:.76rem;
  letter-spacing:.2em; text-transform:uppercase; color:#f6f1e7;
}
.hero__content{
  position:relative; z-index:2; flex:1;
  display:flex; flex-direction:column; justify-content:center;
  padding: clamp(28px, 6vw, 44px) var(--gutter) clamp(44px, 9vw, 68px);
  color:#f6f1e7;
}
.hero__headline{
  font-family: var(--font-display); font-weight:440;
  font-size: clamp(1.9rem, 7.4vw, 2.9rem);
  line-height:1.1; letter-spacing:-.01em;
  max-width: 17ch;
  margin-bottom:.5em;
}
.hero__sub{
  font-size: clamp(.98rem, 2.6vw, 1.12rem);
  line-height:1.6; color: rgba(246,241,231,.78);
  max-width: 44ch;
  margin-bottom: clamp(16px, 3vw, 24px);
}
.hero__brands{
  font-family: var(--font-sans); font-weight:600; font-size:.72rem;
  letter-spacing:.2em; text-transform:uppercase;
  color: rgba(246,241,231,.55);
  margin-bottom: clamp(24px, 5vw, 36px);
}
.hero__ctas{ display:flex; align-items:center; gap: clamp(18px,4vw,28px); flex-wrap:wrap; }

@media (min-width: 900px){
  .hero{ flex-direction:row; }
  .hero__media{ width:54%; aspect-ratio:auto; max-height:none; height:100svh; }
  .hero__content{ width:46%; padding: clamp(28px,6vw,44px) clamp(40px,5vw,72px); }
}

/* buttons / links */
.btn{
  display:inline-flex; align-items:center; gap:.6em;
  font-family: var(--font-sans); font-weight:600; font-size:.92rem;
  padding: .95em 1.5em;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.btn--ghost-light{ color:#f6f1e7; }
.btn--ghost-light:hover{ background:#f6f1e7; color:var(--ink); }
.btn--solid{ background: var(--ink); color: var(--paper-solid); border-color: var(--ink); }
.btn--solid:hover{ transform: translateY(-2px); }
.btn--outline{ background:transparent; color:var(--ink); border-color: var(--line-strong); }
.btn--outline:hover{ background: var(--ink); color: var(--paper-solid); border-color:var(--ink); }
.btn--wa{ background:var(--paper-solid); color:var(--ink); border-color:var(--paper-solid); width:100%; justify-content:center; padding:1.05em 1.6em; font-size:1rem; }
.btn--wa:hover{ transform: translateY(-2px); background:#fff; }
.btn--wa svg{ flex:none; }
.btn-row{ display:flex; flex-direction:column; gap:14px; }

.link-arrow{ display:inline-flex; align-items:center; gap:.5em; font-weight:600; font-size:.92rem; }
.link-arrow svg{ transition: transform .3s var(--ease); }
.link-arrow:hover svg{ transform: translateX(4px); }

.scroll-cue{
  position:absolute; left:0; right:0; bottom: clamp(14px,3vw,22px);
  display:flex; justify-content:center; z-index:2;
  color: rgba(246,241,231,.7);
}
.scroll-cue__dot{ width:1px; height:34px; background: rgba(246,241,231,.5); position:relative; overflow:hidden; }
.scroll-cue__dot::after{
  content:""; position:absolute; left:0; top:-100%; width:100%; height:100%;
  background:#f6f1e7; animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue{ 0%{ top:-100% } 60%{ top:100% } 100%{ top:100% } }
@media (prefers-reduced-motion: reduce){ .scroll-cue__dot::after{ animation:none; top:0; } }

/* ==========================================================================
   IMAGE FRAMES
   ========================================================================== */
.frame{ position:relative; overflow:hidden; background: var(--paper-2); }
.frame img{ width:100%; height:100%; object-fit:cover; }
.frame--archival img{ filter: grayscale(18%) sepia(10%) contrast(.97) brightness(1.01); }

.figure-cap{
  margin-top:.85em; font-size:.8rem; color: var(--ink-40);
  letter-spacing:.02em;
}

/* full-bleed photo block used between narrative beats */
.photo-block{ position:relative; width:100%; }
.photo-block--tall{ aspect-ratio: 3/4; }
.photo-block--wide{ aspect-ratio: 4/5; }
@media (min-width: 720px){
  .photo-block--tall{ aspect-ratio: 4/5; }
}

/* ==========================================================================
   OBSERVATION (02)
   ========================================================================== */
.observation{ background: var(--ink); color:#f6f1e7; }
.observation .eyebrow{ color: rgba(246,241,231,.5); }
.observation__grid{
  display:grid; gap: clamp(32px, 6vw, 64px);
  align-items:center;
}
@media (min-width: 860px){
  .observation__grid{ grid-template-columns: 1fr 1fr; }
  .observation__grid.reverse{ direction: rtl; }
  .observation__grid.reverse > *{ direction: ltr; }
}
.observation__media{ aspect-ratio: 3/4; border-radius:2px; overflow:hidden; }
.observation__media img{ width:100%; height:100%; object-fit:cover; }
.observation blockquote{
  font-family: var(--font-display); font-weight:400;
  font-size: clamp(1.5rem, 4vw, 2rem); line-height:1.28;
  margin: 0 0 .9em 0; color:#f6f1e7;
}
.observation p.prose{ color: rgba(246,241,231,.62); }

/* ==========================================================================
   TWO-COLUMN NARRATIVE (used for restaurant / people / journey / sales)
   ========================================================================== */
.story{ }
.story__grid{
  display:grid; gap: clamp(32px, 6vw, 72px);
  align-items:center;
}
@media (min-width: 860px){
  .story__grid{ grid-template-columns: .92fr 1.08fr; }
  .story__grid.media-right{ grid-template-columns: 1.08fr .92fr; }
  .story__grid.media-right .story__media{ order:2; }
}
.story__media{ position:relative; }
.story__media-pair{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.story__media-pair .photo-block:first-child{ margin-top: clamp(20px, 6vw, 40px); }

.story__text .h-2{ margin-bottom:.55em; }
.story__text .prose{ margin-top:1.1em; }

/* ==========================================================================
   TURNING POINT (07)
   ========================================================================== */
.turning{ background: var(--ink); color:#f6f1e7; text-align:center; }
.turning-inner{ max-width:640px; margin-inline:auto; padding-inline:var(--gutter); display:flex; flex-direction:column; align-items:center; gap: clamp(28px,6vw,44px); }
.turning .lede{ color:#f6f1e7; }
.turning__line{ font-family: var(--font-display); font-size: clamp(1.5rem, 5vw, 2.3rem); line-height:1.25; }
.turning__line--soft{ color: rgba(246,241,231,.55); font-size: clamp(1.1rem, 3.4vw, 1.5rem); }
.turning__strong{ font-size: clamp(1.9rem, 7vw, 3rem); }
.turning__photo{ width: min(280px, 62vw); aspect-ratio: 1/1; border-radius:50%; overflow:hidden; border:1px solid rgba(246,241,231,.18); }
.turning__photo img{ width:100%; height:100%; object-fit:cover; }

/* ==========================================================================
   TRANSIZIONE — LA DOMANDA (pivot)
   ========================================================================== */
.pivot{ background: var(--ink); color:#f6f1e7; text-align:center; padding-block: clamp(96px, 16vw, 200px); }
.pivot-inner{ max-width:600px; margin-inline:auto; padding-inline:var(--gutter); display:flex; flex-direction:column; align-items:center; gap: clamp(26px,5vw,38px); }
.pivot__lines{ color: rgba(246,241,231,.6); margin-inline:auto; }
.pivot__cue{
  font-family: var(--font-display); font-style:italic;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem); color: rgba(246,241,231,.85);
}
.pivot__question{
  font-family: var(--font-display); font-weight:440;
  font-size: clamp(1.8rem, 6vw, 2.8rem); line-height:1.28;
  color:#f6f1e7;
}

/* ==========================================================================
   L'OLIVA — sequenza in tre momenti
   ========================================================================== */
.oliva{ background: var(--ink); color:#f6f1e7; text-align:center; }
.oliva-inner{ max-width:640px; margin-inline:auto; padding-inline:var(--gutter); display:flex; flex-direction:column; align-items:center; gap: clamp(20px,4vw,28px); }
.oliva__num{
  font-family: var(--font-display); font-weight:440;
  font-size: clamp(3.6rem, 18vw, 8rem); line-height:1;
  color: var(--ember);
}
.oliva__sub{
  font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 1.8rem);
  line-height:1.3; color: rgba(246,241,231,.85); margin-top:-.6em;
}
.oliva__story{ color: rgba(246,241,231,.62); max-width: 46ch; }
.oliva__twist{
  font-family: var(--font-display); font-weight:440; font-style:italic;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem); line-height:1.35;
  color:#f6f1e7; margin-top: clamp(18px,3vw,26px);
}
.oliva__point{ font-family: var(--font-display); font-size: clamp(1.3rem, 3.6vw, 1.7rem); color:#f6f1e7; margin-top: clamp(12px,2vw,18px); }
.oliva .lede{ color: rgba(246,241,231,.85); }

/* ==========================================================================
   OLIVA → RISTORAZIONE (bridge)
   ========================================================================== */
.bridge__list{ margin: clamp(24px,4vw,32px) 0; }
.bridge__list p{
  font-family: var(--font-display); font-size: clamp(1.1rem,2.6vw,1.3rem);
  color: var(--ink-85); line-height:1.7;
}
.bridge__emphasis{
  font-family: var(--font-display); font-weight:440; font-style:italic;
  font-size: clamp(1.25rem,3vw,1.6rem); color: var(--ink); line-height:1.4;
}

/* ==========================================================================
   RESPIRU
   ========================================================================== */
.respiru{ }
.respiru__system{
  display:flex; flex-wrap:wrap; gap: .5em .9em;
  margin: 1.6em 0 1.8em;
}
.respiru__system span{
  font-family: var(--font-sans); font-weight:600; font-size:.78rem;
  letter-spacing:.1em; text-transform:uppercase; color: var(--ink-60);
  padding: .5em .95em; border:1px solid var(--line); border-radius:999px;
}
.respiru__shot{ display:flex; align-items:center; }
.respiru__shot img{ width:100%; height:auto; }

/* ==========================================================================
   NEMEA
   ========================================================================== */
.nemea__grid{ display:grid; gap: clamp(32px,6vw,64px); align-items:center; }
@media (min-width: 860px){ .nemea__grid{ grid-template-columns: 1fr 1fr; } }
.nemea__media{ aspect-ratio: 3/4; overflow:hidden; }
.nemea__media img{ width:100%; height:100%; object-fit:cover; }
.nemea__word{
  font-family: var(--font-display); font-weight:340;
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing:.01em; line-height:1;
  margin-bottom:.3em;
}
.nemea__closing{
  font-family: var(--font-display); font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  line-height:1.4; margin-top:1.5em; color:#f6f1e7;
}

/* ---------- NEMEA infrastructure / RESPIRU magazzino (dark, reuse timeline + solutions grid) ---------- */
.method__step .infra__label,
.section--dark .method__step .infra__label{
  font-family: var(--font-display); font-weight:400;
  font-size: clamp(1.1rem,2.6vw,1.35rem); color:#f6f1e7; padding-top:.6em;
}
.infra__closing{
  margin-top: clamp(28px,5vw,40px); font-family: var(--font-display); font-weight:440;
  font-size: clamp(1.3rem,3vw,1.7rem); line-height:1.4; color:#f6f1e7;
}
.section--dark .method__timeline::before{ background: var(--nemea-line); }
.section--dark .method__dot{
  background: var(--nemea-bg); border-color: var(--nemea-line); color: var(--nemea-text-60);
}
.section--dark .method__step:hover .method__dot{
  background: var(--nemea-text); color: var(--nemea-bg); border-color: var(--nemea-text);
}
.section--dark .method__step h3{ color: var(--nemea-text); }
.section--dark .method__step p{ color: var(--nemea-text-60); }
.section--dark .respiru__system span{ color: var(--nemea-text-60); border-color: var(--nemea-line); }

/* ==========================================================================
   DUALITY
   ========================================================================== */
.duality__grid{
  display:grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--line); border-radius:2px; overflow:hidden;
}
@media (min-width: 860px){ .duality__grid{ grid-template-columns: 1fr 1px 1fr; } }
.duality__col{ padding: clamp(32px,5vw,56px); }
.duality__col--nemea{ background: var(--nemea-bg); color: var(--nemea-text); }
.duality__divider{ background: var(--line); }
@media (max-width: 859px){ .duality__divider{ height:1px; } }
.duality__label{ font-family: var(--font-sans); font-weight:600; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color: var(--ink-40); margin-bottom:1.4em; }
.duality__col--nemea .duality__label{ color: var(--nemea-text-60); }
.duality__claim{ font-family: var(--font-display); font-size: clamp(1.6rem,4vw,2.2rem); margin-bottom:.6em; }
.duality__tags{ display:flex; flex-wrap:wrap; gap:.5em; margin-top:1.5em; }
.duality__tags span{ font-size:.78rem; color:var(--ink-40); border:1px solid var(--line); border-radius:999px; padding:.4em .85em; }
.duality__col--nemea .duality__tags span{ color: var(--nemea-text-60); border-color: var(--nemea-line); }
.duality__center{
  text-align:center; padding: clamp(28px,5vw,40px) var(--gutter) 0;
}
.duality__center .prose{ margin-inline:auto; }
.duality__name{ font-family: var(--font-display); font-size: clamp(1.1rem,2.6vw,1.3rem); letter-spacing:.04em; margin-bottom:1em; }

/* ==========================================================================
   SOLUTIONS ("adesso veniamo a te")
   ========================================================================== */
.solutions__list{ display:grid; gap:1px; background: var(--line); border:1px solid var(--line); margin-top: clamp(28px,5vw,44px); }
.solutions__item{ background: var(--paper); padding: clamp(26px,4vw,40px); display:grid; gap: clamp(14px,3vw,28px); transition: background .35s var(--ease); }
@media (min-width: 720px){ .solutions__item{ grid-template-columns: 90px 1fr; align-items:start; } }
.solutions__item:hover{ background: var(--paper-2); }
.solutions__num{ font-family: var(--font-display); font-size:1.6rem; color: var(--ink-40); }
.solutions__label{ font-family: var(--font-sans); font-weight:600; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color: var(--ink-40); display:block; margin-bottom:.7em; }
.solutions__item h3{ font-family: var(--font-display); font-weight:440; font-size: clamp(1.35rem,3vw,1.75rem); line-height:1.28; margin-bottom:.6em; max-width:22ch; }
.solutions__item p{ color: var(--ink-60); font-size:.98rem; line-height:1.65; max-width:52ch; }
.solutions__closing{
  margin-top: clamp(28px,5vw,40px); font-family: var(--font-display); font-style:italic;
  font-size: clamp(1.05rem,2.2vw,1.25rem); color: var(--ink-60); max-width:44ch;
}
.section--dark .solutions__list{ background: var(--nemea-line); border-color: var(--nemea-line); }
.section--dark .solutions__item{ background: var(--nemea-bg); }
.section--dark .solutions__item:hover{ background: var(--nemea-bg-2); }
.section--dark .solutions__num{ color: var(--nemea-text-60); }
.section--dark .solutions__label{ color: var(--nemea-text-60); }
.section--dark .solutions__item h3{ color: var(--nemea-text); }
.section--dark .solutions__item p{ color: var(--nemea-text-60); }

/* ==========================================================================
   METHOD — vertical connected timeline
   ========================================================================== */
.method__timeline{
  position:relative; max-width:640px;
  margin-top: clamp(36px,6vw,56px);
}
.method__timeline::before{
  content:""; position:absolute; left:23px; top:8px; bottom:8px; width:1px;
  background: var(--line-strong);
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.6s var(--ease);
}
.method__timeline.is-visible::before{ transform: scaleY(1); }
.method__step{
  position:relative; display:grid; grid-template-columns: 48px 1fr;
  gap: clamp(18px,3vw,28px); align-items:start;
  padding-bottom: clamp(34px,5vw,52px);
}
.method__step:last-child{ padding-bottom:0; }
.method__dot{
  position:relative; z-index:1; width:48px; height:48px; border-radius:50%;
  border:1px solid var(--line-strong); background: var(--paper);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1rem; color: var(--ink-60);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.method__step:hover .method__dot{
  background: var(--ink); color: var(--paper-solid); border-color: var(--ink);
  transform: scale(1.08);
}
.method__step h3{ font-family: var(--font-sans); font-weight:600; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.55em; padding-top:.6em; }
.method__step p{ font-family: var(--font-display); font-size: clamp(1.1rem,2.4vw,1.3rem); color: var(--ink-85); line-height:1.4; }
.method__step{ padding-top: 1.1em; border-top: 1px solid var(--line); }
.method__step .num{ font-family: var(--font-display); font-size:.95rem; color: var(--ink-40); display:block; margin-bottom:.5em; }
.method__step h3{ font-family: var(--font-sans); font-weight:600; font-size:.9rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:.5em; }
.method__step p{ font-family: var(--font-display); font-size:1.05rem; color: var(--ink-85); line-height:1.4; }

/* ==========================================================================
   TRANSPARENCY
   ========================================================================== */
.transparency{ text-align:left; }
.transparency-inner{ max-width:640px; }
.transparency .lede{ margin-bottom: .2em; }
.transparency .beat-group .lede{ margin-bottom:.1em; }

/* ==========================================================================
   RADICI + FUTURO — composizione diagonale unica
   ========================================================================== */
.rootsfuture{ position:relative; }
.rootsfuture__panel{ position:relative; overflow:hidden; text-align:center; }

.rootsfuture__panel--roots{
  background: var(--paper); color: var(--ink);
  padding-block: clamp(90px,13vw,150px) clamp(150px,20vw,240px);
}
.rootsfuture__panel--roots .prose{ font-family: var(--font-display); font-size:1.15rem; color: var(--ink-85); line-height:1.6; }

.rootsfuture__panel--future{
  background: var(--nemea-bg); color: var(--nemea-text);
  margin-top: clamp(-150px, -12vw, -70px);
  padding-block: clamp(130px,17vw,210px) clamp(90px,13vw,150px);
  clip-path: polygon(0 clamp(60px,10vw,140px), 100% 0, 100% 100%, 0 100%);
}
.rootsfuture__panel--future .lede{ color: rgba(246,241,231,.75); margin-bottom:.9em; }
.rootsfuture__panel--future .h-2{ color:#f6f1e7; }
.rootsfuture__panel--future .eyebrow{ color: rgba(246,241,231,.5); }

.rootsfuture__inner{ position:relative; z-index:1; max-width:560px; margin-inline:auto; padding-inline:var(--gutter); }

.rootsfuture__word{
  position:absolute; left:50%; z-index:0;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight:340;
  line-height:1; white-space:nowrap;
  letter-spacing:-.01em;
  pointer-events:none; user-select:none;
}
.rootsfuture__word--roots{ top:42%; font-size: clamp(4rem, 20vw, 12rem); color: var(--ink); opacity:.045; }
.rootsfuture__word--future{ top:56%; font-size: clamp(4rem, 22vw, 13rem); color:#f6f1e7; opacity:.06; }

.salento__definition{
  margin-top: clamp(32px,5vw,48px);
  padding-top: clamp(24px,4vw,32px);
  border-top: 1px solid var(--line);
  display:inline-block;
}
.salento__definition .term{
  font-family: var(--font-display); font-style:italic; font-weight:440;
  font-size: clamp(2rem,5vw,2.8rem); color: var(--ink); line-height:1;
}
.salento__definition .pos{
  margin-top:.6em; font-family: var(--font-sans); font-weight:600;
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-40);
}
.salento__definition .def{
  margin-top:.5em; font-family: var(--font-display); font-size:1.2rem; color: var(--ink-85);
}

.future__words{
  display:flex; flex-direction:column; align-items:center; gap:.2em;
  margin: clamp(28px,5vw,40px) 0;
}
.future__words span{
  font-family: var(--font-display); font-weight:400;
  font-size: clamp(1.5rem,4.4vw,2.3rem); color:#f6f1e7;
}
.future__words span.future__words--strong{
  font-weight: 440;
  font-size: clamp(1.9rem,6.4vw,3.1rem);
}
@media (min-width: 640px){
  .future__words{ flex-direction:row; flex-wrap:wrap; justify-content:center; gap:.6em; }
}
.future__final{ margin-top:1.4em; font-family: var(--font-display); font-size: clamp(1.1rem,2.6vw,1.35rem); color: rgba(246,241,231,.8); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ background: var(--ink); color:#f6f1e7; }
.contact .eyebrow{ color: rgba(246,241,231,.5); }
.contact .h-2{ color:#f6f1e7; }
.contact .lede{ color: rgba(246,241,231,.75); max-width:38ch; margin-top:.6em; }
.contact__actions{ margin-top: clamp(36px,6vw,52px); max-width:420px; }
.contact__secondary-row{ display:flex; gap:12px; margin-top:14px; }
.contact__secondary-row .btn{ flex:1; justify-content:center; }
.contact__email{ margin-top:22px; }
.contact__email a{ font-size:.92rem; color: rgba(246,241,231,.55); border-bottom:1px solid rgba(246,241,231,.28); padding-bottom:2px; }
.contact__email a:hover{ color:#f6f1e7; border-color:#f6f1e7; }

.btn--outline-dark{ background:transparent; color:#f6f1e7; border:1px solid rgba(246,241,231,.32); }
.btn--outline-dark:hover{ background:#f6f1e7; color: var(--ink); border-color:#f6f1e7; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background: var(--nemea-bg); color: var(--nemea-text); }
.footer-inner{ max-width: var(--container); margin-inline:auto; padding: clamp(48px,7vw,72px) var(--gutter) clamp(28px,5vw,40px); }
.footer__top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap: 32px; padding-bottom: clamp(32px,5vw,48px); border-bottom:1px solid var(--nemea-line); }
.footer__brand .h-3{ color:#f6f1e7; margin-bottom:.35em; }
.footer__descriptor{ font-size:.85rem; color: var(--nemea-text-60); letter-spacing:.03em; }
.footer__brands{ display:flex; gap: clamp(28px,5vw,56px); }
.footer__brands .name, .footer__brands .desc{ display:block; }
.footer__brands .name{ font-family: var(--font-display); font-size:1.2rem; margin-bottom:.3em; }
.footer__brands a.name:hover{ text-decoration: underline; text-underline-offset: 3px; }
.footer__brands .desc{ font-size:.8rem; color: var(--nemea-text-60); max-width:20ch; }
.footer__contacts{ display:flex; flex-wrap:wrap; gap: 10px 24px; padding-top: clamp(24px,4vw,32px); font-size:.85rem; color: var(--nemea-text-60); }
.footer__contacts a:hover{ color:#f6f1e7; }
.footer__manifesto{
  margin-top: clamp(32px,5vw,48px);
  font-family: var(--font-display); font-weight:340;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  line-height:1.25;
}
.footer__base{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; margin-top: clamp(28px,4vw,40px); font-size:.72rem; color: rgba(242,237,225,.4); letter-spacing:.04em; }

/* ==========================================================================
   MISC
   ========================================================================== */
.visually-hidden{
  position:absolute !important; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0; padding:0; margin:-1px;
}

a:focus-visible, button:focus-visible{
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}
