@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600;6..96,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f1e2e1;
  --bg-soft: #ecd9d8;
  --surface: #f8eeed;
  --brand: #eddcdb;
  --brand-deep: #d6bbb6;
  --rose-powder: #f0dfde;
  --sand: #e9d8d6;
  --taupe: #8e7d78;
  --taupe-deep: #5a4b47;
  --gold: #b88e45;
  --gold-soft: rgba(184, 142, 69, 0.92);
  --text: #302624;
  --text-soft: rgba(48, 38, 36, 0.72);
  --line: rgba(90, 75, 71, 0.12);
  --shadow: 0 24px 60px rgba(76, 57, 52, 0.08);
  --container: min(1120px, calc(100% - 48px));
  --container-wide: min(1560px, calc(100% - 32px));
  --header-height: 124px;
  --radius: 28px;
  --ease: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 247, 246, 0.55), transparent 28%),
    linear-gradient(180deg, #f2e2e1 0%, #eddcdb 42%, #f3e5e4 100%);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.legal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(212, 176, 106, 0.55);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: transparent;
  transition: background var(--ease);
}

.site-header.is-overlay {
  position: fixed;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(242, 228, 227, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(76, 57, 52, 0.06);
}

.site-header.is-scrolled::after,
.site-header.is-solid::after {
  background: var(--line);
}

.nav-shell {
  width: var(--container-wide);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--text-soft);
  transition:
    color var(--ease),
    background-color var(--ease),
    transform var(--ease);
}

.nav-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-social:hover,
.nav-social:focus-visible {
  color: var(--text);
  background: rgba(255, 248, 244, 0.6);
  transform: translateY(-1px);
}

.nav-group.right {
  justify-content: flex-start;
  gap: 16px;
}

.lang-switch,
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-group.right .lang-switch {
  margin-left: 6px;
}

.mobile-lang-switch {
  display: none;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: transparent;
  transition:
    color var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    transform var(--ease);
}

.lang-pill:hover,
.lang-pill:focus-visible {
  color: var(--text);
  background: transparent;
  transform: translateY(-1px);
}

.lang-pill.is-disabled {
  cursor: default;
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  width: clamp(184px, 13vw, 206px);
  transform: none;
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--text);
}

.contact-page .contact-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.about-page .page-hero {
  padding-top: 250px;
}

.about-page .page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.06;
}

.about-page .page-hero-grid {
  align-items: start;
}

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

.editorial-page .page-hero {
  padding-top: 250px;
}

.editorial-page .page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.06;
}

.editorial-page .page-hero-grid {
  align-items: start;
}

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

.contact-page main > .section:first-of-type {
  padding-top: 270px;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(48, 38, 36, 0.06));
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.85);
  box-shadow: var(--shadow);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 176px 0 84px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 21, 18, 0.6) 0%, rgba(29, 21, 18, 0.18) 38%, rgba(29, 21, 18, 0.08) 100%),
    url("./assets/images/hero-beauty-lab.svg") center/cover no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(252, 249, 246, 0.92));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container-wide);
  min-height: calc(100svh - 260px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.hero-copy {
  max-width: 620px;
  color: #fff8f5;
  padding-top: 88px;
}

.hero-visual {
  justify-self: end;
  align-self: end;
  width: min(100%, 480px);
  min-height: 620px;
  padding-bottom: 18px;
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  pointer-events: none;
  z-index: 3;
}

.hero-visual::before {
  top: -14px;
  left: 10px;
  border-top: 1px solid rgba(255, 244, 241, 0.62);
  border-left: 1px solid rgba(255, 244, 241, 0.62);
}

.hero-visual::after {
  right: -14px;
  bottom: 4px;
  border-right: 1px solid rgba(255, 244, 241, 0.62);
  border-bottom: 1px solid rgba(255, 244, 241, 0.62);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(22px) saturate(0.84) brightness(1.02) contrast(0.95) drop-shadow(0 28px 42px rgba(48, 38, 36, 0.14));
  transform: translateY(12px) scale(1.045);
  transition:
    opacity 900ms ease,
    filter 1100ms ease,
    transform 1100ms ease;
}

.hero-slide.is-active {
  opacity: 0.94;
  filter: blur(0) saturate(0.9) brightness(1.04) contrast(0.96) drop-shadow(0 28px 42px rgba(48, 38, 36, 0.16));
  transform: translateY(0) scale(1.01);
}

.hero-slide.is-leaving {
  opacity: 0;
  filter: blur(18px) saturate(0.82) brightness(1) contrast(0.94) drop-shadow(0 18px 32px rgba(48, 38, 36, 0.1));
  transform: translateY(-10px) scale(0.995);
}

.hero-copy .eyebrow {
  color: var(--gold-soft);
}

.hero-copy .eyebrow::before {
  background: rgba(212, 176, 106, 0.55);
}

.hero-copy p {
  max-width: 480px;
  margin-top: 26px;
  color: rgba(255, 248, 245, 0.8);
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform var(--ease),
    background-color var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: rgba(255, 248, 245, 0.98);
  color: var(--text);
  box-shadow: 0 16px 32px rgba(59, 44, 41, 0.12);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.5) 50%, transparent 82%);
  transform: translateX(-135%);
  transition: transform 560ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(59, 44, 41, 0.18);
  transform: translateY(-3px) scale(1.01);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: translateX(135%);
}

