:root {
  --black: #050403;
  --black-2: #0d0b08;
  --panel: rgba(18, 15, 11, 0.82);
  --panel-solid: #14110d;
  --gold: #f2a900;
  --gold-2: #ffd36b;
  --cream: #fff3dc;
  --muted: #cdbfA8;
  --line: rgba(242, 169, 0, 0.24);
  --green: #25d366;
  --radius: 18px;
  --max: 1240px;
  --wide: 1480px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Lora", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #050403;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

body {
  margin: 0;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 16% -4%, rgba(242, 169, 0, 0.15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 211, 107, 0.08), transparent 24%),
    linear-gradient(180deg, #090704, #000 560px);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.68;
}

body::selection {
  background: var(--gold);
  color: #000;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
label:focus-visible {
  outline: 3px solid rgba(255, 211, 107, 0.86);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 850;
  line-height: 1.02;
  overflow-wrap: normal;
}

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

h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

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

p {
  margin: 0;
  overflow-wrap: break-word;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.container.wide {
  width: min(var(--wide), calc(100% - 40px));
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 3, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-container {
  width: min(var(--max), calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav-toggle,
.nav-button {
  display: none;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d8ccb8;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--gold);
  color: #070707;
}

.hero-luxury {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.1) 78%),
    url("../img/hero-atelier-real-v2.png") center right / cover no-repeat;
}

.hero-luxury::after {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, #000);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 span {
  color: var(--gold);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.62;
}

.hero-copy .lead {
  margin-top: 22px;
  color: #fff0d4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #080705;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(242, 169, 0, 0.24);
}

.button.ghost,
.btn.ghost {
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold-2);
}

.button.ghost:hover,
.btn.ghost:hover {
  background: rgba(242, 169, 0, 0.12);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(242, 169, 0, 0.16);
  backdrop-filter: blur(14px);
}

.metric {
  padding: 24px;
  background: rgba(0, 0, 0, 0.58);
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.8;
}

.metric span {
  color: #e8dbc4;
}

.section {
  position: relative;
  padding: 96px 0;
}

#programma-scuola,
#form-scuola,
#linea-adok {
  scroll-margin-top: 110px;
}

.section.alt {
  background:
    radial-gradient(circle at 82% 10%, rgba(242, 169, 0, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #050505;
  border-block: 1px solid rgba(242, 169, 0, 0.12);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.image-panel {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.academy-image {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.32)), url("../img/academy-tools-real-v2.png");
}

.cosmetic-image {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.22)), url("../img/slide1.JPG");
}

.real-image img,
.section-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.product-grid.compact .product-card {
  grid-template-columns: 1fr;
  align-content: start;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(242, 169, 0, 0.18);
  border-radius: 14px;
}

.product-card h3 {
  margin-top: 12px;
}

.product-card p {
  color: var(--muted);
}

.card,
.tip-card,
.contact-card,
.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.024)),
    rgba(0,0,0,0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card,
.tip-card {
  padding: 28px;
}

.card:hover,
.tip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 169, 0, 0.52);
}

.card,
.tip-card {
  transition: 0.2s ease;
}

.num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.card p,
.tip-card p,
.copy {
  color: var(--muted);
}

.tips-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tip-card {
  min-height: 210px;
}

.tip-card b {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080705;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 18px 0;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: scrollText 22s linear infinite;
}

@keyframes scrollText {
  to {
    transform: translateX(-50%);
  }
}

.band {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(242, 169, 0, 0.22), rgba(255,255,255,0.03)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.program-list,
.programma-lista {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.program-list li,
.programma-lista li {
  padding: 16px 18px;
  border: 1px solid rgba(242, 169, 0, 0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  color: var(--cream);
}

.check-icon {
  color: var(--gold);
  margin-right: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 92px;
  background:
    radial-gradient(circle at 78% 12%, rgba(242,169,0,0.2), transparent 24%),
    linear-gradient(110deg, rgba(242,169,0,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent);
  border-bottom: 1px solid rgba(242, 169, 0, 0.14);
}

.page-hero::after {
  position: absolute;
  right: 8vw;
  bottom: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(242, 169, 0, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .lead {
  margin-top: 22px;
}

.cosmetic-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(84svh - 72px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 16%, rgba(242, 169, 0, 0.2), transparent 25%),
    linear-gradient(115deg, #020201 0%, #070503 36%, #1a1206 100%);
}

.cosmetic-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.12) 58%, rgba(0,0,0,0.42)),
    radial-gradient(circle at 18% 22%, rgba(242, 169, 0, 0.11), transparent 34%);
  opacity: 1;
  content: "";
}

.cosmetic-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #000);
  content: "";
}

.cosmetic-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.64fr) minmax(720px, 1.36fr);
  gap: clamp(54px, 5.6vw, 112px);
  align-items: center;
  width: min(1680px, calc(100% - 64px));
  padding: clamp(54px, 5vw, 86px) 0 clamp(92px, 7vw, 118px);
}

