/* ============================================================
   SITO DOTT.SSA ORNELLA MANFEROCE — Design System
   ============================================================ */

/* ---------- IMPORT FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --teal:        #0F4C5C;
  --teal-dark:   #0c3d49;
  --teal-deep:   #0c2e38;
  --gold:        #C9A86A;
  --gold-dim:    rgba(201,168,106,.6);
  --bg:          #FBFAF8;
  --bg-alt:      #F4F0E9;
  --bg-icon:     #EAF1F0;
  --text-h:      #15303a;
  --text-body:   #4a565b;
  --text-sub:    #5c666b;
  --text-muted:  #7c8488;
  --border:      rgba(26,33,37,.07);
  --border-mid:  rgba(26,33,37,.1);
  --shadow-card: 0 1px 2px rgba(16,40,48,.04), 0 20px 44px -32px rgba(16,40,48,.4);
  --shadow-teal: 0 16px 34px -14px rgba(15,76,92,.7);
  --radius-card: 24px;
  --radius-pill: 999px;
  --max-w:       1200px;
  --max-w-mid:   1100px;
  --max-w-sm:    820px;
  --max-w-xs:    760px;
  --px:          clamp(18px, 5vw, 48px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-h);
  font-family: Manrope, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { text-decoration: none; color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }
::selection { background: rgba(201,168,106,.28); }

/* ---------- KEYFRAMES ---------- */
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes itemIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-4%,3%,0) scale(1.12); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
@keyframes floaty {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

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

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.container--mid { max-width: var(--max-w-mid); }
.container--sm  { max-width: var(--max-w-sm); }
.container--xs  { max-width: var(--max-w-xs); }

/* ---------- EYEBROW LABEL ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold); }
.eyebrow--light::before { background: var(--gold-dim); }
.eyebrow--light::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--text-h);
  margin: 0 0 16px;
}
.section-body {
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  line-height: 1.68;
  color: var(--text-body);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-teal);
  transition: background .25s, box-shadow .25s, transform .25s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 20px 40px -16px rgba(15,76,92,.8);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(15,76,92,.28);
  transition: background .25s, border-color .25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(15,76,92,.06);
  border-color: rgba(15,76,92,.5);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--teal);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.5);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -14px rgba(0,0,0,.55);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: background .25s, border-color .25s;
  cursor: pointer;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

/* ---------- ICON BOX ---------- */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--bg-icon);
  color: var(--teal);
  flex-shrink: 0;
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,250,248,.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: clamp(64px, 9vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(15,76,92,.6);
}
.logo-name {
  font-family: Fraunces, serif;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--text-h);
  line-height: 1.15;
}
.logo-sub {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.4vw, 12px);
}
.nav-link {
  position: relative;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #3a464b;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.nav-link.is-active::after { opacity: 1; }

.nav-cta {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 26px -12px rgba(15,76,92,.65);
  transition: background .25s, box-shadow .25s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--teal-dark);
  box-shadow: 0 16px 30px -12px rgba(15,76,92,.75);
}

/* Hamburger */
.hamburger-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(26,33,37,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.6);
}

