/* Radisa Gallery — prototype styles
   Builds on tokens.css. Component-level styles only. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--r-bg, var(--r-ivory));
  color: var(--r-charcoal);
  font-family: var(--r-sans);
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* — Layout —————————————————————————————————————————— */
.r-shell { min-height: 100vh; }
.r-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--r-pad-x, 56px);
}
.r-container--wide { max-width: 1600px; }
.r-section { padding-block: var(--r-pad-y, 120px); }
.r-section--tight { padding-block: 64px; }

/* density modes (driven by tweak) */
[data-density="spacious"] {
  --r-pad-y: 160px;
  --r-pad-x: 72px;
}
[data-density="comfy"] {
  --r-pad-y: 100px;
  --r-pad-x: 48px;
}

/* — Header / Nav —————————————————————————————————————— */
/* — Shipping notice banner (above everything — highest priority) — */
.r-shipbar {
  background: var(--r-charcoal);
  color: var(--r-ivory);
  position: relative;
}
.r-shipbar::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--r-bronze);
}
.r-shipbar__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.r-shipbar__msg {
  flex: 1;
  text-align: center;
  font-family: var(--r-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 10px 0;
}
.r-shipbar__msg a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.r-shipbar__msg a:hover { opacity: 0.72; }

/* — Promo banner (secondary priority — sits below the shipping notice) — */
.r-promobar {
  background: var(--r-stone);
  color: var(--r-charcoal);
}
.r-promobar__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.r-promobar__spacer { width: 16px; flex: 0 0 auto; }
.r-promobar__msg {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  background: none;
  border: none;
  color: inherit;
  padding: 8px 0;
  cursor: pointer;
  font-family: var(--r-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.85;
}
.r-promobar__msg strong { font-weight: 500; color: var(--r-charcoal); }
.r-promobar__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--r-charcoal-30, rgba(38,38,38,0.3));
  white-space: nowrap;
}
.r-promobar__msg:hover .r-promobar__cta .r-arrow { transform: translateX(4px); }
.r-promobar__cta .r-arrow { transition: transform 0.25s ease; display: inline-block; }
.r-promobar__x {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  background: none; border: none;
  color: var(--r-charcoal-50, rgba(38,38,38,0.5));
  font-size: 11px; line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.r-promobar__x:hover { color: var(--r-charcoal); }

/* — Header / Nav —————————————————————————————————————— */
.r-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 238, 232, 0.92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--r-charcoal-06);
}
.r-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.r-header__logo {
  font-family: var(--r-serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.r-logo-img { height: 52px; width: auto; display: block; }
.r-logo-img--footer { height: 104px; }
.r-header__logo small {
  font-family: var(--r-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}
.r-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.005em;
}
.r-nav button {
  background: none; border: none; padding: 6px 0; color: inherit;
  font-size: 13px; opacity: 0.7;
  position: relative;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.r-nav button:hover { opacity: 1; }
.r-nav button[data-active="true"] { opacity: 1; }
.r-nav button[data-active="true"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--r-charcoal);
}
.r-header__util {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.r-header__util .r-sep { width: 1px; height: 12px; background: var(--r-charcoal-30); }

/* — Buttons —————————————————————————————————————— */
.r-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--r-charcoal);
  background: transparent; color: var(--r-charcoal);
  font-family: var(--r-sans);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-radius: 0;
}
.r-btn:hover { background: var(--r-charcoal); color: var(--r-ivory); }
.r-btn--solid { background: var(--r-charcoal); color: var(--r-ivory); }
.r-btn--solid:hover { background: var(--r-charcoal-70); color: var(--r-ivory); }
.r-btn--ghost { border-color: var(--r-charcoal-30); }
.r-btn--light { background: var(--r-ivory); color: var(--r-charcoal); border-color: var(--r-ivory); }
.r-btn--light:hover { background: transparent; color: var(--r-ivory); border-color: var(--r-ivory); }
.r-btn .r-arrow { display: inline-block; transition: transform 0.25s ease; }
.r-btn:hover .r-arrow { transform: translateX(4px); }

/* — Type helpers —————————————————————————————————————— */
.r-eyebrow {
  font-family: var(--r-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-charcoal-70);
  display: inline-flex; align-items: center; gap: 14px;
}
.r-eyebrow__line {
  display: inline-block; width: 32px; height: 1px; background: currentColor;
}
.r-display {
  font-family: var(--r-serif);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.98;
  margin: 0;
  color: var(--r-charcoal);
  text-wrap: balance;
}
.r-display em, .r-display i { font-style: italic; font-weight: 300; }
.r-h2 {
  font-family: var(--r-serif);
  font-weight: 400;
  letter-spacing: -0.014em;
  line-height: 1.02;
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
}
.r-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--r-charcoal-70);
  max-width: 56ch;
}
.r-numtag {
  font-family: var(--r-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--r-charcoal-70);
}
/* short label spans inside an inline eyebrow/numtag never wrap;
   the outer container is the wrap boundary */
