/* ===== NAVBAR — editorial thin ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(11, 9, 6, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 42px;
  width: auto;
  transition: opacity 0.3s;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar-links {
  display: none;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.navbar-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s;
  position: relative;
  padding: 0.25rem 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out);
  transform: translateX(-50%);
}

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 9, 6, 0.98);
  backdrop-filter: blur(24px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.mobile-nav a:hover {
  color: var(--gold);
  font-style: italic;
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gold-muted);
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s;
  z-index: 1002;
}

.mobile-nav-close:hover {
  border-color: var(--gold);
  background: rgba(184, 146, 60, 0.08);
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* ===== HERO — editorial refined ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background:
    linear-gradient(to bottom, rgba(11,9,6,0.55) 0%, rgba(11,9,6,0.4) 40%, rgba(11,9,6,0.85) 100%),
    url('https://images.unsplash.com/photo-1711662292714-41269ec91eed?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--container-px);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin: 2.25rem 0 2rem;
  color: var(--cream);
  letter-spacing: -0.015em;
}

.hero-title br + span,
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--cream-dim);
  margin-bottom: 3rem;
  line-height: 1.85;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.hero-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-brands .brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.hero-brands .brand-divider {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  opacity: 0.7;
}

/* ===== DUAL WORLD — editorial split ===== */
#dual-world {
  padding: 0;
  background: var(--bg-deep);
}

.dual-world-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.dual-world-side {
  position: relative;
  min-height: 55vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.dual-world-bg {
  position: absolute;
  inset: 0;
}

.dual-world-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.6s;
  filter: saturate(0.85) brightness(0.9);
}

.dual-world-side:hover .dual-world-bg img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.dual-world-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s;
}

.dual-world--perfume .dual-world-overlay {
  background: linear-gradient(135deg, rgba(42, 36, 27, 0.65), rgba(11, 9, 6, 0.8));
}

.dual-world--cigar .dual-world-overlay {
  background: linear-gradient(135deg, rgba(61, 36, 20, 0.65), rgba(11, 9, 6, 0.8));
}

.dual-world-side:hover .dual-world-overlay {
  opacity: 0.75;
}

.dual-world-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 480px;
}

.dual-world-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-muted);
  margin-bottom: 1.5rem;
}

.dual-world-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  color: var(--cream);
  margin: 0.25rem 0 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.dual-world-subtitle {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

.dual-world-cta {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.5rem;
  transition: all 0.4s var(--ease-out);
}

.dual-world-side:hover .dual-world-cta {
  color: var(--cream);
  border-color: var(--cream);
  letter-spacing: 0.35em;
}

@media (min-width: 768px) {
  .dual-world-container {
    grid-template-columns: 1fr 1fr;
  }
  .dual-world-side {
    min-height: 78vh;
  }
}

/* ===== PRODUCT SECTIONS ===== */
#profumi, #sigari, #bundle, #esperienze, #chi-siamo, #vip, #contatti {
  position: relative;
}

#sigari, #esperienze, #vip {
  background: var(--bg-dark);
}

/* ===== IMAGE DIVIDERS — refined editorial ===== */
.img-divider {
  position: relative;
  height: 55vh;
  min-height: 340px;
  overflow: hidden;
}

.img-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.7);
}

.img-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(11,9,6,0.35) 30%,
    rgba(11,9,6,0.35) 70%,
    var(--bg-deep) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.img-divider.from-deep::before {
  background: linear-gradient(
    to bottom,
    var(--bg-deep) 0%,
    rgba(11,9,6,0.3) 30%,
    rgba(11,9,6,0.3) 70%,
    var(--bg-dark) 100%
  );
}

.img-divider.to-deep::before {
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(11,9,6,0.3) 30%,
    rgba(11,9,6,0.3) 70%,
    var(--bg-deep) 100%
  );
}

.img-divider .divider-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.img-divider .divider-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  color: var(--cream);
  text-align: center;
  max-width: 760px;
  line-height: 1.35;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  position: relative;
  padding: 2.5rem 1rem;
}

.img-divider .divider-text blockquote::before,
.img-divider .divider-text blockquote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.img-divider .divider-text blockquote::before { top: 0; }
.img-divider .divider-text blockquote::after { bottom: 0; }

.img-divider .divider-text blockquote span {
  color: var(--gold-light);
  font-style: italic;
}

/* ===== EXPERIENCES GRID ===== */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CHI SIAMO ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 767px) {
  .stats-row {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }
  .stat-card {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .stat-card:first-child {
    border-top: none;
  }
}

/* ===== PROPOSAL SECTION — editorial ===== */
.proposal-section {
  background: var(--bg-dark);
  padding-bottom: calc(var(--section-py) + 2rem);
}

.proposal-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 3rem;
  margin-bottom: 2rem;
  transition: border-color 0.4s;
}

.proposal-block:hover {
  border-color: rgba(184, 146, 60, 0.2);
}

.proposal-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-muted);
  margin-bottom: 1.75rem;
}

.proposal-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.proposal-block h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}

.proposal-block > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

@media (min-width: 768px) {
  .proposal-features {
    grid-template-columns: 1fr 1fr;
  }
}

.proposal-feature {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-left: 2px solid var(--gold);
}

.proposal-feature strong {
  font-size: 0.88rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.proposal-feature span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

/* Tech stack grid */
.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .tech-stack-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .tech-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-left: 2px solid var(--gold);
}

.tech-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}

.tech-item-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* Roadmap phases */
.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roadmap-phase {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.roadmap-phase:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phase-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  min-width: 80px;
  opacity: 0.5;
  letter-spacing: -0.02em;
}

.phase-content h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.85rem;
  letter-spacing: 0.005em;
}

.phase-content ul {
  list-style: none;
  padding: 0;
}

.phase-content li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.phase-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 300;
}

/* Proposal CTA */
.proposal-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.powered-by {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.powered-by a {
  color: var(--gold);
  transition: color 0.3s;
  font-style: italic;
}

.powered-by a:hover {
  color: var(--gold-light);
}

/* ===== FOOTER — editorial ===== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 4rem 0 3rem;
  text-align: center;
}

.footer-concept {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.footer-concept strong {
  color: var(--cream);
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-display);
}

.footer-zefyr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-zefyr a {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
  letter-spacing: 0.15em;
}

.footer-zefyr a:hover {
  color: var(--gold-light);
}

.footer-zefyr svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-legal {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-brands {
    flex-direction: column;
    gap: 0.75rem;
  }

  .bundle-products {
    flex-direction: column;
  }

  .bundle-plus {
    transform: rotate(90deg);
  }

  .product-image {
    height: 320px;
  }

  .proposal-block {
    padding: 2rem 1.5rem;
  }

  .roadmap-phase {
    flex-direction: column;
    gap: 0.75rem;
  }

  .phase-number {
    font-size: 2.5rem;
  }
}