/* Responsive nav visibility */
@media (min-width: 1000px) {
  .desktop-nav { display: flex; }
  .hamburger-btn { display: none; }
}
@media (max-width: 999px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(251,250,248,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  animation: menuIn .3s ease both;
  pointer-events: all;
}
.mobile-menu.is-hidden { display: none; }

.mobile-menu-header {
  padding: 0 var(--px);
  height: clamp(64px, 9vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-title {
  font-family: Fraunces, serif;
  font-size: 18px;
  color: var(--text-h);
}
.mobile-close-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(26,33,37,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 clamp(22px, 7vw, 48px);
}
.mobile-nav-link {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,33,37,.08);
  font-family: Fraunces, serif;
  font-size: clamp(30px, 9vw, 40px);
  font-weight: 400;
  color: var(--text-h);
  letter-spacing: -.02em;
}
.mobile-nav-link:nth-child(1) { animation: itemIn .45s ease both .05s; }
.mobile-nav-link:nth-child(2) { animation: itemIn .45s ease both .12s; }
.mobile-nav-link:nth-child(3) { animation: itemIn .45s ease both .19s; }
.mobile-nav-link:nth-child(4) { animation: itemIn .45s ease both .26s; }

.mobile-menu-footer {
  padding: clamp(22px, 7vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
}
.mobile-cta-info {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- PAGE SECTIONS (show/hide) ---------- */
.page-section { display: none; }
.page-section.is-active { display: block; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* HERO */
.hero {
  position: relative;
  padding: clamp(36px, 7vw, 72px) 0 clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  top: -40px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,192,176,.32), transparent 70%);
  filter: blur(20px);
  animation: floaty 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-content {
  flex: 1 1 340px;
  min-width: 300px;
}
.hero-h1 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 8.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--text-h);
  margin: 0 0 22px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-lead {
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.68;
  color: var(--text-body);
  max-width: 30em;
  margin-bottom: 30px;
}
.hero-lead strong { color: var(--text-h); font-weight: 600; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-sub);
  font-weight: 500;
}

/* Hero image side */
.hero-media {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-bg {
  position: absolute;
  inset: -14px -14px 24px;
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(168,192,176,.35), rgba(201,168,106,.18));
  z-index: 0;
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -28px rgba(15,48,58,.55), 0 2px 6px rgba(15,48,58,.08);
}
.hero-img-frame img {
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: 50% 16%;
  will-change: transform;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,40,48,.42), transparent 42%);
}
.hero-img-badge {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px 9px 10px;
  border-radius: 14px;
  background: rgba(251,250,248,.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.4);
}
.hero-img-badge-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-img-badge-label {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.25;
}
.hero-img-badge-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-h);
}
.hero-float-stat {
  position: absolute;
  z-index: 2;
  right: 8px; top: 22px;
  padding: 13px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px -16px rgba(15,48,58,.5);
  text-align: center;
  animation: floaty 7s ease-in-out infinite;
}
.hero-float-num {
  font-family: Fraunces, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.hero-float-num sup { font-size: 16px; }
.hero-float-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* ---------- STATS BAND ---------- */
.stats-band {
  position: relative;
  overflow: hidden;
  background: var(--teal);
}
.stats-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(40% 50% at 18% 30%, rgba(168,192,176,.5), transparent 60%),
    radial-gradient(35% 45% at 82% 26%, rgba(201,168,106,.4), transparent 60%),
    radial-gradient(45% 55% at 60% 90%, rgba(120,200,210,.35), transparent 60%);
  animation: meshDrift 20s ease-in-out infinite;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px 16px;
  text-align: center;
  padding: clamp(40px, 6vw, 68px) var(--px);
}
.stat-num {
  font-family: Fraunces, serif;
  font-size: clamp(2.6rem, 8vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- TRATTAMENTI PREVIEW ---------- */
.treatments-section {
  padding: clamp(56px, 9vw, 112px) 0;
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.treatment-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
}
.treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px -28px rgba(15,76,92,.42);
  border-color: rgba(15,76,92,.18);
}
.treatment-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(168,192,176,.16), rgba(201,168,106,.07));
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.treatment-card:hover .treatment-card-shine { opacity: 1; }
.treatment-card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--bg-icon);
  color: var(--teal);
  margin-bottom: 18px;
}
.treatment-card h3 {
  position: relative;
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.24rem;
  letter-spacing: -.01em;
  color: var(--text-h);
  margin: 0 0 8px;
}
.treatment-card p {
  position: relative;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--text-sub);
}

