/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --c-bg: #fbf6ee;
  --c-bg-2: #f3e8d8;
  --c-ink: #2b1d18;
  --c-ink-soft: #5a4438;
  --c-saffron: #e8932c;
  --c-saffron-deep: #c5701a;
  --c-magenta: #c83a6b;
  --c-violet: #6b3fa0;
  --c-turquoise: #1ea7a0;
  --c-gold: #d4a93a;
  --c-cream: #fff9ee;
  --grad-warm: linear-gradient(135deg, #e8932c 0%, #c83a6b 50%, #6b3fa0 100%);
  --grad-soft: linear-gradient(135deg, #fde7c4 0%, #f9d4d8 50%, #e2cce9 100%);
  --grad-aurora: radial-gradient(ellipse at 20% 0%, rgba(232,147,44,0.35), transparent 50%),
                 radial-gradient(ellipse at 80% 20%, rgba(200,58,107,0.30), transparent 55%),
                 radial-gradient(ellipse at 50% 80%, rgba(107,63,160,0.30), transparent 60%),
                 radial-gradient(ellipse at 10% 100%, rgba(30,167,160,0.25), transparent 50%);
  --shadow-soft: 0 10px 30px rgba(43,29,24,0.10);
  --shadow-medium: 0 20px 50px rgba(43,29,24,0.18);
  --radius: 18px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html { overflow-x: hidden; }
h1, h2, h3, h4, p, a { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { font-size: clamp(1rem, 1.1vw, 1.08rem); color: var(--c-ink-soft); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251,246,238,0.0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(251,246,238,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 6vw;
  box-shadow: 0 2px 20px rgba(43,29,24,0.06);
}
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }
.nav-brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(43,29,24,0.18);
  position: relative; overflow: hidden;
  background: var(--c-cream);
  border: 2px solid rgba(255,255,255,0.8);
}
.nav-brand-mark img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 50%;
}
.nav-brand-mark::after {
  content: ''; position: absolute; inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(232,147,44,0.55), transparent 60%);
  animation: spin 8s linear infinite;
  z-index: 0; mix-blend-mode: overlay;
}
.nav-brand-mark img { position: relative; z-index: 1; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--c-ink);
  position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-warm); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-links a:hover { color: var(--c-magenta); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: #25D366; color: white !important;
  padding: 10px 18px !important; border-radius: 100px;
  display: flex !important; align-items: center; gap: 8px;
  font-weight: 600 !important; font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,0.45); }
.nav-cta::after { display: none; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 26px; height: 2px; background: var(--c-ink);
  margin: 5px 0; transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 6vw 80px;
  background: var(--c-bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--grad-aurora);
  animation: auroraShift 18s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { transform: scale(1) rotate(0deg); filter: hue-rotate(0deg); }
  100% { transform: scale(1.15) rotate(8deg); filter: hue-rotate(15deg); }
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  max-width: 1280px; width: 100%;
}
.hero-text { animation: fadeUp 1.2s ease both; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-magenta); background: rgba(200,58,107,0.08);
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-magenta); box-shadow: 0 0 0 4px rgba(200,58,107,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }
.hero-title {
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic; background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  border: none; font-family: inherit;
}
.btn-primary {
  background: #25D366; color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,211,102,0.55); }
.btn-ghost {
  background: transparent; color: var(--c-ink);
  border: 1.5px solid rgba(43,29,24,0.2);
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }
.btn svg { width: 18px; height: 18px; }

/* Hero — services pills inline */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 36px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(43,29,24,0.08);
  color: var(--c-ink);
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.hero-pill:nth-child(1) .dot { background: var(--c-saffron); }
.hero-pill:nth-child(2) .dot { background: var(--c-magenta); }
.hero-pill:nth-child(3) .dot { background: var(--c-turquoise); }
.hero-pill:nth-child(4) .dot { background: var(--c-violet); }
.hero-pill:nth-child(5) .dot { background: var(--c-gold); }

/* Hero Visual — stacked photos */
.hero-visual {
  position: relative;
  width: 100%; max-width: 540px;
  aspect-ratio: 1/1.05;
  margin-left: auto;
  animation: fadeUp 1.4s 0.2s ease both;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-photo-main {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(43,29,24,0.30);
  z-index: 3;
  transition: transform 0.6s ease;
}
.hero-photo-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero-photo-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43,29,24,0.35));
  pointer-events: none;
}
.hero-visual:hover .hero-photo-main { transform: scale(1.02); }
@keyframes kenBurns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}

/* Mini foto sovrapposte all'hero */
.hero-photo-side {
  position: absolute;
  width: 38%; aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 24px 50px rgba(43,29,24,0.32);
  border: 5px solid var(--c-cream);
  background: var(--grad-warm);
  cursor: zoom-in;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
}
.hero-photo-side img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s ease;
}
.hero-photo-side:hover { z-index: 6; box-shadow: 0 30px 60px rgba(43,29,24,0.42); }
.hero-photo-side:hover img { transform: scale(1.08); }

