/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors - Warm Mediterranean / Rustic Authentic */
  --clr-terracotta: #d35400;
  --clr-terracotta-dark: #a04000;
  --clr-terracotta-light: #e67e22;
  --clr-ochre: #f39c12;
  --clr-lemon: #f1c40f;
  --clr-wood-dark: #2c1a0e;
  --clr-wood-medium: #5c4033;
  --clr-whitewash: #fbfbf9;
  --clr-white: #ffffff;
  --clr-text-main: #333333;
  --clr-text-light: #666666;
  
  /* Typography */
  --font-primary: 'Lora', serif;
  --font-display: 'Playfair Display', serif;
  --font-accent: 'Great Vibes', cursive;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Shadows & Glass */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(12px);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
*, *::before, *::after {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--clr-text-main);
  background-color: var(--clr-whitewash);
  /* Stylized Volcano Background */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e67e22" fill-opacity="0.05" d="M0,256L48,261.3C96,267,192,277,288,266.7C384,256,480,224,576,197.3C672,171,768,149,864,165.3C960,181,1056,235,1152,240C1248,245,1344,203,1392,181.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path><path fill="%23d35400" fill-opacity="0.08" d="M0,192L60,197.3C120,203,240,213,360,202.7C480,192,600,160,720,138.7C840,117,960,107,1080,117.3C1200,128,1320,160,1380,176L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  line-height: 1.6;
  position: relative; /* For the animated background */
}

/* ==========================================================================
   ANIMATED BACKGROUND SYMBOLS
   ========================================================================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -5; /* Behind everything again */
  pointer-events: none; /* Crucial so it doesn't block clicks */
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  font-size: 3rem;
  color: var(--clr-terracotta);
  opacity: 0.08;
  pointer-events: none;
  animation: float-around 20s infinite ease-in-out alternate;
}

.shape-1 { top: 15%; left: 10%; animation-duration: 25s; }
.shape-2 { top: 65%; left: 85%; animation-duration: 22s; animation-delay: -5s; font-size: 5rem; }
.shape-3 { top: 40%; left: 50%; animation-duration: 30s; animation-delay: -10s; font-size: 3rem; }
.shape-4 { top: 80%; left: 20%; animation-duration: 28s; animation-delay: -15s; font-size: 4.5rem; }
.shape-5 { top: 25%; left: 75%; animation-duration: 24s; animation-delay: -7s; }
.shape-6 { top: 5%; left: 40%; animation-duration: 26s; animation-delay: -2s; font-size: 3.5rem; }
.shape-7 { top: 55%; left: 15%; animation-duration: 29s; animation-delay: -12s; font-size: 2.8rem; }
.shape-8 { top: 85%; left: 60%; animation-duration: 21s; animation-delay: -8s; font-size: 4.2rem; }

@keyframes float-around {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -40px) rotate(15deg); }
  50% { transform: translate(-20px, -60px) rotate(-10deg); }
  75% { transform: translate(-50px, 30px) rotate(20deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-wood-dark);
  line-height: 1.2;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.text-center { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.section-title:hover {
  color: var(--clr-terracotta);
  transform: translateY(-2px);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--clr-text-light);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--clr-wood-dark);
  padding: 4rem 1rem 2rem;
  color: var(--clr-white);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.3);
}

.footer p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--clr-terracotta);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--clr-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   NAVBAR (STICKY GLASSMORPHISM)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-fast);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--clr-terracotta-dark);
}

.logo svg {
  width: 45px;
  height: 45px;
}

/* ==========================================================================
   HERO VIDEO SECTION
   ========================================================================== */
.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
  filter: blur(5px) brightness(0.7);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.hero-video-content {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  max-width: 800px;
  padding: 0 var(--spacing-sm);
  margin-top: 50px;
}

.hero-video-content .hero-title {
  color: var(--clr-white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-video-content .hero-desc {
  color: var(--clr-whitewash);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--spacing-sm);
  color: var(--clr-wood-dark);
}

.hero-title-accent {
  font-family: var(--font-accent);
  color: var(--clr-terracotta);
  font-weight: 400;
  font-size: 1.1em;
}

/* ==========================================================================
   ESPLORA LA PROPRIETA (GALLERY)
   ========================================================================== */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-bg {
  background-color: rgba(251, 251, 249, 0.85); /* Semi-transparent to see the animated background */
  backdrop-filter: blur(5px);
}

.section-dark {
  background-color: var(--clr-wood-dark);
  color: var(--clr-white);
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5); /* subtle inner shadow for depth */
}

.section-dark .section-title {
  color: var(--clr-white);
}

.section-dark .section-subtitle,
.section-dark p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.section-dark h4 {
  color: var(--clr-white);
}

/* ==========================================================================
   CURIOSITY ICONS
   ========================================================================== */
.curiosity-popup {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  z-index: 20;
}

