/* Homepage — hero overlay + numbers + story + casi + deliver + percorso + non */

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--bone);
  position: relative;
}
.hero__copy {
  padding: clamp(110px, 14vh, 180px) clamp(28px, 5vw, 80px) 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow { margin-bottom: clamp(40px, 6vw, 72px); }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.016em;
  margin: 0 0 36px;
  text-wrap: balance;
}
.hero__title .it { font-style: italic; }
.hero__title .accent { color: var(--accent); font-style: italic; }

/* Editorial highlight underline */
.hl {
  position: relative;
  display: inline;
  font-style: italic;
  font-weight: 400;
  background-image:
    linear-gradient(180deg,
      transparent 0%,
      transparent 52%,
      color-mix(in oklab, var(--accent) 26%, transparent) 52%,
      color-mix(in oklab, var(--accent) 26%, transparent) 92%,
      transparent 92%,
      transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.12em;
  margin: 0 -0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--ink);
}
.hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
.hero--overlay .hl,
.section--ink .hl { color: var(--bone); }
.hero--overlay .hl {
  background-image:
    linear-gradient(180deg,
      transparent 0%,
      transparent 52%,
      color-mix(in oklab, var(--accent) 38%, transparent) 52%,
      color-mix(in oklab, var(--accent) 38%, transparent) 92%,
      transparent 92%,
      transparent 100%);
}
.hero__sub {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 40ch;
  margin: 0 0 56px;
  text-wrap: pretty;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--accent);
  color: #FBF6EE;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  transition: transform .25s ease, background .25s ease;
}
.hero__cta:hover { background: #9A5A30; transform: translateY(-1px); }
.hero__cta .arr { font-family: var(--sans); letter-spacing: 0; }

.hero__media {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(0.92) contrast(1.02);
}

/* ——— Numbers strip ——— */
.numbers {
  background: var(--paper);
  padding: clamp(64px, 7vw, 112px) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.numbers__head { max-width: 720px; margin: 0 auto clamp(48px, 5vw, 80px); text-align: center; }
.numbers__head .kicker { display: block; margin-bottom: 22px; }
.numbers__head h3 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.35; margin: 0;
  color: var(--ink);
}
.numbers__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 36px clamp(20px, 2.5vw, 48px);
  border-left: 1px solid var(--rule);
  position: relative;
  min-width: 0;
}
.stat:first-child { border-left: 0; }
.stat__num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.022em;
  font-variant-numeric: tabular-nums;
}
.stat__num .pct { font-size: 0.6em; vertical-align: 0.3em; margin-left: 4px; opacity: 0.85; }
.stat__label {
  font-family: var(--serif-body); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.35vw, 21px); line-height: 1.45;
  margin: 22px 0 14px;
  color: var(--ink);
  max-width: 28ch;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.stat__src {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* ——— Storia in evidenza ——— */
.story {
  background: var(--ink); color: var(--bone);
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
}
.story__inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.story__media {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, rgba(236,230,218,0.04) 0 14px, rgba(236,230,218,0.07) 14px 28px),
    var(--ink-2);
  border: 1px solid var(--rule-on-ink);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.story__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.story__media .ph {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(236,230,218,0.45);
  text-align: center;
}
.story__media .ph small { display: block; margin-top: 8px; opacity: 0.7; letter-spacing: 0.2em; }
.story__media .corner {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: rgba(236,230,218,0.85);
  z-index: 2;
}
.story__copy .eyebrow { color: rgba(236,230,218,0.6); margin-bottom: 28px; display: block; }
.story__copy h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.04; letter-spacing: -0.014em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.story__copy h2 .it { font-style: italic; }
.story__copy p {
  font-family: var(--serif-body); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px); line-height: 1.6;
  color: rgba(236,230,218,0.88);
  max-width: 52ch; margin: 0 0 40px;
}
.story__link {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 14px 0; border-bottom: 1px solid rgba(236,230,218,0.4);
  color: var(--bone);
}
.story__link:hover { border-color: var(--accent); color: var(--accent); }
.story__link .arr { letter-spacing: 0; font-family: var(--sans); }

/* ——— Casi grid ——— */
.casi { padding: clamp(80px, 9vw, 140px) var(--pad-x); background: var(--bone); }
.casi__intro { max-width: 720px; }
.casi__intro p {
  font-family: var(--serif-body); font-style: italic;
  font-size: clamp(17px, 1.3vw, 20px); color: var(--ink-2); line-height: 1.55;
  margin: 24px 0 0;
}
.casi__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: clamp(56px, 6vw, 88px);
}
.case {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px clamp(22px, 2.4vw, 36px) 36px;
  min-height: 240px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--bone);
  transition: background .25s ease, color .25s ease;
}
.case:hover { background: var(--ink); color: var(--bone); }
.case:hover .case__num { color: var(--accent); }
.case:hover .case__arr { color: var(--accent); }
.case__num {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em;
  color: var(--muted); font-variant-numeric: tabular-nums;
  margin-bottom: 28px;
}
.case__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.18; letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
.case__title .it { font-style: italic; }
.case__arr {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; margin-top: 28px; align-self: flex-start;
  display: inline-flex; gap: 10px; align-items: center;
  color: var(--muted);
}

