/* =============================================================
   LuxHair Brescia – Main Stylesheet
   Palette: Antracite / Nero opaco / Oro / Beige caldo
   ============================================================= */

/* ── 1. CSS Custom Properties (Design Tokens) ── */
:root {
  --clr-bg: #0d0d0f;
  --clr-bg-alt: #111215;
  --clr-surface: #18191e;
  --clr-surface-2: #1e2028;
  --clr-border: rgba(255, 255, 255, 0.07);
  --clr-border-gold: rgba(196, 160, 95, 0.35);

  --clr-gold: #c4a05f;
  --clr-gold-lt: #d4b47a;
  --clr-gold-dk: #a8853e;
  --clr-beige: #f0e8d8;
  --clr-beige-muted: rgba(240, 232, 216, 0.55);

  --clr-text: #e8e4dc;
  --clr-text-muted: rgba(232, 228, 220, 0.55);
  --clr-text-dim: rgba(232, 228, 220, 0.35);

  --clr-white: #ffffff;
  --clr-success: #4caf87;
  --clr-error: #e07070;
  --clr-wa: #25d366;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 32px rgba(196, 160, 95, 0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --section-gap: clamp(60px, 8vw, 120px);
  --container-w: 1160px;
}

/* ── 2. Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ── 3. Utility Classes ── */
.container {
  width: min(var(--container-w), 100% - 40px);
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--clr-border);
}

.glass-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.mt-sm {
  margin-top: 12px;
}

.mt-md {
  margin-top: 20px;
}

/* ── 4. Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dk));
  color: #0d0d0f;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-gold-lt), var(--clr-gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 160, 95, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-primary.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-primary.btn-confirm {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--clr-gold);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(196, 160, 95, 0.08);
  border-color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--clr-wa);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #20b958;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-whatsapp.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 14px;
}

.btn-service:hover,
.btn-service.selected {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dk));
  color: #0d0d0f;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ── 5. Section Shared Styles ── */
.section {
  padding-block: var(--section-gap);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: var(--clr-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-beige));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ── 6. Scroll Animation (reveal) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grids */
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal:nth-child(6) {
  transition-delay: 0.40s;
}

.reveal:nth-child(7) {
  transition-delay: 0.48s;
}

.reveal:nth-child(8) {
  transition-delay: 0.56s;
}

/* fade-in-up for hero */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.9s ease forwards;
}

.fade-in-up:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-in-up:nth-child(3) {
  animation-delay: 0.6s;
}

.fade-in-up:nth-child(4) {
  animation-delay: 0.75s;
}

.fade-in-up:nth-child(5) {
  animation-delay: 0.9s;
}

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

/* ── 7. NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
  padding: 12px 0;
}

.navbar.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--clr-text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dk));
  color: #0d0d0f !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--clr-gold-lt), var(--clr-gold)) !important;
  color: #0d0d0f !important;
}

.nav-auth-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-auth-btn:hover {
  color: var(--clr-gold);
  border-color: var(--clr-border-gold);
  background: rgba(196, 160, 95, 0.05);
}

.nav-auth-btn.logged-in {
  color: var(--clr-gold);
  border-color: var(--clr-border-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 8. HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&q=80&w=1600');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 0.1s linear;
  /* parallax via JS */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 13, 15, 0.92) 0%,
      rgba(13, 13, 15, 0.75) 50%,
      rgba(13, 13, 15, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(196, 160, 95, 0.12);
  border: 1px solid var(--clr-border-gold);
  border-radius: 100px;
  color: var(--clr-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-beige));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  text-align: center;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 26px;
  height: 26px;
  border-right: 2px solid var(--clr-gold);
  border-bottom: 2px solid var(--clr-gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 1;
  }
}

@media (max-height: 700px) and (max-width: 768px) {
  .hero-scroll-hint {
    display: none;
  }
}

/* ── 9. ABOUT ── */
.about-section {
  background: var(--clr-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 15, 0.6) 0%, transparent 60%);
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 160, 95, 0.08), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(196, 160, 95, 0.25);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
  color: var(--clr-gold);
}

.premium-avatar svg {
  width: 35%;
  height: 35%;
  stroke: var(--clr-gold);
  filter: drop-shadow(0 0 10px rgba(196, 160, 95, 0.3));
}

.about-image-frame:hover .about-img {
  transform: scale(1.04);
}

.about-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.badge-icon {
  font-size: 1.6rem;
}

.about-badge-float strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clr-gold);
}

.about-badge-float small {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}

.about-text .section-tag {
  text-align: left;
  display: block;
}

.about-text .section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--clr-border-gold);
  background: rgba(196, 160, 95, 0.04);
}

/* Icone feature nella sezione Chi Sono */
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196, 160, 95, 0.08);
  border: 1px solid rgba(196, 160, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--clr-gold);
  transition: var(--transition);
}

.feature-icon svg {
  stroke: var(--clr-gold);
}

.about-feature:hover .feature-icon {
  background: rgba(196, 160, 95, 0.14);
  border-color: rgba(196, 160, 95, 0.4);
}

