:root {
  --serif-display: "Cinzel", Georgia, "Times New Roman", serif;
  --ink: #171513;
  --muted: #635f59;
  --line: #ded8cf;
  --paper: #fbfaf7;
  --veil: #f6f2eb;
  --section-veil: linear-gradient(rgba(246, 242, 235, 0.97), rgba(246, 242, 235, 0.97)),
    url("docx_assets/inner-pages-bg.png") center center / cover fixed no-repeat;
  --cream: #f3efe6;
  --clay: #a66a4d;
  --gold: #c08a3c;
  --olive: #55614d;
  --deep: #202725;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 24, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

main {
  flex: 1;
}

body[data-page="shop"] main {
  display: flex;
}

body[data-page="home"] {
  background: #141312;
}

.home-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  animation: homeMediaIn 0.7s ease-out both;
}

body[data-page="home"]::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(18, 16, 14, 0.18);
}

body[data-page="home"] .site-header,
body[data-page="home"] main,
body[data-page="home"] .site-footer {
  position: relative;
  z-index: 2;
}

body:not([data-page="home"]) {
  background: var(--paper);
}

body:not([data-page="home"])::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(251, 250, 247, 0.12), rgba(251, 250, 247, 0.18)),
    url("docx_assets/inner-pages-bg.png") center center / cover no-repeat;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 12px clamp(18px, 3vw, 46px);
  border-bottom: 1px solid rgba(192, 138, 60, 0.24);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(10px) saturate(1.02);
  box-shadow: 0 18px 52px rgba(28, 24, 20, 0.08);
}

.brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 10px;
  width: 74px;
  height: 50px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 70px;
  height: 70px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 10px 18px rgba(28, 24, 20, 0.16));
  transform: translateY(-50%) scale(1.06);
  transform-origin: left center;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  width: max-content;
  max-width: calc(100vw - 390px);
  color: rgba(23, 21, 19, 0.72);
  font-size: 0.94rem;
  transform: translate(-50%, -50%);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a.active {
  color: var(--ink);
  font-weight: 800;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  z-index: 2;
  justify-self: end;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.cart-button {
  min-height: 42px;
  border: 1px solid rgba(192, 138, 60, 0.34);
  background: rgba(255, 255, 255, 0.58);
  padding: 0 14px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.cart-button span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  place-items: center;
  color: var(--white);
  background: var(--olive);
  font-size: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, #171513, #33291f 58%, #6f4d2c);
  box-shadow: 0 12px 26px rgba(28, 24, 20, 0.16);
}

.button-primary:hover {
  background:
    linear-gradient(135deg, #2c2119, #7b5730);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 64vh;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background: var(--section-veil);
  backdrop-filter: none;
}

.page-hero h1 {
  color: var(--ink);
  font-size: 4.8rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-hero img {
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero img.wide-readable-image,
.split-media img.wide-readable-image,
.single-path-shop-preview img.wide-readable-image,
.percorsi-product-image img.wide-readable-image {
  aspect-ratio: 1672 / 941;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.58);
}

.split-media.wide-media {
  min-height: 0;
}

.legal-section {
  background: var(--section-veil);
  padding-block: clamp(76px, 9vw, 132px);
}

.legal-shell {
  width: min(1060px, calc(100% - 36px));
  margin-inline: auto;
}

.legal-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.legal-heading h1,
.legal-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-heading-secondary {
  margin-top: clamp(62px, 8vw, 108px);
}

.legal-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(192, 138, 60, 0.24);
  box-shadow: 0 24px 70px rgba(28, 24, 20, 0.08);
  padding: clamp(26px, 5vw, 62px);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.18;
  text-transform: none;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
}

.legal-card a {
  color: var(--deep);
  font-weight: 800;
}

.legal-card ul {
  margin: 12px 0 24px;
  padding-left: 1.1rem;
}

.legal-card li {
  margin: 6px 0;
}

.hero-image,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  filter: saturate(0.82) contrast(1.05) brightness(0.78);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.5), rgba(21, 33, 35, 0.3) 50%, rgba(16, 14, 12, 0.42)),
    linear-gradient(180deg, rgba(20, 23, 22, 0.24) 0%, rgba(16, 14, 12, 0.28) 46%, rgba(16, 14, 12, 0) 78%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 86%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 86%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(246, 242, 235, 0) 30%, rgba(246, 242, 235, 0.28) 52%, rgba(246, 242, 235, 0.64) 72%, rgba(246, 242, 235, 0.9) 88%, var(--veil) 100%);
  backdrop-filter: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  padding: clamp(80px, 12vw, 150px) clamp(22px, 6vw, 84px);
  color: var(--white);
  text-align: center;
  animation: heroTextIn 0.55s ease-out both;
}