.r-eyebrow > span:not(.r-eyebrow__line),
.r-numtag > span:not([style*="background"]) { white-space: nowrap; }
.r-rule { height: 1px; background: var(--r-charcoal-12); width: 100%; }
.r-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--r-charcoal-70);
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.r-divider::before, .r-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--r-charcoal-12);
}

/* — Footer —————————————————————————————————————— */
.r-footer {
  background: var(--r-ivory);
  border-top: 1px solid var(--r-charcoal-12);
  padding: 80px 56px 40px;
}
.r-footer__grid {
  max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 64px;
}
.r-footer__col h4 {
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--r-charcoal-70);
  font-weight: 500; margin: 0 0 20px;
}
.r-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.r-footer__col a { font-size: 14px; opacity: 0.85; }
.r-footer__col a:hover { opacity: 1; }
.r-footer__newsletter input {
  background: transparent; border: none;
  border-bottom: 1px solid var(--r-charcoal-30);
  padding: 12px 0; font-family: var(--r-sans); font-size: 14px;
  color: var(--r-charcoal); width: 100%;
}
.r-footer__newsletter input::placeholder { color: var(--r-charcoal-50); }
.r-footer__newsletter input:focus { outline: none; border-color: var(--r-charcoal); }
.r-footer__bottom {
  max-width: 1600px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--r-charcoal-50);
  padding-top: 32px;
  border-top: 1px solid var(--r-charcoal-06);
}

/* — Cards —————————————————————————————————————— */
.r-card { position: relative; cursor: pointer; }
.r-card__media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--r-stone);
}
.r-card__media > .r-atmos {
  position: absolute; inset: 0;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.r-card:hover .r-card__media > .r-atmos { transform: scale(1.04); }
.r-card__overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.4s ease;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  color: var(--r-ivory);
}
.r-card:hover .r-card__overlay { opacity: 1; }
.r-card__info {
  padding: 18px 0 0;
  display: flex; flex-direction: column; gap: 4px;
}
.r-card__name {
  font-family: var(--r-serif); font-size: 22px; line-height: 1.1;
  font-weight: 400; letter-spacing: -0.01em;
}
.r-card__meta {
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--r-charcoal-70);
  display: flex; gap: 10px; align-items: center;
  margin-top: 2px;
  flex-wrap: wrap;
}
.r-card__meta > span { white-space: nowrap; }
.r-card__price { white-space: nowrap; }
.r-card__note {
  font-size: 13px; line-height: 1.55; color: var(--r-charcoal-70);
  margin-top: 8px; font-style: italic; max-width: 28ch;
}
.r-card__price {
  font-family: var(--r-mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--r-charcoal);
  margin-top: 4px;
}

/* — Forms —————————————————————————————————————— */
.r-input, .r-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--r-charcoal-30);
  padding: 14px 0;
  font: inherit; font-size: 15px;
  color: var(--r-charcoal);
}
.r-input::placeholder, .r-textarea::placeholder { color: var(--r-charcoal-50); }
.r-input:focus, .r-textarea:focus { outline: none; border-color: var(--r-charcoal); }
.r-label {
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--r-charcoal-70);
  display: block; margin-bottom: 4px;
}
.r-upload {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px; text-align: center; cursor: pointer;
  border: 1px dashed var(--r-charcoal-30);
  background: var(--r-bg-alt);
  transition: border-color 0.2s ease;
}
.r-upload:hover { border-color: var(--r-charcoal); }

/* — Filter chips —————————————————————————————————————— */
.r-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--r-charcoal-30);
  background: transparent;
  font-family: var(--r-sans); font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--r-charcoal);
  transition: all 0.2s ease;
  border-radius: 0;
  white-space: nowrap;
}
.r-chip:hover { border-color: var(--r-charcoal); }
.r-chip[data-active="true"] { background: var(--r-charcoal); color: var(--r-ivory); border-color: var(--r-charcoal); }
.r-chip__count {
  font-family: var(--r-mono); font-size: 10px; opacity: 0.6;
}

