/* ── DESIGN SYSTEM & TOKENS ──────────────────────────────── */
:root {
  /* Ligurian palette — Riviera sea, warm stone, afternoon sun */
  --teal: #1A6B85;
  --teal-dk: #0E4560;
  --teal-md: #4B94AE;
  --teal-lt: #C5DCE6;
  --teal-p: #EDF4F7;

  /* Sun accent — tanning and light references */
  --sol: #C48A28;
  --sol-lt: #F0E1C0;
  --sol-p: #FAF3E3;

  /* Warm neutrals — Ligurian stone and sand */
  --slv: #B8BCBA;
  --slv-dk: #7A746E;
  --slv-lt: #EAE4DB;
  --dark: #16100C;
  --mid: #52463E;
  --white: #FFFFFF;
  --light: #FAF5EB;

  /* Gradients */
  --bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #FAF5EB 100%);
  --silver-gradient: linear-gradient(135deg, #E3DDD5 0%, #F5F0E8 50%, #D4CEC4 100%);
  --teal-gradient: linear-gradient(135deg, #1A6B85 0%, #0E4560 100%);
  --sol-gradient: linear-gradient(135deg, #C48A28 0%, #8B5E18 100%);

  /* Typography */
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Animation */
  --nh: 80px;
  --e: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --sh: 0 16px 48px rgba(22, 16, 12, 0.05);
  --sh-soft: 0 8px 30px rgba(22, 16, 12, 0.04);
  --sh-glow: 0 0 30px rgba(26, 107, 133, 0.08);

  /* Borders & Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-pill: 100px;
  --border-thin: 1px solid rgba(184, 188, 186, 0.3);
  --border-teal-thin: 1px solid rgba(26, 107, 133, 0.12);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fb);
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--r-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--e), background-color var(--e), border-color var(--e), transform var(--e);
}

ul {
  list-style: none;
}

blockquote {
  margin: 0;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--fd);
  color: var(--dark);
  line-height: 1.15;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--fb);
  color: var(--dark);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
}

em {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

strong {
  color: var(--dark);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-md);
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--sol);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
}

.s {
  padding: 7.5rem 0;
  position: relative;
}

.s-dark {
  padding: 7.5rem 0;
  background: linear-gradient(160deg, var(--dark) 0%, #110C08 100%);
  color: var(--white);
}

.s-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.s-dark h2, .s-dark h3, .s-dark h4 {
  color: var(--white);
}

.s-dark .eyebrow {
  color: var(--teal-lt);
}

.s-dark .eyebrow::before {
  background: var(--teal-md);
}

.s-alt {
  padding: 7.5rem 0;
  background: var(--white);
  position: relative;
}

.s-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 138, 40, 0.45) 50%, transparent 100%);
  pointer-events: none;
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--r-pill);
  transition: all var(--e);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dk);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(19, 111, 143, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--slv);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-w:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-w {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  box-shadow: 0 4px 12px rgba(11, 30, 38, 0.05);
}

.btn-w:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-wa:hover {
  background: #1EB458;
  border-color: #1EB458;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

/* ── NAV BAR (GLASSMORPHISM) ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nh);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(186, 197, 201, 0.2);
  transition: background var(--e), box-shadow var(--e), height var(--e);
  overflow: visible;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.nav.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11, 30, 38, 0.04);
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  transition: transform var(--e);
}

.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--teal);
  font-weight: 600;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.6rem !important;
  font-weight: 600 !important;
  border-radius: var(--r-pill) !important;
  box-shadow: 0 4px 12px rgba(19, 111, 143, 0.15);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--teal-dk) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(19, 111, 143, 0.25) !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 110;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #1a7da0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6.5rem clamp(1.5rem, 5vw, 4.5rem) 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fcol-ttl {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}

.fcol-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

.ft-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ft-fl {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ft-fl label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.ft-fl input, .ft-fl select, .ft-fl textarea {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-sm);
  padding: 0.8rem 1.1rem;
  font-family: var(--fb);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--e), background-color var(--e);
  width: 100%;
  resize: none;
}

.ft-fl select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}

.ft-fl input::placeholder, .ft-fl textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ft-fl input:focus, .ft-fl select:focus, .ft-fl textarea:focus {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.18);
}

.ft-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.ft-sub {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--e), transform var(--e), box-shadow var(--e);
  align-self: flex-start;
  margin-top: 0.3rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(22, 16, 12, 0.35);
}

.ft-sub:hover {
  background: #0A0604;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 16, 12, 0.5);
}

.ft-clist {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ft-ci-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.ft-ci h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.ft-ci p, .ft-ci a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.6;
}

.ft-ci a:hover {
  color: var(--white);
}

.ft-map {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.ft-map iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
  filter: grayscale(0.3) brightness(0.88) saturate(0.75) contrast(1.05);
  transition: filter var(--e);
}

.ft-map:hover iframe {
  filter: grayscale(0) brightness(0.95) saturate(1);
}

.footer-bar {
  background: #135f7a;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar-i {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bar-i p, .footer-bar-i a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bar-i a:hover {
  color: var(--white);
}


.ft-legal {
  max-width: 1240px;
  margin: 0.75rem auto 0;
  padding: 0.75rem clamp(1.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.ft-social {
  display: flex;
  gap: 0.75rem;
}

.ft-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--e);
}

.ft-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ft-social a:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  text-align: center;
  border-top: var(--border-thin);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 111, 143, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── PAGE HERO ──────────────────────────────────────────── */
.ph {
  background: var(--white);
  padding: 9.5rem 0 6.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-thin);
}

.ph h1 {
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.ph h1 em {
  color: var(--teal);
}

.ph-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 720px;
  margin-top: 1rem;
  color: var(--mid);
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: none;
  border-top: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 2.5rem;
  transition: border-top-color var(--e), box-shadow var(--e), transform var(--e);
  box-shadow: 0 8px 32px rgba(22, 16, 12, 0.07);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(22, 16, 12, 0.1);
  border-top-color: var(--sol);
}

.card-ico {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
  width: 54px;
  height: 54px;
  background: var(--teal-p);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.card-dk {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.card-dk h3 {
  color: var(--white);
}

.card-dk p {
  color: rgba(255, 255, 255, 0.6);
}

.card-dk:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 138, 40, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ── PILL (SERVICE CONTAINER) ───────────────────────────── */
.pill {
  border-left: 3px solid var(--teal);
  padding: 1.8rem 2.2rem;
  background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  border-top: var(--border-thin);
  border-right: var(--border-thin);
  border-bottom: var(--border-thin);
  margin-bottom: 1.2rem;
  box-shadow: var(--sh-soft);
  transition: transform var(--e), box-shadow var(--e);
}

.pill:hover {
  transform: translateX(4px);
  box-shadow: var(--sh);
}

.pill h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pill p {
  font-size: 0.95rem;
  margin: 0;
}

.pill ul {
  margin: 0.8rem 0 0 1.2rem;
  font-size: 0.92rem;
  list-style: disc;
  color: var(--mid);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pill ul li strong {
  color: var(--dark);
}

/* ── DECO ELEMENTS ─────────────────────────────────────── */
.deco-sol {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(196, 138, 40, 0.05);
  background: repeating-conic-gradient(rgba(196, 138, 40, 0.09) 0deg 2deg, transparent 2deg 30deg);
  pointer-events: none;
  z-index: 0;
  border: 1px solid rgba(196, 138, 40, 0.1);
}

.deco-sol::after {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(196, 138, 40, 0.12);
  background: rgba(196, 138, 40, 0.015);
}

.deco-drop {
  position: absolute;
  border-radius: 50% 50% 48% 48% / 45% 45% 55% 55%;
  background: rgba(19, 111, 143, 0.04);
  pointer-events: none;
  z-index: 0;
}

.deco-palm {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ── HOME SPECIFIC ──────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--sol-p) 0%, #FFFFFF 58%);
  min-height: 95vh;
  min-height: 95svh;
  padding-top: var(--nh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-thin);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5.5rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-h1 {
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.8rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-vis {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  z-index: 1;
}

.hero-sun {
  position: absolute;
  width: min(540px, 85vw);
  height: min(540px, 85vw);
  border-radius: 50%;
  background: rgba(196, 138, 40, 0.04);
  background:
    radial-gradient(circle at 50% 50%, rgba(196, 138, 40, 0.06) 0%, rgba(26, 107, 133, 0.02) 40%, transparent 68%),
    repeating-conic-gradient(rgba(26, 107, 133, 0.07) 0deg 1.5deg, transparent 1.5deg 30deg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(196, 138, 40, 0.08);
}

.hero-sun::before {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(196, 138, 40, 0.1);
  background: rgba(196, 138, 40, 0.02);
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 78%;
  transform: translate(4%, -2%);
}

.hero-photo img {
  width: 100%;
  min-height: 380px;
  aspect-ratio: 4/5;
  box-shadow: var(--sh);
  border-radius: var(--r-lg);
  border: 4px solid var(--white);
  object-fit: cover;
}

.hero-photo::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 40px rgba(11, 30, 38, 0.15);
  pointer-events: none;
  z-index: 3;
}

.hero-stats {
  background: var(--light);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(196, 138, 40, 0.14);
  border-bottom: 1px solid rgba(196, 138, 40, 0.14);
}

.stats-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.stat-n {
  display: block;
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}

.stat-l {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-top: 0.5rem;
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--slv-lt);
  flex-shrink: 0;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 0.4rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--slv-lt);
  box-shadow: none;
  transition: padding-left var(--e), border-color var(--e);
}

.feat-list .feat-item:first-child {
  border-top: 1px solid var(--slv-lt);
}

.feat-item:hover {
  box-shadow: none;
  transform: none;
  padding-left: 0.75rem;
  border-color: rgba(196, 138, 40, 0.3);
}

.feat-item-ico {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal-p);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-item h4 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.feat-item p {
  font-size: 0.9rem;
  margin: 0;
}

.forza-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.forza-c {
  padding: 2.2rem;
  border-radius: var(--r-md);
  transition: transform var(--e), box-shadow var(--e), border-color var(--e);
}

.forza-ico {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-lt);
}

.forza-c h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.forza-c p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* ── FORZA MANIFEST ──────────────────────────────────── */
.forza-manifest {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 0 5rem;
  align-items: start;
}

.forza-manifest-head {
  position: sticky;
  top: calc(var(--nh) + 3rem);
}

.forza-manifest-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-top: 0.75rem;
}

.fm-item {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0 1.8rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(196, 138, 40, 0.18);
  align-items: start;
}

.fm-item:first-child {
  border-top: 1px solid rgba(196, 138, 40, 0.18);
}

.fm-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--sol);
  opacity: 0.6;
  padding-top: 0.2rem;
  letter-spacing: 0.04em;
}

.fm-body h3 {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.fm-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ── IL CENTRO PAGE HERO ─────────────────────────────────── */
.ph-centro {
  background: linear-gradient(150deg, #FFFFFF 45%, var(--sol-p) 100%);
  position: relative;
  overflow: hidden;
}

/* Grande sole: raggi sottili 24 punte + nucleo caldo */
.ph-sun {
  position: absolute;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  right: -14%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(196,138,40,0.05);
  background:
    radial-gradient(circle at 50% 50%, rgba(196,138,40,0.09) 0%, rgba(196,138,40,0.03) 30%, transparent 58%),
    repeating-conic-gradient(rgba(196,138,40,0.09) 0deg 1.5deg, transparent 1.5deg 15deg);
  border: 1px solid rgba(196,138,40,0.12);
  pointer-events: none;
  z-index: 0;
}

/* Primo anello interno */
.ph-sun::before {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid rgba(196,138,40,0.14);
  background: rgba(196,138,40,0.03);
}

/* Secondo anello interno — nucleo */
.ph-sun::after {
  content: '';
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  border: 1.5px solid rgba(196,138,40,0.18);
  background: rgba(196,138,40,0.05);
}

/* Aureola esterna, più grande e più tenue */
.ph-sun-halo {
  position: absolute;
  width: min(760px, 120vw);
  height: min(760px, 120vw);
  right: calc(-14% - (min(760px,120vw) - min(560px,90vw)) / 2);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(196,138,40,0.06);
  pointer-events: none;
  z-index: 0;
}

.ph-sun-halo::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(196,138,40,0.04);
}

/* Piccolo sole teal in basso a sinistra */
.ph-sol-sm {
  position: absolute;
  width: 130px;
  height: 130px;
  left: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(26,107,133,0.05);
  background: repeating-conic-gradient(rgba(26,107,133,0.08) 0deg 2deg, transparent 2deg 30deg);
  border: 1px solid rgba(26,107,133,0.1);
  pointer-events: none;
  z-index: 0;
}

.ph-sol-sm::after {
  content: '';
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  border: 1px solid rgba(26,107,133,0.1);
}

/* ── IL CENTRO SPECIFIC ──────────────────────────────────── */
.centro-grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  min-height: 440px;
}

.centro-grid4-item {
  overflow: hidden;
  min-height: 0;
}

.centro-grid4-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s var(--e);
  display: block;
}