.hero-content h1,
.hero-content p {
  margin-inline: auto;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 20px;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 5.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  font-family: var(--serif-display);
  font-weight: 700;
  line-height: 0.94;
}

.hero-title-gold {
  display: block;
  color: #d8a551;
}

.hero-title-white {
  display: block;
  color: var(--white);
  font-size: 1em;
  line-height: inherit;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 670px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

main > section + section {
  margin-top: 0;
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

.intro-grid .section-heading {
  margin-inline: 0;
  text-align: left;
}

.feature-grid,
.detail-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.detail-grid article,
.values-grid article,
.delivery-note,
.form-card,
.contact-cards article {
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-grid article,
.detail-grid article,
.values-grid article {
  min-height: 210px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-grid span {
  color: var(--gold);
  font-weight: 900;
}

.problem-section {
  background: var(--cream);
}

.problem-section .section-heading {
  margin-left: auto;
  text-align: right;
}

body[data-page="home"] .intro-grid,
body[data-page="home"] .problem-section,
body[data-page="home"] .split-section {
  background: var(--section-veil);
  backdrop-filter: none;
}

body[data-page="home"] .intro-grid {
  margin-top: -1px;
}

body[data-page="home"] .intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

body[data-page="home"] .intro-grid .section-heading {
  position: relative;
  margin-bottom: 0;
  padding-left: 0;
}

body[data-page="home"] .intro-grid .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

body[data-page="home"] .intro-grid .feature-grid article {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(35, 28, 20, 0.07);
}

body[data-page="home"] .intro-grid .feature-grid article:nth-child(2),
body[data-page="home"] .intro-grid .feature-grid article:nth-child(4) {
  transform: translateY(34px);
}

body[data-page="home"] .intro-grid .feature-grid article:nth-child(2):hover,
body[data-page="home"] .intro-grid .feature-grid article:nth-child(4):hover {
  transform: translateY(28px);
}

body[data-page="home"] main > .split-section:last-child {
  padding-bottom: clamp(24px, 3vw, 42px);
}

body[data-page="home"] main > .split-section .split-media,
body[data-page="home"] main > .split-section .split-copy {
  transform: translateX(clamp(72px, 9vw, 220px));
}

body:not([data-page="home"]) .split-section {
  background: var(--section-veil);
  backdrop-filter: none;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  overflow: visible;
}

body[data-page="home"] .problem-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
}

body[data-page="home"] .problem-section .section-heading {
  margin: 0;
  text-align: left;
}

body[data-page="home"] .problem-section .section-heading h2 {
  max-width: 520px;
}

body[data-page="home"] .problem-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(156px, 12vw);
  gap: clamp(12px, 1.6vw, 20px);
}

.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body[data-page="home"] .problem-card {
  min-height: auto;
  height: 100%;
  padding: clamp(18px, 2vw, 28px);
  box-shadow: 0 18px 50px rgba(30, 24, 18, 0.08);
}

body[data-page="home"] .problem-card h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
}

body[data-page="home"] .problem-card p {
  max-width: 32ch;
}

body[data-page="home"] .problem-card:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}

body[data-page="home"] .problem-card:nth-child(2) {
  grid-column: 4 / span 3;
  grid-row: 1;
}

body[data-page="home"] .problem-card:nth-child(3) {
  grid-column: 4 / span 3;
  grid-row: 2;
}

body[data-page="home"] .problem-card:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 3;
}

body[data-page="home"] .problem-card:nth-child(5) {
  grid-column: 3 / span 4;
  grid-row: 3;
}

body[data-page="home"] .problem-card:nth-child(1) h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.problem-card > * {
  position: relative;
  z-index: 1;
}

.hair-loss-card {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.22), rgba(23, 21, 19, 0.78)),
    url("docx_assets/home-caduta-capelli-card-2026.png") center 48% / cover;
  border-color: rgba(192, 138, 60, 0.38);
}

