/* ============================================
   Alessandro Bellamoli — Fisioterapista Verona
   Design: Ocra + ardesia, senior, autorevole
   Strategy: Restrained — ocra accent su neutri caldi
   Scene: Paziente 50+, esperienza 25+ anni cerca senior specialist.
   ============================================ */

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

:root {
  --accent: #b8860b;
  --accent-hover: #96700a;
  --accent-light: #f5ecd3;
  --accent-muted: rgba(184,134,11,0.07);
  --bg: #fefcf8;
  --bg-surface: #ffffff;
  --bg-alt: #f8f5ed;
  --text: #2a2418;
  --text-muted: #665c48;
  --text-light: #a09580;
  --border: #e5ddcf;
  --border-strong: #cfc3ab;
  --dark: #1f1b12;
  --r-sm: 5px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(42,36,24,0.05);
  --shadow-md: 0 4px 16px rgba(42,36,24,0.08);
  --shadow-lg: 0 8px 32px rgba(42,36,24,0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-hover); }
h1 { font-family: Georgia, serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; line-height: 1.1; }
.hero__title { }
h2 { font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; line-height: 1.15; }
h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 0.88rem; font-weight: 700; line-height: 1.3; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
p { max-width: 65ch; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: rgba(255,255,255,0.85); }
@media (max-width: 768px) { .section { padding: 64px 0; } .container { padding: 0 24px; } }
@media (max-width: 600px) { .section { padding: 48px 0; } .container { padding: 0 20px; } }
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-muted); padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.section-tag--light { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.1); }
.section-header { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.section-header--light { color: rgba(255,255,255,0.85); }
.section-title { margin-bottom: 10px; }
.section-title--light { color: #fff; }
.section-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 100%; }
.section-desc--light { color: rgba(255,255,255,0.85); }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(254,252,248,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 42px; height: 42px; background: var(--accent); color: #fff; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.logo-mark--sm { width: 32px; height: 32px; font-size: 0.75rem; }
.logo-name { display: block; font-weight: 700; font-size: 0.92rem; color: var(--text); line-height: 1.2; }
.logo-sub { display: block; font-size: 0.68rem; color: var(--text-muted); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav__link { font-size: 0.84rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s ease; }
.nav__link:hover { color: var(--accent); }
.nav__link--cta { padding: 8px 20px; background: var(--accent); color: #fff !important; border-radius: 50px; font-weight: 600; }
.nav__link--cta:hover { background: var(--accent-hover); color: #fff; }
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 16px; background: none; border: none; cursor: pointer; padding: 0; }
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { padding: 130px 0 80px; background: var(--bg); }
.hero__inner { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; }
.hero__content { }
.hero__tag { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 18px; }
.hero__name { color: var(--accent); }
.hero__lead { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; max-width: 100%; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; flex-direction: column; gap: 8px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.trust-badge svg { color: var(--accent); flex-shrink: 0; }
.hero__card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.hero__card .photo-placeholder { width: 100%; height: 240px; background: var(--accent-light); border: 2px dashed var(--border-strong); color: var(--accent); margin-bottom: 20px; }
.hero__card-info { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.card-stat { display: flex; justify-content: space-between; align-items: baseline; }
.card-stat__num { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 400; color: var(--accent); }
.card-stat__label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; justify-content: center; padding: 13px 26px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.25s var(--ease); border: none; text-decoration: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--accent); border: 2px solid var(--border-strong); }
.btn--outline:hover { background: var(--accent-muted); border-color: var(--accent); color: var(--accent); }
.btn--white { background: #fff; color: var(--dark); }
.btn--white:hover { background: var(--accent-light); color: var(--accent); }

/* Method */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.method-card { text-align: center; padding: 32px 20px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-md); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.method-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.method-card__icon { color: var(--accent); margin-bottom: 16px; display: flex; justify-content: center; }
.method-card h3 { font-size: 0.92rem; margin-bottom: 8px; }
.method-card p { font-size: 0.82rem; color: var(--text-muted); max-width: 100%; margin: 0 auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px 24px; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); position: relative; }
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-card--featured { grid-column: span 2; display: flex; gap: 24px; align-items: flex-start; padding: 36px 32px; background: var(--bg-alt); border-color: var(--border-strong); }
.service-card__icon { color: var(--accent); flex-shrink: 0; margin-bottom: 14px; }
.service-card--featured .service-card__icon { margin-bottom: 0; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; max-width: 100%; }
.service-tag { position: absolute; top: 14px; right: 18px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); background: var(--accent-muted); padding: 3px 10px; border-radius: 50px; }

/* About */
.about__wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.about__photo-col { display: flex; flex-direction: column; gap: 20px; }
.photo-placeholder--lg { width: 100%; height: 300px; background: var(--accent-light); border: 2px dashed var(--border-strong); color: var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border-radius: var(--r-md); font-size: 0.82rem; color: var(--text-light); }
.credentials-box { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; }
.credentials-box h4 { margin-bottom: 14px; }
.credentials-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.credentials-box li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text); }
.credentials-box li svg { color: var(--accent); flex-shrink: 0; }
.about__text p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; max-width: 100%; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-main { text-align: center; }
.contact-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.contact-phone { display: block; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 14px; }
.contact-phone:hover { color: var(--accent-light); }
.contact-main > p { color: rgba(255,255,255,0.92); margin-bottom: 28px; max-width: 100%; }
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-item:first-child { padding-top: 0; }
.contact-item svg { color: rgba(255,255,255,0.8); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.85); display: block; }

/* Footer */
.footer { background: var(--text); color: rgba(255,255,255,0.5); padding: 48px 0 28px; }
.footer__inner { }
.footer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 20px; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__name { display: block; font-weight: 700; font-size: 0.92rem; color: #fff; }
.footer__sub { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: #fff; }
.footer__bottom p { max-width: 100%; }

/* Responsive */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 400px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; flex-direction: column; }
  .about__wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .method-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { justify-content: center; }
  .nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .nav.open { display: flex; }
  .nav__link { padding: 14px 24px; width: 100%; color: var(--text); }
  .nav__link--cta { margin: 8px 24px; text-align: center; }
  .hamburger { display: flex; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-direction: column; gap: 12px; }
  .footer__bottom { flex-direction: column; }
}