.treatment-card--full {
  padding: 30px 26px;
}
.treatment-card-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.treatment-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.treatment-card-icon--lg {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--teal);
  padding: 6px 0;
  border-bottom: 1.5px solid rgba(15,76,92,.25);
  transition: gap .25s, border-color .25s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.see-all-link:hover {
  gap: 14px;
  border-color: var(--teal);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gold);
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-dim);
  transition: border-color .25s, opacity .25s;
}
.inline-link:hover { border-color: var(--gold); opacity: .85; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color .25s, gap .25s;
}
.back-link:hover { color: var(--teal); gap: 11px; }

/* ---------- CHI È PREVIEW ---------- */
.about-preview {
  background: var(--bg-alt);
  padding: clamp(56px, 9vw, 112px) 0;
}
.about-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.about-content { flex: 1 1 280px; min-width: 260px; order: 2; }
.about-img-side { flex: 1 1 240px; min-width: 230px; order: 1; display: flex; justify-content: center; }

.about-img-wrap { position: relative; width: 100%; max-width: 360px; }
.about-img-frame {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 26px 54px -28px rgba(15,48,58,.5);
}
.about-img-frame img {
  width: 100%; height: 112%;
  object-fit: cover;
  object-position: 50% 20%;
  will-change: transform;
}
.about-img-chip {
  position: absolute;
  right: -6px; bottom: -14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 18px 34px -18px rgba(15,48,58,.7);
  max-width: 190px;
}
.about-img-chip-title {
  font-family: Fraunces, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
}
.about-img-chip-sub {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin-top: 2px;
}

/* ---------- PERCORSO ---------- */
.journey-section { padding: clamp(56px, 9vw, 112px) 0; }
.journey-timeline {
  position: relative;
  padding-left: 8px;
}
.journey-line {
  position: absolute;
  left: 32px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(var(--teal), rgba(15,76,92,.12));
}
.journey-step {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 14px 0;
}
.journey-step-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--bg);
}
.journey-step-num {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.journey-step h3 {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text-h);
  margin: 0 0 6px;
}
.journey-step p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--text-sub);
  max-width: 42em;
}

/* ---------- RECENSIONI ---------- */
.reviews-section {
  background: var(--teal);
  padding: clamp(56px, 9vw, 108px) 0;
  overflow: hidden;
}
.reviews-carousel {
  overflow: hidden;
  border-radius: 26px;
  cursor: grab;
}
.reviews-carousel:active { cursor: grabbing; }
.reviews-track {
  display: flex;
  will-change: transform;
}
.review-slide {
  flex: 0 0 100%;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
}
.review-quote-icon { margin: 0 auto 18px; }
.review-text {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 auto 22px;
  max-width: 24em;
}
.review-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}
.review-city {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .25s, border-color .25s;
}
.carousel-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
}
.carousel-dots { display: flex; gap: 9px; }
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  opacity: .4;
  transition: opacity .3s, transform .3s;
  border: none;
  cursor: pointer;
}
.carousel-dot.is-active { opacity: 1; transform: scale(1.35); }

/* ---------- FAQ ---------- */
.faq-section { padding: clamp(56px, 9vw, 112px) 0; }
.faq-list { border-top: 1px solid var(--border-mid); }
.faq-item { border-bottom: 1px solid var(--border-mid); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 4px;
}
.faq-question-text {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  letter-spacing: -.01em;
  color: var(--text-h);
}
.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-icon);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: transform .35s, background .3s;
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); background: var(--teal); color: #fff; }
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.4,0,.2,1);
}
.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--text-sub);
  padding: 0 4px 24px;
  max-width: 60em;
}

