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

/* ── VARIABILI ── */
:root {
  --bg:    hsla(40, 37.5%, 84.31%);
  --green: rgb(33, 46, 33);
  --cream: hsla(55, 35.29%, 93.33%);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--green);
  font-family: 'Work Sans', sans-serif;
}

/* ── NAV ── */
nav {
  background-color: var(--bg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 25.211px 59.32px;
  gap: 16px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--green);
  text-decoration: none;
  text-transform: lowercase;
}

.nav-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--green);
  text-decoration: none;
  text-align: center;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.nav-boutique-link {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--green);
  text-decoration: none;
  text-transform: lowercase;
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--green);
  text-decoration: none;
}

.nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--green);
  color: var(--cream);
  font-family: 'Work Sans', sans-serif;
  font-size: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--green);
}

@media (max-width: 768px) {
  nav {
    grid-template-columns: auto 1fr;
    padding: 20px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    text-align: left;
  }

  .nav-right {
    justify-content: flex-end;
  }

  .nav-boutique-link {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 16px 16px 24px;
    gap: 20px;
    z-index: 100;
  }
}

/* ── TIPOGRAFIA CONDIVISA ── */
.s-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.55;
}

.s-label-light {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  opacity: 0.65;
}

.s-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  line-height: 1.15;
  color: var(--green);
}

.s-title-light {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  line-height: 1.15;
  color: white;
}

.s-body {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--green);
  max-width: 50ch;
}

.s-body-light {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
}

/* ── BOTTONI ── */
.btn-dark {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  border: 1px solid var(--green);
  background: transparent;
  padding: 12px 20px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-light {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  border: 1px solid white;
  background: transparent;
  padding: 12px 20px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── SEZIONI FULL-BLEED (kitchen, oil, tshirt, soaps) ── */
.section-wrap {
  padding: 0 clamp(16px, 4vw, 52px) clamp(16px, 4vw, 52px);
}

.section-bleed {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-bleed.tall   { height: 82vh; }
.section-bleed.medium { height: 65vh; }

.section-bleed-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-bleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.section-bleed-content {
  position: absolute;
  inset: 0;
  padding: 7% 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.section-bleed-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-bleed-content > .btn-light {
  align-self: center;
}

@media (max-width: 768px) {
  .section-wrap { padding: 0; }
  .section-bleed.tall   { height: 75vh; }
  .section-bleed.medium { height: 70vw; }
}

/* ── NEWSLETTER ── */
.newsletter {
  background-color: var(--cream);
  padding: clamp(20px, 3vw, 36px) clamp(16px, 4vw, 52px) clamp(12px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.newsletter-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--green);
  opacity: 0.65;
}

.newsletter-form {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.newsletter-input {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--green);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(33, 46, 33, 0.35);
  padding: 6px 0;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: var(--green);
  opacity: 0.35;
}

.newsletter-input:focus {
  border-bottom-color: rgba(33, 46, 33, 0.7);
}

.newsletter-btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--green);
  opacity: 0.65;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(33, 46, 33, 0.4);
  padding: 6px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-btn:hover:not(:disabled) {
  opacity: 1;
}

.newsletter-btn:disabled {
  cursor: default;
  opacity: 0.4;
}

.newsletter-feedback {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--green);
  opacity: 0.65;
  min-height: 1em;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    gap: 16px;
  }

  .newsletter-input {
    width: 100%;
    text-align: center;
  }
}

/* ── FOOTER ── */
footer {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

footer p {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--green);
  opacity: 0.65;
}

footer a {
  color: var(--green);
  text-decoration: none;
}

footer .footer-gap { margin-top: 16px; }

/* ── UTILITIES ── */
.hidden { display: none !important; }