.button-secondary {
  border-color: rgba(255, 244, 241, 0.42);
  color: #fff8f5;
  background: rgba(166, 130, 125, 0.54);
  box-shadow: 0 16px 30px rgba(39, 28, 26, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(179, 141, 136, 0.66);
  box-shadow: 0 20px 38px rgba(39, 28, 26, 0.2);
}

.button-neutral {
  background: transparent;
  border-color: rgba(90, 75, 71, 0.18);
  color: var(--text);
}

.button-soft {
  background: var(--brand);
  color: var(--text);
}

.page-hero {
  position: relative;
  padding: 210px 0 110px;
  overflow: clip;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 232, 231, 0.72), transparent 24%),
    radial-gradient(circle at 80% 28%, rgba(214, 187, 182, 0.32), transparent 20%),
    linear-gradient(180deg, rgba(243, 230, 229, 0.98), rgba(237, 220, 219, 0.9));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 50px;
  align-items: end;
}

.page-hero h1 {
  line-height: 1.06;
}

.lead {
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.hero-method-note {
  max-width: 68ch;
  margin: 34px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-method-note .kicker {
  margin-bottom: 14px;
}

.hero-method-note p {
  margin: 0 0 10px;
}

.page-summary {
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  color: var(--taupe-deep);
}

.page-summary strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-photo-frame {
  position: relative;
  padding: 16px;
  align-self: stretch;
}

.editorial-page .hero-photo-frame {
  padding: 0;
  width: min(100%, 560px);
  justify-self: end;
}

.about-page .hero-photo-frame {
  padding: 0;
  width: min(100%, 560px);
  justify-self: end;
}

.about-page .hero-photo-frame::before,
.about-page .hero-photo-frame::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  pointer-events: none;
  z-index: 3;
}

.about-page .hero-photo-frame::before {
  top: -14px;
  left: 14px;
  border-top: 1px solid rgba(90, 75, 71, 0.18);
  border-left: 1px solid rgba(90, 75, 71, 0.18);
}

.about-page .hero-photo-frame::after {
  right: -14px;
  bottom: 14px;
  border-right: 1px solid rgba(90, 75, 71, 0.18);
  border-bottom: 1px solid rgba(90, 75, 71, 0.18);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.about-page .hero-photo-frame > img,
.editorial-page .hero-photo-frame > img,
.editorial-page .hero-photo-frame > .image-panel,
.about-page .hero-photo-frame > .image-panel,
.first-editorial-section .hero-photo-frame > .image-panel {
  aspect-ratio: 5 / 6;
}

.editorial-page .hero-photo-frame > .image-panel,
.about-page .hero-photo-frame > .image-panel,
.first-editorial-section .hero-photo-frame > .image-panel {
  min-height: auto;
}

.editorial-page .hero-photo-frame::before,
.editorial-page .hero-photo-frame::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  pointer-events: none;
  z-index: 3;
}

.editorial-page .hero-photo-frame::before {
  top: -14px;
  left: 14px;
  border-top: 1px solid rgba(90, 75, 71, 0.2);
  border-left: 1px solid rgba(90, 75, 71, 0.2);
}

.editorial-page .hero-photo-frame::after {
  right: -14px;
  bottom: 14px;
  border-right: 1px solid rgba(90, 75, 71, 0.2);
  border-bottom: 1px solid rgba(90, 75, 71, 0.2);
}

.hero-cta-inline {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero-cta-inline h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
}

.hero-cta-inline p {
  color: var(--text-soft);
  max-width: 56ch;
}

.about-page .hero-cta-inline .button-soft {
  position: relative;
  overflow: hidden;
  background: #cf9f96;
  color: #2f2320;
  box-shadow: 0 14px 28px rgba(117, 80, 75, 0.16);
}

.about-page .hero-cta-inline .button-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 248, 244, 0.42) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.about-page .hero-cta-inline .button-soft:hover,
.about-page .hero-cta-inline .button-soft:focus-visible {
  background: #c58f86;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 34px rgba(117, 80, 75, 0.22);
}