/* ---------- CTA BOX ---------- */
.cta-section { padding: 0 0 clamp(56px, 9vw, 100px); }
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(140deg, #13586a, #0c3d49);
  padding: clamp(36px, 6vw, 68px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.cta-box-orb {
  position: absolute;
  top: -30%; right: -10%;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,106,.3), transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 14px;
  max-width: 16em;
  margin-inline: auto;
}
.cta-box p {
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 auto 28px;
  max-width: 34em;
}
.cta-box-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   CHI SONO PAGE
   ============================================================ */
.bio-section {
  padding: clamp(34px, 6vw, 68px) 0 clamp(40px, 6vw, 72px);
}
.bio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  align-items: flex-start;
}
.bio-content { flex: 1 1 280px; min-width: 280px; }
.bio-img-side { flex: 0 1 340px; min-width: 260px; display: flex; justify-content: center; }
.bio-h1 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.025em;
  color: var(--text-h);
  margin: 0 0 10px;
}
.bio-h1 em { font-style: italic; color: var(--teal); }
.bio-subtitle {
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bio-text {
  font-size: clamp(1.02rem, 2.3vw, 1.16rem);
  line-height: 1.74;
  color: var(--text-body);
  margin-bottom: 18px;
}
.bio-text em { font-style: italic; color: var(--text-h); }

.bio-img-wrap { position: relative; width: 100%; max-width: 360px; }
.bio-img-bg {
  position: absolute;
  inset: -12px -12px 20px;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(168,192,176,.4), rgba(201,168,106,.2));
  z-index: 0;
}
.bio-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 26px 54px -26px rgba(15,48,58,.5);
}
.bio-img-frame img { width: 100%; height: 112%; object-fit: cover; object-position: 50% 16%; }

/* Formazione timeline */
.formazione-section { background: var(--bg-alt); padding: clamp(52px, 8vw, 100px) 0; }
.formazione-timeline { position: relative; padding-left: 6px; }
.formazione-line {
  position: absolute;
  left: 7px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(var(--teal), rgba(15,76,92,.15));
}
.formazione-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 12px 0 24px;
}
.formazione-dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 5px;
  box-shadow: 0 0 0 5px var(--bg-alt), 0 0 0 7px rgba(15,76,92,.18);
}
.formazione-year {
  font-family: Fraunces, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 3px;
}
.formazione-title {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.22rem;
  letter-spacing: -.01em;
  color: var(--text-h);
  margin: 0 0 5px;
}
.formazione-desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--text-sub);
  max-width: 46em;
}

/* Societies + media */
.societies-section { padding: clamp(52px, 8vw, 100px) 0; }
.societies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}
.societies-content { flex: 1 1 300px; min-width: 280px; }
.societies-media { flex: 1 1 280px; min-width: 260px; }
.badges-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.society-badge {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-icon);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
}
.media-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(15,48,58,.5);
}
.media-img-wrap img { width: 100%; display: block; }
.media-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,40,48,.6), transparent 50%);
}
.media-img-caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.media-caption-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(251,250,248,.95);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.media-caption-label {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 700;
}
.media-caption-title {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

.chi-cta { padding: 0 0 clamp(56px, 9vw, 100px); }
.chi-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(140deg, #13586a, #0c3d49);
  padding: clamp(34px, 6vw, 60px) clamp(24px, 5vw, 60px);
  text-align: center;
}
.chi-cta-box h2 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 2.6rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 22px;
  max-width: 18em;
  margin-inline: auto;
}

/* ============================================================
   TRATTAMENTI PAGE
   ============================================================ */
.tratt-hero { padding: clamp(34px, 6vw, 68px) 0 clamp(20px, 4vw, 40px); }
.tratt-hero h1 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 7vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--text-h);
  margin: 0 0 18px;
}
.tratt-hero p {
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-body);
}
.tratt-grid-section { padding: clamp(24px, 4vw, 40px) 0 clamp(56px, 9vw, 100px); }
.tratt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.tratt-cta-box {
  margin-top: clamp(34px, 5vw, 52px);
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  background: var(--bg-alt);
}
.tratt-cta-box p {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: var(--text-h);
  margin: 0 auto 22px;
  max-width: 24em;
}

/* ============================================================
   CONTATTI PAGE
   ============================================================ */
