:root {
  --bone: #E7E1D6;
  --black: #111111;
  --earth: #766B5D;
  --green: #3E4A43;
  --denim: #283A46;
  --ox: #682B27;
  --tan: #B9A98D;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bone);
  color: var(--black);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a, a:visited {
  color: inherit;
  text-decoration: none;
}

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

/* Offset di ancoraggio per l'header fisso */
#collection, #story, #journal, section[id] {
  scroll-margin-top: 90px;
}

/* ==========================================================================
   PHOTO BLOCKS — PALETTA MATERICA & GRAIN 35MM
   ========================================================================== */
.photo {
  position: relative;
  overflow: hidden;
  background: #201c18;
  isolation: isolate;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  filter: saturate(0.75) contrast(1.08);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo:hover::before,
.product-card:hover .photo::before,
.journal-card:hover .photo::before {
  transform: scale(1.03);
}

.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/></svg>");
  background-size: 140px 140px;
  pointer-events: none;
}

.photo-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(231,225,214,.65);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

/* Gradienti palette */
.tone-road::before { background: linear-gradient(155deg, #3a3230 0%, #1c1917 45%, #4a3c30 100%); }
.tone-motel::before { background: linear-gradient(160deg, #43342c 0%, #201a17 55%, #5a3a2e 100%); }
.tone-denim::before { background: linear-gradient(150deg, #283a46 0%, #151d22 60%, #3a4d58 100%); }
.tone-canvas::before { background: linear-gradient(160deg, #3c2f22 0%, #19140f 55%, #5c4327 100%); }
.tone-garage::before { background: linear-gradient(145deg, #3b342b 0%, #181513 60%, #524436 100%); }
.tone-portrait::before { background: linear-gradient(170deg, #3e352f 0%, #1a1613 60%, #5c463a 100%); }
.tone-macro-denim::before { background: linear-gradient(135deg, #3a5266 0%, #152029 100%); }
.tone-macro-canvas::before { background: linear-gradient(135deg, #5a4527 0%, #231b10 100%); }
.tone-macro-thermal::before { background: linear-gradient(135deg, #8a8072 0%, #2b2823 100%); }
.tone-fashion1::before { background: linear-gradient(170deg, #8a7862 0%, #332a22 65%, #c7b79a 100%); }
.tone-fashion2::before { background: linear-gradient(170deg, #5c4636 0%, #211a16 65%, #8f7256 100%); }
.tone-dawn::before { background: radial-gradient(120% 90% at 65% 25%, #8a5a3a 0%, #3a2418 50%, #100d0b 100%); }
.tone-black-stmt::before { background: linear-gradient(160deg, #221b16 0%, #0a0908 100%); }
.tone-steady::before { background: linear-gradient(170deg, #2c332f 0%, #12140f 70%); }
.tone-untamed::before { background: linear-gradient(170deg, #4a3020 0%, #160d08 70%); }
.grain-heavy::after { opacity: .35; }
.grain-low::after { opacity: .12; }

/* ==========================================================================
   HEADER GLOBALE (Logo rimpicciolito ed elegante)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: var(--bone);
  color: var(--black);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.dark-hero header {
  position: fixed;
  background: transparent;
  color: var(--bone);
  border-bottom-color: rgba(231, 225, 214, 0.15);
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.dark-hero header.scrolled {
  background: var(--bone);
  color: var(--black);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

nav.primary {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12.5px;
  letter-spacing: .04em;
}

nav.primary > a {
  position: relative;
  padding-bottom: 4px;
  color: inherit;
  opacity: 0.88;
  display: inline-block;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.primary > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.primary > a:hover {
  opacity: 1;
}

nav.primary > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Desk */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  opacity: .88;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.nav-drop-trigger svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown:hover .nav-drop-trigger {
  opacity: 1;
}

.nav-dropdown:hover .nav-drop-trigger svg {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bone);
  border: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  padding: 8px 0;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  z-index: 1000;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 12px;
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.nav-drop-menu a {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--black);
  white-space: nowrap;
}

.nav-drop-menu a:hover {
  background: rgba(17,17,17,.06);
}

.nav-actions {
  display: flex;
  gap: 18px;
  font-size: 12px;
  align-items: center;
}

.bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.bag-btn:hover {
  opacity: 0.8;
}

/* Currency Picker */
.currency-picker {
  position: relative;
}

.currency-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  padding: 4px 0;
}

.flag-img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 260px;
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.currency-picker.open .currency-dropdown {
  display: flex;
}

.currency-list {
  max-height: 280px;
  overflow-y: auto;
}

.currency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 12px;
  cursor: pointer;
}

.currency-item:hover {
  background: rgba(17,17,17,.05);
}

.currency-item.active {
  background: rgba(17,17,17,.08);
  font-weight: 600;
}

/* ==========================================================================
   MOBILE MENU & RESPONSIVE REFINEMENTS (< 860px)
   ========================================================================== */
@media (max-width: 860px) {
  nav.primary, 
  .nav-actions .currency-picker,
  .nav-actions .account-icon { 
    display: none !important;
  }
  
  .bag-btn {
    display: inline-flex !important;
  }

  .hamburger-btn {
    display: flex !important;
    background: none;
    border: 0;
    cursor: pointer;
    color: inherit;
    padding: 6px;
    z-index: 1001;
  }

  header {
    padding: 16px 20px;
  }
  
  .logo {
    font-size: 13.5px;
  }
}

.hamburger-btn {
  display: none;
}

#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  color: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 28px 44px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

#mobile-menu.open {
  transform: translateY(0);
}

.mobile-close-btn {
  background: none;
  border: 0;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
  padding: 8px;
  margin: -8px -8px 0 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--black);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.mobile-nav-links a:hover {
  opacity: 1;
}

/* ==========================================================================
   SEZIONI EDITORIALI & TIPOGRAFIA
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--bone);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 32px 40px;
  font-size: 13px;
  letter-spacing: .06em;
}

.hero-bottom .enter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-bottom .enter svg {
  transition: transform .3s ease;
}

.hero-bottom .enter:hover svg {
  transform: translateX(5px);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .03em;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}

.cta svg {
  transition: transform .25s ease;
}

.cta:hover svg {
  transform: translateX(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black);
  color: var(--bone);
  padding: 16px 28px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.18s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

/* 02 Statement */
.statement-hero {
  padding: 150px 0 100px;
}

.statement-hero h2 {
  font-weight: 400;
  font-size: clamp(34px, 6vw, 80px);
  line-height: 1.04;
  max-width: 920px;
}

.statement-hero .support {
  max-width: 440px;
  margin-top: 34px;
  font-size: 16px;
  color: var(--earth);
  line-height: 1.6;
}

.statement-hero .cta-row {
  margin-top: 46px;
}

/* 03 Manifesto */
.manifesto-quiet {
  padding: 60px 0 140px;
}

.manifesto-quiet .inner {
  max-width: 640px;
}

.manifesto-quiet h3 {
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3;
}

.manifesto-quiet p {
  margin-top: 22px;
  color: var(--earth);
  font-size: 16px;
  line-height: 1.9;
  max-width: 420px;
}

/* 04 Sequence */
.seq {
  padding-bottom: 140px;
}

.seq-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: end;
}

.seq-grid .tall {
  aspect-ratio: 3/4.2;
}

.seq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seq-right .short {
  aspect-ratio: 4/3;
}

.seq-copy {
  grid-column: 1/-1;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.seq-copy h3 {
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 50px);
}

.seq-copy p {
  max-width: 260px;
  color: var(--earth);
  font-size: 14px;
}

@media (max-width: 760px) {
  .seq-grid {
    grid-template-columns: 1fr;
  }
}

/* 05 Collection */
.collection {
  padding: 20px 0 130px;
}

.coll-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
}

.coll-head .label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 14px;
}

.coll-head h2 {
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.02;
  max-width: 640px;
}

.coll-support {
  max-width: 420px;
  color: var(--earth);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 46px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}

.product-card {
  cursor: pointer;
}

.product-card .photo {
  aspect-ratio: 3/4;
}

.product-card .quick-add {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(231,225,214,.95);
  color: var(--black);
  border: 0;
  padding: 12px 0;
  border-radius: 1px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 3;
  cursor: pointer;
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.product-info .pname {
  font-size: 13.5px;
  font-weight: 500;
}

.product-info .pmeta {
  font-size: 12px;
  color: var(--earth);
  margin-top: 3px;
}

.product-info .pprice {
  font-size: 13.5px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* 06 Silhouette */
.silhouette {
  padding: 130px 0;
  background: var(--denim);
  color: var(--bone);
}

.sil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sil-grid .photo {
  aspect-ratio: 4/5;
}

.silhouette h2 {
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.silhouette p {
  color: var(--tan);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 860px) {
  .sil-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 07 Statement Black */
.statement-block {
  background: var(--black);
  color: var(--bone);
  padding: 150px 0;
  text-align: center;
}

.statement-block h2 {
  font-weight: 300;
  font-size: clamp(30px, 5.4vw, 66px);
  line-height: 1.16;
}

.statement-block h2.second {
  color: var(--tan);
  margin-top: 6px;
}

.statement-block .fine {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: .04em;
  color: rgba(231,225,214,.55);
}

/* 08 Materials */
.materials {
  padding: 130px 0;
  background: var(--tan);
}

.materials-head {
  margin-bottom: 50px;
}

.materials-head h2 {
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 50px);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.material-card .photo {
  aspect-ratio: 1/1;
}

.material-card h3 {
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.material-card p {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: #3a3227;
  max-width: 280px;
}

@media (max-width: 760px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

/* 09 People */
.people {
  padding: 130px 0;
}

.people-head {
  margin-bottom: 50px;
}

.people-head h2 {
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 54px);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.people-grid .photo {
  aspect-ratio: 3/4.4;
}

.people-cap {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--earth);
}

@media (max-width: 860px) {
  .people-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 10 The Two Currents */
.currents {
  background: var(--black);
  color: var(--bone);
}

.currents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.current-col {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 50px;
}

.current-col .photo {
  position: absolute;
  inset: 0;
}

.current-col .label {
  position: relative;
  z-index: 2;
  font-size: clamp(32px, 4vw, 52px);
}

.current-col.steady .label {
  color: var(--tan);
}

.currents-center {
  padding: 90px 0;
  text-align: center;
}

.currents-center h2 {
  font-weight: 300;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.2;
}

@media (max-width: 760px) {
  .currents-grid {
    grid-template-columns: 1fr;
  }
  .current-col {
    min-height: 360px;
    padding: 32px;
  }
}

/* 11 Hero Product */
.hero-product-section {
  padding: 130px 0;
  background: var(--bone);
}

.hp-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.hp-media-photo {
  aspect-ratio: 4/5;
  width: 100%;
}

.hp-content .kicker {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 14px;
}

.hp-content h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hp-content .desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #2e2a27;
  max-width: 440px;
  margin-bottom: 24px;
}

.hp-content .price {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black) !important;
  color: var(--bone) !important;
  padding: 16px 30px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 1px;
  transition: opacity .2s ease;
}

.hp-btn span {
  color: var(--bone) !important;
  font-weight: 500;
}

.hp-btn svg {
  stroke: var(--bone);
  transition: transform .25s ease;
}

.hp-btn:hover {
  opacity: .9;
}

.hp-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 860px) {
  .hp-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* 12 Film */
.film {
  position: relative;
  height: 78vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  text-align: center;
}

.film h2 {
  font-weight: 400;
  font-size: clamp(30px, 5vw, 58px);
  position: relative;
  z-index: 2;
}

.film .play-hint {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(231,225,214,.6);
}

/* 13 Story */
.story {
  padding: 140px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.story .photo {
  aspect-ratio: 4/5;
  max-width: 320px;
}

.story h2 {
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 42px);
  margin-bottom: 26px;
}

.story p {
  color: var(--earth);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* 14 Journal */
.journal {
  padding-bottom: 140px;
}

.journal-head {
  margin-bottom: 44px;
}

.journal-head h2 {
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 42px);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.journal-card {
  cursor: pointer;
}

.journal-card .photo {
  aspect-ratio: 4/3;
}

.journal-card h3 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 400;
}

.journal-card p {
  margin-top: 8px;
  color: var(--earth);
  font-size: 13.5px;
}

@media (max-width: 820px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

/* 15 Final Statement */
.final-statement {
  background: var(--black);
  color: var(--bone);
  padding: 170px 0;
  text-align: center;
}

.final-lines {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.7;
  color: var(--tan);
}

.final-brand {
  margin-top: 60px;
}

.final-brand .name {
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: .08em;
}

.final-brand .tag {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(231,225,214,.55);
  text-transform: uppercase;
}

/* 16 Newsletter */
.newsletter {
  background: var(--denim);
  color: var(--bone);
  padding: 140px 0;
  text-align: center;
}

.newsletter h2 {
  font-weight: 300;
  font-size: clamp(34px, 5.6vw, 66px);
}

.newsletter p {
  margin: 18px auto 40px;
  color: var(--tan);
  max-width: 340px;
}

.newsletter .nform {
  display: flex;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(231,225,214,.4);
  padding-bottom: 8px;
}

.newsletter .nform input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--bone);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  padding: 4px 0;
}

.newsletter .nform input::placeholder {
  color: rgba(231, 225, 214, 0.5);
}

.newsletter .nform button {
  background: none;
  border: 0;
  color: var(--bone);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

/* 17 Footer */
footer {
  padding: 100px 0 60px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.1) !important;
  background: var(--bone) !important;
}
footer .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
footer .statement {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(32px, 4.5vw, 56px) !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
}
footer .foot-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 40px !important;
  margin-top: 60px !important;
  margin-bottom: 80px !important;
}
@media (max-width: 768px) {
  footer .foot-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}
footer .foot-col h4 {
  font-size: 11px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--earth) !important;
  margin-bottom: 16px !important;
}
footer .foot-col a, footer .foot-col span {
  display: block !important;
  font-size: 13.5px !important;
  color: var(--black) !important;
  text-decoration: none !important;
  margin-bottom: 10px !important;
}
footer .foot-col a:hover {
  color: var(--earth) !important;
}
footer .foot-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 12px !important;
  color: var(--earth) !important;
  border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
  padding-top: 30px !important;
}
footer .foot-bottom .legal {
  display: flex !important;
  gap: 24px !important;
}
footer .foot-bottom .legal a {
  color: var(--earth) !important;
  text-decoration: none !important;
}

@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   SALOON SLOT APPARATUS (Western Pergamena Integrato)
   ========================================================================== */
.slot-section {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--bone);
  border-top: 1px solid rgba(17,17,17,0.1);
}

.slot-container {
  max-width: 420px;
  margin: 32px auto 0;
  background: #f4ecdc;
  border: 2px solid #8c6d48;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17,17,17,0.06);
}

.slot-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6b523e;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(140, 109, 72, 0.2);
  padding-bottom: 8px;
}

.slot-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #e5d7be;
  padding: 12px;
  border: 1px inset #8c6d48;
  margin-bottom: 20px;
}

.slot-reel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfbf7;
  border: 1px solid #b5a07d;
  color: #2c221e;
  user-select: none;
  font-variant-emoji: text;
}

.slot-lever-btn {
  width: 100%;
  background: linear-gradient(to bottom, #d4a037, #9b7020);
  color: #1a1613;
  border: 1px solid #f3d078;
  padding: 14px;
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}

.slot-lever-btn:hover {
  opacity: 0.9;
}

.slot-lever-btn:disabled {
  background: #b5a07d;
  color: #6b523e;
  cursor: not-allowed;
}

.slot-message {
  font-size: 13px;
  color: #766B5D;
  margin-top: 14px;
  min-height: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ==========================================================================
   PRODUCT PAGE GALLERIES (NO OVERFLOW)
   ========================================================================== */
.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  padding: 40px 0 100px;
  align-items: start;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.gallery-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(17, 17, 17, 0.02);
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 20px;
  position: sticky;
  top: 100px;
}

.gallery-container img {
  max-width: 100%;
  width: auto;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  display: block;
}

.details-box {
  position: sticky;
  top: 100px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 34px;
  font-size: 13px;
}

.specs-table td {
  padding: 11px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.specs-table td:first-child {
  color: var(--earth);
  width: 38%;
}

/* ==========================================================================
   SCROLL REVEAL & MICRO-INTERACTIONS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bagBump {
  0% { transform: scale(1); }
  45% { transform: scale(1.35); color: var(--ox); }
  100% { transform: scale(1); }
}

.bag-bump {
  display: inline-block;
  animation: bagBump 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Newsletter Pop-up */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  padding: 20px;
}

.popup-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: var(--bone);
  color: var(--black);
  width: 100%;
  max-width: 480px;
  padding: 44px 36px 38px;
  position: relative;
  border: 1px solid rgba(17,17,17,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  text-align: center;
  transform: translateY(16px);
  transition: transform .35s ease;
}

.popup-backdrop.active .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: var(--black);
  line-height: 1;
  opacity: 0.65;
}

.popup-close:hover {
  opacity: 1;
}

.popup-kicker {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
  display: block;
}

.popup-box h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 14px;
}

.popup-box p {
  color: var(--earth);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 24px;
}
/* ==========================================================================
   FIX DEFINITIVO SCHEDE PRODOTTO MOBILE
   ========================================================================== */
@media (max-width: 900px) {
  /* Trasforma il layout in un'unica colonna fluida */
  .product-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 20px 0 60px !important;
  }

  /* Rimuove il posizionamento sticky che crea conflitti su mobile */
  .gallery-container,
  .details-box {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
  }

  /* Stabilizza l'immagine del prodotto su mobile */
  .gallery-container {
    padding: 10px !important;
    background: rgba(17, 17, 17, 0.02);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }

  .gallery-container img {
    width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    object-fit: cover !important;
  }

  /* Evita sovrapposizioni nei titoli delle schede prodotto */
  .hp-content h2, 
  .product-layout h1, 
  .product-layout h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
    position: relative !important;
    margin-top: 12px !important;
  }
}
/* ==========================================================================
   FIX DEFINITIVO JOURNAL MOBILE
   ========================================================================== */
@media (max-width: 820px) {
  /* Forza la griglia del Journal a una sola colonna fluida */
  .journal-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* Rende la singola card del journal pulita e incolonnata */
  .journal-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  /* Evita che i blocchi foto interni si sovrappongano */
  .journal-card .photo {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    position: relative !important;
  }

  /* Sistema i testi sotto l'immagine senza sovrapposizioni assolute */
  .journal-card h3 {
    font-size: 20px !important;
    margin-top: 14px !important;
    line-height: 1.25 !important;
  }

  .journal-card p {
    font-size: 13.5px !important;
    margin-top: 6px !important;
    line-height: 1.6 !important;
    color: var(--earth) !important;
  }
}