.about-page .hero-cta-inline .button-soft:hover::before,
.about-page .hero-cta-inline .button-soft:focus-visible::before {
  transform: translateX(130%);
}

.editorial-page .page-hero .button-soft {
  position: relative;
  overflow: hidden;
  background: #cf9f96;
  color: #2f2320;
  box-shadow: 0 14px 28px rgba(117, 80, 75, 0.16);
}

.editorial-page .page-hero .button-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 248, 244, 0.42) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.editorial-page .page-hero .button-soft:hover,
.editorial-page .page-hero .button-soft:focus-visible {
  background: #c58f86;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 34px rgba(117, 80, 75, 0.22);
}

.editorial-page .page-hero .button-soft:hover::before,
.editorial-page .page-hero .button-soft:focus-visible::before {
  transform: translateX(130%);
}

.editorial-page .cta-panel .button-soft {
  position: relative;
  overflow: hidden;
  background: #cf9f96;
  color: #2f2320;
  box-shadow: 0 14px 28px rgba(117, 80, 75, 0.16);
}

.editorial-page .cta-panel .button-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 248, 244, 0.42) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.editorial-page .cta-panel .button-soft:hover,
.editorial-page .cta-panel .button-soft:focus-visible {
  background: #c58f86;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 34px rgba(117, 80, 75, 0.22);
}

.editorial-page .cta-panel .button-soft:hover::before,
.editorial-page .cta-panel .button-soft:focus-visible::before {
  transform: translateX(130%);
}

main section {
  position: relative;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0;
}

.first-editorial-section {
  padding-top: calc(var(--header-height) + 108px) !important;
}

.first-editorial-section .content-split.media-layout {
  align-items: start;
}

.section-header {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.section-header p {
  max-width: 62ch;
  color: var(--text-soft);
}

.section-header-compact {
  margin-bottom: 0;
}

.pricing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.pricing-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(90, 75, 71, 0.14);
  background: rgba(255, 250, 247, 0.58);
  color: var(--taupe-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.pricing-nav button:hover,
.pricing-nav button:focus-visible,
.pricing-nav button.is-active {
  transform: translateY(-2px);
  background: rgba(255, 252, 249, 0.88);
  border-color: rgba(90, 75, 71, 0.22);
}

.pricing-nav button.is-active {
  background: rgba(207, 159, 150, 0.2);
  border-color: rgba(117, 80, 75, 0.28);
  color: var(--text);
}

.pricing-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 24px;
}

.pricing-subnav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-bottom: 1px solid rgba(90, 75, 71, 0.18);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}

.pricing-subnav button:hover,
.pricing-subnav button:focus-visible,
.pricing-subnav button.is-active {
  color: var(--text);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.pricing-group {
  display: none;
  max-width: 980px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 75, 71, 0.12);
  animation: pricingFade 320ms ease;
}

.pricing-group.is-active {
  display: block;
}

.pricing-subgroup {
  display: none;
  animation: pricingFade 320ms ease;
}

.pricing-subgroup.is-active {
  display: block;
}

.pricing-group h3 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.price-list {
  display: grid;
  gap: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 16px 0;
  border-bottom: 1px solid rgba(90, 75, 71, 0.08);
}

.price-row span {
  color: var(--taupe-deep);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.45;
}

.price-row span strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
}