.contatti-hero { padding: clamp(34px, 6vw, 68px) 0 clamp(24px, 4vw, 40px); }
.contatti-hero h1 {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 7vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--text-h);
  margin: 0 0 18px;
}
.contatti-hero p {
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-body);
}
.studi-section { padding: clamp(8px, 2vw, 24px) 0 clamp(40px, 6vw, 72px); }
.studi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
.studio-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(26,33,37,.08);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 1px 2px rgba(16,40,48,.04), 0 22px 48px -34px rgba(16,40,48,.42);
}
.studio-card-city {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.studio-card h3 {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  color: var(--text-h);
  margin: 0 0 6px;
}
.studio-card-addr {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-sub);
  margin: 0 0 22px;
}
.studio-card-actions { display: flex; flex-direction: column; gap: 10px; }
.studio-tel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  transition: background .25s;
  text-decoration: none;
}
.studio-tel-btn:hover { background: var(--teal-dark); }
.studio-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(15,76,92,.22);
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  transition: background .25s, border-color .25s;
  text-decoration: none;
}
.studio-map-btn:hover {
  background: rgba(15,76,92,.06);
  border-color: rgba(15,76,92,.45);
}

.contatti-chips-grid {
  margin-top: clamp(18px, 2.5vw, 24px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.contatti-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(26,33,37,.08);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 18px 40px -34px rgba(16,40,48,.4);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.contatti-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px -28px rgba(16,40,48,.5);
}
.contatti-chip-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--bg-icon);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contatti-chip-label {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.contatti-chip-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-h);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-deep);
  color: #fff;
  padding: clamp(44px, 6vw, 68px) 0 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
}
.footer-brand { flex: 1 1 280px; min-width: 240px; }
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 18px;
}
.footer-brand-name {
  font-family: Fraunces, serif;
  font-size: 18px;
}
.footer-brand-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 30em;
}
.footer-nav-col { flex: 0 1 auto; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 11px; }
.footer-nav-link {
  text-align: left;
  font-size: 15px;
  color: rgba(255,255,255,.82);
  transition: color .2s;
}
.footer-nav-link:hover { color: #fff; }
.footer-studios { flex: 0 1 auto; }
.footer-studio-list { display: flex; flex-direction: column; gap: 14px; }
.footer-studio-name { font-size: 14.5px; font-weight: 600; color: #fff; }
.footer-studio-info { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 3px; }

.footer-bottom {
  margin-top: clamp(36px, 5vw, 52px);
  padding: 22px var(--px);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-legal { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-credit { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-credit a {
  color: rgba(255,255,255,.72);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color .25s, border-color .25s;
}
.footer-credit a:hover { color: #fff; border-color: rgba(255,255,255,.7); }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 55;
  display: none;
}
@media (max-width: 859px) { .sticky-cta { display: flex; gap: 10px; } }
.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  border-radius: 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 14px 32px -10px rgba(15,48,58,.7);
  text-decoration: none;
}
.sticky-spacer { height: 80px; display: none; }
@media (max-width: 859px) { .sticky-spacer { display: block; } }

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  left: 0; top: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-100px, -100px);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(15,76,92,.4);
  transform: translate(-100px, -100px);
  transition: width .25s, height .25s, border-color .25s;
}
.cursor-ring.is-hovered {
  width: 52px; height: 52px;
  border-color: rgba(201,168,106,.65);
}

/* ============================================================
   CERTIFICATI + MEDIA & STAMPA PAGES
   ============================================================ */
/* Tighter nav to fit the two extra links */
.nav-link { padding: 8px 10px; font-size: 14.5px; }
.nav-link::after { left: 10px; right: 10px; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

/* Certificati — closing note */
.cert-note-section { padding: 0 0 clamp(56px, 9vw, 100px); }
.cert-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
  background: var(--bg-alt);
  border: 1px solid rgba(201,168,106,.22);
}
.cert-note-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,106,.14);
  color: var(--gold);
}
.cert-note p {
  margin: 0;
  font-size: clamp(.96rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: #4a565b;
}

/* Media & Stampa — highlight video */
.media-video-section { padding: clamp(20px, 3vw, 36px) 0 clamp(24px, 4vw, 44px); }
.media-video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0e2229;
  box-shadow: 0 30px 60px -30px rgba(15,48,58,.55);
}
.media-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #0e2229;
}
.media-video-cap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px clamp(16px, 3vw, 24px);
}
.media-video-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}
.media-video-title {
  font-family: Fraunces, serif;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: #fff;
  line-height: 1.3;
}