.centro-grid4-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .centro-grid4 {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .centro-grid4 {
    min-height: 280px;
  }
}

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  height: 520px;
}

.mosaic-main {
  grid-row: 1/3;
  width: 100%;
  height: 100%;
}

.mosaic-side {
  width: 100%;
  height: 100%;
}

.mosaic-main img, .mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  border: var(--border-thin);
  box-shadow: var(--sh-soft);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0.4rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--slv-lt);
  box-shadow: none;
  transition: padding-left var(--e);
}

.pillars .pillar:first-child {
  border-top: 1px solid var(--slv-lt);
}

.pillar:hover {
  transform: none;
  box-shadow: none;
  padding-left: 0.75rem;
}

.pillar-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--teal-p);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar h4 {
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.9rem;
  margin: 0;
}

/* Galleria fotografica centro — striscia full-bleed */
.ctr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.ctr-gallery-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.ctr-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
  display: block;
}

.ctr-gallery-item:hover img {
  transform: scale(1.05);
}

.ctr-gallery-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(transparent, rgba(22,16,12,0.55));
  color: rgba(255,255,255,0.9);
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ctr-gallery-item:hover .ctr-gallery-cap {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .ctr-gallery {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ctr-gallery-item {
    height: 260px;
  }

  .ctr-gallery-cap {
    opacity: 1;
    transform: translateY(0);
  }
}

.massimo-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  min-height: 320px;
  aspect-ratio: 3/4;
  border: 4px solid var(--white);
}

