/* Default palette: Walnut & Parchment */
:root {
  --ink: #1d1612;
  --ink-soft: #3a2e25;
  --paper: #f3ece0;
  --paper-warm: #e9dfcc;
  --cream: #faf6ee;
  --sage: #5b6b56;
  --sage-deep: #3d4a3a;
  --brass: #a68a5b;
  --brass-soft: #c8b48a;
  --line: rgba(29, 22, 18, 0.14);
  --line-strong: rgba(29, 22, 18, 0.28);

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

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

/* Evita che testi/titoli con parole lunghe sforino il viewport su mobile */
h1, h2, h3, h4, h5, p, span, a, li, blockquote, .display {
  overflow-wrap: break-word;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ── UTILITIES ─────────────────────────────────────────── */
.mt-24 {
  margin-top: 24px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.text-brass-soft {
  color: var(--brass-soft);
}

.text-cream {
  color: var(--cream);
}

.text-cream-70 {
  color: rgba(250, 246, 238, 0.7);
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-gap-24 {
  display: flex;
  gap: 24px;
}

.flex-align-center-gap {
  display: flex;
  gap: 14px;
  align-items: center;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-55 {
  opacity: 0.55;
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-feature-settings: "liga", "dlig", "kern";
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 62ch;
}

.body-lg {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
}

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, color 0.4s ease;
  color: var(--cream);
}

.nav.is-stuck {
  background: rgba(243, 236, 224, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: currentColor;
}

.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.78;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  transform: scale(1.75);
  transform-origin: left center;
}

.nav.is-stuck .nav-logo-img {
  height: 62px;
  transform: scale(1.6);
}

.nav-logo-img--on-light {
  display: none;
}

.nav.is-stuck .nav-logo-img--on-dark {
  display: none;
}

.nav.is-stuck .nav-logo-img--on-light {
  display: block;
}

.nav-menu {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-menu a {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-menu a:hover {
  opacity: 1;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.nav.is-stuck .nav-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

.nav-burger {
  display: none;
}

@media (max-width: 880px) {
  .nav-logo-img {
    height: 56px;
    transform: scale(1.5);
  }

  .nav.is-stuck .nav-logo-img {
    height: 48px;
    transform: scale(1.35);
  }

  .nav-menu {
    display: none;
  }

  .nav.menu-open {
    background: rgba(243, 236, 224, 0.96);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav.menu-open .nav-logo-img--on-dark {
    display: none;
  }

  .nav.menu-open .nav-logo-img--on-light {
    display: block;
  }

  .nav.menu-open .nav-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(250, 246, 238, 0.98);
    box-shadow: 0 22px 60px rgba(29, 22, 18, 0.14);
  }

  .nav.menu-open .nav-menu a {
    font-size: 13px;
    opacity: 1;
  }

  .nav.menu-open .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    position: relative;
    z-index: 1;
  }

  .nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

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

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

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

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.3s, color 0.3s, border-color 0.3s;
}

.btn .arr {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}

.btn .arr::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .arr {
  width: 32px;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sage-deep);
}

.btn-ghost {
  border: 1px solid currentColor;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-light {
  border: 1px solid rgba(250, 246, 238, 0.45);
  color: var(--cream);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--ink);
}

.btn-cream:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-cream-bordered {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-cream-bordered:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ── REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.18s;
}

.reveal-d3 {
  transition-delay: 0.28s;
}

.reveal-d4 {
  transition-delay: 0.38s;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  background: #1a1410;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/interior-hall.jpg");
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  transform: scale(1.06);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 11, 8, 0.55) 0%, rgba(15, 11, 8, 0.15) 30%, rgba(15, 11, 8, 0.15) 55%, rgba(15, 11, 8, 0.78) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(15, 11, 8, 0) 0%, rgba(15, 11, 8, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0 var(--gutter) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  color: rgba(250, 246, 238, 0.85);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 18px 0 28px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-soft);
  font-weight: 300;
}

.hero-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  max-width: 54ch;
  color: rgba(250, 246, 238, 0.86);
  margin: 0 0 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper-warm);
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.08);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
}

.marquee-track .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

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

/* ── SECTIONS COMMON ───────────────────────────────────── */
section.padded {
  padding: clamp(80px, 11vw, 160px) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 780px;
  margin-bottom: 64px;
}

.section-head.centered {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}

h2.display {
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 300;
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.012em;
}

h3.display {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin: 0;
}

/* ── VALORE DISTINTIVO ────────────────────────────────── */
.value {
  background: var(--paper);
}

.value-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}