.hair-loss-card span {
  color: #e0ad61;
}

.volume-card {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.18), rgba(23, 21, 19, 0.76)),
    url("docx_assets/home-densita-volume-card-2026.png") center 44% / cover;
  border-color: rgba(192, 138, 60, 0.38);
}

.volume-card span {
  color: #e0ad61;
}

.scalp-card {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.16), rgba(23, 21, 19, 0.76)),
    url("docx_assets/home-cuoio-capelluto-card-2026.png") center 34% / cover;
  border-color: rgba(192, 138, 60, 0.38);
}

.scalp-card span {
  color: #e0ad61;
}

.problem-card.dark {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.problem-card.dark.male-baldness-card {
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.18), rgba(23, 21, 19, 0.82)),
    url("docx_assets/home-calvizie-uomo-card-2026.png") center 34% / cover;
  border-color: rgba(192, 138, 60, 0.38);
}

.male-baldness-card span {
  color: #e0ad61;
}

.problem-card.dark.female-thinning-card {
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.18), rgba(23, 21, 19, 0.82)),
    url("docx_assets/home-diradamento-donna-card-2026-06-16.png") center 42% / cover;
  border-color: rgba(192, 138, 60, 0.38);
}

.female-thinning-card span {
  color: #e0ad61;
}

.problem-card:hover,
.feature-grid article:hover,
.detail-grid article:hover,
.values-grid article:hover,
body[data-page="chi-siamo"] .about-list-panel:hover,
body[data-page="chi-siamo"] .method-columns article:hover,
body[data-page="chi-siamo"] .about-principles article:hover,
body[data-page="chi-siamo"] .mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 138, 60, 0.55);
  box-shadow: 0 24px 52px rgba(28, 24, 20, 0.12);
}

.problem-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.split-section,
.contact-section,
.booking-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.split-section.reverse .split-media {
  order: 2;
}

.split-media {
  min-height: 460px;
}

.split-media img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.split-media.wide-media img.wide-readable-image,
.split-media img.wide-readable-image {
  min-height: 0;
}

.split-copy,
.about-copy,
.contact-copy,
.booking-copy {
  max-width: 660px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--olive);
}

.protocols {
  background: var(--deep);
  color: var(--white);
}

.protocols .section-heading p:not(.eyebrow) {
  color: #d8d2c8;
}

.protocol-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.protocol-list span,
.expectations span,
.shop-controls button {
  border: 1px solid rgba(192, 138, 60, 0.48);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-section {
  background: var(--section-veil);
  backdrop-filter: none;
}

body[data-page="trattamenti"] .detail-section .section-heading,
body[data-page="uomo"] .detail-section .section-heading,
body[data-page="donna"] .detail-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

body[data-page="trattamenti"] .detail-section .section-heading p:not(.eyebrow),
body[data-page="uomo"] .detail-section .section-heading p:not(.eyebrow),
body[data-page="donna"] .detail-section .section-heading p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 820px;
}

.shop-section {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.58), rgba(247, 243, 234, 0.76) 46%, rgba(235, 226, 212, 0.82)),
    rgba(247, 243, 234, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(96px, 8vw, 126px);
  padding-bottom: clamp(76px, 7vw, 112px);
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.shop-controls button {
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.shop-controls button.active,
.shop-controls button:hover {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin: clamp(18px, 3vw, 38px) 0 0;
}

.shop-category-card {
  position: relative;
  min-height: min(440px, 54vh);
  overflow: hidden;
  border: 1px solid rgba(192, 138, 60, 0.5);
  background: var(--ink);
  cursor: pointer;
  box-shadow: 0 30px 80px rgba(28, 24, 20, 0.18);
}

.shop-category-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.96) contrast(1.02) brightness(0.96);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.shop-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.04) 8%, rgba(20, 17, 14, 0.58)),
    linear-gradient(90deg, rgba(20, 17, 14, 0.3), rgba(20, 17, 14, 0.04) 62%),
    linear-gradient(135deg, rgba(224, 173, 97, 0.16), rgba(251, 250, 247, 0.08) 48%, transparent 72%);
}

.category-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--white);
  text-align: left;
}

.category-copy small {
  color: #e0ad61;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-copy strong {
  max-width: 90%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2vw, 2.3rem);
  font-weight: 800;
  line-height: 0.98;
}