.price-row span em {
  display: block;
  max-width: 860px;
  font-style: normal;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.price-row strong {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.pricing-note {
  margin-top: 12px;
  color: var(--text-soft);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hair-price-table {
  display: grid;
  width: min(100%, 980px);
  border-top: 1px solid rgba(90, 75, 71, 0.14);
}

.hair-price-head,
.hair-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.22fr) minmax(112px, 0.22fr);
  gap: 20px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(90, 75, 71, 0.08);
}

.hair-price-head {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hair-price-head span:nth-child(n + 2),
.hair-price-row strong {
  text-align: right;
}

.hair-price-row span {
  color: var(--taupe-deep);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.35;
}

.hair-price-row strong {
  color: var(--text);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  font-weight: 700;
  white-space: nowrap;
}

@keyframes pricingFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-grid,
.story-grid,
.content-split,
.contact-grid,
.benefits-grid,
.services-layout,
.signature-grid,
.footer-grid {
  display: grid;
  gap: 34px;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: start;
}

.statement {
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--taupe-deep);
}

.detail-list {
  display: grid;
  gap: 20px;
  color: var(--text-soft);
}

.detail-list li {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.values-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.values-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), rgba(184, 142, 69, 0.55));
}

.values-list strong {
  color: var(--text);
}

.knowledge-list {
  display: grid;
  gap: 8px;
}

.knowledge-list article {
  display: grid;
  grid-template-columns: minmax(130px, 0.16fr) minmax(0, 0.84fr);
  gap: 10px 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(90, 75, 71, 0.1);
}

.knowledge-list article:last-child {
  border-bottom: 1px solid rgba(90, 75, 71, 0.1);
}

.knowledge-list .kicker {
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 8px;
}