.value-points {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-point {
  background: var(--paper);
  padding: 32px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  transition: background 0.4s;
  cursor: default;
}

.value-point:hover {
  background: var(--paper-warm);
}

.value-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--brass);
}

.value-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
}

.value-icon {
  width: 44px;
  height: 44px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.4s;
}

.value-point:hover .value-icon {
  opacity: 0.85;
  transform: rotate(8deg);
}

@media (max-width: 880px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-point {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-icon {
    display: none;
  }
}

/* ── EXPERIENCE / FROM-TO ─────────────────────────────── */
.exp {
  background: var(--ink);
  color: var(--cream);
}

.exp .eyebrow,
.exp .body-lg {
  color: rgba(250, 246, 238, 0.7);
}

.exp h2 em {
  color: var(--brass-soft);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-top: 80px;
}

.exp-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.exp-side h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 24px;
}

.exp-side p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.45;
  color: var(--cream);
  margin: 0;
}

.exp-blocks {
  display: grid;
  gap: 1px;
  background: rgba(250, 246, 238, 0.1);
  margin-top: 80px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
  grid-template-columns: repeat(3, 1fr);
}

.exp-block {
  background: var(--ink);
  padding: 48px 36px;
}

.exp-block p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  color: var(--cream);
}

@media (max-width: 880px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-blocks {
    grid-template-columns: 1fr;
  }
}

/* ── SERVIZI ─────────────────────────────────────────── */
.services {
  background: var(--cream);
}

.services .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.services-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-group {
  border-bottom: 1px solid var(--line);
}

.service-q {
  width: 100%;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: left;
}

.service-q strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.service-q small {
  display: block;
  max-width: 46ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.service-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease;
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-group.open .service-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s ease, opacity 0.35s ease, padding 0.35s ease;
}

.service-group.open .service-a {
  max-height: 2200px;
  opacity: 1;
  padding-bottom: 22px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.service-item {
  min-width: 0;
  padding: 13px 16px;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.service-item span {
  font-size: 14px;
  line-height: 1.35;
}

.service-item em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.service-list-rich {
  grid-template-columns: 1fr;
}

.service-item-rich {
  align-items: flex-start;
}

.service-item-rich div {
  max-width: 60ch;
}

.service-item-rich span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
}

.service-item-rich p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── RITUALI ─────────────────────────────────────────── */
.rituals {
  background: var(--paper);
}

.rituals .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ritual-card {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s, box-shadow 0.5s;
  cursor: default;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ritual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 11, 8, 0.08) 0%, rgba(18, 11, 8, 0.22) 28%, rgba(18, 11, 8, 0.66) 66%, rgba(18, 11, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(18, 11, 8, 0.48) 0%, rgba(18, 11, 8, 0.14) 44%, rgba(18, 11, 8, 0.52) 100%);
  z-index: 1;
  pointer-events: none;
}

.ritual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.92);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-origin: center;
}

.ritual-meta {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--cream);
}

.ritual-tag {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.72);
}

.ritual-tag .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-soft);
}

.ritual-name {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  margin: 0;
  line-height: 0.96;
  color: var(--cream);
  max-width: 10ch;
}

.ritual-bnf {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  color: rgba(250, 246, 238, 0.9);
  margin: 0;
  max-width: 26ch;
}

.ritual-desc {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.78);
  line-height: 1.55;
  margin: 0;
  max-width: 46ch;
}

.ritual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ritual-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(243, 236, 224, 0.12);
  border: 1px solid rgba(250, 246, 238, 0.18);
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ritual-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 246, 238, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.88);
}

.ritual-foot a {
  color: var(--cream);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.ritual-foot a:hover {
  color: var(--brass-soft);
}

.ritual-foot a::after {
  content: "→";
  transition: transform 0.3s;
}

.ritual-foot a:hover::after {
  transform: translateX(4px);
}

@media (hover: hover) and (pointer: fine) {
  .ritual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(29, 22, 18, 0.18);
  }

  .ritual-card:hover .ritual-img {
    transform: scale(1.04);
  }
}

@media (max-width: 980px) {
  .services .section-head,
  .rituals .section-head {
    grid-template-columns: 1fr;
  }

  .rituals-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .ritual-card {
    min-height: 700px;
  }
}