/* Documento in evidenza (certificato / locandina) */
.doc-feature-section { padding: clamp(8px, 2vw, 24px) 0 clamp(40px, 6vw, 72px); }
.doc-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 1.1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}
.doc-feature--press { margin-top: clamp(36px, 5vw, 60px); }
.doc-feature-figure {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26,33,37,.08);
  box-shadow: 0 26px 54px -28px rgba(15,48,58,.5);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.doc-feature-figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -26px rgba(15,48,58,.58);
}
.doc-feature-figure img { display: block; width: 100%; height: auto; }
.doc-feature-note {
  margin-top: 14px;
  font-size: .86rem;
  line-height: 1.5;
  color: #7a848a;
  font-style: italic;
}
@media (max-width: 760px) {
  .doc-feature { grid-template-columns: 1fr; }
  .doc-feature-figure { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   TRATTAMENTI — righe di approfondimento
   ============================================================ */
.tratt-detail-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vw, 88px);
}
.tratt-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}
.tratt-detail:nth-child(even) .tratt-detail-media { order: 2; }

.tratt-detail-media { display: flex; justify-content: center; }
.tratt-detail-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26,33,37,.08);
  box-shadow: 0 26px 54px -30px rgba(15,48,58,.5);
  max-width: 100%;
}
.tratt-detail-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.tratt-detail-figure--wide { width: 100%; }
.tratt-detail-figure--wide img { max-height: 560px; }
.tratt-detail-figure figcaption {
  padding: 12px 16px;
  font-size: .84rem;
  line-height: 1.45;
  color: #6a747a;
  background: var(--bg-alt);
}

/* Panel with icon for treatments without a photo */
.tratt-detail-iconpanel {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(201,168,106,.16), transparent 60%),
    linear-gradient(150deg, #16414c, #0e2229);
  box-shadow: 0 26px 54px -30px rgba(15,48,58,.5);
}
.tratt-detail-iconmark {
  width: clamp(72px, 12vw, 104px);
  height: clamp(72px, 12vw, 104px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,106,.4);
  color: var(--gold);
}
.tratt-detail-iconmark svg { width: 46px; height: 46px; }

.tratt-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.tratt-detail-icon {
  width: 46px; height: 46px;
  color: var(--teal);
  flex: none;
}
.tratt-detail-icon svg { width: 24px; height: 24px; }
.tratt-detail-title {
  font-family: Fraunces, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text-h);
  margin: 0 0 16px;
}
.tratt-detail-body p {
  font-size: clamp(1rem, 2.1vw, 1.08rem);
  line-height: 1.72;
  color: #4a565b;
  margin: 0 0 14px;
}
.tratt-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
}
.tratt-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--text-h);
}
.tratt-points li svg { color: var(--gold); flex: none; margin-top: 3px; }

@media (max-width: 760px) {
  .tratt-detail { grid-template-columns: 1fr; gap: 22px; }
  .tratt-detail:nth-child(even) .tratt-detail-media { order: 0; }
  .tratt-detail-figure img, .tratt-detail-figure--wide img { max-height: 460px; }
  .tratt-detail-iconpanel { aspect-ratio: 16 / 9; }
  .tratt-points { grid-template-columns: 1fr; gap: 10px; }
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-h1 { font-size: clamp(2rem, 11vw, 2.8rem); }
  .about-content, .about-img-side { order: unset; }
}