/* ——— 140€ list ——— */
.deliver { background: var(--paper); padding: clamp(80px, 9vw, 140px) var(--pad-x); }
.deliver__inner { max-width: 1480px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(48px, 6vw, 120px); }
.deliver__lead h2 { margin: 22px 0 28px; }
.deliver__price {
  display: inline-flex; align-items: baseline; gap: 14px;
  margin-top: 32px;
  font-family: var(--serif);
}
.deliver__price .amount { font-size: 72px; font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: -0.022em; }
.deliver__price .note { font-family: var(--serif-body); font-style: italic; font-size: 16px; color: var(--ink-2); max-width: 22ch; line-height: 1.5; }
.deliver__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.deliver__item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.deliver__item .num {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--accent); font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.deliver__item h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 1.4vw, 22px); margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.deliver__item p {
  margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2);
  max-width: 56ch;
}

/* ——— Percorso 2 step ——— */
.percorso { background: var(--bone); padding: clamp(80px, 9vw, 140px) var(--pad-x); }
.percorso__steps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 1480px; margin: clamp(56px, 6vw, 88px) auto 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.step { padding: clamp(40px, 4vw, 64px); border-right: 1px solid var(--rule); position: relative; }
.step:last-child { border-right: 0; background: var(--ink); color: var(--bone); }
.step__no {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(96px, 12vw, 180px); line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 24px;
}
.step__no .lbl { font-size: 11px; font-style: normal; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 14px; font-family: var(--sans); }
.step:last-child .step__no .lbl { color: rgba(236,230,218,0.6); }
.step h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12; letter-spacing: -0.012em;
  margin: 0 0 14px; max-width: 18ch;
}
.step h3 .it { font-style: italic; }
.step__meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.step:last-child .step__meta { color: rgba(236,230,218,0.6); }
.step p {
  font-family: var(--serif-body); font-style: italic;
  font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; max-width: 38ch; margin: 0 0 32px;
}
.step:last-child p { color: rgba(236,230,218,0.85); }
.step ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.step ul li { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-2); }
.step:last-child ul li { color: rgba(236,230,218,0.85); }
.step ul li::before { content: "—"; margin-right: 10px; color: var(--accent); }

.step__person {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 28px;
  padding: 12px 14px 12px 12px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.4);
  width: fit-content;
}
.step:last-child .step__person {
  border-color: var(--rule-on-ink);
  background: rgba(236,230,218,0.06);
}
.step__person img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.92) contrast(1.04);
  flex-shrink: 0;
}
.step__person-name {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.1;
}
.step__person-role {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.step:last-child .step__person-role { color: rgba(236,230,218,0.6); }

/* ——— Cosa NON ti vendiamo ——— */
.non { background: var(--ink); color: var(--bone); padding: clamp(80px, 9vw, 140px) var(--pad-x); }
.non__inner { max-width: 1480px; margin: 0 auto; }
.non__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 96px); align-items: end;
  border-bottom: 1px solid var(--rule-on-ink); padding-bottom: 48px; margin-bottom: 48px;
}
.non__head h2 { color: var(--bone); }
.non__head .lead {
  font-family: var(--serif-body); font-style: italic;
  font-size: clamp(17px, 1.25vw, 20px); line-height: 1.6;
  color: rgba(236,230,218,0.78);
  max-width: 44ch;
}
.non__list { list-style: none; padding: 0; margin: 0; }
.non__list li {
  display: grid; grid-template-columns: 80px 1fr 80px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-on-ink);
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.28;
  text-wrap: balance;
}
.non__list li .x {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em;
  color: rgba(236,230,218,0.5); text-transform: uppercase;
}
.non__list li .strike { color: rgba(236,230,218,0.5); text-decoration: line-through; text-decoration-thickness: 1px; }
.non__close {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 96px); align-items: end;
}
.non__close p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.3;
  color: var(--bone); max-width: 22ch; margin: 0;
}
.non__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--accent); color: #FBF6EE;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; align-self: end; justify-self: end;
}
.non__cta:hover { background: #9A5A30; }

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero--overlay .hero__copy { padding-top: 100px; padding-bottom: 80px; }
  .numbers__grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--rule); }
  .stat:first-child { border-top: 0; }
  .story__inner { grid-template-columns: 1fr; }
  .casi__grid { grid-template-columns: repeat(2, 1fr); }
  .deliver__inner { grid-template-columns: 1fr; }
  .percorso__steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--rule); }
  .non__head, .non__close { grid-template-columns: 1fr; }
  .non__list li { grid-template-columns: 60px 1fr; }
  .non__list li .x:last-child { display: none; }
}
@media (max-width: 600px) {
  .casi__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 38px; }
}