.massimo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* CTA band variante chiara/calda */
.cta-band-warm {
  background: #faf5eb;
}

.cta-band-warm h2 {
  color: var(--dark);
}

.cta-band-warm p {
  color: var(--mid);
}

/* ── SOLARIUM PAGE HERO ──────────────────────────────────── */
.ph-solar {
  background: linear-gradient(148deg, var(--sol-p) 0%, #FFFFFF 50%, var(--teal-p) 100%);
  position: relative;
  overflow: hidden;
}

/* ── SOLARIUM SPECIFIC ──────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post {
  background: var(--white);
  border: none;
  border-top: 2px solid transparent;
  border-radius: var(--r-lg);
  transition: border-top-color var(--e), box-shadow var(--e), transform var(--e);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22, 16, 12, 0.07);
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(22, 16, 12, 0.10);
  border-top-color: var(--sol);
}

.post-head {
  background: var(--light);
  padding: 2.2rem 2.2rem 1.6rem;
  border-bottom: var(--border-thin);
}

.post-ico {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 30, 38, 0.02);
}

.post-head h3 {
  color: var(--dark);
  font-weight: 500;
}

.post-body {
  padding: 1.8rem 2.2rem 2.2rem;
}

.post-body p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}

.hero-solar {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nh) + 5rem) 0 6.5rem;
}

.hero-solar::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: min(560px, 80vw);
  height: min(560px, 80vw);
  border-radius: 50%;
  background: rgba(196, 138, 40, 0.08);
  background: repeating-conic-gradient(rgba(196, 138, 40, 0.18) 0deg 9deg, rgba(196, 138, 40, 0.03) 9deg 18deg);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-solar::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: min(560px, 80vw);
  height: min(560px, 80vw);
  transform: translate(-22%, -50%) rotate(45deg) scale(0.5);
  background: linear-gradient(135deg, rgba(186, 197, 201, 0.4) 0%, rgba(73, 145, 168, 0.35) 50%, rgba(19, 111, 143, 0.3) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-solar-inner {
  position: relative;
  z-index: 1;
}

.hero-solar h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-solar h1 em {
  color: var(--teal-lt);
}

.hero-solar .ph-lead {
  color: rgba(255, 255, 255, 0.75);
}

.hero-solar .eyebrow {
  color: var(--teal-lt);
}

.hero-solar .eyebrow::before {
  background: var(--teal-md);
}

.hero-solar-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.note-box {
  background: var(--sol-p);
  border: 1px solid rgba(196, 138, 40, 0.2);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.note-box p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--mid);
}

.phil-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.phil-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.phil-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-lt);
}

.phil-item h4 {
  margin-bottom: 0.35rem;
}

.phil-item p {
  font-size: 0.92rem;
  margin: 0;
}

.img-sol {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
}

/* Galleria macchinari solarium */
.sol-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.sol-gallery-item {
  overflow: hidden;
  height: 480px;
}

.sol-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s var(--e);
  display: block;
}