.category-copy em {
  max-width: 82%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.45;
}

.category-copy b {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid rgba(224, 173, 97, 0.76);
  color: #e0ad61;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-category-card:hover img,
.shop-category-card.active img {
  transform: scale(1.12);
  filter: saturate(1.02) contrast(1.04) brightness(1.04);
}

.shop-category-card.active {
  border-color: var(--gold);
}

.woocommerce-section {
  align-items: stretch;
}

.woocommerce-section .woocommerce-products-header {
  max-width: 1320px;
  width: min(100%, 1320px);
  margin: 0 auto 18px;
}

.woocommerce-section .woocommerce-products-header__title.page-title {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.woocommerce-section .woocommerce-result-count,
.woocommerce-section .woocommerce-ordering {
  float: none !important;
}

.woocommerce-section .woocommerce-result-count {
  width: min(100%, 1320px);
  margin: 0 auto 26px !important;
  color: rgba(28, 24, 20, 0.62);
  font-size: 0.95rem;
}

.woocommerce-section .woocommerce-ordering {
  width: min(100%, 1320px);
  margin: -58px auto 36px !important;
  text-align: right;
}

.woocommerce-section .woocommerce-ordering select {
  min-width: 230px;
  border: 1px solid rgba(192, 138, 60, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  box-shadow: 0 14px 34px rgba(28, 24, 20, 0.06);
}

.woocommerce-section ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  width: min(100%, 1320px);
  margin: clamp(22px, 4vw, 54px) auto 0 !important;
  padding: 0 !important;
  list-style: none;
}

.woocommerce-section ul.products::before,
.woocommerce-section ul.products::after {
  content: none !important;
  display: none !important;
}

.woocommerce-section ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: clamp(14px, 1.5vw, 22px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 243, 234, 0.7)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(192, 138, 60, 0.18);
  box-shadow: 0 22px 58px rgba(28, 24, 20, 0.08);
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.woocommerce-section ul.products li.product:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 138, 60, 0.38);
  box-shadow: 0 34px 76px rgba(28, 24, 20, 0.13);
}

.woocommerce-section ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.woocommerce-section ul.products li.product img {
  width: 100% !important;
  height: clamp(220px, 20vw, 330px) !important;
  margin: 0 0 18px !important;
  padding: clamp(16px, 1.8vw, 28px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.74) 68%),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(192, 138, 60, 0.12);
}

.woocommerce-section .woocommerce-loop-product__title {
  min-height: 2.35em;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: var(--ink);
  font-family: var(--serif-display);
  font-size: clamp(1.05rem, 1vw, 1.28rem) !important;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.woocommerce-section ul.products li.product .price {
  display: block;
  margin: auto 0 16px !important;
  color: var(--gold-dark) !important;
  font-size: 0.98rem !important;
  font-weight: 800;
}

.woocommerce-section ul.products li.product .price del {
  color: rgba(28, 24, 20, 0.38);
  font-weight: 600;
}

.woocommerce-section ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce-section ul.products li.product .button {
  align-self: flex-start;
  margin-top: 0 !important;
  border: 1px solid rgba(192, 138, 60, 0.36) !important;
  background: var(--deep) !important;
  color: var(--white) !important;
  padding: 12px 18px !important;
  box-shadow: 0 16px 32px rgba(28, 24, 20, 0.14);
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.woocommerce-section ul.products li.product .button:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.woocommerce-section nav.woocommerce-pagination {
  width: min(100%, 1320px);
  margin: clamp(34px, 5vw, 64px) auto 0;
}

.woocommerce-section nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  border: 0;
}

.woocommerce-section nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce-section nav.woocommerce-pagination ul li a,
.woocommerce-section nav.woocommerce-pagination ul li span {
  min-width: 42px;
  border: 1px solid rgba(192, 138, 60, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 800;
}

.woocommerce-section nav.woocommerce-pagination ul li span.current,
.woocommerce-section nav.woocommerce-pagination ul li a:hover {
  background: var(--deep);
  color: var(--white);
}

.single-path-shop-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(192, 138, 60, 0.28);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(225, 177, 105, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 231, 0.86));
  padding: clamp(36px, 5vw, 72px);
  box-shadow: 0 28px 82px rgba(52, 39, 26, 0.12);
}