.cosmetic-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 4.2vw, 5rem);
  text-wrap: balance;
}

.cosmetic-hero-copy .lead {
  margin-top: 24px;
  max-width: 600px;
  color: #fff0d4;
}

.cosmetic-hero-image {
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(242, 169, 0, 0.35);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.62);
  overflow: hidden;
  transform: translateY(10px);
}

.cosmetic-hero-image::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 211, 107, 0.22);
  border-radius: 14px;
  pointer-events: none;
  content: "";
}

.cosmetic-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 8.35;
  object-fit: cover;
  border-radius: 0;
}

.cosmetic-hero-image figcaption {
  padding: 18px 22px 20px;
  color: #eadcc6;
  font-size: 1rem;
  font-weight: 700;
}

.cosmetic-diagnosis {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  border-block: 0;
  background: transparent;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.diagnosis-grid article {
  min-height: 158px;
  padding: 26px 28px;
  border: 1px solid rgba(242, 169, 0, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
    rgba(5, 4, 3, 0.9);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.diagnosis-grid article:last-child {
  border-right: 1px solid rgba(242, 169, 0, 0.2);
}

.diagnosis-grid span {
  display: none;
}

.product-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.diagnosis-grid p {
  color: var(--muted);
}

.diagnosis-grid h3,
.cosmetic-product h3,
.result-card h3,
.timeline-card h3,
.card h3 {
  margin-bottom: 10px;
}

.adok-line {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(26px, 3.6vw, 54px);
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(242, 169, 0, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
    rgba(0,0,0,0.28);
  box-shadow: var(--shadow);
}

.adok-line-copy {
  display: grid;
  align-content: center;
  padding: clamp(10px, 1.5vw, 22px);
}

.adok-line-copy h2,
.treatment-copy h2 {
  max-width: 760px;
}

.adok-line-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}

.adok-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cosmetic-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cosmetic-product,
.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(0,0,0,0.22);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cosmetic-product:hover,
.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 169, 0, 0.48);
}

.cosmetic-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(242, 169, 0, 0.16);
}

.cosmetic-product div,
.result-card div {
  padding: 24px;
}

.cosmetic-product p,
.result-card p {
  color: var(--muted);
}

.treatment-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(640px, 1.28fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(242, 169, 0, 0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
}

.technical-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.technical-list span {
  padding: 14px 16px;
  border: 1px solid rgba(242, 169, 0, 0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  color: var(--cream);
  font-weight: 800;
}

.treatment-images {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(240px, 0.95fr);
  gap: 16px;
  align-items: center;
}

.treatment-images img {
  width: 100%;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at center, rgba(242, 169, 0, 0.08), transparent 55%),
    #050505;
}

.treatment-images img:first-child {
  aspect-ratio: 16 / 9;
}

.treatment-images img:last-child {
  aspect-ratio: 1 / 1;
}

.treatment-images img:first-child {
  transform: none;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.result-card.wide {
  grid-column: span 1;
}

.cosmetic-cta {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 42%, rgba(0,0,0,0.28) 100%),
    linear-gradient(110deg, rgba(242, 169, 0, 0.24), rgba(255,255,255,0.02)),
    url("../img/slide1.JPG") right center / auto 130% no-repeat,
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.page-cosmetica .section {
  padding: clamp(64px, 6vw, 84px) 0;
}

.page-cosmetica .cosmetic-diagnosis + .section {
  padding-top: clamp(62px, 5vw, 78px);
}

.page-cosmetica .section + .section {
  margin-top: -1px;
}

.page-cosmetica .section-head {
  margin-bottom: 34px;
}

.page-cosmetica .section-head .lead {
  max-width: 760px;
}

.page-cosmetica .cosmetic-product-grid,
.page-cosmetica .result-grid {
  align-items: stretch;
}

.page-cosmetica .cosmetic-product,
.page-cosmetica .result-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    #070706;
}

.page-cosmetica .cosmetic-product img,
.page-cosmetica .result-card img {
  display: block;
}

.page-cosmetica .treatment-layout {
  overflow: hidden;
}

.page-cosmetica .cosmetic-cta h2,
.page-cosmetica .cosmetic-cta .lead {
  max-width: 650px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.85);
}