.sol-gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .sol-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .sol-gallery-item {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .sol-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .sol-gallery-item {
    height: 220px;
  }
}

/* ── TRATTAMENTI PAGE HERO ───────────────────────────────── */
.ph-trat {
  background: linear-gradient(148deg, var(--teal-p) 0%, #FFFFFF 38%, var(--sol-p) 100%);
  position: relative;
  overflow: hidden;
}

/* Sole del logo — top-left, 12 raggi, rotazione lenta */
/* ── HERO SHARED: sole + ghost + ornamento ────────────────── */

/* Sole del logo — top-left, 12 raggi, rotazione lenta (80s) */
.ph-sol-logo {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: repeating-conic-gradient(rgba(196,138,40,0.13) 0deg 2deg, transparent 2deg 30deg);
  border: 1px solid rgba(196,138,40,0.16);
  pointer-events: none;
  z-index: 0;
  animation: ph-sol-spin 80s linear infinite;
}

.ph-sol-logo::before {
  content: '';
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(196,138,40,0.16);
  background: rgba(196,138,40,0.025);
}

.ph-sol-logo::after {
  content: '';
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: rgba(196,138,40,0.06);
  border: 1px solid rgba(196,138,40,0.2);
}

@keyframes ph-sol-spin {
  to { transform: rotate(360deg); }
}

/* Parola ghost — editoriale, fondo oro trasparente */
.ph-ghost {
  position: absolute;
  font-family: var(--fd);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 9.5vw, 11rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(196, 138, 40, 0.075);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  right: 1%;
  bottom: 10%;
}

/* Ornamento ◇ ◆ ◇ tra h1 e lead text */
.ph-orn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.4rem 0 1.6rem;
  color: rgba(196, 138, 40, 0.55);
  line-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ph-sol-logo { animation: none; }
}

