@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* =====================================================
   VARIABILI
===================================================== */
:root {
  --primary:    #C9445A;
  --dark:       #46170A;
  --blush:      #DFB9AA;
  --warm-gray:  #E0DEDB;
  --off-white:  #F9FAFB;
  --white:      #FFFFFF;
  --text-muted: #7a5e57;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(70,23,10,.08);
  --shadow-md: 0 4px 20px rgba(70,23,10,.12);
  --shadow-lg: 0 8px 40px rgba(70,23,10,.16);

  --radius:    8px;
  --radius-lg: 16px;
  --max-w:     1200px;
}

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* =====================================================
   TIPOGRAFIA
===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem,   5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
p  { margin-bottom: 1rem; }

/* =====================================================
   LAYOUT
===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--warm    { background: var(--warm-gray); }
.section--blush   { background: var(--blush); }
.section--dark    { background: var(--dark);  color: var(--warm-gray); }
.section--primary { background: var(--primary); color: var(--white); }
.section--white   { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

/* =====================================================
   PULSANTI
===================================================== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .28s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none !important;
  line-height: 1;
}
.btn-primary  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: #b33349; border-color: #b33349; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover  { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-dark     { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover     { background: #5a2010; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light    { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-light:hover    { background: var(--blush); border-color: var(--blush); transform: translateY(-2px); }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover    { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* =====================================================
   HEADER / NAV
===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .28s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-top: 1px solid var(--warm-gray);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .95rem; }
  .nav-cta { margin-left: 0; }
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--off-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--warm-gray);
  z-index: 0;
}
@media (max-width: 768px) { .hero::before { display: none; } }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 0;
    gap: 40px;
  }
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-content h1 { margin-bottom: 22px; }
.hero-content h1 em { color: var(--primary); font-style: italic; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.75;
}
@media (max-width: 768px) { .hero-desc { margin: 0 auto 32px; } }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 768px) { .hero-actions { justify-content: center; } }

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--blush) 0%, var(--warm-gray) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--dark);
  padding: 24px;
  text-align: center;
  font-size: 1rem;
}
.hero-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.hero-badge .num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge .lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 2px;
}

/* =====================================================
   TAGLINE BAND
===================================================== */
.tagline-band {
  background: var(--primary);
  padding: 44px 0;
}
.tagline-band blockquote {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

/* =====================================================
   SERVICE CARDS
===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-gray);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blush);
  transition: background .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush);
}
.service-card:hover::before { background: var(--primary); }

.service-icon {
  width: 50px; height: 50px;
  background: var(--blush);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.8;
  transition: stroke .3s;
}
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.65; margin-bottom: 18px; }
.card-link {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none !important;
}
.card-link svg {
  width: 15px; height: 15px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: transform .28s;
}
.service-card:hover .card-link svg { transform: translateX(4px); }

/* =====================================================
   ABOUT PREVIEW
===================================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-preview { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blush) 0%, var(--warm-gray) 100%);
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--dark);
  padding: 24px; text-align: center;
}

.about-content h2 { margin-bottom: 18px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
@media (max-width: 768px) { .credential-list { justify-content: center; } }
.credential-tag {
  background: var(--blush);
  color: var(--dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}

/* =====================================================
   STATS
===================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

.stat-item { padding: 16px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .78rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--blush);
  position: absolute;
  top: 12px; left: 20px;
  line-height: 1;
  opacity: .7;
}
.t-stars { color: var(--primary); font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-text {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
  padding-top: 20px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  font-size: .88rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: 2px; }
.t-meta { font-size: .78rem; color: #9a7a72; }

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #8B1A2E 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   BLOG PREVIEW
===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-gray);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), var(--warm-gray));
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--dark);
  font-size: .9rem;
  padding: 16px;
  text-align: center;
}

.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.blog-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-meta { display: flex; gap: 10px; font-size: .78rem; color: #9a7a72; margin-top: 14px; }
.blog-meta .dot { color: var(--blush); }
.blog-footer { text-align: center; margin-top: 48px; }

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.page-hero {
  background: var(--warm-gray);
  padding: 72px 0 56px;
  text-align: center;
}
.breadcrumb { font-size: .78rem; color: #9a7a72; margin-bottom: 14px; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   CHI SONO — BIO
===================================================== */
.bio-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .bio-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.bio-sidebar { position: sticky; top: 96px; }
.bio-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--blush), var(--warm-gray));
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.bio-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bio-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-style: italic;
  color: var(--dark); font-size: 1rem;
  text-align: center; padding: 24px;
}

.bio-content h2 { margin-bottom: 22px; }
.bio-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }

.formation-list { margin-top: 8px; }
.formation-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--warm-gray);
}
.formation-item:last-child { border-bottom: none; }
.f-year {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 55px;
  flex-shrink: 0;
  padding-top: 2px;
}
.f-info h4 { margin-bottom: 3px; font-size: .92rem; }
.f-info p { font-size: .84rem; color: var(--text-muted); margin: 0; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 580px) { .approach-grid { grid-template-columns: 1fr; } }