.hero-photo-side--tr {
  top: -6%; right: -7%;
  animation: floaty 8s ease-in-out infinite;
  animation-delay: 0.3s;
  rotate: 4deg;
}

.hero-photo-side--bl {
  bottom: -5%; left: -8%;
  width: 34%;
  animation: floaty 9s ease-in-out infinite;
  animation-delay: 1.5s;
  rotate: -5deg;
}

/* Decorative spinning ring behind photo */
.hero-ring {
  position: absolute;
  width: 60%; aspect-ratio: 1/1;
  top: -4%; right: -6%;
  border-radius: 50%;
  border: 2px dashed rgba(232,147,44,0.55);
  animation: spin 60s linear infinite;
  z-index: 1;
  pointer-events: none;
}
.hero-ring::before {
  content: ''; position: absolute; inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(200,58,107,0.35);
}
.hero-blob {
  position: absolute;
  width: 65%; aspect-ratio: 1/1;
  bottom: -8%; left: -10%;
  background: radial-gradient(circle at 30% 30%, rgba(212,169,58,0.55), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: floaty 9s ease-in-out infinite;
}

/* Hero badge — Nidranantar highlight */
.hero-badge {
  position: absolute;
  top: 6%; left: -4%;
  z-index: 5;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  background: white;
  border-radius: 100px;
  box-shadow: 0 14px 30px rgba(43,29,24,0.18);
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-warm); color: white;
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(200,58,107,0.3);
}
.hero-badge-icon svg, .hero-badge-icon i { width: 16px; height: 16px; }
.hero-badge-icon i svg { stroke-width: 2; }
.hero-badge-text { font-size: 0.78rem; font-weight: 600; line-height: 1.2; }
.hero-badge-text small { display: block; font-size: 0.66rem; font-weight: 500; color: var(--c-ink-soft); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }

/* Hero stats strip */
.hero-strip {
  position: absolute;
  bottom: 4%; right: 4%;
  z-index: 5;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: rgba(43,29,24,0.92);
  backdrop-filter: blur(8px);
  color: var(--c-cream);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(43,29,24,0.3);
  animation: floaty 7s ease-in-out infinite;
  animation-delay: 1s;
}
.hero-strip-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  background: linear-gradient(135deg, #fcd163, #f08fae);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-strip-label { font-size: 0.7rem; line-height: 1.2; color: rgba(255,249,238,0.8); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-ink-soft); opacity: 0.7;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--c-ink-soft), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Sections common ===== */
section { padding: 110px 6vw; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-saffron-deep); margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead { margin-top: 18px; font-size: 1.1rem; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== About ===== */
.about { background: var(--c-cream); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h1, .about-text h2 { margin-bottom: 24px; }
.about-text h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; }
.about-text p + p { margin-top: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-top: 40px; padding-top: 40px;
  border-top: 1px solid rgba(43,29,24,0.1);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.82rem; color: var(--c-ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.about-collage {
  position: relative; aspect-ratio: 1/1.05;
}
.about-collage .img-a, .about-collage .img-b, .about-collage .img-c {
  position: absolute; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-medium); transition: transform 0.5s ease;
}
.about-collage .img-a { top: 0; left: 0; width: 65%; height: 60%; }
.about-collage .img-b { bottom: 0; right: 0; width: 55%; height: 55%; z-index: 2; border: 6px solid var(--c-cream); }
.about-collage .img-c { top: 30%; right: 8%; width: 30%; height: 30%; z-index: 3; border-radius: 50%; border: 5px solid var(--c-cream); }
.about-collage img { width: 100%; height: 100%; object-fit: cover; }
.about-collage:hover .img-a { transform: translate(-5px,-5px); }
.about-collage:hover .img-b { transform: translate(5px,5px); }
.about-collage:hover .img-c { transform: rotate(10deg) scale(1.05); }

/* Decorative sparkle */
.sparkle {
  position: absolute; pointer-events: none; opacity: 0.5;
}

/* ===== Services ===== */
.services { background: var(--c-bg); }
.services-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.service-card {
  position: relative; padding: 36px 28px;
  background: var(--c-cream); border-radius: var(--radius);
  border: 1px solid rgba(43,29,24,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: -60%; right: -60%; width: 200%; height: 200%;
  background: var(--grad-soft); opacity: 0;
  transition: opacity 0.5s; pointer-events: none; z-index: 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); }
.service-card:hover::before { opacity: 0.6; }
.service-card > * { position: relative; z-index: 1; }
.svc-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--grad-warm); color: white;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(200,58,107,0.25);
  transition: transform 0.4s ease;
}
.service-card:hover .svc-icon { transform: rotate(-6deg) scale(1.05); }
.svc-icon svg, .svc-icon i { width: 30px; height: 30px; }
.svc-icon i { display: grid; place-items: center; }
.svc-icon i svg { stroke-width: 1.6; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.96rem; }

.service-card.c-2 .svc-icon { background: linear-gradient(135deg, #1ea7a0, #6b3fa0); }
.service-card.c-3 .svc-icon { background: linear-gradient(135deg, #c83a6b, #6b3fa0); }
.service-card.c-4 .svc-icon { background: linear-gradient(135deg, #d4a93a, #e8932c); }
.service-card.c-5 .svc-icon { background: linear-gradient(135deg, #6b3fa0, #c83a6b); }
.service-card.c-6 .svc-icon { background: linear-gradient(135deg, #e8932c, #d4a93a); }
.service-card.c-7 .svc-icon { background: linear-gradient(135deg, #1ea7a0, #e8932c); }
.service-card.c-8 .svc-icon { background: linear-gradient(135deg, #c83a6b, #e8932c); }

/* ===== Nidranantar focus section ===== */
.nidra {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--c-cream) 0%, #f6e8d3 100%);
}
.nidra::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,147,44,0.25), transparent 70%);
  filter: blur(20px);
}
.nidra::after {
  content: ''; position: absolute; bottom: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.22), transparent 70%);
  filter: blur(20px);
}
.nidra-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.nidra-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.nidra-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.nidra-visual:hover img { transform: scale(1.08); }
.nidra-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43,29,24,0.5));
}
.nidra-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 3; color: white;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; letter-spacing: 0.02em;
}
.nidra-text h2 { margin-bottom: 22px; }
.nidra-text p + p { margin-top: 16px; }
.nidra-features {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.nidra-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: rgba(255,255,255,0.6);
  border-radius: 14px; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
}
.nidra-feature-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-warm); display: grid; place-items: center; color: white;
}
.nidra-feature-icon svg, .nidra-feature-icon i { width: 18px; height: 18px; }
.nidra-feature-icon i svg { stroke-width: 1.8; }
.nidra-feature strong { font-size: 0.95rem; display: block; color: var(--c-ink); }
.nidra-feature span { font-size: 0.84rem; color: var(--c-ink-soft); }

/* ===== Sezione Fondatrice — Andreina ===== */
.founder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-bg) 100%);
}
.founder-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(232,147,44,0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(107,63,160,0.14), transparent 55%);
}
.founder > * { position: relative; z-index: 1; }