.single-path-shop-preview::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 1.8vw, 26px);
  border: 1px solid rgba(192, 138, 60, 0.18);
  pointer-events: none;
}

.single-path-shop-preview::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 49%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(192, 138, 60, 0.45), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.single-path-shop-preview h3 {
  margin: 0 0 14px;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.single-path-shop-preview p {
  color: var(--muted);
}

.single-path-shop-preview img {
  min-height: 420px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(28, 24, 20, 0.14);
}

.single-path-shop-preview img.wide-readable-image {
  min-height: 0;
  box-shadow: 0 26px 70px rgba(28, 24, 20, 0.1);
}

.percorsi-shop-section {
  background: var(--section-veil);
  backdrop-filter: none;
}

.percorsi-carousel {
  position: relative;
  width: min(100%, 1480px);
  margin: clamp(34px, 5vw, 70px) auto 0;
  padding-inline: clamp(44px, 5vw, 86px);
}

.percorsi-carousel-track {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(192, 138, 60, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(250, 247, 240, 0.72)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 34px 90px rgba(28, 24, 20, 0.1);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.percorsi-product-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  border: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(224, 173, 97, 0.16), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 233, 0.78));
  box-shadow: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.percorsi-product-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6px, 1.5vw, 18px) 0;
}

.percorsi-product-copy h3 {
  max-width: 580px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
}

.percorsi-product-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(28, 24, 20, 0.66);
  font-size: 1rem;
  line-height: 1.7;
}

.percorsi-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(192, 138, 60, 0.22);
}

.percorsi-product-meta strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--deep);
  font-family: var(--serif-display);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.percorsi-product-meta del {
  color: rgba(28, 24, 20, 0.42);
  font-weight: 600;
}

.percorsi-product-meta ins {
  color: var(--gold-dark);
  text-decoration: none;
}

.percorsi-product-meta .button {
  min-height: 46px;
  padding-inline: 22px;
  box-shadow: 0 16px 34px rgba(55, 35, 19, 0.18);
}

.percorsi-product-image {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(192, 138, 60, 0.2);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98), rgba(250, 244, 233, 0.7) 62%, rgba(236, 220, 194, 0.38)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 238, 224, 0.82));
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.36),
    0 26px 70px rgba(52, 39, 26, 0.14);
}

.percorsi-product-image::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(192, 138, 60, 0.16);
  pointer-events: none;
}

.percorsi-product-image::after {
  content: "";
  position: absolute;
  inset: auto 12% 10% 12%;
  height: 28%;
  background: radial-gradient(ellipse at center, rgba(91, 66, 38, 0.14), transparent 66%);
  filter: blur(16px);
  pointer-events: none;
}

.percorsi-product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(430px, 44vw, 660px);
  min-height: 0;
  padding: clamp(16px, 2vw, 34px);
  object-fit: contain;
  box-shadow: none;
}

.percorsi-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(192, 138, 60, 0.34);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(52, 39, 26, 0.14);
  transform: translateY(-50%);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.percorsi-carousel-arrow.prev {
  left: 0;
}

.percorsi-carousel-arrow.next {
  right: 0;
}