.knowledge-list h3 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.knowledge-list p {
  grid-column: 2;
  max-width: 1040px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.section-header-tight {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-header-tight h2 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  text-transform: none;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-layout {
  gap: 70px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.service-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-feature:nth-child(even) .service-visual {
  order: 2;
}

.service-feature:nth-child(even) .service-copy {
  order: 1;
}

.service-visual {
  position: relative;
  padding-bottom: 18px;
  min-height: 440px;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  pointer-events: none;
  z-index: 3;
}

.service-visual::before {
  top: -14px;
  left: 10px;
  border-top: 1px solid rgba(90, 75, 71, 0.32);
  border-left: 1px solid rgba(90, 75, 71, 0.32);
}

.service-visual::after {
  right: -14px;
  bottom: 14px;
  border-right: 1px solid rgba(90, 75, 71, 0.32);
  border-bottom: 1px solid rgba(90, 75, 71, 0.32);
}

.service-visual img,
.story-media img,
.image-panel img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-visual img {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.service-feature:hover .service-visual img,
.story-grid:hover .story-media img,
.image-panel:hover img,
.contact-grid:hover .contact-media img {
  transform: scale(1.04);
}

.service-copy {
  display: grid;
  gap: 18px;
}

.service-copy p,
.copy-stack p,
.contact-card p,
.cta-panel p {
  color: var(--text-soft);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}

.inline-link::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  transition: transform var(--ease);
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: translateX(8px);
}

.story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: end;
}

.content-split.media-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.story-media,
.image-panel,
.contact-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 520px;
  box-shadow: var(--shadow);
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.first-editorial-section .copy-stack {
  align-content: start;
  gap: 24px;
  padding-top: 28px;
}

.first-editorial-section .kicker {
  display: inline-flex !important;
  color: var(--gold-soft) !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-bottom: 6px;
}

.first-editorial-section .hero-photo-frame {
  margin-top: 32px;
}

.first-editorial-section .image-panel,
.first-editorial-section .hero-photo-frame .image-panel {
  border-radius: 0 !important;
  min-height: auto !important;
}

.first-editorial-section .image-panel img,
.first-editorial-section .hero-photo-frame .image-panel img,
.first-editorial-section .hero-photo-frame img {
  transform: none !important;
  border-radius: 0 !important;
}

.first-editorial-section .image-panel:hover img,
.first-editorial-section .hero-photo-frame:hover .image-panel img {
  transform: none !important;
}

.signature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signature-item {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.signature-item p,
.benefit-item p,
.service-list li,
.contact-meta li,
.hours-list li {
  color: var(--text-soft);
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-item {
  padding-right: 16px;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 9px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}

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

.first-editorial-section .copy-stack {
  align-content: start;
}

.capelli-page .section {
  padding: 84px 0;
}

.capelli-page .soft-band {
  background: transparent;
}

.capelli-page .section-header {
  margin-bottom: 32px;
}

.capelli-page .capelli-intro-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.capelli-page .capelli-intro-grid .detail-list {
  margin-top: clamp(64px, 7vw, 122px);
}

.capelli-page .detail-list,
.capelli-page .service-list,
.capelli-page .benefits-grid {
  gap: 16px;
}

.capelli-page .detail-list li,
.capelli-page .service-list li {
  padding-bottom: 14px;
}

.capelli-page .service-list + .section-header,
.capelli-page .detail-list + .section-header {
  margin-top: 0;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(244, 233, 232, 0.28), rgba(243, 231, 230, 0.78)),
    linear-gradient(120deg, rgba(237, 220, 219, 0.48), rgba(255, 255, 255, 0));
}

.cta-section {
  padding: 0 0 120px;
}

.cta-panel {
  width: var(--container);
  margin: 0 auto;
  padding: 60px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: end;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 28px;
  align-content: start;
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.contact-card h2 {
  max-width: none;
  width: 100%;
  text-align: left;
  text-wrap: pretty;
  line-height: 1;
}

.contact-page .section-actions .button-soft {
  background: #d8b1ab;
  color: #2f2320;
}

.contact-page .section-actions .button-neutral {
  background: rgba(255, 248, 244, 0.82);
  border-color: rgba(90, 75, 71, 0.22);
  color: #2f2320;
}

.contact-page .section-actions .button-soft:hover,
.contact-page .section-actions .button-soft:focus-visible {
  background: #cfa19a;
}

.contact-page .section-actions .button-neutral:hover,
.contact-page .section-actions .button-neutral:focus-visible {
  background: rgba(255, 252, 249, 0.96);
}

.contact-map-panel {
  align-self: stretch;
  padding-top: 430px;
  width: 100%;
  max-width: 640px;
  justify-self: end;
}

.contact-mobile-map {
  display: none;
}

.contact-meta,
.hours-list {
  display: grid;
  gap: 14px;
}

.contact-meta strong,
.hours-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.contact-inline-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-inline-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(90, 75, 71, 0.16);
  color: var(--taupe-deep);
  background: rgba(255, 248, 244, 0.72);
  transition:
    transform var(--ease),
    background-color var(--ease),
    border-color var(--ease);
}

.contact-inline-social a:hover,
.contact-inline-social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 252, 249, 0.92);
  border-color: rgba(90, 75, 71, 0.24);
}

.contact-inline-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.parking-note {
  display: inline-block;
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form-intro {
  max-width: none;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.contact-form label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-deep);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(90, 75, 71, 0.22);
  background: transparent;
  padding: 0 0 12px;
  color: var(--text);
  font: inherit;
  border-radius: 0;
  outline: none;
  transition: border-color var(--ease), transform var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(48, 38, 36, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
  transform: translateY(-1px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 112px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-soft);
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #c79a62;
  border: 1px solid rgba(90, 75, 71, 0.3);
  border-radius: 4px;
}

.checkbox-field span {
  line-height: 1.55;
}

.checkbox-field a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.checkbox-field a:hover,
.checkbox-field a:focus-visible {
  color: var(--text);
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
}

.contact-form-status {
  min-height: 1.5rem;
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.contact-form-status.is-success {
  color: #47664c;
}

.contact-form-status.is-error {
  color: #8a4a4a;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(46, 36, 34, 0.36);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  z-index: 120;
}

.modal-overlay-wide {
  padding: 20px;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(46, 36, 34, 0.4);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  z-index: 150;
}

.legal-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-panel {
  position: relative;
  width: min(100%, 820px);
  max-height: min(86vh, 780px);
  overflow-y: auto;
  padding: 38px 34px 34px;
  background: linear-gradient(180deg, rgba(247, 238, 237, 0.99), rgba(241, 228, 227, 0.99));
  border: 1px solid rgba(90, 75, 71, 0.1);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(48, 38, 36, 0.16);
}

.legal-modal-panel h2 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.legal-copy {
  display: grid;
  gap: 14px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-copy strong {
  color: var(--text);
}

.legal-copy a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: none;
  overflow: visible;
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, rgba(247, 238, 237, 0.98), rgba(241, 228, 227, 0.98));
  border: 1px solid rgba(90, 75, 71, 0.1);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(48, 38, 36, 0.16);
}

.modal-panel-wide {
  width: min(100%, 760px);
}

.modal-panel-compact {
  width: min(100%, 560px);
  padding-bottom: 34px;
}

.modal-panel-compact .contact-form-intro {
  margin-bottom: 18px;
}

.modal-panel-compact .button {
  margin-top: 8px;
}

.modal-panel h2 {
  max-width: none;
  margin-top: 16px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 0.98;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.9);
  box-shadow: 0 12px 28px rgba(48, 38, 36, 0.08);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  inset: 22px 14px;
  height: 1.5px;
  background: var(--text);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.booking-fallback {
  margin-top: 14px;
  padding: 26px 0 4px;
  border-top: 1px solid rgba(90, 75, 71, 0.12);
  display: grid;
  gap: 18px;
}

.booking-fallback p {
  color: var(--text-soft);
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 1.65 / 1;
  min-height: auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(237, 220, 219, 0.88), rgba(255, 248, 245, 0.94));
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(0.95);
}

.map-consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.72), transparent 36%),
    linear-gradient(135deg, rgba(237, 220, 219, 0.96), rgba(247, 238, 237, 0.96));
  color: var(--text);
}