.founder-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
  gap: 80px; align-items: center;
}

/* Photo */
.founder-visual {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.founder-photo-frame {
  width: 100%; max-width: 380px;
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--grad-warm);
  cursor: zoom-in;
}
.founder-photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.founder-photo-frame:hover img { transform: scale(1.07); }
.founder-photo-frame::before {
  content: ''; position: absolute; inset: -10px;
  border-radius: 34px; z-index: -1;
  background: conic-gradient(from 0deg, transparent, rgba(232,147,44,0.5), transparent 45%, rgba(107,63,160,0.45), transparent 90%);
  animation: spin 18s linear infinite;
  filter: blur(10px); opacity: 0.75;
}
.founder-sig {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.5rem;
  color: var(--c-ink); letter-spacing: 0.02em;
  text-align: center;
}
.founder-sig small {
  display: block; margin-top: 4px;
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-saffron-deep);
  font-weight: 600;
}

/* Right content */
.founder-content { padding: 12px 0; }
.founder-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin: 14px 0 8px;
  line-height: 1.05;
}
.founder-content h2 em {
  font-style: italic;
  background: var(--grad-warm); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.founder-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.4rem; color: var(--c-saffron-deep);
  margin-bottom: 26px;
  line-height: 1.3;
}
.founder-bio {
  position: relative;
  padding-left: 22px;
  border-left: 3px solid rgba(232,147,44,0.45);
}
.founder-bio p {
  font-size: 1.02rem; color: var(--c-ink-soft); line-height: 1.65;
}
.founder-bio p + p { margin-top: 14px; }
.founder-bio p em { color: var(--c-saffron-deep); font-style: italic; font-weight: 500; }
.founder-bio p strong {
  background: var(--grad-warm); -webkit-background-clip: text;
  background-clip: text; color: transparent; font-weight: 700;
}
.founder-sign {
  margin-top: 18px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1.05rem !important; color: var(--c-ink) !important;
}
.founder-tags {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.founder-tag-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(232,147,44,0.32);
  font-size: 0.84rem; font-weight: 500; color: var(--c-ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.founder-tag-chip i, .founder-tag-chip svg {
  width: 15px; height: 15px; color: var(--c-saffron-deep);
}
.founder-tag-chip i svg { stroke-width: 1.9; }

/* Books */
.founder-books {
  max-width: 1280px; margin: 100px auto 0;
}
.founder-books .section-eyebrow { display: block; margin-bottom: 8px; }
.founder-books h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  margin-bottom: 36px; line-height: 1.1;
}
.founder-books h3 em {
  font-style: italic;
  background: var(--grad-warm); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.books-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.book-card {
  display: grid; grid-template-columns: 150px 1fr; gap: 22px;
  padding: 24px; border-radius: 22px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(43,29,24,0.08);
  text-decoration: none; color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  background: var(--c-cream);
}
.book-cover {
  aspect-ratio: 2/3; border-radius: 10px; overflow: hidden;
  box-shadow: 0 14px 30px rgba(43,29,24,0.18);
  background: var(--grad-warm);
}
.book-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.book-card:hover .book-cover img { transform: scale(1.06); }
.book-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.book-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-saffron-deep); font-weight: 600;
  margin-bottom: 8px;
}
.book-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 600;
  margin-bottom: 6px; line-height: 1.1;
}
.book-info p {
  font-size: 0.94rem; color: var(--c-ink-soft);
  margin-bottom: 14px;
}
.book-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--c-saffron-deep);
  letter-spacing: 0.02em;
  transition: gap 0.3s ease;
}
.book-card:hover .book-link { gap: 10px; }
.book-link i, .book-link svg { width: 14px; height: 14px; }
.book-link i svg { stroke-width: 2.2; }

