/* ============================================================
   EVOOS — Design System & Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  /* Colors */
  --color-bg: #FDFAF3;
  --color-bg-alt: #F5F0E3;
  --color-bg-dark: #2C2417;
  --color-text: #2C2417;
  --color-text-light: #6B5E4B;
  --color-text-muted: #9A8D7A;
  --color-gold: #C5A044;
  --color-gold-light: #D4AF37;
  --color-gold-dark: #8B7D3C;
  --color-gold-pale: #EDE4C8;
  --color-white: #FFFFFF;
  --color-border: #E8DFC9;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;
  --gap: 32px;

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

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --- Section --- */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-bg);
}

.section--dark .section__subtitle {
  color: var(--color-gold-pale);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.section__read-more {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.section__read-more:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(44, 36, 23, 0.06);
}

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

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-white);
  transition: color var(--transition);
}

.navbar.scrolled .navbar__logo {
  color: var(--color-text);
}

.navbar__links {
  display: flex;
  gap: 36px;
}

.navbar__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .navbar__link {
  color: var(--color-text-light);
}

.navbar__link:hover,
.navbar.scrolled .navbar__link:hover {
  color: var(--color-gold);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.navbar__link:hover::after {
  width: 100%;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--color-text);
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 28px;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__link,
  .navbar.scrolled .navbar__link {
    color: var(--color-text);
    font-size: 1rem;
  }

  .navbar__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  .navbar__overlay.active {
    display: block;
  }
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(44, 36, 23, 0.55) 0%,
      rgba(44, 36, 23, 0.40) 50%,
      rgba(44, 36, 23, 0.70) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 0 20px;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 6px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(197, 160, 68, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197, 160, 68, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================================
   BLEND
   ============================================================ */
.blend__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.blend__text p {
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-size: 1.02rem;
}

.blend__percentages {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blend__bar {
  position: relative;
}

.blend__bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blend__bar-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.blend__bar-pct {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.blend__bar-track {
  width: 100%;
  height: 8px;
  background: var(--color-gold-pale);
  border-radius: 4px;
  overflow: hidden;
}

.blend__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .blend__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   CULTIVAR
   ============================================================ */
.cultivar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.cultivar__card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cultivar__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.cultivar__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 36, 23, 0.08);
}

.cultivar__card:hover::before {
  transform: scaleX(1);
}

.cultivar__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  transition: transform var(--transition);
}

.cultivar__card:hover .cultivar__icon svg {
  transform: scale(1.1);
}

.cultivar__pct {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.cultivar__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cultivar__desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cultivar__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   TERRITORIO
   ============================================================ */
.territorio__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.territorio__image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #6B8F4E, #8BA866, #A3C47A);
}

.territorio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.territorio__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.territorio__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.territorio__details h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.territorio__details p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.8;
}

.territorio__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.territorio__fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.territorio__fact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.territorio__fact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 2;
}

.territorio__fact-text {
  font-size: 0.9rem;
}

.territorio__fact-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.territorio__fact-text span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .territorio__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ============================================================
   PROFILO SENSORIALE
   ============================================================ */
.profilo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}

.profilo__item {
  text-align: center;
}

.profilo__ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.profilo__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.profilo__ring circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.profilo__ring .track {
  stroke: var(--color-gold-pale);
}

.profilo__ring .fill {
  stroke: var(--color-gold);
  stroke-dasharray: 408;
  stroke-dashoffset: 408;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profilo__ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.profilo__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.profilo__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .profilo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   ABBINAMENTI
   ============================================================ */
.abbinamenti__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.abbinamenti__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.abbinamenti__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.abbinamenti__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 36, 23, 0.08);
  border-color: var(--color-gold-pale);
}

.abbinamenti__card:hover::before {
  transform: scaleX(1);
}

.abbinamenti__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.abbinamenti__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: all var(--transition);
}

.abbinamenti__card:hover .abbinamenti__card-icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.abbinamenti__card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
}

.abbinamenti__card-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 16px;
  padding-left: 64px;
}

.abbinamenti__card-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.abbinamenti__card-insight {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .abbinamenti__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .abbinamenti__card {
    padding: 28px 24px;
  }

  .abbinamenti__card-tagline {
    padding-left: 0;
  }
}

/* ============================================================
   VALORI
   ============================================================ */
.valori__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.valori__item {
  text-align: center;
  padding: 40px 20px;
}

.valori__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(197, 160, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.valori__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  stroke-width: 2;
}

.valori__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-bg);
}

.valori__desc {
  font-size: 0.85rem;
  color: var(--color-gold-pale);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .valori__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-gold-pale);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 350px;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--color-gold-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(197, 160, 68, 0.1);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ============================================================
   GALLERIA
   ============================================================ */
.gallery__carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery__carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 16px;
}

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

.gallery__carousel-item {
  flex: 0 0 calc(100% - 32px);
  scroll-snap-align: center;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 16px;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery__carousel-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(44, 36, 23, 0.15);
}

.gallery__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg);
  box-shadow: 0 4px 20px rgba(44, 36, 23, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.gallery__carousel-btn:hover {
  background: var(--color-gold);
}

.gallery__carousel-btn:hover svg {
  stroke: var(--color-white);
}

.gallery__carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
  stroke-width: 2;
}

.gallery__carousel-btn--prev {
  left: -24px;
}

.gallery__carousel-btn--next {
  right: -24px;
}

.gallery__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.gallery__carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery__carousel-dots .dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery__carousel-btn--prev {
    left: 8px;
  }

  .gallery__carousel-btn--next {
    right: 8px;
  }
}

@media (max-width: 768px) {
  .gallery__carousel-item {
    flex: 0 0 calc(100% - 32px);
  }

  .gallery__carousel-btn {
    display: none;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-gold-pale);
  border-radius: 4px;
}

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