.cosmetic-cta .lead {
  margin: 18px 0 30px;
}

.story-hero {
  position: relative;
  min-height: calc(82svh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.72) 42%, rgba(0,0,0,0.18) 78%),
    url("../img/story-salon-real-v2.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.story-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #000);
  content: "";
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.story-hero h1 {
  max-width: 760px;
}

.story-hero .lead {
  margin-top: 24px;
  color: #fff0d4;
}

.story-image {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28)), url("../img/story-salon-real-v2.png");
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.timeline-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.timeline-card p {
  color: var(--muted);
}

.form-scuola,
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.form-scuola input,
.form-scuola textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 169, 0, 0.28);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--cream);
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-scuola input::placeholder,
.form-scuola textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 243, 220, 0.56);
}

.form-scuola textarea,
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-scuola input:focus,
.form-scuola textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(242, 169, 0, 0.4);
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 5px rgba(242, 169, 0, 0.1);
}

.privacy-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-label input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--gold);
}

.privacy-label a {
  color: var(--gold);
}

.contact-card {
  padding: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.contact-card a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.contact-card a.button,
.contact-card a.btn {
  color: #080705;
}

.contact-card a.button.ghost,
.contact-card a.btn.ghost {
  color: var(--gold-2);
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--line);
  background: #030302;
}

.footer-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 86px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--gold);
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: #dccfb9;
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #948a7b;
}

.whatsapp-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 55px rgba(37, 211, 102, 0.28);
}

.mobile-action-bar {
  display: none;
}

#cookie-banner {
  position: fixed;
  left: auto;
  right: 18px;
  bottom: 82px;
  z-index: 9999;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow);
  text-align: left;
  font-size: 0.9rem;
}

#cookie-banner a {
  color: var(--gold);
}

#accept-cookies {
  margin-top: 10px;
  padding: 9px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  cursor: pointer;
}

.content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.privacy-section,
.thankyou {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 98px) 0;
}

.privacy-section h1,
.thankyou h1 {
  margin-bottom: 18px;
  color: var(--cream);
  text-align: left;
}