/* Press */
.founder-press {
  max-width: 1280px; margin: 80px auto 0;
}
.founder-press .section-eyebrow { display: block; margin-bottom: 8px; }
.founder-press h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  margin-bottom: 30px; line-height: 1.1;
}
.founder-press h3 em {
  font-style: italic;
  background: var(--grad-warm); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.press-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.press-card {
  display: grid; grid-template-columns: 58px 1fr 24px;
  gap: 18px; align-items: center;
  padding: 20px 24px; border-radius: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(43,29,24,0.08);
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.press-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  background: var(--c-cream);
}
.press-logo {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-warm); color: white;
  flex-shrink: 0;
}
.press-logo svg { width: 28px; height: 28px; }
.press-logo i svg { stroke-width: 1.7; }
.press-text {
  display: flex; flex-direction: column; gap: 3px; min-width: 0;
}
.press-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-saffron-deep); font-weight: 600;
}
.press-card strong {
  font-size: 1rem; color: var(--c-ink); font-weight: 600;
  line-height: 1.3;
}
.press-meta {
  font-size: 0.84rem; color: var(--c-ink-soft); line-height: 1.4;
}
.press-arrow {
  color: var(--c-saffron-deep); width: 22px; height: 22px;
  display: grid; place-items: center;
  transition: transform 0.3s ease;
}
.press-arrow svg { stroke-width: 2.2; width: 20px; height: 20px; }
.press-card:hover .press-arrow { transform: translate(4px, -4px); }

/* ===== Le pratiche (sezioni dedicate) ===== */
.practices {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.practices::before {
  content: ''; position: absolute; top: 8%; left: -240px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,147,44,0.16), transparent 70%);
  filter: blur(30px); z-index: 0; pointer-events: none;
}
.practices::after {
  content: ''; position: absolute; bottom: 6%; right: -240px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.14), transparent 70%);
  filter: blur(30px); z-index: 0; pointer-events: none;
}
.practices > * { position: relative; z-index: 1; }

.practices-list {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 130px;
}
.practice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 70px; align-items: center;
  position: relative;
}
.practice--reverse .practice-visual { order: 2; }
.practice--reverse .practice-text { order: 1; }

/* Visual */
.practice-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--grad-warm);
  transform: translateZ(0);
}
.practice-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.practice-visual:hover img { transform: scale(1.07); }
.practice-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(43,29,24,0.55));
  pointer-events: none;
}
.practice-visual::before {
  content: ''; position: absolute; inset: -3px; border-radius: 32px;
  background: var(--grad-warm); z-index: -1;
  opacity: 0; transition: opacity 0.5s;
  filter: blur(2px);
}
.practice:hover .practice-visual::before { opacity: 0.55; }

/* Number badge */
.practice-num {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,249,238,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--c-ink); letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(43,29,24,0.18);
}
.practice-num::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(232,147,44,0.7), transparent 60%);
  animation: spin 9s linear infinite;
  z-index: -1; opacity: 0.8;
}

/* Label overlay */
.practice-label-overlay {
  position: absolute; bottom: 22px; left: 24px; right: 24px; z-index: 3;
  color: white; font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.25rem;
  display: flex; align-items: center; gap: 12px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
  pointer-events: none;
}
.practice-label-overlay::before {
  content: ''; width: 26px; height: 1px;
  background: rgba(255,255,255,0.75);
}

/* Text */
.practice-text { padding: 12px 0; }
.practice-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-saffron-deep);
  font-weight: 600; margin-bottom: 18px;
}
.practice-eyebrow .practice-icon {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-warm); color: white;
  box-shadow: 0 6px 14px rgba(200,58,107,0.25);
  flex-shrink: 0;
}
.practice-eyebrow .practice-icon svg,
.practice-eyebrow .practice-icon i { width: 17px; height: 17px; }
.practice-eyebrow .practice-icon i svg { stroke-width: 1.8; }