@media (max-width: 640px) {
  .ph-sol-logo { display: none; }
  .ph-ghost    { display: none; }
  .ph-orn      { margin: 1rem 0 1.2rem; }
}

/* Anelli SVG — viewport esteso per orbita larga */
.ph-trat-rings {
  position: absolute;
  width: min(620px, 98vw);
  height: min(560px, 90vw);
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

/* Icone flottanti */
.ph-trat-ico {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}

/* Foglia — principale, alta destra */
.ph-trat-ico--leaf {
  right: 9%;
  top: 14%;
  color: var(--sol);
  opacity: 0.3;
  transform: rotate(14deg);
}

/* Goccia — centro destra */
.ph-trat-ico--drop {
  right: 4%;
  top: 50%;
  color: var(--teal);
  opacity: 0.24;
  transform: rotate(-6deg);
}

/* Asterisco — basso destra */
.ph-trat-ico--star {
  right: 16%;
  bottom: 16%;
  color: var(--sol);
  opacity: 0.2;
  transform: rotate(22deg);
}

/* Mani — accento basso sinistra */
.ph-trat-ico--hands {
  left: 2%;
  bottom: 12%;
  color: var(--teal);
  opacity: 0.18;
  transform: rotate(-10deg);
}

@media (max-width: 640px) {
  .ph-trat-rings { display: none; }
  .ph-trat-ico   { display: none; }
}

/* ── TRATTAMENTI SPECIFIC ───────────────────────────────── */
.tcat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--fd);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(196, 138, 40, 0.2);
}

.tcat-ico {
  font-size: 1.85rem;
  color: var(--teal);
}

/* Sticky anchor nav */
.trat-bar {
  position: sticky;
  top: var(--nh);
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: var(--border-thin);
  padding: 1rem 0;
  transition: top var(--e);
}

.trat-bar-i {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trat-bar-i a {
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  border: 1px solid rgba(186, 197, 201, 0.4);
  border-radius: var(--r-pill);
  background: var(--white);
  letter-spacing: 0.02em;
}

.trat-bar-i a:hover, .trat-bar-i a.on {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(19, 111, 143, 0.15);
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Massages */
.mass-g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mc {
  background: var(--white);
  border: none;
  border-top: 2px solid transparent;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22, 16, 12, 0.07);
  transition: border-top-color var(--e), box-shadow var(--e), transform var(--e);
}

.mc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(22, 16, 12, 0.10);
  border-top-color: var(--sol);
}

.mc-img {
  height: 160px;
  overflow: hidden;
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--e);
}

.mc:hover .mc-img img {
  transform: scale(1.05);
}

.mc-head {
  background: var(--light);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: var(--border-thin);
}

.mc-ico {
  font-size: 1.6rem;
}

.mc-head h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
}

.mc-body {
  padding: 1.5rem 1.8rem 1.8rem;
}

.mc-body p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

.mass-express {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--white);
  border: var(--border-thin);
  border-radius: var(--r-md);
  padding: 1.8rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--sh-soft);
  transition: box-shadow var(--e), transform var(--e), border-color var(--e);
}

.mass-express:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
  border-color: rgba(19, 111, 143, 0.15);
}

.mass-express-ico {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  background: var(--teal-p);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mass-express h3 {
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.mass-express p {
  font-size: 0.92rem;
  margin: 0;
}

.badge {
  display: inline-block;
  background: var(--teal-p);
  color: var(--teal);
  border: var(--border-teal-thin);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: var(--r-pill);
}

.mass-hs {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mass-hs::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(196, 138, 40, 0.18) 0%, rgba(19, 111, 143, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mass-hs-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.mass-hs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.mass-hs-text {
  position: relative;
  z-index: 1;
}

.mass-hs-text h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.mass-hs-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.75;
}

/* Service lists */
.svc-g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.svc-block h4 {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-md);
}

.svc-block ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-block li {
  padding: 0.8rem 0.3rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--slv-lt);
  font-size: 0.92rem;
  color: var(--mid);
  box-shadow: none;
  transition: padding-left var(--e), color var(--e);
}

.svc-block li:first-child {
  border-top: 1px solid var(--slv-lt);
}

.svc-block li:hover {
  padding-left: 0.5rem;
  color: var(--dark);
  border-color: var(--slv-lt);
}

.nail-g {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.nail-c {
  grid-column: span 3;
}

.nail-c:nth-child(5),
.nail-c:nth-child(6),
.nail-c:nth-child(7) {
  grid-column: span 4;
}

.nail-c {
  background: var(--white);
  border: none;
  border-top: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 1.6rem;
  box-shadow: 0 6px 24px rgba(22, 16, 12, 0.07);
  transition: border-top-color var(--e), box-shadow var(--e), transform var(--e);
}

.nail-c:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(22, 16, 12, 0.10);
  border-top-color: var(--sol);
}

.nail-c h4 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.nail-c p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.7;
}

.ped-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ped-top {
  border-top-color: var(--sol);
}

