:root {
    --bg: #ffffff;
    --bg-soft: #f5f7fb;
    --text: #111827;
    --muted: #6b7280;
    --primary: #2563eb;
    --primary-soft: #e0edff;
    --border: #e5e7eb;
    --radius: 14px;
    --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.06);
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* LAYOUT BASE */
  
  .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* HEADER */
  
  .header {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
  }
  
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  
  .logo-wrap img {
    height: 40px;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  
  .logo-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .logo-text span {
    font-size: 0.75rem;
    color: var(--muted);
  }
  
  .nav {
    display: flex;
    gap: 1.2rem;
    font-size: 0.9rem;
  }
  
  .nav a {
    color: var(--muted);
    padding-bottom: 0.15rem;
    border-bottom: 2px solid transparent;
  }
  
  .nav a:hover,
  .nav a.active {
    color: var(--primary);
    border-color: var(--primary);
  }
  
  /* HERO */
  
  .hero {
    padding: 3.5rem 0 3rem;
    background: linear-gradient(to bottom, #f9fbff, #ffffff);
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
  }
  
  .hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary);
    margin-bottom: 0.7rem;
  }
  
  .hero-title {
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 0.7rem;
  }
  
  .hero-title span {
    color: var(--primary);
  }
  
  .hero-subtitle {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 1.4rem;
  }
  
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
  }
  
  .btn {
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
  }
  
  .btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  }
  
  .btn-primary:hover {
    background: #1d4ed8;
  }
  
  .btn-outline {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary-soft);
  }
  
  .btn-outline:hover {
    background: var(--primary-soft);
  }
  
  .hero-note {
    font-size: 0.85rem;
    color: var(--muted);
  }
  
  .hero-note strong {
    color: var(--text);
  }
  
  .hero-card {
    border-radius: 18px;
    padding: 1.4rem;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-size: 0.85rem;
  }
  
  .hero-card h2 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .hero-list {
    list-style: none;
    margin-top: 0.6rem;
  }
  
  .hero-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    color: var(--muted);
  }
  
  .hero-list span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
  }
  
  /* SEZIONI */
  
  section {
    padding: 2.8rem 0;
  }
  
  .section-alt {
    background: var(--bg-soft);
  }
  
  .section-header {
    margin-bottom: 1.8rem;
  }
  
  .section-header h1,
  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 32rem;
  }
  
  /* GRID + CARD */
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
  }
  
  .card {
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
  }
  
  .card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .card p {
    font-size: 0.86rem;
    color: var(--muted);
  }
  
  /* OFFERTE */
  
  .offer {
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
  }
  
  .offer strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--primary);
  }
  
  /* GALLERIA */
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .gallery img {
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  
  /* RECENSIONI */
  
  .review {
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
  }
  
  .review-stars {
    color: #f59e0b;
    margin-bottom: 0.2rem;
  }
  
  /* CONTATTI */
  
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 1.6rem;
  }
  
  .contact-card {
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
  }
  
  .field {
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
  }
  
  .field label {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--muted);
  }
  
  .field input,
  .field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    outline: none;
  }
  
  .field input:focus,
  .field textarea:focus {
    border-color: var(--primary);
  }
  
  .field textarea {
    min-height: 90px;
    resize: vertical;
  }
  
  /* FOOTER */
  
  .footer {
    border-top: 1px solid var(--border);
    padding: 1.4rem 0 1.6rem;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: auto;
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  @media (max-width: 720px) {
    .header-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.6rem;
    }
    .nav {
      flex-wrap: wrap;
    }
    .contact-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  