.practice-text h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 16px; line-height: 1.05;
}
.practice-text h3 em {
  font-style: italic;
  background: var(--grad-warm); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.practice-text p { font-size: 1.02rem; color: var(--c-ink-soft); }
.practice-text p + p { margin-top: 14px; }

.practice-benefits {
  list-style: none; padding: 0;
  margin: 26px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
}
.practice-benefits li {
  font-size: 0.92rem; color: var(--c-ink);
  padding: 6px 0 6px 22px; position: relative;
  font-weight: 500;
}
.practice-benefits li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 9px; height: 9px;
  background: var(--c-saffron); border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(232,147,44,0.18);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.practice:hover .practice-benefits li::before {
  box-shadow: 0 0 0 5px rgba(232,147,44,0.22);
  transform: translateY(-50%) scale(1.08);
}

.practice-cta {
  margin-top: 32px;
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 14px;
}
.practice-cta .btn {
  display: inline-flex; align-items: center; gap: 10px;
}
.practice-cta .btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Yoga info chip */
.practice-info-chip {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(232,147,44,0.13);
  border: 1px solid rgba(232,147,44,0.32);
  border-radius: 16px;
  max-width: 100%;
}
.practice-info-chip .chip-icon {
  flex-shrink: 0; display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--c-saffron), var(--c-magenta));
  color: white;
}
.practice-info-chip .chip-icon svg,
.practice-info-chip .chip-icon i { width: 18px; height: 18px; }
.practice-info-chip .chip-icon i svg { stroke-width: 1.8; }
.practice-info-chip strong {
  display: block; font-size: 0.95rem; color: var(--c-ink);
  font-weight: 600; line-height: 1.2;
}
.practice-info-chip span {
  display: block; font-size: 0.84rem; color: var(--c-ink-soft);
  margin-top: 2px; line-height: 1.4;
}

/* Special highlight: Nidranantar */
.practice--nidra {
  padding: 56px 44px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(232,147,44,0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(107,63,160,0.16), transparent 55%),
    linear-gradient(135deg, rgba(255,249,238,0.85), rgba(243,232,216,0.85));
  border-radius: 32px;
  border: 1px solid rgba(232,147,44,0.18);
  box-shadow: 0 30px 60px rgba(43,29,24,0.10);
  position: relative;
}
.practice--nidra::before {
  content: 'Esperienza esclusiva';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm); color: white;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; padding: 7px 20px; border-radius: 100px;
  white-space: nowrap; box-shadow: 0 6px 18px rgba(200,58,107,0.3);
}