.ped-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sol);
  background: var(--sol-p);
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
}

.ped-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ped-item {
  padding: 1.4rem 0.4rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--slv-lt);
  border-radius: 0;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  box-shadow: none;
  transition: padding-left var(--e);
}

.ped-list .ped-item:first-child {
  border-top: 1px solid var(--slv-lt);
}

.ped-item:hover {
  transform: none;
  padding-left: 0.5rem;
  border-color: var(--slv-lt);
}

.ped-num {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sol-lt);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.2rem;
}

.ped-item h4 {
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.ped-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── CONTATTI PAGE HERO ──────────────────────────────────── */
.ph-contatti {
  background: linear-gradient(132deg, #FFFFFF 40%, var(--sol-p) 100%);
  position: relative;
  overflow: hidden;
}

/* Pin stilizzato — anelli + goccia */
.ph-ct-pin {
  position: absolute;
  width: min(420px, 70vw);
  height: auto;
  right: -8%;
  top: 50%;
  transform: translateY(-48%);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

/* Icone flottanti */
.ph-ct-ico {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}

/* Pin mappa — alto destra, vicino al nucleo del pin */
.ph-ct-ico--mappin {
  right: 10%;
  top: 14%;
  color: var(--sol);
  opacity: 0.22;
  transform: rotate(-8deg);
}

/* Telefono — centro-alta destra */
.ph-ct-ico--phone {
  right: 4%;
  top: 36%;
  color: var(--teal);
  opacity: 0.17;
  transform: rotate(6deg);
}

/* Chat — destra media */
.ph-ct-ico--chat {
  right: 13%;
  top: 58%;
  color: var(--teal);
  opacity: 0.15;
  transform: rotate(-12deg);
}

/* Orologio — basso destra */
.ph-ct-ico--clock {
  right: 5%;
  bottom: 16%;
  color: var(--sol);
  opacity: 0.14;
  transform: rotate(18deg);
}

/* Piccolo accento teal basso sinistra */
.ph-ct-sol-sm {
  position: absolute;
  width: 110px;
  height: 110px;
  left: -32px;
  bottom: -32px;
  border-radius: 50%;
  background: rgba(26,107,133,0.05);
  background: repeating-conic-gradient(rgba(26,107,133,0.08) 0deg 2deg, transparent 2deg 30deg);
  border: 1px solid rgba(26,107,133,0.09);
  pointer-events: none;
  z-index: 0;
}

.ph-ct-sol-sm::after {
  content: '';
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  border: 1px solid rgba(26,107,133,0.1);
}

@media (max-width: 640px) {
  .ph-ct-pin   { display: none; }
  .ph-ct-ico   { display: none; }
  .ph-ct-sol-sm { display: none; }
}

/* ── CONTATTI SPECIFIC ──────────────────────────────────── */
.clist {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.ci-ico {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--white);
  border: var(--border-thin);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--sh-soft);
  color: var(--teal);
}

.ci h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-md);
  margin-bottom: 0.3rem;
}

.ci p, .ci a {
  font-size: 0.98rem;
  color: var(--mid);
  margin: 0;
  line-height: 1.6;
}

.ci a:hover {
  color: var(--teal);
}

.ci-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-full {
  width: 100%;
  height: 460px;
  border: var(--border-thin);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--border-thin);
}

.ct-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.ct-photo {
  overflow: hidden;
  border-radius: var(--r-md);
  height: 260px;
}

.ct-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s var(--e);
}

.ct-photo:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .ct-photos {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ct-photo {
    height: 200px;
  }
}

.contact-btns .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .contact-btns {
    flex-direction: column;
  }
}

/* Parallax banner — contatti */
.ct-parallax {
  height: 520px;
  background-image: url('https://images.pexels.com/photos/3757942/pexels-photo-3757942.jpeg?auto=compress&cs=tinysrgb&w=1920&h=700&fit=crop');
  background-attachment: fixed;
  background-size: cover;
  background-position: center 30%;
  position: relative;
  overflow: hidden;
}

.ct-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22,16,12,0.25) 0%, rgba(22,16,12,0.48) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ct-parallax-quote {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  color: rgba(255,255,255,0.92);
  text-align: center;
  max-width: 720px;
  padding: 0 2rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ct-parallax-sub {
  font-family: var(--fb);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,243,227,0.65);
}

@media (max-width: 768px) {
  .ct-parallax {
    background-attachment: scroll;
    height: 380px;
  }
}

/* FAQ */
.faq-list {
  max-width: 860px;
}

.fi {
  border-top: var(--border-thin);
}

.fi:last-child {
  border-bottom: var(--border-thin);
}

.fi summary {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  padding: 1.6rem 0.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.fi summary::-webkit-details-marker {
  display: none;
}

.fi summary::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--e);
}

.fi[open] summary::after {
  transform: rotate(45deg);
}

.fi-body {
  padding: 0 0.5rem 1.6rem;
}

