:root {
  --green-900: #0a4a38;
  --green-700: #0f7a5c;
  --green-500: #17a879;
  --green-100: #e3f5ee;
  --cream: #fbf8f2;
  --coral: #ff8a5c;
  --gold: #e0a63c;
  --ink: #14231e;
  --muted: #5c6f68;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 40px -20px rgba(10, 74, 56, 0.35);
  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--green-900);
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.6em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-head);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(15, 122, 92, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--green-900); }
.btn-ghost {
  background: transparent;
  border-color: rgba(15, 122, 92, 0.3);
  color: var(--green-900);
}
.btn-ghost:hover { border-color: var(--green-700); background: var(--green-100); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 122, 92, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 20px; height: 20px; fill: white; }
.brand-text { font-family: var(--font-head); font-size: 1.05rem; color: var(--green-900); }
.brand-text strong { color: var(--coral); }
.brand-text.light { color: var(--white); }
.brand-text.light strong { color: var(--gold); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-900);
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
}
.status-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted);
}
.status-badge.open .dot { background: #1fa574; box-shadow: 0 0 0 3px rgba(31,165,116,0.25); }
.status-badge.closed .dot { background: #d1495b; box-shadow: 0 0 0 3px rgba(209,73,91,0.2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--green-900); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #f1f8f4 0%, var(--cream) 70%);
}
.hero-blob {
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-500), var(--green-900));
  opacity: 0.18;
  filter: blur(10px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); max-width: 14ch; }
.hero .lead { font-size: 1.08rem; color: var(--muted); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.hero-facts {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--font-head); color: var(--green-900); }
.hero-facts span { font-size: 0.85rem; color: var(--muted); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
}
.hero-card h3 { font-size: 1rem; margin-bottom: 12px; }
.hero-today {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-700);
  padding: 14px 16px;
  background: var(--green-100);
  border-radius: var(--radius-md);
}
.hero-divider { height: 1px; background: rgba(15,122,92,0.12); margin: 22px 0; }
.hero-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 10px; }
.hero-next-shift { font-weight: 600; color: var(--ink); }

/* Sections */
.section { padding: 88px 0; }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; }
.section > .container > h2.center,
.section > .container > p.eyebrow.center { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 22px; }

/* Services */
.services { background: var(--white); }
.services-grid { grid-template-columns: repeat(4, 1fr); margin-top: 44px; }
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(15,122,92,0.08);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1.02rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Hours + shifts */
.hours-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px -10px rgba(10,74,56,0.15);
}
.hours-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(15,122,92,0.08);
  font-size: 0.92rem;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: var(--green-900); width: 40%; }
.hours-table td.today { background: var(--green-100); }
.hours-table td.closed-day { color: var(--coral); font-weight: 600; }

.shifts-card {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.shifts-card h2, .shifts-card .eyebrow { color: var(--white); }
.shifts-card .eyebrow { color: #a9d9c6; }
.shifts-card .muted { color: #bcd8cc; }
.shifts-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.shifts-list li {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.shifts-list .shift-date { font-weight: 700; }
.shifts-list .shift-label { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* Chiusure straordinarie */
.closures-card {
  margin-top: 28px;
  background: #fff4ee;
  border: 1px solid rgba(255, 138, 92, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.closures-card .eyebrow { color: var(--coral); }
.closures-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.closures-list li {
  background: var(--white);
  border: 1px solid rgba(255, 138, 92, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.closures-list .closure-dates { font-weight: 700; color: var(--green-900); }
.closures-list .closure-label { color: var(--coral); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.hero-next-closure { font-weight: 600; color: var(--coral); }

/* News */
.news-grid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(15,122,92,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card .news-date { font-size: 0.78rem; color: var(--coral); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.news-card h3 { font-size: 1.05rem; }
.news-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 16px; }
.contact-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: 1.05rem; font-weight: 600; color: var(--green-900); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--green-900); color: #cfe6da; padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 20px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; align-self: center; }
.footer-links a { font-size: 0.9rem; font-weight: 600; opacity: 0.85; }
.footer-links a:hover { opacity: 1; }
.site-footer .muted { color: #9fc4b3; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner, .hours-inner, .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 64px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