@media (max-width: 640px) {
  .service-q {
    padding: 20px 0;
  }

  .service-item,
  .service-item-rich {
    padding: 14px;
  }

  .service-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .ritual-card {
    min-height: 640px;
  }

  .ritual-meta {
    padding: 24px;
    gap: 14px;
  }

  .ritual-name {
    max-width: none;
  }

  .ritual-bnf {
    font-size: 18px;
  }

  .ritual-foot {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── LOCATION ─────────────────────────────────────────── */
.location {
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.location-media {
  position: relative;
}

.location-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  will-change: transform;
}

.location-media .stamp {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-list li {
  display: flex;
  gap: 14px;
  align-items: center;
}

.location-list li .bullet-dot {
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
}

.location-list li span:last-child {
  font-family: var(--serif);
  font-size: 19px;
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.location-stats .stat .n {
  font-family: var(--serif);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1;
  display: block;
}

.location-stats .stat .l {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

@media (max-width: 880px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PERCHÉ SCEGLIERE ─────────────────────────────────── */
.why {
  background: var(--paper);
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  transition: padding 0.4s, color 0.4s;
  position: relative;
}

.why-item:last-child {
  border-bottom: 1px solid var(--line);
}

.why-item:hover {
  padding-left: 24px;
}

.why-item .why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
}

.why-item .why-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  max-width: 32ch;
}

.why-item .why-arr {
  font-size: 24px;
  color: var(--ink-soft);
  transition: transform 0.4s, color 0.3s;
}

.why-item:hover .why-arr {
  transform: translateX(8px);
  color: var(--brass);
}

@media (max-width: 880px) {
  .why-item {
    grid-template-columns: 1fr;
  }

  .why-arr {
    display: none;
  }
}

/* ── EVENTS / PRIVATE ─────────────────────────────────── */
.events {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.events-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/oils-tray.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.7);
  will-change: transform;
}

.events-content {
  position: relative;
  z-index: 2;
}

.events h2 em {
  color: var(--brass-soft);
}

.events .eyebrow,
.events .body-lg {
  color: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: rgba(250, 246, 238, 0.1);
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
}

.event-cell {
  background: var(--ink);
  padding: 48px 36px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s;
}

.event-cell:hover {
  background: #241a13;
}

.event-cell .tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  display: flex;
  justify-content: space-between;
}

.event-cell h4 {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  margin: 24px 0;
  line-height: 1.15;
}

.event-cell p {
  font-size: 14.5px;
  color: rgba(250, 246, 238, 0.7);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 980px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi {
  background: var(--paper);
  position: relative;
}

.testi-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 32px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  flex: 0 0 clamp(280px, 32vw, 440px);
  scroll-snap-align: start;
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.5s, border-color 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.testi-card .stars {
  display: flex;
  gap: 4px;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.testi-card blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
  quotes: "\201C" "\201D";
}

.testi-card blockquote::before {
  content: open-quote;
  color: var(--brass);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.06em;
}

.testi-card cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.testi-card cite span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--brass);
}

.testi-foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.testi-foot .rating {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.testi-foot .rating .n {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
}

.testi-foot .rating .src {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.rating-stars {
  color: var(--brass);
  font-size: 14px;
}

.testi-disclaimer {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  background: var(--paper-warm);
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 920px;
  margin: 0 auto;
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.35s ease, opacity 0.4s ease;
  opacity: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 30px;
  opacity: 1;
}

/* ── CTA FINAL ────────────────────────────────────────── */
.cta-final {
  background: var(--sage-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 0;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/oil-stones.jpg") center/cover;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}

.cta-final .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.cta-final h2 {
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 300;
  margin: 24px 0 28px;
  line-height: 1.02;
}

.cta-final h2 em {
  color: var(--brass-soft);
}

.cta-final p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  color: rgba(250, 246, 238, 0.85);
  max-width: 54ch;
  margin: 0 auto 48px;
}

.cta-final .btns {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-final .micro {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.55);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.65);
  padding: 80px 0 40px;
  font-size: 14px;
}

footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
}

footer .grid > div {
  min-width: 0;
}

footer ul li,
footer ul a {
  overflow-wrap: anywhere;
}

footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 18px;
  font-weight: 500;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a:hover {
  color: var(--brass-soft);
}

footer .brand .mark {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
}

footer .brand-logo {
  height: 62px;
  width: auto;
  display: block;
}

footer .brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--brass-soft);
  margin-bottom: 24px;
}

footer .brand p {
  max-width: 32ch;
  line-height: 1.6;
  margin: 0 0 24px;
}

footer .social-links {
  display: flex;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

footer .social-links a:hover {
  color: var(--brass-soft);
}

footer .social-links span {
  opacity: 0.3;
}

footer .legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.45);
  letter-spacing: 0.04em;
}

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