.percorsi-carousel-arrow:hover {
  background: var(--deep);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.percorsi-carousel-arrow[disabled] {
  opacity: 0.32;
  pointer-events: none;
}

.delivery-note {
  margin-top: auto;
  padding: 26px;
}

.about-section {
  background: var(--section-veil);
  backdrop-filter: none;
}

.about-narrative,
.about-center-panel-section,
.about-method,
.about-principles,
.about-story,
.about-areas,
.about-care,
.mission-vision,
.brand-statement {
  background: var(--section-veil);
  backdrop-filter: none;
}

.about-narrative {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.about-lead h2 {
  margin-bottom: 0;
}

.about-text {
  max-width: 760px;
  border-left: 1px solid rgba(192, 138, 60, 0.38);
  padding-left: clamp(22px, 3vw, 42px);
  font-size: 1.06rem;
}

.about-evolution {
  align-items: start;
}

.about-story,
.about-care,
.about-evolution {
  align-items: center;
}

.about-evolution .split-copy {
  max-width: 820px;
}

.about-story .split-media img,
.about-care .split-media img,
.about-evolution .split-media img {
  filter: saturate(0.96) contrast(0.98);
}

.about-areas .detail-grid,
.about-method-grid {
  margin-top: clamp(26px, 4vw, 48px);
}

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

.about-method-grid article {
  min-height: 260px;
}

.about-side-visual {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  transform: translateY(24px);
}

.about-side-visual figure,
.about-method-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(192, 138, 60, 0.2);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(28, 24, 20, 0.08);
}

.about-side-visual figure {
  aspect-ratio: 16 / 8.4;
}

.about-side-visual img,
.about-method-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-side-visual img {
  object-position: center;
}

.about-list-panel,
.method-columns article,
.about-principles article,
.mission-card {
  border: 1px solid rgba(192, 138, 60, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 62px rgba(28, 24, 20, 0.07);
}

body[data-page="chi-siamo"] .about-list-panel,
body[data-page="chi-siamo"] .method-columns article,
body[data-page="chi-siamo"] .about-principles article,
body[data-page="chi-siamo"] .mission-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-list-panel {
  padding: clamp(24px, 4vw, 42px);
}

.about-center-panel {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin: clamp(20px, 3vw, 34px) auto 0;
  display: block;
  text-align: left;
}

.about-side-visual .about-list-panel {
  display: grid;
  align-content: center;
  justify-items: center;
}

.about-side-visual .about-list-panel h3,
.about-side-visual .about-list-panel .check-list {
  width: min(430px, 100%);
}

.about-evolution .about-list-panel {
  transform: none;
}

.about-method-media {
  width: min(980px, 100%);
  aspect-ratio: 16 / 5.2;
  margin: clamp(28px, 4vw, 48px) auto 0;
}

.about-method-media img {
  object-position: center;
  filter: saturate(0.94) contrast(0.96);
}

.method-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(30px, 5vw, 64px);
}

.method-columns article {
  padding: clamp(22px, 3vw, 34px);
}

.about-principles,
.mission-vision,
.brand-statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.about-principles article,
.mission-card {
  padding: clamp(26px, 4vw, 48px);
}

.about-principles h2,
.mission-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.brand-statement {
  align-items: center;
  background: var(--deep);
  color: var(--white);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  gap: clamp(18px, 3vw, 28px);
  padding-top: clamp(58px, 8vw, 112px);
  padding-bottom: clamp(58px, 8vw, 112px);
}

.brand-statement p {
  color: rgba(255, 255, 255, 0.78);
}

.brand-statement > div {
  max-width: 880px;
}

.brand-statement h2 {
  max-width: 880px;
  margin-inline: auto;
  line-height: 1.04;
}

.brand-statement > div:last-child {
  max-width: 760px;
}

.brand-statement > div:last-child p {
  font-size: 1rem;
}

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

.contact-section {
  align-items: start;
  background: rgba(243, 239, 230, 0.78);
  backdrop-filter: blur(8px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-cards article {
  padding: 18px;
}

.contact-cards span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.form-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdfa;
  padding: 12px 13px;
  color: var(--ink);
}

.form-card textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-weight: 800;
}

.booking-section {
  background: rgba(32, 39, 37, 0.9);
  color: var(--white);
}

.booking-section .form-card {
  color: var(--ink);
}

.booking-copy p {
  color: #ded8cf;
}

.expectations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
  background: rgba(20, 17, 14, 0);
  transition: background 0.2s ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(20, 17, 14, 0.5);
  backdrop-filter: blur(10px);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.96), rgba(243, 239, 230, 0.94)),
    var(--white);
  border-left: 1px solid rgba(192, 138, 60, 0.34);
  box-shadow: -34px 0 90px rgba(28, 24, 20, 0.24);
  transform: translateX(100%);
  transition: transform 0.2s ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-item,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-header {
  border-bottom: 1px solid rgba(192, 138, 60, 0.22);
  padding-bottom: 16px;
}

.cart-header h2 {
  margin: 0;
  font-size: 2.1rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(192, 138, 60, 0.36);
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.cart-items > p {
  margin: 16px 0 0;
  border: 1px solid rgba(192, 138, 60, 0.28);
  padding: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.52);
}

.cart-item {
  align-items: start;
  border: 1px solid rgba(222, 216, 207, 0.9);
  padding: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 34px rgba(28, 24, 20, 0.08);
}