/* Per-practice icon gradient tone */
.practice[data-tone="1"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #e8932c, #d4a93a); }
.practice[data-tone="2"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #1ea7a0, #6b3fa0); }
.practice[data-tone="3"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #6b3fa0, #c83a6b); }
.practice[data-tone="4"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #c83a6b, #e8932c); }
.practice[data-tone="5"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #1ea7a0, #d4a93a); }
.practice[data-tone="6"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #6b3fa0, #1ea7a0); }
.practice[data-tone="7"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #d4a93a, #c83a6b); }
.practice[data-tone="8"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #c83a6b, #6b3fa0); }
.practice[data-tone="9"] .practice-eyebrow .practice-icon { background: linear-gradient(135deg, #e8932c, #c83a6b); }

/* ===== Gallery ===== */
.gallery { background: var(--c-bg); }
.gallery-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
  background: var(--c-bg-2);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,29,24,0.6));
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-label {
  position: absolute; bottom: 18px; left: 18px; color: white;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem;
  transform: translateY(20px); opacity: 0; transition: 0.4s ease 0.05s; z-index: 2;
}
.gallery-item:hover .gi-label { transform: translateY(0); opacity: 1; }
.gi-2 { grid-column: span 2; grid-row: span 2; }
.gi-3 { grid-column: span 1; grid-row: span 2; }
.gi-4 { grid-column: span 1; grid-row: span 2; }
.gi-5 { grid-column: span 2; grid-row: span 1; }
.gi-6 { grid-column: span 1; grid-row: span 1; }
.gi-7 { grid-column: span 1; grid-row: span 1; }

/* ===== WhatsApp Mega CTA ===== */
.wa-mega {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px; border-radius: 100px;
  background: #25D366; color: white !important;
  font-size: 1.05rem; font-weight: 600;
  box-shadow: 0 12px 30px rgba(37,211,102,0.38), 0 0 0 0 rgba(37,211,102,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulseRing 2.5s ease-out infinite;
  text-decoration: none;
}
.wa-mega svg { width: 24px; height: 24px; }
.wa-mega:hover { transform: translateY(-3px) scale(1.02); }
@keyframes pulseRing {
  0% { box-shadow: 0 12px 36px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
  100% { box-shadow: 0 12px 36px rgba(37,211,102,0.4), 0 0 0 28px rgba(37,211,102,0); }
}
/* ===== Contact ===== */
.contact {
  background: var(--c-cream);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,147,44,0.15), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.contact::after {
  content: ''; position: absolute; bottom: -150px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.12), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: stretch;
  position: relative; z-index: 2;
}
.contact-left {
  display: flex; flex-direction: column; gap: 22px;
}
.contact-card {
  background: white;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(43,29,24,0.08);
  border: 1px solid rgba(43,29,24,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(43,29,24,0.12);
}
.contact-card--wa {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 1.5px solid rgba(37,211,102,0.25);
  position: relative; overflow: hidden;
}
.contact-card--wa::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.15), transparent 70%);
  pointer-events: none;
}
.contact-card--wa > * { position: relative; z-index: 1; }

.contact-card-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.contact-card-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-warm); display: grid; place-items: center; color: white;
  box-shadow: 0 8px 20px rgba(200,58,107,0.25);
}
.contact-card-icon--wa {
  background: #25D366;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.contact-card-icon svg, .contact-card-icon i { width: 24px; height: 24px; }
.contact-card-icon i svg { stroke-width: 1.8; }
.contact-card-head h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  margin: 2px 0 0; line-height: 1.1;
}
.card-eyebrow {
  display: block; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-ink-soft); font-weight: 600;
  margin-bottom: 4px;
}
.contact-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--c-ink) !important;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.contact-phone:hover { color: #128c45 !important; }
.contact-card-note {
  font-size: 0.93rem; color: var(--c-ink-soft);
  margin-bottom: 22px; line-height: 1.55;
}
.contact-info-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 6px 0;
}
.contact-info-row + .contact-info-row {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(43,29,24,0.07);
}
.contact-info-row .contact-card-icon {
  width: 44px; height: 44px;
}
.contact-info-row .contact-card-icon svg, .contact-info-row .contact-card-icon i { width: 20px; height: 20px; }
.contact-address {
  font-size: 1.05rem; color: var(--c-ink); font-weight: 500;
  line-height: 1.45;
}
.contact-info-row p {
  font-size: 1rem; color: var(--c-ink);
  margin: 0;
}
.contact-map {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 14px 40px rgba(43,29,24,0.12);
  min-height: 100%;
  background: var(--c-bg-2);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 520px; display: block; }

/* ===== Footer ===== */
.footer {
  background: var(--c-ink); color: rgba(255, 249, 238, 0.7);
  padding: 50px 6vw 30px; text-align: center;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--c-cream); font-weight: 600;
  margin-bottom: 16px;
}
.footer-tag { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; max-width: 480px; margin: 0 auto 26px; }
.footer-line {
  width: 60px; height: 2px; background: var(--grad-warm); margin: 0 auto 24px; border-radius: 2px;
}
.footer-bottom {
  font-size: 0.82rem; padding-top: 26px;
  border-top: 1px solid rgba(255,249,238,0.08);
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: floaty 4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1); }
.wa-float .ping {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid #25D366; opacity: 0;
  animation: ping 2.4s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(2); opacity: 0; }
}
.wa-tooltip {
  position: absolute; right: 75px; top: 50%; transform: translateY(-50%);
  background: var(--c-ink); color: white; padding: 8px 14px; border-radius: 100px;
  font-size: 0.82rem; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.3s; font-weight: 500;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ===== Lightbox ===== */
[data-lightbox] { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 12, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 70px 90px;
  opacity: 0; transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-stage {
  position: relative;
  max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  touch-action: pan-y pinch-zoom;
}
.lightbox-img {
  max-width: calc(100vw - 200px);
  max-height: calc(100vh - 200px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lbZoom 0.4s cubic-bezier(.2,.8,.2,1);
  user-select: none; -webkit-user-drag: none;
  display: block;
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  text-align: center; color: rgba(255,249,238,0.85);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  padding: 0 12px;
  max-width: 600px;
}
.lightbox-btn {
  position: absolute; background: rgba(255,249,238,0.1);
  color: var(--c-cream); border: 1px solid rgba(255,249,238,0.18);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .lightbox-btn:hover { background: rgba(255,249,238,0.2); transform: scale(1.08); }
  .lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
}
.lightbox-btn:active { transform: scale(0.95); }
.lightbox-btn svg, .lightbox-btn i { width: 22px; height: 22px; pointer-events: none; }
.lightbox-close { top: 20px; right: 20px; top: max(20px, env(safe-area-inset-top)); right: max(20px, env(safe-area-inset-right)); }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
  top: max(28px, env(safe-area-inset-top));
  color: rgba(255,249,238,0.7); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em;
}
body.lightbox-open { overflow: hidden; touch-action: none; }

/* Mobile / piccoli schermi: pulsanti sotto la foto, layout verticale */
@media (max-width: 768px) {
  .lightbox {
    padding: 56px 12px 96px;
    padding-top: max(56px, calc(env(safe-area-inset-top) + 44px));
    padding-bottom: max(96px, calc(env(safe-area-inset-bottom) + 80px));
  }
  .lightbox-stage { gap: 12px; }
  .lightbox-img {
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    /* mobile: padding ~56+96=152 + caption ~40 + safe-area ~50 */
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 240px);
    max-height: calc(100dvh - 240px);
  }
  .lightbox-caption { font-size: 0.88rem; padding: 0 8px; }
  .lightbox-btn { width: 44px; height: 44px; }
  .lightbox-btn svg, .lightbox-btn i { width: 20px; height: 20px; }
  .lightbox-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }
  .lightbox-count {
    top: max(20px, calc(env(safe-area-inset-top) + 12px));
    font-size: 0.78rem;
  }
  /* prev/next portati sul fondo, affiancati al centro */
  .lightbox-prev, .lightbox-next {
    top: auto;
    bottom: max(22px, calc(env(safe-area-inset-bottom) + 14px));
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 56px); }
  .lightbox-next { right: calc(50% - 56px); left: auto; }
  @media (hover: hover) {
    .lightbox-prev:hover, .lightbox-next:hover { transform: scale(1.08); }
  }
}
@media (max-width: 360px) {
  .lightbox-prev { left: calc(50% - 50px); }
  .lightbox-next { right: calc(50% - 50px); }
}

