*, *::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; }

span { color: #b6ba22; }

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

.navbar > a {
  display: flex;
  align-items: center;
}
.navbar a 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,
nav a.active::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 ──────────────────────────────────────── */
.offerte-hero {
  width: 100%;
  background-color: #ede9e6;
  padding: 140px 30px 30px;
  text-align: center;
}

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

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

.offerte-title {
  font-family: 'Fraunces', sans-serif;
  font-size: 56px;
  font-weight: 200;
  color: #111827;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(transparent 60%, #b6ba22 60%);
  display: inline;
}

.offerte-sub {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.5px;
  margin: 12px auto 0;
  line-height: 1.7;
  max-width: 520px;
}

/* ── SECTION ──────────────────────────────────── */
section {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
}

.offerte-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.offerte-intro {
  text-align: center;
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 40px auto 48px;
  line-height: 1.7;
}

/* ── GRID ──────────────────────────────────────── */
.offerte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  align-items: start;
}

.offerte-mese-card {
  background: #fff;
  border: 1px solid #e0ddd9;
  border-radius: 3px;
  overflow: hidden;
}

.offerte-mese-header {
  background-color: #111827;
  color: #b6ba22;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.offerte-mese-header i {
  font-size: 17px;
  opacity: 0.85;
}

.offerta-row {
  display: flex;
  flex-direction: column;
  padding: 11px 16px;
  border-bottom: 1px solid #f0ede9;
  gap: 3px;
}

.offerta-row:last-child {
  border-bottom: none;
}

.offerta-row:nth-child(even) {
  background-color: #faf9f8;
}

.offerta-row--highlight {
  background-color: #f7f6e4 !important;
  border-left: 3px solid #b6ba22;
}

.offerta-periodo {
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: #575757;
  letter-spacing: 0.2px;
}

.offerta-prezzo {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
}

.offerta-giorni {
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  color: #b6ba22;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ── CONDIZIONI ────────────────────────────────── */
.offerte-note {
  background-color: #fff;
  border: 1px solid #e0ddd9;
  border-radius: 3px;
  padding: 28px 32px 30px;
  margin-bottom: 40px;
}

.offerte-note h3 {
  font-family: 'Fraunces', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #1a1a1a;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0ddd9;
}

.offerte-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offerte-note ul li {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.offerte-note ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #b6ba22;
  font-size: 12px;
  top: 1px;
}

/* ── STRIP ────────────────────────────────────── */
.offerte-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.offerte-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.3px;
}

.offerte-strip__item i {
  font-size: 18px;
  color: #b6ba22;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 920px) {
  .offerte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offerte-title {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .offerte-grid { grid-template-columns: 1fr; }
  .offerte-title { font-size: 30px; }
  .offerte-hero { padding: 120px 20px 60px; }
  .offerte-sub { font-size: 12px; }
  .offerte-inner { padding: 0 20px; }
  .navbar { padding: 0 16px; }
  .offerte-note { padding: 20px; }
  .page-cta__title { font-size: 28px; }
}

@media (max-width: 380px) {
  .offerte-title { font-size: 26px; }
}

/* ── PAGE CTA ───────────────────────────────────── */
.page-cta {
  width: 100%;
  background-color: #111827;
  padding: 80px 30px;
  text-align: center;
  border-top: 3px solid #b6ba22;
}

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

.page-cta__title {
  font-family: 'Fraunces', sans-serif;
  font-size: 42px;
  font-weight: 200;
  color: #f0ece8;
  margin: 0 0 20px;
  line-height: 1.2;
}

.page-cta__title em {
  font-style: italic;
  color: #b6ba22;
}

.page-cta__sub {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 36px;
  max-width: 480px;
  line-height: 1.7;
}

.page-cta__btn {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  background-color: #b6ba22;
  color: #111827;
  transition: transform 0.25s ease;
}

.page-cta__btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 560px) {
  .page-cta { padding: 60px 20px; }
  .page-cta__title { font-size: 36px; }
}

/* ── 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: 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%);
}
