/* ──────────────────────────────────────────────────────────
   Giodi — Mini-landing prodotto (stylesheet condiviso)
   Eredita la palette e la tipografia della home.
   ────────────────────────────────────────────────────────── */

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

:root {
  --terra:    #C47A4A;
  --terra-lt: #D9977A;
  --cream:    #F5F0E8;
  --warm-wh:  #FAF7F2;
  --anthracite: #3D3D3B;
  --mid-gray: #7A7870;
  --lt-gray:  #C8C4BC;
  --line:     rgba(196,122,74,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--warm-wh);
  color: var(--anthracite);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding .4s;
}
nav#navbar.scrolled { padding: 0.8rem 4rem; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--anthracite);
  text-decoration: none;
}
.nav-logo span {
  display: block;
  font-size: .55rem;
  letter-spacing: .45em;
  font-weight: 300;
  color: var(--mid-gray);
  margin-top: .1rem;
  font-family: 'Jost', sans-serif;
}

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.lang-switch {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color .3s;
}
.lang-switch:hover { color: var(--terra); }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warm-wh);
  background: var(--anthracite);
  border: none;
  padding: .65rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--terra); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 8rem 6rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.breadcrumb li { display: flex; align-items: center; gap: .55rem; }
.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--lt-gray);
}
.breadcrumb a { color: var(--mid-gray); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb li[aria-current="page"] { color: var(--terra); }

/* ── ARTICLE ── */
.landing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 6rem 6rem;
}

.landing-eyebrow {
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
  display: block;
}

.landing h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--anthracite);
  margin-bottom: 2.5rem;
}
.landing h1 em { font-style: italic; color: var(--terra); }

.landing figure {
  margin: 0 0 3rem;
  background: var(--cream);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.landing figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(5%);
  display: block;
}

/* placeholder immagine prodotto */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #e2d5c4 0%, #cbbba6 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(61,61,59,.4);
  letter-spacing: .1em;
}

.landing .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--anthracite);
  max-width: 46ch;
  margin-bottom: 3.5rem;
}

.landing section { padding: 0; margin-bottom: 3rem; }

.landing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--anthracite);
  margin-bottom: 1.2rem;
}
.landing h2 em { font-style: italic; color: var(--terra); }

.landing p {
  font-size: .98rem;
  line-height: 1.95;
  color: var(--mid-gray);
  max-width: 68ch;
  margin-bottom: 1rem;
}

.landing ul {
  list-style: none;
  max-width: 68ch;
}
.landing ul li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .98rem;
  line-height: 1.9;
  color: var(--mid-gray);
  margin-bottom: .5rem;
}
.landing ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .75rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

.landing a.inline {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.landing a.inline:hover { color: var(--anthracite); }

/* ── CTA finale ── */
.cta {
  margin-top: 4rem;
  background: var(--terra);
  color: var(--warm-wh);
  padding: 3.5rem 3rem;
  text-align: center;
}
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--warm-wh);
  margin-bottom: 1rem;
}
.cta p {
  color: rgba(250,247,242,.8);
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.cta .btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  background: var(--warm-wh);
  border: none;
  padding: 1.1rem 2.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.cta .btn:hover { background: var(--anthracite); color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: var(--anthracite);
  padding: 2.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200,196,188,.08);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--lt-gray);
}
footer p {
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--mid-gray);
}
footer a { color: var(--lt-gray); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: .8rem 1.5rem; }
  .breadcrumb { padding: 7rem 1.8rem 0; }
  .landing { padding: 1.5rem 1.8rem 4rem; }
  .cta { padding: 2.8rem 1.8rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
}