.fi-body p {
  font-size: 0.96rem;
  line-height: 1.8;
  margin: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .g2 {
    gap: 3.5rem;
  }
  .hero-inner {
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --nh: 72px;
  }

  .nav {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .nav-logo img {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
  }

  .nav-links {
    display: none;
  }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    position: absolute;
    top: var(--nh);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem clamp(1.5rem, 5vw, 4.5rem);
    border-bottom: var(--border-thin);
    box-shadow: 0 15px 40px rgba(11, 30, 38, 0.08);
  }
  
  .nav-links a {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a.nav-cta {
    width: fit-content;
    align-self: flex-start;
    padding: 0.5rem 1.4rem !important;
    font-size: 0.85rem !important;
    text-align: center;
  }
  
  .ham {
    display: flex;
  }
  
  /* Menu icon animation */
  .ham.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .ham.active span:nth-child(2) {
    opacity: 0;
  }
  
  .ham.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .g2 {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .g3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 4.5rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero-desc {
    margin: 0 auto 2.2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-vis {
    min-height: 360px;
  }
  
  .hero-sun {
    width: min(380px, 80vw);
    height: min(380px, 80vw);
  }
  
  .hero-photo {
    width: 65%;
    transform: translate(0, 0);
  }
  
  .stats-i {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .stat-sep {
    width: 60px;
    height: 1px;
  }
  
  .forza-g {
    grid-template-columns: 1fr 1fr;
  }
  
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    gap: 1rem;
  }
  
  .mosaic-main, .mosaic-side {
    height: 280px;
  }
  
  .mosaic-main {
    grid-row: auto;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .phil-g {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .img-sol {
    height: 280px;
  }
  
  .mass-g3 {
    grid-template-columns: 1fr;
  }
  
  .mass-express {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
  }
  
  .mass-hs {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .svc-g2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nail-g {
    grid-template-columns: 1fr 1fr;
  }

  .nail-c,
  .nail-c:nth-child(5),
  .nail-c:nth-child(6),
  .nail-c:nth-child(7) {
    grid-column: span 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .contact-grid > div:last-child {
    margin-left: calc(-1 * clamp(1.5rem, 5vw, 4.5rem));
    margin-right: calc(-1 * clamp(1.5rem, 5vw, 4.5rem));
  }

  .contact-grid > div:last-child .map-full {
    height: 400px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .contact-grid > div:last-child > p {
    padding: 0 clamp(1.5rem, 5vw, 4.5rem);
  }

  .map-full {
    height: 320px;
  }

  .forza-manifest {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .forza-manifest-head {
    position: static;
  }

  .parallax-band {
    background-attachment: scroll;
    height: 260px;
    background-position: center 40%;
    background-size: cover;
  }
}

@media (max-width: 640px) {
  .footer-bar-i {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .ft-row2 {
    grid-template-columns: 1fr;
  }
  
  .forza-g {
    grid-template-columns: 1fr;
  }
  
  .nail-g {
    grid-template-columns: 1fr;
  }

  .ped-g {
    grid-template-columns: 1fr;
  }
  
  .hero-photo {
    width: 80%;
  }
  
  .s {
    padding: 5rem 0;
  }
  
  .s-alt {
    padding: 5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ── MARK SYSTEM: engraving-style thin-ring containers ──── */

/* Ghost ring: transparent fill, fine teal border */
.feat-item-ico,
.card-ico,
.pillar-ico,
.post-ico,
.mass-express-ico {
  background: transparent;
  border: 1px solid rgba(26, 107, 133, 0.2);
  color: var(--teal);
  box-shadow: none;
}

/* Forza-ico on white/light backgrounds */
.card .forza-ico {
  background: transparent;
  border: 1px solid rgba(26, 107, 133, 0.2);
  color: var(--teal);
}

/* Forza-ico on dark background */
.card-dk .forza-ico {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
}

/* Solarium philosophy items (dark section) */
.phil-ico {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
}

/* Footer contact icons */
.ft-ci-ico {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
}

/* Contact page icons (light bg) */
.ci-ico {
  background: transparent;
  border: 1px solid rgba(26, 107, 133, 0.2);
  color: var(--teal);
  box-shadow: none;
}

/* Massage room inline icons */
.mc-ico {
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── PARALLAX BAND ───────────────────────────────────────── */
.parallax-band {
  height: 52vh;
  min-height: 300px;
  background-image: url('https://images.pexels.com/photos/1926811/pexels-photo-1926811.jpeg?auto=compress&cs=tinysrgb&w=1800&q=80&fit=crop');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@supports (-webkit-touch-callout: none) {
  .parallax-band {
    background-attachment: scroll;
    background-position: center 40%;
  }
}

.parallax-band::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22, 16, 12, 0.18) 0%,
    rgba(22, 16, 12, 0.08) 50%,
    rgba(22, 16, 12, 0.22) 100%
  );
}

/* ── TREATMENT PREVIEW GRID (homepage) ──────────────────── */
.trat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.trat-card {
  background: var(--white);
  border: none;
  border-top: 2px solid transparent;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22, 16, 12, 0.07);
  transition: border-top-color var(--e), box-shadow var(--e), transform var(--e);
  display: flex;
  flex-direction: column;
}

.trat-card:hover {
  border-top-color: var(--sol);
  box-shadow: 0 16px 48px rgba(22, 16, 12, 0.11);
  transform: translateY(-5px);
}

.trat-card-img {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trat-card-img img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transition: opacity var(--e), transform var(--e);
  border-radius: 0;
}

.trat-card:hover .trat-card-img img {
  opacity: 0.7;
  transform: scale(1.04);
}

.trat-card-ico {
  position: relative;
  z-index: 2;
  color: rgba(22, 16, 12, 0.22);
  pointer-events: none;
}

.trat-card-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: transparent;
  background: repeating-conic-gradient(rgba(255, 255, 255, 0.06) 0deg 1.2deg, transparent 1.2deg 20deg);
  z-index: 1;
  pointer-events: none;
}

.trat-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trat-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.trat-card-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}

.trat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap var(--e), color var(--e);
  align-self: flex-start;
}

.trat-link:hover {
  gap: 0.5rem;
  color: var(--teal-dk);
}

/* Responsive */
@media (max-width: 900px) {
  .trat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 540px) {
  .trat-grid { grid-template-columns: 1fr; }
  .trat-card-img { height: 160px; }
}

/* Treatment category icons (inline in heading) */
.tcat-ico {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 0.4rem;
  color: var(--teal);
}

/* ── GRAPHIC ELEMENTS & ORNAMENTAL ─────────────────────────── */

/* Editorial pull-quote — warm gold accent bar + oversized open-quotemark */
.pull-quote {
  position: relative;
  padding: 2rem 2.2rem 2rem 3rem;
  margin-top: 2rem;
  border-left: 1px solid var(--sol);
  background: linear-gradient(135deg, var(--sol-p) 0%, var(--light) 100%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.pull-quote::before {
  content: '\201C';
  font-family: var(--fd);
  font-size: 5rem;
  color: var(--sol);
  opacity: 0.28;
  position: absolute;
  top: -0.6rem;
  left: 0.7rem;
  line-height: 1;
  pointer-events: none;
}

.pull-quote p {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  position: relative;
}

.pull-quote cite {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sol);
  font-style: normal;
}

/* Large decorative italic text behind CTA band */
.cta-band::after {
  content: 'Sole';
  font-family: var(--fd);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(255, 255, 255, 0.025);
  position: absolute;
  right: 4%;
  bottom: -2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 0;
}

/* Ghost brand mark in footer */
.footer {
  position: relative;
}

.footer::before {
  content: 'C\'è Sole e Sole';
  font-family: var(--fd);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.01em;
  z-index: 0;
}

/* Make footer content sit above ghost text */
.footer-grid,
.footer-bar {
  position: relative;
  z-index: 1;
}

/* Pill service container — warm left accent */
.pill {
  border-left-color: var(--sol);
  background: linear-gradient(135deg, var(--sol-p) 0%, var(--white) 100%);
}

/* Warm mc-head (massage card header) separator */
.mc-head {
  border-bottom-color: rgba(196, 138, 40, 0.12);
}

/* Mass-express — warm tint */
.mass-express {
  background: linear-gradient(135deg, var(--white) 0%, var(--sol-p) 100%);
}

.mass-express-ico {
  background: var(--sol-p);
  color: var(--sol);
  border-color: rgba(196, 138, 40, 0.2);
}

/* ── WHATSAPP FLOATING BUTTON ─────────────────────────────── */
.wa-float {
  position: fixed;
  right: 0;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  z-index: 9000;
  text-decoration: none;
}

.wa-float-btn {
  width: 42px;
  height: 52px;
  background: #25D366;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -3px 4px 16px rgba(37, 211, 102, 0.38);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.wa-float-btn::before {
  content: none;
}

.wa-float:hover .wa-float-btn {
  background: #1daa54;
  box-shadow: -5px 6px 22px rgba(37, 211, 102, 0.55);
}

.wa-float-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.wa-float-label {
  display: none;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float-btn::before {
    animation: none;
  }
}

/* ── Scroll-to-top button ── */
.scroll-top {
  position: fixed;
  right: 0;
  top: calc(50% + 4px);
  z-index: 9000;
  width: 42px;
  height: 52px;
  border-radius: 8px 0 0 8px;
  border: none;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -3px 4px 16px rgba(26, 107, 133, 0.35);
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.scroll-top.visible {
  transform: translateX(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: #145a70;
  box-shadow: -5px 6px 22px rgba(26, 107, 133, 0.5);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 640px) {
  .scroll-top,
  .wa-float-btn {
    width: 36px;
    height: 46px;
  }
}