.approach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--warm-gray);
  text-align: center;
}
@media (max-width: 768px) { .approach-card { text-align: center; } }

.approach-icon {
  width: 48px; height: 48px;
  background: var(--blush);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.approach-icon svg {
  width: 22px; height: 22px;
  stroke: var(--dark); fill: none; stroke-width: 1.8;
}
.approach-card h4 { margin-bottom: 6px; font-size: .92rem; }
.approach-card p { font-size: .84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* =====================================================
   SERVIZI
===================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--warm-gray);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; direction: ltr !important; }
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blush), var(--warm-gray));
  box-shadow: var(--shadow-md);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.sd-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-style: italic;
  color: var(--dark); font-size: 1.05rem;
  text-align: center; padding: 24px;
}

.service-detail-body .section-label { display: block; }
.service-detail-body h2 { margin-bottom: 14px; }
.service-detail-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.check-list { margin: 18px 0 28px; display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =====================================================
   PRENOTA (Calendly)
===================================================== */
.booking-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .booking-intro { grid-template-columns: 1fr; gap: 32px; } }

.booking-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--warm-gray);
  box-shadow: var(--shadow-sm);
}
.booking-info-card h3 { margin-bottom: 20px; font-size: 1.15rem; }
.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.info-icon {
  width: 38px; height: 38px;
  background: var(--blush);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; stroke: var(--dark); fill: none; stroke-width: 1.8; }
.info-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 2px; }
.info-val { font-size: .9rem; color: var(--dark); line-height: 1.5; }

.calendly-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--warm-gray);
  min-height: 700px;
}

.calendly-placeholder {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  border: 2px dashed var(--blush);
  border-radius: var(--radius-lg);
}
.calendly-placeholder .cal-icon { font-size: 3rem; margin-bottom: 16px; }
.calendly-placeholder h3 { margin-bottom: 12px; color: var(--dark); }
.calendly-placeholder p { color: var(--text-muted); margin-bottom: 24px; max-width: 400px; }
.calendly-placeholder code {
  background: var(--warm-gray);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .82rem;
  color: var(--dark);
}

/* =====================================================
   BLOG
===================================================== */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

.post-list { display: flex; flex-direction: column; gap: 28px; }
.post-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-gray);
  transition: all .3s;
}
.post-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
@media (max-width: 580px) { .post-item { grid-template-columns: 1fr; } }

.post-thumb {
  background: linear-gradient(135deg, var(--blush), var(--warm-gray));
  min-height: 160px;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; }
.post-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 7px;
}
.post-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.post-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.post-meta { font-size: .78rem; color: #9a7a72; }

.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-gray);
}
.sidebar-widget h4 {
  font-size: .92rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blush);
}
.cat-list li { padding: 6px 0; }
.cat-list li a {
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.cat-list li a:hover { color: var(--primary); }
.cat-count { color: var(--blush); font-weight: 700; }

/* =====================================================
   CONTATTI
===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h3 { margin-bottom: 24px; }
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.c-icon {
  width: 42px; height: 42px;
  background: var(--blush);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 19px; height: 19px; stroke: var(--dark); fill: none; stroke-width: 1.8; }
.c-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 3px; }
.c-val { font-size: .92rem; color: var(--dark); line-height: 1.5; }
.c-val a { color: var(--dark); text-decoration: none; }
.c-val a:hover { color: var(--primary); }

.form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--warm-gray); }
.form-title { margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid var(--warm-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--dark);
  background: var(--off-white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,68,90,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-privacy {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .8rem; color: var(--text-muted);
  margin-bottom: 22px;
}
.form-privacy input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; }

.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid #86c88a;
  color: #2e6b32;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .92rem;
  margin-top: 12px;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--dark);
  color: var(--warm-gray);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 580px)  { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .86rem;
  line-height: 1.7;
  color: rgba(224,222,219,.65);
  max-width: 270px;
}
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .28s;
  text-decoration: none !important;
}
.social-icon:hover { background: var(--primary); }
.social-icon svg { width: 17px; height: 17px; stroke: var(--warm-gray); fill: none; stroke-width: 1.8; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(224,222,219,.65);
  text-decoration: none;
  transition: color .25s;
}
.footer-links a:hover { color: var(--blush); text-decoration: none; }

.footer-contact-row {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 11px;
  font-size: .84rem;
  color: rgba(224,222,219,.65);
}
.footer-contact-row svg { width: 15px; height: 15px; stroke: var(--blush); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: rgba(224,222,219,.65); text-decoration: none; }
.footer-contact-row a:hover { color: var(--blush); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(224,222,219,.4);
}
.footer-bottom a { color: rgba(224,222,219,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--blush); }

/* =====================================================
   SCROLL TOP
===================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(14px);
  transition: all .3s;
  z-index: 99;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--dark); transform: translateY(-3px) !important; }
.scroll-top svg { width: 19px; height: 19px; stroke: white; fill: none; stroke-width: 2; }

/* =====================================================
   REVEAL ANIMATION
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* =====================================================
   UTILS
===================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