/* ===== Responsive ===== */
/* ===== Tablet (≤ 960px) ===== */
@media (max-width: 960px) {
  .nav-links {
    display: none; position: fixed; top: 70px; left: 5vw; right: 5vw;
    flex-direction: column; background: rgba(251,246,238,0.97);
    backdrop-filter: blur(12px); padding: 24px; border-radius: 18px;
    box-shadow: var(--shadow-medium); gap: 18px; align-items: stretch;
    max-height: calc(100vh - 100px); overflow-y: auto;
  }
  .nav-links a { text-align: left; }
  .nav-links .nav-cta { justify-content: center; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav { padding: 14px 5vw; }
  .nav.scrolled { padding: 10px 5vw; }

  .hero-inner, .about-grid, .nidra-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Practices */
  .practices-list { gap: 90px; }
  .practice { grid-template-columns: 1fr; gap: 32px; }
  .practice--reverse .practice-visual { order: 1; }
  .practice--reverse .practice-text { order: 2; }
  .practice-visual { max-width: 540px; margin: 0 auto; width: 100%; }
  .practice--nidra { padding: 44px 28px; border-radius: 24px; }

  /* Founder */
  .founder-grid { grid-template-columns: 1fr; gap: 50px; }
  .founder-visual { max-width: 360px; margin: 0 auto; }
  .founder-content { text-align: left; }
  .founder-books { margin-top: 70px; }
  .founder-press { margin-top: 60px; }
  .books-grid { grid-template-columns: 1fr; gap: 18px; }
  .press-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero-photo-side { border-width: 4px; }
  .hero-photo-side--tr { width: 36%; top: -5%; right: -5%; }
  .hero-photo-side--bl { width: 32%; bottom: -4%; left: -6%; }
  .hero-strip { padding: 10px 14px; gap: 10px; }
  .hero-strip-num { font-size: 1.4rem; }
  .hero-badge { padding: 8px 14px 8px 10px; }
  .hero-badge-text { font-size: 0.72rem; }

  .contact-map { min-height: 360px; }
  .contact-map iframe { min-height: 360px; }
  .contact-phone { font-size: 1.7rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gi-2, .gi-5 { grid-column: span 2; grid-row: span 1; }
  .gi-2 { grid-row: span 2; }
  .gi-3, .gi-4 { grid-column: span 1; grid-row: span 1; }

  section { padding: 80px 5vw; }
}

/* ===== Mobile (≤ 600px) ===== */
@media (max-width: 600px) {
  body { font-size: 0.98rem; }
  section { padding: 64px 5vw; }
  .section-head { margin-bottom: 40px; }

  /* Hero */
  .hero { padding: 110px 5vw 60px; min-height: auto; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-eyebrow { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { padding: 14px 22px; font-size: 0.95rem; width: 100%; justify-content: center; white-space: nowrap; }
  .hero-pills { display: none; }
  .hero-visual { max-width: 100%; }
  .hero-badge { top: 4%; left: 4%; padding: 7px 12px 7px 8px; }
  .hero-badge-icon { width: 26px; height: 26px; }
  .hero-badge-icon svg, .hero-badge-icon i { width: 13px; height: 13px; }
  .hero-badge-text small { font-size: 0.6rem; }
  .hero-strip { bottom: 6%; right: 6%; padding: 9px 13px; gap: 8px; border-radius: 12px; }
  .hero-strip-num { font-size: 1.2rem; }
  .hero-strip-label { font-size: 0.64rem; }
  .scroll-cue { display: none; }

  /* About */
  .about-text h1, .about-text h2 { margin-bottom: 18px; }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px; padding-top: 28px;
  }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.06em; }

  /* Practices */
  .practices-list { gap: 70px; }
  .practice-text { padding: 0; }
  .practice-text h3 { font-size: clamp(1.6rem, 7vw, 2.1rem); margin-bottom: 12px; }
  .practice-text p { font-size: 0.96rem; }
  .practice-eyebrow { font-size: 0.72rem; margin-bottom: 14px; gap: 10px; }
  .practice-eyebrow .practice-icon { width: 30px; height: 30px; border-radius: 8px; }
  .practice-eyebrow .practice-icon svg,
  .practice-eyebrow .practice-icon i { width: 15px; height: 15px; }
  .practice-benefits { grid-template-columns: 1fr; gap: 2px 0; margin-top: 20px; }
  .practice-benefits li { font-size: 0.9rem; padding: 5px 0 5px 20px; }
  .practice-benefits li::before { width: 8px; height: 8px; box-shadow: 0 0 0 2.5px rgba(232,147,44,0.18); }
  .practice-num { width: 48px; height: 48px; font-size: 1.25rem; top: 16px; left: 16px; }
  .practice-label-overlay { font-size: 1.05rem; bottom: 18px; left: 18px; right: 18px; gap: 9px; }
  .practice-label-overlay::before { width: 20px; }
  .practice-cta { gap: 12px; margin-top: 24px; }
  .practice-cta .btn { width: 100%; justify-content: center; padding: 14px 22px; font-size: 0.92rem; }
  .practice-info-chip { width: 100%; padding: 12px 14px; gap: 10px; }
  .practice-info-chip .chip-icon { width: 34px; height: 34px; }
  .practice-info-chip strong { font-size: 0.9rem; }
  .practice-info-chip span { font-size: 0.78rem; }
  .practice--nidra { padding: 38px 18px; border-radius: 22px; }
  .practice--nidra::before { font-size: 0.66rem; padding: 5px 14px; letter-spacing: 0.16em; }

  /* Founder mobile fine-tune */
  .founder-tag { font-size: 1.15rem; margin-bottom: 20px; }
  .founder-bio { padding-left: 16px; }
  .founder-bio p { font-size: 0.95rem; }
  .founder-tags { gap: 8px; }
  .founder-tag-chip { font-size: 0.78rem; padding: 7px 13px; }
  .founder-sig { font-size: 1.3rem; }
  .book-card { grid-template-columns: 110px 1fr; gap: 16px; padding: 18px; border-radius: 18px; }
  .book-info h4 { font-size: 1.2rem; }
  .book-info p { font-size: 0.88rem; }
  .press-card { padding: 16px 18px; grid-template-columns: 50px 1fr 22px; gap: 14px; border-radius: 16px; }
  .press-logo { width: 50px; height: 50px; border-radius: 12px; }
  .press-logo svg { width: 24px; height: 24px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 12px; }
  .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7 { grid-column: span 1; grid-row: span 1; }
  .gi-2 { grid-row: span 1; }
  .gallery-item .gi-label { font-size: 0.95rem; bottom: 14px; left: 14px; opacity: 1; transform: none; }
  .gallery-item::after { opacity: 0.7; }

  /* Contact */
  .contact-card { padding: 24px 20px; border-radius: 18px; }
  .contact-card-head { gap: 12px; margin-bottom: 18px; }
  .contact-card-head h3 { font-size: 1.3rem; }
  .contact-card-icon { width: 46px; height: 46px; border-radius: 12px; }
  .contact-card-icon svg, .contact-card-icon i { width: 22px; height: 22px; }
  .contact-info-row .contact-card-icon { width: 40px; height: 40px; }
  .contact-info-row + .contact-info-row { padding-top: 18px; }
  .contact-phone { font-size: 1.5rem; }
  .wa-mega { font-size: 0.95rem; padding: 16px 24px; width: 100%; justify-content: center; }
  .contact-map { min-height: 320px; border-radius: 18px; }
  .contact-map iframe { min-height: 320px; }

  /* Floating WhatsApp */
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }

  /* Footer */
  .footer { padding: 40px 5vw 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom span:nth-child(2), .footer-bottom span:nth-child(4) { display: none; }
}

/* ===== Very small (≤ 380px) ===== */
@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.66rem; }
  .nav-brand { font-size: 1.2rem; }
  .nav-brand-mark { width: 38px; height: 38px; }
  .hero-badge-text { font-size: 0.68rem; }
}