footer .legal .powered-by {
  flex-basis: 100%;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.7);
}

footer .legal .powered-by a {
  color: var(--brass-soft);
  font-weight: 600;
  transition: color 0.25s;
}

footer .legal .powered-by a:hover {
  color: var(--cream);
}

@media (max-width: 880px) {
  footer .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── SUBPAGES ─────────────────────────────────────────── */
.subpage-hero {
  min-height: 66vh;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, rgba(29, 22, 18, 0.92) 0%, rgba(61, 74, 58, 0.74) 100%);
  color: var(--cream);
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(200, 180, 138, 0.24) 0%, rgba(200, 180, 138, 0) 34%),
    radial-gradient(circle at 84% 10%, rgba(243, 236, 224, 0.12) 0%, rgba(243, 236, 224, 0) 28%),
    linear-gradient(180deg, rgba(29, 22, 18, 0.12) 0%, rgba(29, 22, 18, 0.46) 100%);
  pointer-events: none;
}

.subpage-hero .wrap,
.subpage-section .wrap,
.subpage-grid,
.legal-layout,
.booking-layout {
  position: relative;
  z-index: 1;
}

.subpage-kicker {
  color: rgba(250, 246, 238, 0.72);
}

.subpage-title {
  font-size: clamp(56px, 9vw, 122px);
  margin: 24px 0;
  max-width: 10ch;
}

.subpage-intro {
  max-width: 60ch;
  color: rgba(250, 246, 238, 0.82);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.6;
}

.subpage-meta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-hero {
  min-height: auto;
  padding: 140px 0 52px;
}

.contact-hero .subpage-title {
  font-size: clamp(42px, 6vw, 72px);
  margin: 0 0 18px;
  max-width: 9ch;
}

.contact-hero .subpage-intro {
  max-width: 54ch;
  font-size: clamp(16px, 1.35vw, 20px);
}

.contact-hero .subpage-meta {
  margin-top: 26px;
}

.subpage-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 238, 0.16);
  background: rgba(250, 246, 238, 0.08);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage-section {
  padding: 96px 0;
}

.subpage-section.alt {
  background: var(--paper-warm);
}

.legal-layout {
  max-width: 940px;
  display: grid;
  gap: 28px;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.48);
}

.legal-card h2,
.legal-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.02;
}

.legal-card h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.legal-card h3 {
  font-size: clamp(24px, 2.5vw, 32px);
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.legal-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.legal-note {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(58, 46, 37, 0.72);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.booking-panel,
.booking-form-wrap {
  padding: 38px;
  border: 1px solid var(--line);
}

.booking-panel {
  background: linear-gradient(180deg, rgba(29, 22, 18, 0.96) 0%, rgba(61, 74, 58, 0.84) 100%);
  color: var(--cream);
}

.booking-panel h2,
.booking-form-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 0.98;
  margin: 0 0 18px;
}

.booking-panel p {
  color: rgba(250, 246, 238, 0.78);
  margin: 0 0 24px;
}

.booking-points,
.contact-list {
  display: grid;
  gap: 14px;
}

.booking-point,
.contact-item {
  padding: 16px 18px;
  border: 1px solid rgba(250, 246, 238, 0.14);
  background: rgba(250, 246, 238, 0.06);
}

.booking-point strong,
.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-point span,
.contact-item span,
.contact-item a {
  color: rgba(250, 246, 238, 0.78);
}

.booking-form-wrap {
  background: var(--cream);
}

.booking-form-wrap p {
  margin: 0 0 28px;
  color: var(--ink-soft);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line-strong);
  background: rgba(243, 236, 224, 0.42);
  padding: 16px 18px;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  background: #fff;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field.full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.form-meta {
  font-size: 12px;
  color: rgba(58, 46, 37, 0.78);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card {
  background: var(--paper);
  padding: 28px;
}

.contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--ink);
}

@media (max-width: 980px) {
  .booking-layout,
  .contact-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subpage-hero {
    min-height: auto;
    padding: 150px 0 72px;
  }

  .contact-hero {
    padding: 132px 0 40px;
  }

  .subpage-section {
    padding: 72px 0;
  }

  .legal-card,
  .booking-panel,
  .booking-form-wrap {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ── DECORATIVE ELEMENTS ──────────────────────────────── */
.ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

.ornament .line {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* WhatsApp floating */
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s;
}

.whatsapp:hover {
  transform: scale(1.08);
}

/* Scrollbar */
::selection {
  background: var(--ink);
  color: var(--cream);
}