.privacy-section h2 {
  margin: 44px 0 12px;
  color: var(--gold-2);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.privacy-section p,
.privacy-section li,
.thankyou p {
  max-width: 82ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.privacy-section a,
.thankyou a {
  color: var(--gold-2);
  font-weight: 700;
}

.privacy-section ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.thankyou {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.content h1,
.content h2,
.content h3 {
  color: var(--gold);
  text-align: left;
  margin-top: 46px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 1.05rem;
}

.content ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.quote,
blockquote {
  margin: 34px 0;
  padding: 28px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(242, 169, 0, 0.08);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.22;
}

@media (max-width: 920px) {
  h1 {
    font-size: clamp(2.75rem, 8vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 6vw, 3.25rem);
  }

  .section-head {
    margin-bottom: 34px;
  }

  .nav-container {
    min-height: 76px;
    padding: 8px 0;
  }

  .logo {
    width: 64px;
    height: 64px;
  }

  .nav-button {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
  }

  .nav-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
  }

  .nav-toggle:focus-visible + .nav-button {
    outline: 3px solid rgba(255, 211, 107, 0.86);
    outline-offset: 4px;
  }

  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
    content: "";
  }

  .nav-button span::before {
    transform: translateY(-7px);
  }

  .nav-button span::after {
    transform: translateY(5px);
  }

  .nav-container nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 3, 3, 0.96);
    backdrop-filter: blur(18px);
    transition: max-height 0.24s ease;
  }

  .nav-container nav ul {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nav-container nav a {
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(242, 169, 0, 0.18);
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-toggle:checked ~ .nav-button span {
    transform: rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-button span::before {
    transform: rotate(90deg);
  }

  .nav-toggle:checked ~ .nav-button span::after {
    opacity: 0;
  }

  .nav-toggle:checked ~ nav {
    max-height: 360px;
  }

  .hero-luxury {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.95) 56%),
      url("../img/hero-atelier-real-v2.png") 68% top / auto 52% no-repeat,
      #000;
  }

  .hero-inner {
    padding: 340px 0 72px;
  }

  .split,
  .adok-line,
  .treatment-layout,
  .contact-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .cosmetic-hero-grid {
    width: min(var(--max), calc(100% - 32px));
    grid-template-columns: 1fr;
  }

  .cosmetic-hero-copy h1 {
    font-size: clamp(2.9rem, 8vw, 4.2rem);
  }

  .cosmetic-hero-image {
    transform: none;
  }

  .cosmetic-diagnosis {
    margin-top: -38px;
  }

  .card-grid,
  .tips-row,
  .timeline-grid,
  .product-grid.compact {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .diagnosis-grid,
  .cosmetic-product-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .adok-line-image {
    min-height: auto;
  }

  .adok-line-image img {
    aspect-ratio: 4 / 3;
  }

  .treatment-images {
    grid-template-columns: 1fr 1fr;
  }

  .cosmetic-cta {
    background:
      linear-gradient(110deg, rgba(242, 169, 0, 0.24), rgba(0,0,0,0.76)),
      var(--panel-solid);
  }

  .band-content {
    display: grid;
  }
}

@media (max-width: 620px) {
  .nav-container {
    width: min(100% - 22px, var(--max));
  }

  body {
    padding-bottom: 24px;
  }

  .nav-container nav ul {
    grid-template-columns: 1fr;
  }

  .actions,
  .band-content .button {
    width: 100%;
  }

  .actions .button,
  .actions .btn,
  .band-content .button,
  .form-scuola .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-inner {
    padding-top: 238px;
  }

  h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.85rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.12;
  }

  h3 {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  .contact-card h2 {
    font-size: clamp(1.35rem, 5.7vw, 1.8rem);
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .lead {
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .hero-copy,
  .cosmetic-hero-copy,
  .story-hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .cosmetic-hero-copy h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.1rem);
  }

  .cosmetic-hero {
    min-height: auto;
  }

  .cosmetic-hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.96) 62%);
  }

  .cosmetic-hero-grid {
    padding: 28px 0 96px;
  }

  .cosmetic-hero-image {
    display: block;
    order: -1;
  }

  .cosmetic-hero-image img {
    aspect-ratio: 16 / 10;
  }

  .cosmetic-hero-image figcaption {
    font-size: 0.86rem;
    padding: 12px 14px 14px;
  }

  .diagnosis-grid article {
    min-height: auto;
    padding: 24px;
    border: 1px solid rgba(242, 169, 0, 0.2);
    border-radius: 16px;
    background:
      linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
      rgba(5, 4, 3, 0.92);
  }

  .cosmetic-diagnosis {
    margin-top: -54px;
  }

  .diagnosis-grid {
    border-radius: 16px;
  }

  .adok-line,
  .treatment-layout {
    padding: 16px;
  }

  .diagnosis-grid article:last-child {
    border-right: 1px solid rgba(242, 169, 0, 0.2);
    border-bottom: 1px solid rgba(242, 169, 0, 0.2);
  }

  .adok-line-image img {
    aspect-ratio: 1 / 1;
    object-position: center top;
  }

  .technical-list,
  .treatment-images {
    grid-template-columns: 1fr;
  }

  .treatment-images img:first-child {
    transform: none;
  }

  .cosmetic-cta {
    padding: 30px;
  }

  .story-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.94) 58%),
      url("../img/story-salon-real-v2.png") 70% top / auto 54% no-repeat,
      #000;
  }

  .story-hero-inner {
    padding: 270px 0 70px;
  }

  .metric-strip,
  .card-grid,
  .tips-row,
  .timeline-grid,
  .product-grid.compact {
    grid-template-columns: 1fr;
  }

  .metric + .metric {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 64px 0;
  }

  .band {
    padding: 28px;
  }

  .image-panel {
    min-height: 360px;
  }

  .whatsapp-button {
    display: none;
  }

  .mobile-action-bar {
    display: none;
  }

  #cookie-banner {
    right: 10px;
    top: 88px;
    bottom: auto;
    left: 10px;
    max-width: none;
    padding: 12px;
    font-size: 0.84rem;
    text-align: center;
  }

  #accept-cookies {
    padding: 8px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