/* ===== FAQ (SEO) ===== */
.faq { padding: 80px 6vw 40px; max-width: 1200px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 4px 22px;
  background: rgba(255,255,255,.5);
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: rgba(0,0,0,.18); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  opacity: .5;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 { margin: 0; font-weight: 600; }
.faq-item > p { margin: 0 0 20px; line-height: 1.7; opacity: .85; }

/* ===== Footer legal ===== */
.footer-legal {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px; font-size: .82rem; opacity: .72;
}
.footer-legal a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.footer-legal a:hover { border-color: currentColor; }

/* ===== Mappa bloccata (consenso) ===== */
.map-consent { position: relative; width: 100%; height: 100%; min-height: 320px; }
.map-consent iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-consent-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 14px;
  padding: 28px; background: var(--c-cream, #f3ece2);
  border-radius: inherit;
}
.map-consent-overlay i { width: 30px; height: 30px; opacity: .6; }
.map-consent-overlay p { max-width: 320px; font-size: .95rem; line-height: 1.6; opacity: .85; margin: 0; }
.map-consent-overlay a { font-size: .85rem; opacity: .7; color: inherit; }

/* ===== Banner cookie ===== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  max-width: 920px; margin: 0 auto;
  background: #fff; color: #2b1d18;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  padding: 22px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner-text { flex: 1 1 360px; }
.cookie-banner-text strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner-text p { margin: 0; font-size: .9rem; line-height: 1.55; opacity: .82; }
.cookie-banner-text a { color: inherit; text-decoration: underline; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.cookie-banner-actions .btn { padding: 11px 20px; font-size: .9rem; }
@media (max-width: 560px) {
  .cookie-banner { padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