.map-consent p {
  max-width: 320px;
  color: var(--text-soft);
  line-height: 1.55;
}

.map-consent .button {
  justify-self: center;
}

.map-embed.is-loaded .map-consent {
  display: none;
}

.site-footer {
  padding: 40px 0 52px;
  border-top: 1px solid rgba(255, 244, 241, 0.08);
  background:
    linear-gradient(180deg, rgba(124, 95, 90, 0.96), rgba(101, 76, 72, 0.98));
  color: rgba(255, 244, 241, 0.92);
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(0, 0.6fr));
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand .brand-mark {
  justify-self: start;
  text-align: left;
  padding-top: 0;
}

.footer-brand .brand-logo {
  width: 168px;
}

.footer-brand-note {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 244, 241, 0.62);
}

.footer-title {
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 222, 200, 0.72);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 12px;
  color: rgba(255, 244, 241, 0.72);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 244, 241, 0.12);
}

.footer-legal-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 244, 241, 0.78);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--ease);
}

.footer-legal-links button:hover,
.footer-legal-links button:focus-visible {
  color: #fff8f4;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(247, 238, 237, 0.98), rgba(239, 224, 223, 0.98));
  border: 1px solid rgba(90, 75, 71, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(48, 38, 36, 0.18);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.72rem;
}

.inline-legal-button {
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  width: var(--container);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 244, 241, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 244, 241, 0.66);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 206, 202, 0.96), rgba(214, 178, 172, 0.96));
  color: #3b2c29;
  border: 1px solid rgba(255, 244, 241, 0.5);
  box-shadow: 0 20px 40px rgba(95, 67, 63, 0.2);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background-color var(--ease);
  animation: whatsappFloat 3.2s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(238, 216, 212, 1), rgba(220, 188, 182, 1));
  box-shadow: 0 24px 46px rgba(95, 67, 63, 0.26);
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-float span {
  display: none;
}

