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

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Karla', sans-serif;
  background-color: #ede9e6;
}

::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }

/* ── NAVBAR ────────────────────────────────────── */
.navbar {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 30px;
  z-index: 1000;
  background-color: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar > a {
  display: flex;
  align-items: center;
}
.navbar img { width: 140px; height: auto;
  display: block;
}
.navbar nav { display: flex; align-items: center; gap: 30px; }

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 100;
  position: relative;
  font-family: 'Karla', sans-serif;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: #b6ba22;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}

nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; flex-direction: column; gap: 5px; padding: 4px; }
  .navbar nav {
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    position: fixed;
    top: 80px; left: 0;
    width: 100%;
    background-color: #111827;
    flex-direction: column;
    padding: 0 30px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .navbar nav.open { max-height: 400px; opacity: 1; padding: 16px 30px 28px; }
  nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; }
  nav a:last-child { border-bottom: none; }
}

/* ── HERO PRIVACY ───────────────────────────────── */
.privacy-hero {
  padding: 140px 30px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b6ba22;
  margin: 0 0 14px;
}

.privacy-rule {
  width: 200px;
  border: none;
  border-top: 1.5px solid #b6ba22;
  margin: 0 auto 28px;
}

.privacy-title {
  font-family: 'Fraunces', sans-serif;
  font-size: 54px;
  font-weight: 200;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.privacy-updated {
  font-size: 13px;
  color: #999;
}

/* ── CONTENUTO ──────────────────────────────────── */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px 100px;
}

.privacy-content h2 {
  font-family: 'Fraunces', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 60px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.privacy-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin: 0 0 16px;
}

.privacy-content ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.privacy-content ul li {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 6px;
}

.privacy-content a {
  color: #b6ba22;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  width: 100%;
  background-color: #111827;
  color: #ede9e6;
  padding: 60px 40px 30px;
  box-sizing: border-box;
  font-family: 'Karla', sans-serif;
  border-top: 3px solid #b6ba22;
}

.footer-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-col {
  min-width: 0;
  text-align: center;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.footer-about {
  min-width: 0;
}

.footer-col h4 {
  font-family: 'Fraunces', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-col p { font-size: 13px; line-height: 1.7; margin: 0 0 8px; color: #9ca3af; }
.footer-col p:last-child { margin-bottom: 0; }

.footer-col a { color: #b6ba22; text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 11px;
  color: #9ca3af;
}

.footer-bottom a { color: #9ca3af; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 560px) {
  .privacy-title { font-size: 36px; }
  .privacy-hero { padding: 120px 20px 40px; }
  .privacy-content { padding: 0 20px 80px; }
  .privacy-content h2 { font-size: 22px; }
}

@media (max-width: 680px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .footer-about { grid-column: 1 / -1; }
  .footer-about p { display: none; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .footer-container { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-col p, .footer-col a { font-size: 11px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 10px; }
}

/* ── NAVBAR SCROLL HIDE ─────────────────────────── */
.navbar {
  transition: transform 0.35s ease, background-color 0.3s ease;
}
.navbar--hidden {
  transform: translateY(-100%);
}