.about-feature strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

/* ── 10. SERVICES ── */
.services-section {
  background: var(--clr-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(196, 160, 95, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-featured {
  border-color: rgba(196, 160, 95, 0.4);
  background: linear-gradient(135deg, rgba(196, 160, 95, 0.08), var(--clr-surface) 60%);
}

.service-card-inner {
  padding: 28px 24px;
}

/* Icona servizio: riquadro quadrato con SVG gold */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(196, 160, 95, 0.08);
  border: 1px solid rgba(196, 160, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--clr-gold);
  transition: var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--clr-gold);
}

.service-card:hover .service-icon {
  background: rgba(196, 160, 95, 0.15);
  border-color: rgba(196, 160, 95, 0.45);
  box-shadow: 0 0 16px rgba(196, 160, 95, 0.15);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.service-duration svg {
  stroke: var(--clr-text-muted);
  flex-shrink: 0;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
}

/* ── 11. COVERAGE ── */
.coverage-section {
  background: var(--clr-bg-alt);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.coverage-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.coverage-card:hover {
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
}

/* Icone coverage card heading */
.coverage-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
}

.coverage-card h3 svg {
  stroke: var(--clr-gold);
  flex-shrink: 0;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coverage-list li {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  padding-left: 16px;
  position: relative;
}

.coverage-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 0.75rem;
}

.coverage-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px dashed var(--clr-border-gold);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.coverage-note strong {
  color: var(--clr-gold);
}

.coverage-note svg {
  flex-shrink: 0;
  stroke: var(--clr-gold);
}

/* ── 12. REVIEWS ── */
.reviews-section {
  background: var(--clr-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--clr-gold);
  opacity: 0.1;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--clr-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-dk), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0d0d0f;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
}

.review-author small {
  color: var(--clr-text-muted);
  font-size: 0.78rem;
}

/* ── 13. BOOKING ── */
.booking-section {
  background: var(--clr-bg-alt);
}

.booking-wrapper {
  max-width: 800px;
  margin-inline: auto;
}

/* Step Indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  transition: var(--transition);
}

.step span {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.step.active .step-num {
  border-color: var(--clr-gold);
  background: var(--clr-gold);
  color: #0d0d0f;
}

.step.active span {
  color: var(--clr-gold);
  font-weight: 600;
}

.step.done .step-num {
  border-color: var(--clr-success);
  background: var(--clr-success);
  color: #0d0d0f;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--clr-border);
  margin: 0 8px;
  min-width: 24px;
  margin-bottom: 22px;
}

/* Booking Form */
.booking-form {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
}

.booking-step {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
}

.step-hint {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(196, 160, 95, 0.12);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(224, 112, 112, 0.12);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--clr-surface);
  color: var(--clr-text);
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.addr-via {
  flex: 3;
}

.addr-civ {
  flex: 1;
}

/* Services Checkboxes in Booking */
.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.svc-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.svc-check-item:hover {
  border-color: var(--clr-border-gold);
  background: rgba(196, 160, 95, 0.04);
}

.svc-check-item.checked {
  border-color: var(--clr-gold);
  background: rgba(196, 160, 95, 0.08);
}

.svc-check-item input[type="checkbox"] {
  display: none;
}

.svc-check-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--clr-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.svc-check-item.checked .svc-check-box {
  border-color: var(--clr-gold);
  background: var(--clr-gold);
}

.svc-check-box::after {
  content: '✓';
  font-size: 0.7rem;
  color: #0d0d0f;
  opacity: 0;
  transition: opacity 0.2s;
}

.svc-check-item.checked .svc-check-box::after {
  opacity: 1;
}

.svc-check-info {
  flex: 1;
  min-width: 0;
}

.svc-check-info strong {
  display: block;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.svc-check-info span {
  font-size: 0.8rem;
  color: var(--clr-gold);
  font-weight: 600;
}

/* Icona SVG nel checkbox servizio (booking form step 2) */
.svc-check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.svc-check-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.svc-check-item.checked .svc-check-icon {
  color: var(--clr-gold);
}

/* Booking Summary Bar */
.booking-summary-bar {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(196, 160, 95, 0.06);
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.summary-item strong {
  color: var(--clr-gold);
  font-size: 1rem;
}

/* Time Slots */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.time-slot {
  padding: 8px 16px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
  color: var(--clr-text-muted);
}

.time-slot:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.time-slot.selected {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #0d0d0f;
  font-weight: 600;
}

.time-slot.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Datetime grid */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-bottom: 20px;
  align-items: start;
}

/* Booking Recap */
.booking-recap {
  margin-bottom: 24px;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
  gap: 12px;
}

.recap-row:last-child {
  border-bottom: none;
}

.recap-row .label {
  color: var(--clr-text-muted);
  flex-shrink: 0;
}

.recap-row .value {
  text-align: right;
  font-weight: 500;
  word-break: break-word;
}

.recap-row.total-row .value {
  color: var(--clr-gold);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Step Nav */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}

/* Success Screen */
.success-screen {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-success), #38a87c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-screen h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.success-sub {
  font-size: 0.85rem;
  margin-bottom: 28px;
}

/* ── 14. CONTACTS ── */
.contact-section {
  background: var(--clr-bg);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  gap: 12px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.wa-icon {
  background: rgba(37, 211, 102, 0.12);
  color: var(--clr-wa);
}

.phone-icon {
  background: rgba(196, 160, 95, 0.12);
  color: var(--clr-gold);
}

.email-icon {
  background: rgba(196, 160, 95, 0.12);
  color: var(--clr-gold);
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.contact-action {
  color: var(--clr-gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  transition: var(--transition);
}

.contact-card:hover .contact-action {
  letter-spacing: 0.05em;
}

/* ── 15. AUTH OVERLAY ── */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeOverlay 0.25s ease;
  padding: 20px;
  overflow-y: auto;
}

@keyframes fadeOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.auth-modal,
.dashboard-modal {
  position: relative;
  width: min(480px, 100%);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-modal {
  width: min(620px, 100%);
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

.auth-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-text);
}

.auth-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--clr-gold);
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: calc(var(--radius-md) - 2px);
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.auth-tab.active {
  background: var(--clr-gold);
  color: #0d0d0f;
  font-weight: 600;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-error {
  padding: 10px 14px;
  background: rgba(224, 112, 112, 0.1);
  border: 1px solid rgba(224, 112, 112, 0.3);
  border-radius: var(--radius-sm);
  color: var(--clr-error);
  font-size: 0.85rem;
}

.auth-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.auth-hint a {
  color: var(--clr-gold);
  text-decoration: underline;
}

/* Dashboard */
.dashboard-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 6px;
  text-align: center;
}

.dashboard-welcome {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.dashboard-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 4px;
}

.d-tab {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: calc(var(--radius-md) - 2px);
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.d-tab.active {
  background: var(--clr-gold);
  color: #0d0d0f;
  font-weight: 600;
}

.dtab-content {
  min-height: 100px;
}

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}

.booking-item {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.booking-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.booking-item-header strong {
  font-size: 0.9rem;
}

.status-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.confermata {
  background: rgba(76, 175, 135, 0.15);
  color: var(--clr-success);
  border: 1px solid rgba(76, 175, 135, 0.3);
}

.status-badge.completata {
  background: rgba(196, 160, 95, 0.15);
  color: var(--clr-gold);
  border: 1px solid var(--clr-border-gold);
}

.status-badge.in-attesa {
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}

.booking-item-details {
  color: var(--clr-text-muted);
}

.booking-item-details span {
  margin-right: 12px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 32px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.empty-state .es-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* ── 16. FOOTER ── */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-gold);
  flex-shrink: 0;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-links li {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-text);
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-link {
  color: var(--clr-gold);
}

.footer-link:hover {
  text-decoration: underline;
}

/* ── 17. FLOATING WHATSAPP BUTTON ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--clr-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}

.float-wa:hover {
  background: #20b958;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65);
  }
}

/* ── 18. RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 420px;
    margin-inline: auto;
  }

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .nav-logo {
    position: relative;
    z-index: 1000;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 24px 60px;
    gap: 16px;
    overflow-y: auto;
    z-index: 990;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.10s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.20s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.30s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links.open li:nth-child(7) {
    transition-delay: 0.40s;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 16px;
    text-align: center;
    display: block;
    width: 100%;
  }

  .nav-auth-btn {
    justify-content: center;
    padding: 14px 16px;
    font-size: 1.15rem;
    width: 100%;
  }

  .btn-nav-cta {
    text-align: center;
    display: flex !important;
    justify-content: center;
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

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

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

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

  .booking-steps {
    gap: 0;
  }

  .step span {
    display: none;
  }

  .step-line {
    min-width: 16px;
  }

  .services-checkboxes {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    flex-direction: column;
  }

  .addr-via,
  .addr-civ {
    flex: unset;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .auth-modal,
  .dashboard-modal {
    padding: 28px 20px;
  }

  .booking-summary-bar {
    flex-direction: column;
    gap: 8px;
  }

  .step-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .stat {
    flex: 1 1 40%;
  }

  .stat-sep {
    display: none;
  }

  /* Fallback in caso JS/IntersectionObserver non si attivino su Safari/iPhone */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .about-badge-float {
    right: 0;
    bottom: -10px;
  }

  .float-wa {
    bottom: 20px;
    right: 20px;
  }

  .booking-form {
    padding: 20px 16px;
  }
}

/* ── 19. Scrollbar Styling ── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-border-gold);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold);
}

/* ── 20. Selection ── */
::selection {
  background: rgba(196, 160, 95, 0.25);
  color: var(--clr-text);
}

/* ── 21. Date Input Styling ── */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

/* ── 22. Textarea ── */
textarea {
  resize: vertical;
  min-height: 90px;
}