:root {
  --blue: #0394d8;
  --blue-dark: #034764;
  --navy: #034764;
  --gray: #58595b;
  --gray-light: #8a8c8f;
  --bg: #ffffff;
  --panel: #f6fafc;
  --border: rgba(3,71,100,0.1);
  --shadow: 0 10px 30px rgba(3,71,100,0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle, rgba(3,71,100,0.08) 1px, transparent 1px) 0 0/22px 22px,
    var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.blob--1 {
  width: 480px; height: 480px;
  top: -180px; left: -160px;
  background: radial-gradient(circle, rgba(3,148,216,0.28), transparent 70%);
}
.blob--2 {
  width: 560px; height: 560px;
  bottom: -220px; right: -200px;
  background: radial-gradient(circle, rgba(3,71,100,0.22), transparent 70%);
}
.blob--3 {
  width: 320px; height: 320px;
  top: 40%; left: 46%;
  background: radial-gradient(circle, rgba(3,148,216,0.12), transparent 70%);
}

h1, .brandmark__text { font-family: 'Poppins', Arial, sans-serif; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Topbar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
}
.brandmark { display: flex; align-items: center; gap: 10px; }
.brandmark__logo { width: 40px; height: auto; }
.brandmark__text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--navy);
  white-space: nowrap;
}
.brandmark__tagline {
  font-weight: 500;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: normal;
}

@media (max-width: 560px) {
  .brandmark__tagline { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--ghost {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: #fff;
}
.btn--ghost:hover { background: var(--panel); }

.btn--primary {
  background: linear-gradient(120deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(3,148,216,0.35);
}
.btn--primary:hover { box-shadow: 0 12px 26px rgba(3,148,216,0.45); }

.btn--outline {
  border-color: var(--border);
  color: var(--navy);
  background: #fff;
}
.btn--outline:hover { background: var(--panel); }

/* Hero split */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 12px clamp(20px, 5vw, 56px) 32px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__identity { text-align: left; animation: rise 0.7s ease both; }
.hero__panel { animation: rise 0.7s ease 0.15s both; }

.hero__monogram {
  width: 96px;
  height: auto;
  margin-bottom: 20px;
}

.hero__identity h1 {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.1;
  color: var(--navy);
}
.hero__identity h1 .accent { color: var(--blue); }

.role {
  margin: 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--navy);
}
.role--sub {
  font-weight: 500;
  color: var(--gray);
  font-size: clamp(15px, 1.8vw, 17px);
  margin-top: 2px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
}
.badges li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  background: rgba(3,148,216,0.08);
  border: 1px solid rgba(3,148,216,0.18);
  padding: 6px 14px;
  border-radius: 999px;
}
.badges svg { color: var(--blue); flex: none; }

/* Info panel */
.hero__panel {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.panel-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--panel);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-icon--fill {
  background: var(--blue-dark);
  color: #fff;
}

.panel-label {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.panel-value {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
.panel-value .muted { color: var(--gray-light); font-weight: 400; }

.phone-link {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
}
.phone-link:hover { color: var(--blue); }

/* Orario strip */
.orario-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.orario-pill {
  text-align: center;
  padding: 16px 6px;
  border-radius: 14px;
  background: var(--panel);
}
.orario-pill span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.orario-pill small {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}
.orario-pill--today {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.orario-pill--today span,
.orario-pill--today small { color: #fff; }

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 18px clamp(20px, 5vw, 56px) 24px;
  font-size: 13px;
  color: var(--gray);
  border-top: 1px solid var(--border);
}
.footer .muted { color: var(--gray-light); }

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }
  .hero__identity { text-align: center; }
  .hero__monogram { margin-inline: auto; }
  .hero__cta { justify-content: center; }
}

@media (max-width: 520px) {
  .orario-strip { grid-template-columns: repeat(3, 1fr); }
  .btn { padding: 10px 16px; font-size: 13px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .footer { flex-direction: column; text-align: center; }
}