.mobile-social-float {
  display: none;
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-slide,
  .hero-slide.is-active,
  .hero-slide.is-leaving {
    transition: none;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 82px;
  }

  .nav-shell {
    justify-content: space-between;
    gap: 10px;
    min-height: var(--header-height);
  }

  .nav-group {
    display: flex;
    gap: 12px;
    min-width: 0;
  }

  .nav-group:not(.right) {
    order: 2;
  }

  .nav-group:not(.right) .nav-link:first-child,
  .nav-social {
    display: none;
  }

  .nav-group.right {
    order: 3;
    gap: 0;
  }

  .nav-group.right .nav-link {
    display: none;
  }

  .brand-mark {
    order: 1;
    justify-self: start;
    text-align: left;
    width: 94px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .lang-switch {
    display: flex;
    gap: 0;
    margin-left: 0;
  }

  .lang-switch .lang-pill + .lang-pill::before {
    content: "/";
    margin: 0 3px 0 2px;
    color: var(--text-soft);
  }

  .lang-pill {
    min-height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.66rem;
  }

  .nav-link {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .contact-page main > .section:first-of-type {
    padding-top: 208px;
  }

  .modal-panel h2 {
    max-width: none;
  }

  .nav-toggle {
    order: 4;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 26px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: 130;
  }

  .nav-toggle span {
    width: 26px;
    height: 1.7px;
    margin: 0;
    background: #2f2320;
  }

  .nav-toggle span + span {
    margin-top: 6px;
  }

  .menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7.7px) rotate(45deg);
  }

  .menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7.7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    padding: 112px 28px 36px;
    overflow-y: auto;
    background: #f1e2e1;
    box-shadow: 0 0 0 1px rgba(90, 75, 71, 0.06), 0 24px 60px rgba(76, 57, 52, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity var(--ease), visibility var(--ease);
    display: grid;
    align-content: start;
    gap: 18px;
    z-index: 120;
  }

  .mobile-lang-switch {
    display: flex;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(123, 96, 86, 0.12);
  }

  .menu-open .site-header,
  .menu-open .site-header.is-overlay,
  .menu-open .site-header.is-scrolled,
  .menu-open .site-header.is-solid {
    background: #f1e2e1;
    backdrop-filter: none;
    box-shadow: none;
  }

  .menu-open .site-header::after {
    background: rgba(90, 75, 71, 0.1);
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    font-family: "Bodoni Moda", "Times New Roman", serif;
    color: var(--text);
  }

  .mobile-menu a[href="./index.html"],
  .mobile-menu a[href="./chi-siamo.html"],
  .mobile-menu a[href="./contatti.html"],
  .mobile-menu a[href="./servizi-viso.html"],
  .mobile-lang-switch {
    display: none;
  }

  .services-layout .service-copy .inline-link {
    display: none !important;
  }

  .mobile-social-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: grid;
    gap: 10px;
  }

  .mobile-social-float a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(232, 206, 202, 0.96), rgba(214, 178, 172, 0.96));
    color: #3b2c29;
    border: 1px solid rgba(255, 244, 241, 0.5);
    box-shadow: 0 20px 40px rgba(95, 67, 63, 0.18);
    transition:
      transform var(--ease),
      box-shadow var(--ease),
      background-color var(--ease);
    animation: whatsappFloat 3.2s ease-in-out infinite;
  }

  .mobile-social-float a:hover,
  .mobile-social-float a:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(238, 216, 212, 1), rgba(220, 188, 182, 1));
    box-shadow: 0 24px 46px rgba(95, 67, 63, 0.24);
  }

  .mobile-social-float svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }

  .about-page .page-hero {
    padding-top: 210px;
  }

  .editorial-page .page-hero {
    padding-top: 210px;
  }

  .page-hero-grid,
  .intro-grid,
  .story-grid,
  .service-feature,
  .service-feature:nth-child(even),
  .cta-panel,
  .contact-grid,
  .footer-grid,
  .benefits-grid,
  .signature-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .service-feature:nth-child(even) .service-visual,
  .service-feature:nth-child(even) .service-copy {
    order: initial;
  }

  .story-media,
  .image-panel,
  .map-embed {
    min-height: 420px;
  }

  .hero-cta-inline {
    grid-template-columns: 1fr;
  }

  .contact-map-panel {
    padding-top: 0;
  }

  .contact-page .contact-map-panel {
    display: none;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .contact-page .contact-card {
    width: 100%;
    max-width: 430px;
    justify-self: center;
  }

  .contact-mobile-map {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    aspect-ratio: 1.55 / 1;
    min-height: 210px;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(95, 67, 63, 0.12);
  }

  .contact-mobile-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .first-editorial-section {
    padding-top: 190px !important;
  }

  .contact-meta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-page .contact-card,
  .contact-page .contact-card h2,
  .contact-page .contact-card p,
  .contact-page .contact-meta,
  .contact-page .hours-list,
  .contact-page .contact-meta li,
  .contact-page .hours-list li {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact-page .contact-card h2 {
    font-size: clamp(2.25rem, 9.6vw, 3rem);
    line-height: 1.02;
    text-align: center;
    text-wrap: balance;
  }

  .contact-page .contact-card p {
    max-width: 100%;
    text-align: center;
  }

  .contact-page .parking-note {
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 32px, 1120px);
    --container-wide: min(100% - 32px, 1320px);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    line-height: 1.65;
  }

  .nav-shell {
    width: min(100% - 20px, 1320px);
    gap: 8px;
  }

  .brand-mark {
    width: 74px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .hero {
    min-height: auto;
    padding: 98px 0 54px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    min-width: 0;
    align-items: start;
  }

  .hero-copy p,
  .lead {
    font-size: 1rem;
  }

  h1,
  .editorial-page .page-hero h1,
  .about-page .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13vw, 3.35rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  h2 {
    overflow-wrap: break-word;
  }

  .about-page .page-hero-grid,
  .editorial-page .page-hero-grid {
    display: contents;
  }

  .about-page .page-hero-grid > div:first-child,
  .editorial-page .page-hero-grid > div:first-child {
    display: contents;
  }

  .about-page .page-hero h1,
  .editorial-page .page-hero h1 {
    order: 1;
  }

  .about-page .page-hero .hero-photo-frame,
  .editorial-page .page-hero .hero-photo-frame {
    order: 2;
    justify-self: stretch;
    width: 100%;
    margin: 8px 0 12px;
  }

  .about-page .page-hero .hero-photo-frame > img,
  .editorial-page .page-hero .hero-photo-frame > img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .about-page .page-hero .lead,
  .editorial-page .page-hero .lead {
    order: 3;
  }

  .about-page .page-hero .hero-cta-inline,
  .editorial-page .page-hero .hero-method-note {
    order: 4;
  }

  .about-page .page-hero .cta-actions,
  .editorial-page .page-hero .cta-actions {
    order: 5;
  }

  .page-hero-inner,
  .service-copy,
  .section-header,
  .section-header-tight,
  .pricing-stage,
  .price-list,
  .price-row,
  .hero-method-note {
    min-width: 0;
    max-width: 100%;
  }

  .capelli-page .capelli-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .capelli-page .capelli-intro-grid .detail-list {
    margin-top: 0;
  }

  .knowledge-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .knowledge-list .kicker,
  .knowledge-list h3,
  .knowledge-list p {
    grid-column: 1;
  }

  .knowledge-list .kicker {
    grid-row: auto;
    margin-top: 0;
  }

  .knowledge-list h3 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .knowledge-list p {
    max-width: none;
  }

  .hair-price-head,
  .hair-price-row {
    grid-template-columns: minmax(0, 1fr) minmax(76px, auto) minmax(76px, auto);
    gap: 10px;
    padding: 12px 0;
  }

  .hair-price-head {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hair-price-row span,
  .hair-price-row strong {
    font-size: 0.9rem;
  }

  .section-actions,
  .cta-actions {
    align-items: flex-start;
  }

  body:not(.editorial-page) .service-copy .inline-link {
    display: none;
  }

  .hero-visual {
    justify-self: start;
    width: min(88vw, 360px);
    min-height: 420px;
    padding-bottom: 0;
  }

  .section {
    padding: 54px 0;
  }

  .section-header,
  .section-header-tight {
    margin-bottom: 28px;
  }

  .services-layout {
    gap: 44px;
  }

  .service-feature {
    gap: 26px;
  }

  .pricing-nav {
    margin-bottom: 24px;
  }

  .pricing-group {
    padding-top: 10px;
  }

  .price-row {
    padding: 12px 0;
  }

  .intro-grid,
  .story-grid,
  .content-split,
  .contact-grid,
  .benefits-grid,
  .signature-grid,
  .footer-grid {
    gap: 24px;
  }

  .capelli-page .section {
    padding: 54px 0;
  }

  .cta-section {
    padding-bottom: 64px;
  }

  .first-editorial-section {
    padding-top: 100px !important;
  }

  .page-hero {
    padding: 100px 0 62px;
  }

  .contact-page main > .section:first-of-type {
    padding-top: 100px;
  }

  .about-page .page-hero,
  .editorial-page .page-hero {
    padding-top: 100px;
  }

  .story-media,
  .image-panel,
  .map-embed,
  .service-visual {
    min-height: 300px;
  }

  .service-visual img,
  .service-feature:hover .service-visual img,
  .service-feature:focus-within .service-visual img {
    transform: none;
    transition: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .legal-modal-overlay {
    padding: 14px;
  }

  .legal-modal-panel {
    max-height: 88vh;
    padding: 34px 22px 26px;
    border-radius: 24px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .mobile-social-float {
    right: 16px;
    bottom: 78px;
  }

  .mobile-social-float a {
    width: 50px;
    height: 50px;
  }
}