.cart-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-item button {
  border: 1px solid rgba(166, 106, 77, 0.32);
  background: rgba(255, 255, 255, 0.56);
  color: var(--clay);
  padding: 7px 10px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-total {
  margin-top: auto;
  border-top: 1px solid rgba(192, 138, 60, 0.3);
  border-bottom: 1px solid rgba(192, 138, 60, 0.2);
  padding: 18px 0;
  font-size: 1.2rem;
}

.cart-total span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.cart-total strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 34px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: #141312;
}

.site-footer p {
  margin: 0;
  color: #cfc8bb;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    filter: blur(1px);
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes homeMediaIn {
  from {
    opacity: 0.88;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .home-video-bg,
  body[data-page="chi-siamo"] .about-list-panel,
  body[data-page="chi-siamo"] .method-columns article,
  body[data-page="chi-siamo"] .about-principles article,
  body[data-page="chi-siamo"] .mission-card {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.2rem;
  }

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

  .page-hero h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 65px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    width: auto;
    max-width: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: none;
  }

  .main-nav.open {
    display: flex;
  }

  .feature-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .intro-grid,
  body[data-page="home"] .problem-section {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .intro-grid .feature-grid article:nth-child(2),
  body[data-page="home"] .intro-grid .feature-grid article:nth-child(4) {
    transform: none;
  }

  body[data-page="home"] .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  body[data-page="home"] .problem-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .shop-category-grid {
    grid-template-columns: 1fr;
  }

  .shop-category-card {
    min-height: 300px;
  }

  .woocommerce-section ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce-section ul.products li.product img {
    height: clamp(210px, 28vw, 300px) !important;
  }

  .single-path-shop-preview {
    grid-template-columns: 1fr;
  }

  .single-path-shop-preview::after {
    display: none;
  }

  .percorsi-carousel {
    padding-inline: 46px;
  }

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

  .percorsi-product-copy,
  .percorsi-product-image {
    min-height: 360px;
  }

  .percorsi-product-copy {
    padding-bottom: 0;
  }

  .split-section,
  .contact-section,
  .booking-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-narrative,
  .method-columns,
  .about-principles,
  .mission-vision,
  .brand-statement {
    grid-template-columns: 1fr;
  }

  .about-text {
    border-left: 0;
    padding-left: 0;
  }

  .about-side-visual {
    transform: none;
  }

  .about-method-media {
    aspect-ratio: 16 / 7;
  }

  .split-section.reverse .split-media {
    order: 0;
  }

  body[data-page="home"] main > .split-section .split-media,
  body[data-page="home"] main > .split-section .split-copy {
    transform: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.8rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .page-hero img {
    min-height: 280px;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .cart-button {
    display: none;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    transform: translateY(-50%) scale(1.06);
  }

  .hero {
    min-height: 76vh;
  }

  .hero-overlay {
    background: rgba(16, 14, 12, 0.66);
  }

  .hero-content {
    padding-inline: 18px;
  }

  .feature-grid,
  .detail-grid,
  .values-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .intro-grid .feature-grid,
  body[data-page="home"] .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .woocommerce-section .woocommerce-ordering {
    margin: 0 auto 26px !important;
    text-align: left;
  }

  .woocommerce-section .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce-section ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce-section ul.products li.product img {
    height: 280px !important;
  }

  .percorsi-carousel {
    padding-inline: 0;
  }

  .percorsi-carousel-track {
    overflow: hidden;
  }

  .percorsi-product-copy,
  .percorsi-product-image {
    min-height: 300px;
  }

  .percorsi-product-copy h3 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .percorsi-product-image img {
    height: 320px;
  }

  .percorsi-carousel-arrow {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    transform: none;
  }

  .percorsi-carousel-arrow.prev {
    left: 18px;
  }

  .percorsi-carousel-arrow.next {
    right: 18px;
  }

  .percorsi-carousel-arrow:hover {
    transform: none;
  }

  .split-media,
  .split-media img {
    min-height: 310px;
  }

}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.about-copy h2,
.booking-copy h1,
.booking-copy h2,
.contact-copy h1,
.contact-copy h2,
.shop-products-intro h2,
.shop-selection-note h2,
.single-path-shop-preview h3,
.woocommerce-section .woocommerce-products-header__title.page-title,
.woocommerce-section .woocommerce-loop-product__title {
  font-family: var(--serif-display) !important;
  font-weight: 700;
  letter-spacing: 0;
}