.curiosity-icon {
  font-size: 1.2rem;
  background: var(--clr-terracotta);
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse-glow 2s infinite;
}

/* Default Desktop Positions */
.popup-1 { top: -20px; right: 5%; }
.popup-2 { top: 10%; left: 5%; }
.popup-3 { top: -20px; right: 10%; }

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(211, 84, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0); }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  color: var(--clr-white);
  z-index: 2;
}

.gallery-card-title {
  font-size: 1.5rem;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   VIVI LOCALITA (HORIZONTAL SCROLL)
   ========================================================================== */
.vivi-container {
  overflow-x: auto;
  padding-bottom: var(--spacing-sm);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: var(--spacing-md);
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--clr-terracotta) var(--clr-white);
}

.vivi-container::-webkit-scrollbar {
  height: 8px;
  -webkit-appearance: none;
}

.vivi-container::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.vivi-container::-webkit-scrollbar-thumb {
  background: var(--clr-terracotta);
  border-radius: 4px;
}

.vivi-card {
  flex: 0 0 calc(33.333% - var(--spacing-md));
  min-width: 300px;
  scroll-snap-align: start;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.vivi-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.vivi-card-body {
  padding: var(--spacing-sm);
}

.vivi-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Shake Animation Class */
.shake-horizontal {
  animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-10px, 0, 0); }
  20%, 80% { transform: translate3d(-120px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-110px, 0, 0); }
  40%, 60% { transform: translate3d(-120px, 0, 0); }
}

/* ==========================================================================
   GALLERY COVER
   ========================================================================== */
.gallery-cover {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-cover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-cover:hover img {
  transform: scale(1.05);
}

.gallery-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.gallery-cover:hover .gallery-cover-overlay {
  background: rgba(0,0,0,0.5);
}

.gallery-cover-overlay span {
  color: white;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 0 5px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.gallery-cover:hover .gallery-cover-overlay span {
  transform: scale(1.05);
  background: rgba(255,255,255,0.2);
}

/* ==========================================================================
   DOVE SIAMO
   ========================================================================== */
.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   MODALS (GALLERY & BOOKING)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

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

.modal-content {
  background: var(--clr-white);
  border-radius: var(--border-radius-md);
  width: 90%;
  max-width: 500px;
  padding: var(--spacing-md);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--clr-text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--clr-terracotta);
}

/* Booking Form */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--clr-wood-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-terracotta);
  box-shadow: 0 0 0 2px rgba(211, 84, 0, 0.2);
}

.counters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--clr-terracotta);
  background: var(--clr-white);
  color: var(--clr-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.counter-btn:hover {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}

.counter-val {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

.btn-block {
  width: 100%;
}

/* Lightbox Gallery Modal */
.lightbox-content {
  background: transparent;
  max-width: 90vw;
  height: 80vh;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  transition: opacity 0.3s ease;
}

.lightbox-img.loading {
  opacity: 0;
}

.gallery-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.5);
  padding: 5px 15px;
  border-radius: 20px;
  z-index: 1010;
}

.lightbox-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.lightbox-btn {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-wood-dark);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.lightbox-btn:hover {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}

/* ==========================================================================
   WHATSAPP BUBBLE
   ========================================================================== */
.wa-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  color: white;
  text-decoration: none;
  animation: pulse-wa 2s infinite;
  transition: transform var(--transition-fast);
}

.wa-bubble:hover {
  transform: scale(1.1);
}

.wa-bubble svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   UTILITIES & ANIMATIONS
   ========================================================================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-3 { margin-top: 3rem; }

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }

/* Floating Map Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.map-float {
  animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   RESPONSIVE (MOBILE FIRST ESTREMO)
   ========================================================================== */
@media (max-width: 768px) {
  /* Navbar Tweaks */
  .nav-links {
    display: none !important;
  }
  
  .logo {
    font-size: 1.5rem;
    gap: 8px;
  }
  
  .logo svg {
    width: 35px;
    height: 35px;
  }
  
  .navbar .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Hero Tweaks */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-images {
    margin-top: 0;
  }
  
  .hero-images svg {
    max-width: 100% !important;
    height: auto;
  }
  
  .map-container {
    height: 300px;
  }
  
  /* Curiosity Popup Mobile Positioning */
  .popup-1 { top: -45px; right: 2%; } /* Above 'Gli Interni' */
  .popup-2 { top: -2%; left: 2%; }    /* Higher up from content */
  .popup-3 { top: -45px; right: 2%; } /* Above 'Vieni a Trovarci' */

  .gallery-cover-overlay span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0 15px 5px 15px;
    line-height: 1.4;
  }
  
  .mobile-stack-list {
    gap: 1.5rem !important;
  }
  
  .mobile-stack-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  /* Peeking effect per orizzontale */
  .vivi-card {
    flex: 0 0 85%;
    min-width: auto;
  }
  
  .wa-bubble {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .wa-bubble svg {
    width: 28px;
    height: 28px;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
}