/* — Page transitions —————————————————————————————————————— */
.r-page {
  animation: r-fadeup 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes r-fadeup {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* — Accent toggle —————————————————————————————————————— */
[data-accent="olive"] { --r-accent: var(--r-olive); }
[data-accent="bronze"] { --r-accent: var(--r-bronze); }
[data-accent="none"] { --r-accent: var(--r-charcoal); }

/* — Warmth toggle —————————————————————————————————————— */
[data-warmth="ivory"] { --r-bg: var(--r-ivory); --r-bg-alt: var(--r-rosa); }
[data-warmth="stone"] { --r-bg: var(--r-stone); --r-bg-alt: var(--r-rosa); }

/* — Editorial pages (Ispirazioni / Progetti / Editoriale) — Salvia ground — */
.r-editorial { --r-bg: var(--r-rosa); --r-bg-alt: var(--r-ivory); }
.r-editorial .r-body { color: rgba(38,38,38,0.78); }

/* — Photo borders — Rosa (revisione cliente) — */
.r-card__media,
.r-fig { position: relative; overflow: hidden; background: var(--r-stone); }

/* — Event card (home / eventi) — hover reveals video affordance — */
.r-evcard { cursor: pointer; }
.r-evcard .r-fig > .r-atmos { transition: transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.r-evcard:hover .r-fig > .r-atmos { transform: scale(1.05); }
.r-evcard__play {
  position: absolute; z-index: 4; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  font-family: var(--r-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--r-charcoal); background: var(--r-ivory);
  padding: 9px 14px; border-radius: 999px;
  opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; pointer-events: none;
}
.r-evcard:hover .r-evcard__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* — Serif toggle —————————————————————————————————————— */
[data-serif="cormorant"] .r-display,
[data-serif="cormorant"] .r-h2,
[data-serif="cormorant"] .r-card__name { font-family: "Cormorant Garamond", serif; }
[data-serif="eb-garamond"] .r-display,
[data-serif="eb-garamond"] .r-h2,
[data-serif="eb-garamond"] .r-card__name { font-family: "EB Garamond", serif; }
[data-serif="libre-caslon"] .r-display,
[data-serif="libre-caslon"] .r-h2,
[data-serif="libre-caslon"] .r-card__name { font-family: "Libre Caslon Text", serif; letter-spacing: -0.022em; }

/* — Misc —————————————————————————————————————— */
.r-link {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--r-charcoal-30);
  font-size: 13px;
  transition: border-color 0.2s ease;
}
.r-link:hover { border-color: var(--r-charcoal); }
.r-link .r-arrow { transition: transform 0.25s ease; }
.r-link:hover .r-arrow { transform: translateX(4px); }

.r-pill {
  display: inline-block;
  padding: 5px 11px;
  background: var(--r-charcoal-06);
  font-family: var(--r-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--r-charcoal-70);
  white-space: nowrap;
}

/* — Collection row (oggetti) — */
.r-collrow {
  display: flex; align-items: stretch; gap: 0;
  background: var(--r-bg); border: 1px solid var(--r-charcoal-12);
  cursor: pointer; text-align: left; padding: 0;
  transition: border-color 0.2s ease, transform 0.25s ease;
}
.r-collrow:hover { border-color: var(--r-charcoal); }
.r-collrow:hover .r-arrow { transform: translateX(5px); }
.r-collrow .r-arrow { display: inline-flex; align-items: center; transition: transform 0.25s ease; }

/* — Ispirazioni · pin + caption — */
.r-pin {
  position: absolute; z-index: 6; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(242,238,232,0.6);
  background: rgba(38,38,38,0.3); backdrop-filter: blur(3px);
  color: var(--r-ivory); font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.r-pin:hover { transform: scale(1.08); }
.r-pin--on { background: var(--r-ivory); border-color: var(--r-ivory); }
.r-isp__cap {
  position: absolute; z-index: 5; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px; color: var(--r-ivory);
  font-family: var(--r-serif); font-size: 17px; line-height: 1.15;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  opacity: 0; transition: opacity 0.3s ease;
}
.r-fig:hover .r-isp__cap { opacity: 1; }

/* progress for booking */
.r-stepper { display: flex; align-items: center; gap: 12px; }
.r-stepper__dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid var(--r-charcoal-30);
  background: transparent;
  transition: all 0.3s ease;
}
.r-stepper__dot[data-state="done"] { background: var(--r-charcoal); border-color: var(--r-charcoal); }
.r-stepper__dot[data-state="active"] { background: var(--r-charcoal); border-color: var(--r-charcoal); transform: scale(1.3); }
.r-stepper__line {
  flex: 1; height: 1px; background: var(--r-charcoal-12); min-width: 28px;
}
.r-stepper__line[data-state="done"] { background: var(--r-charcoal); }

/* tab visit type */
.r-visit-card {
  padding: 28px;
  border: 1px solid var(--r-charcoal-12);
  background: var(--r-ivory);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.r-visit-card:hover { border-color: var(--r-charcoal); }
.r-visit-card[data-active="true"] {
  border-color: var(--r-charcoal); background: var(--r-stone);
}
.r-visit-card[data-active="true"]::after {
  content: "✓"; position: absolute; top: 20px; right: 20px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--r-charcoal); color: var(--r-ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.r-visit-card h4 {
  margin: 0; font-family: var(--r-serif); font-size: 22px;
  font-weight: 400; line-height: 1.15;
}
.r-visit-card p {
  margin: 0; font-size: 13px; line-height: 1.6;
  color: var(--r-charcoal-70);
}
.r-visit-card .r-numtag { margin-bottom: 0; }

/* — Manifesto interactive carousel (home hero) —————————————————— */
.r-mcar { position: absolute; inset: 40px; overflow: hidden; background: var(--r-charcoal); }
.r-mcar__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.r-mcar__track::-webkit-scrollbar { display: none; }
.r-mcar__scene {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
}
.r-mcar__scene-label {
  position: absolute; left: 16px; top: 16px; z-index: 4;
  color: hsla(44, 30%, 92%, 0.72);
  border: 1px solid hsla(44, 30%, 92%, 0.25);
  padding: 6px 10px;
  backdrop-filter: blur(2px);
  max-width: calc(100% - 120px);
}

/* hotspot */
.r-hotspot {
  position: absolute; z-index: 6;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0;
}
.r-hotspot__dot {
  position: relative;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--r-ivory);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.25s ease;
}
.r-hotspot__dot::before {
  content: ""; position: absolute; inset: -7px;
  border-radius: 50%; border: 1px solid var(--r-ivory);
  animation: r-hspulse 2.6s ease-out infinite;
}
@keyframes r-hspulse {
  0%   { transform: scale(0.65); opacity: 0.6; }
  70%  { transform: scale(1.5);  opacity: 0; }
  100% { opacity: 0; }
}
.r-hotspot:hover { z-index: 9; }
.r-hotspot:hover .r-hotspot__dot { transform: scale(1.15); }

.r-hotspot__tip {
  position: absolute;
  left: 50%; bottom: calc(100% + 9px);
  transform: translate(-50%, 6px);
  width: 212px;
  background: var(--r-ivory);
  color: var(--r-charcoal);
  border: 1px solid var(--r-charcoal-12);
  box-shadow: 0 16px 44px rgba(0,0,0,0.24);
  padding: 14px 15px;
  text-align: left;
  display: flex; flex-direction: column; gap: 3px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}
.r-hotspot[data-below="true"] .r-hotspot__tip {
  bottom: auto; top: calc(100% + 9px);
  transform: translate(-50%, -6px);
}
.r-hotspot:hover .r-hotspot__tip {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
  pointer-events: auto;
}
.r-hotspot__tip::after {
  content: ""; position: absolute;
  left: 50%; top: 100%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--r-ivory);
}
.r-hotspot[data-below="true"] .r-hotspot__tip::after {
  top: auto; bottom: 100%;
  border-top-color: transparent; border-bottom-color: var(--r-ivory);
}
.r-hotspot__era {
  font-family: var(--r-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--r-charcoal-50);
}
.r-hotspot__name {
  font-family: var(--r-serif); font-size: 19px; line-height: 1.1;
  letter-spacing: -0.01em; margin-top: 1px;
}
.r-hotspot__row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 8px; gap: 10px;
}
.r-hotspot__price {
  font-family: var(--r-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--r-charcoal);
}
.r-hotspot__go {
  font-family: var(--r-mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--r-charcoal-70);
  border-bottom: 1px solid var(--r-charcoal-30); padding-bottom: 1px;
}

/* carousel controls */
.r-mcar__nav {
  position: absolute; left: 16px; bottom: 16px; z-index: 7;
  display: flex; align-items: center; gap: 12px;
}
.r-mcar__arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid hsla(44, 30%, 92%, 0.4);
  background: rgba(43, 42, 40, 0.4);
  backdrop-filter: blur(4px);
  color: var(--r-ivory); font-size: 15px; line-height: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease, opacity 0.2s ease;
}
.r-mcar__arrow:hover { background: rgba(43, 42, 40, 0.7); }
.r-mcar__arrow:disabled { opacity: 0.3; cursor: default; }
.r-mcar__dots { display: flex; gap: 7px; align-items: center; }
.r-mcar__dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  border: none; background: hsla(44, 30%, 92%, 0.4);
  cursor: pointer; transition: all 0.25s ease;
}
.r-mcar__dot[data-active="true"] { background: var(--r-ivory); width: 22px; border-radius: 4px; }
.r-mcar__index {
  position: absolute; right: 16px; bottom: 24px; z-index: 7;
  color: hsla(44, 30%, 92%, 0.7);
}
@media (prefers-reduced-motion: reduce) {
  .r-hotspot__dot::before { animation: none; }
}

/* — Aree di pratica · 5-up grid (about) ————————————————————————— */
.r-areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--r-charcoal-12);
  border: 1px solid var(--r-charcoal-12);
}
.r-area-card {
  background: var(--r-bg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1240px) {
  .r-areas { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .r-areas { grid-template-columns: 1fr; }
}
