/* ===================================================
   CREATION ARTS - Luxury Sculpture Studio
   Design System & Styles
   =================================================== */

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

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --cream: #FAF7F0;
  --cream-dark: #f0eae0;
  --gold: #cba358;
  --gold-light: #e0c284;
  --gold-dark: #a8813d;
  --green: #2a3a31;
  --green-dark: #1e2922;
  --olive: #465a4a;
  --pista: #e4eed8;
  --pista-light: #f1f6eb;
  --pista-dark: #ccdac0;
  --white: #FFFFFF;
  --black: #1a1a1a;
  --dark: #1b211d; /* Very dark green/black */
  --gray: #6b6b6b;
  --gray-light: #9e9e9e;
  --gray-lighter: #e0e0e0;
  --overlay: rgba(30, 41, 34, 0.8);

  /* Added Custom Styling */
  --pastel-green: #3F6E3B; /* Custom green for buttons and icons */
  --pastel-green-hover: #2b4e28;
  --pastel-outline: #3F6E3B; /* Text color for pastel bg */

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Prompt', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(42, 58, 49, 0.05);
  --shadow: 0 8px 30px rgba(42, 58, 49, 0.08);
  --shadow-lg: 0 15px 50px rgba(42, 58, 49, 0.12);
  --shadow-pista: 0 4px 20px rgba(203, 163, 88, 0.2);
}

/* ===== 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);
  font-weight: 400;
  color: var(--green-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
}

h1 {
  font-size: 3.8rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 500;
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-style: italic;
}

p {
  margin-bottom: 16px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.display-font {
  font-family: var(--font-display);
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.15;
}

.section-title i, .section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
  text-align: center;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--pista-dark);
  margin-bottom: 24px;
}

.gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Layout ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

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

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

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

.section.bg-dark h2,
.section.bg-dark h3,
.section.bg-dark h4,
.section.bg-dark .section-title {
  color: var(--cream);
}

.section.bg-dark p,
.section.bg-dark .section-subtitle {
  color: var(--gray-light);
}

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

.text-gold {
  color: var(--olive);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  background: var(--white);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 65px;
}

.navbar-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  display: none;
}

.navbar.scrolled .navbar-logo span {
  color: var(--green);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .nav-link {
  color: var(--green-dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--olive);
}

.nav-link .arrow {
  font-size: 0.6rem;
  transition: var(--transition);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 2px solid var(--gold);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--green-dark);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.dropdown a:hover {
  background: var(--yellow-light);
  color: var(--green);
  padding-left: 30px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background: var(--green-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section (Redesigned) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-color: var(--cream);
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cream-dark);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  align-items: center;
  position: relative;
}

/* Left Content */
.hero-left {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  padding-bottom: 60px;
}

.hero-left .section-label {
  color: var(--olive);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}

.hero-title .hero-highlight {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 300;
  color: var(--green);
}

.hero-cta {
  padding: 16px 48px;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  width: fit-content;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* Center Image */
.hero-center {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-statue {
  max-height: 90vh;
  /* Slightly reduced */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
  transition: transform 0.1s ease-out;
  transform-origin: bottom center;
}

/* Right Content */
.hero-right {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Centered vertically like left */
  height: 100%;
  padding: 0 0 0 40px;
  position: relative;
}

.hero-desc-block {
  margin-bottom: 40px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: normal;
  color: var(--green);
}

.desc-line {
  width: 40px;
  height: 2px;
  background: var(--pista-dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 0;
  max-width: 450px;
  /* Limit width for readability */
}

/* Utilities */
.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

/* Animations using Keyframes */
@keyframes fadeInRightSlide {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes fadeInUpSlide {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

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

@keyframes fadeInLeftSlide {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

.fade-in-left {
  animation: fadeInRightSlide 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in-up {
  animation: fadeInUpSlide 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.fade-in-right {
  animation: fadeInLeftSlide 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.hero-statue {
  /* Simple breathing animation */
  animation: statueBreathe 8s ease-in-out infinite alternate;
}

@keyframes statueBreathe {
  0% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1.32);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    display: block;
    /* Remove flex centering */
  }

  .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    height: auto;
    padding: 0;
    text-align: center;
    /* Center align for mobile */
    align-items: center;
  }

  .hero-center {
    height: auto;
    order: 2;
    /* Statue in middle */
    margin: 40px 0; /* Increased margin to prevent transformed statue from overlapping */
  }

  .hero-statue {
    max-height: 50vh;
    width: 80%;
    margin: 0 auto;
  }

  .hero-left {
    order: 1;
    padding-bottom: 0;
  }

  .hero-right {
    order: 3;
    padding-top: 20px;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .desc-line {
    margin: 0 auto 1.5rem;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-title .hero-highlight {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .hero-statue {
    max-height: 40vh;
    width: 100%;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.7rem;
    padding: 14px 20px;
  }
}

/* Page Hero (Subpages) - Minimalist Sculptural Design */
.page-hero {
  position: relative;
  height: auto;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--cream);
  padding: 180px 20px 120px; /* Increased padding top and bottom */
  border-bottom: 1px solid var(--gray-lighter);
}


.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Subtle dark overlay for text readability */
  z-index: 2;
}

.page-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  color: var(--white); /* White text for contrast against background */
}

.page-hero .hero-content .section-label {
  color: var(--gold-light); /* Cream gold */
  margin-bottom: 28px;
}

.page-hero .hero-content h1 {
  font-size: 4rem;
  color: var(--pista-light); /* Pista white / very light pastel green */
  margin-bottom: 32px;
  line-height: 1.1;
  font-weight: 400;
  min-height: 1.2em; /* Prevents container from collapsing during typewriter effect */
}

.page-hero .hero-content h1 em,
.page-hero .hero-content h1 i {
  font-style: italic;
  font-weight: 300;
}

.page-hero .hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--cream);
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--pastel-green);
  color: var(--white); /* text light for solid fill button */
  border-color: var(--pastel-green);
}

.btn-primary:hover {
  background: var(--pastel-green-hover);
  border-color: var(--pastel-green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--pastel-green);
}

.btn-outline:hover {
  background: var(--pastel-green);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background: var(--pista-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--pastel-green);
  color: var(--white); 
  border-color: var(--pastel-green);
}

.btn-dark:hover {
  background: var(--pastel-green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-dark {
  background: transparent;
  color: var(--pastel-green);
  border: 1px solid var(--pastel-green);
}

.btn-outline-dark:hover {
  background: var(--pastel-green);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  box-shadow: none;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--pista-dark);
  box-shadow: var(--shadow-sm);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--green);
}

.card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.card-link:hover {
  gap: 10px;
  color: var(--green);
}

/* Icon Card */
.icon-card {
  background: var(--white);
  border-radius: 0;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--olive);
}

.icon-card .icon {
  width: 64px;
  height: 64px;
  background: var(--pista-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--pastel-green);
  /* For SVG stroke */
}

.icon-card .icon svg {
  width: 32px;
  height: 32px;
}

.animate-icon svg {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

.icon-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.icon-card p {
  font-size: 0.88rem;
}

/* Stat Number (Countdown) */
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.icon-card:hover .stat-number {
  transform: scale(1.05);
}

/* Numbered Card */
.numbered-card {
  position: relative;
  background: var(--white);
  border-radius: 0;
  padding: 36px 28px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.numbered-card:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow);
}

.numbered-card .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pista-dark);
  margin-bottom: 16px;
  line-height: 1;
}

.numbered-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.numbered-card p {
  font-size: 0.88rem;
}

/* ===== Process / Timeline ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--pista-dark);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--pista-dark);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: translateY(-8px) scale(1.1);
  background: var(--gold);
  color: var(--white);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-style: normal;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Icon Animation - Shade Shift */
.animate-icon svg {
  animation: shadeShift 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes shadeShift {
  0% {
    color: var(--pastel-green);
    filter: drop-shadow(0 0 0 rgba(63, 110, 59, 0));
  }

  50% {
    color: var(--pastel-green-hover);
    filter: drop-shadow(0 0 8px rgba(63, 110, 59, 0.4));
  }

  100% {
    color: var(--pastel-green);
    filter: drop-shadow(0 0 0 rgba(63, 110, 59, 0));
  }
}

.icon-card:hover .animate-icon svg {
  transform: scale(1.15) rotate(10deg);
  animation-play-state: paused;
}

/* Gold Pulse Animation for Icons */
.animate-gold-icon svg {
  animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(203, 163, 88, 0.4));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(203, 163, 88, 0.8));
    color: var(--gold-light);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(203, 163, 88, 0.4));
  }
}

.sparkle-anim {
  animation: sparkleRotate 3s infinite linear;
}

@keyframes sparkleRotate {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(90deg); }
  50% { transform: scale(1) rotate(180deg); }
  75% { transform: scale(1.2) rotate(270deg); }
  100% { transform: scale(1) rotate(360deg); }
}


/* ===== Testimonial Carousel ===== */
.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 60px;
}

.testimonial-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 0;
  padding: 40px;
  border: 1px solid var(--cream-dark);
  position: relative;
  min-width: 100%;
  flex: 0 0 100%;
  box-shadow: none;
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
    /* 2 per view */
    flex: 0 0 calc(50% - 15px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: calc(33.333% - 20px);
    /* 3 per view */
    flex: 0 0 calc(33.333% - 20px);
  }
}

.testimonial-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--pista-dark);
  /* Lighter gold for the quote mark */
  opacity: 0.3;
  position: absolute;
  top: 15px;
  left: 5px; /* Moved slightly more to the left */
  line-height: 1;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--green-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--olive);
  margin-top: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 14px;
  height: 14px;
  color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  color: var(--pastel-green);
}

.dot.active svg {
  transform: scale(1.4) rotate(180deg);
  animation: pulseRotate 2s infinite ease-in-out;
}

@keyframes pulseRotate {
  0% { transform: scale(1.4) rotate(180deg); }
  50% { transform: scale(1.6) rotate(360deg); color: var(--green); }
  100% { transform: scale(1.4) rotate(540deg); }
}

/* Corporate/Branded Reliefs section matches (if needed) */
.corporate-reliefs {
  display: none;
  /* Just placeholder if needed */
}

/* ===== FAQ Accordion ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-lighter);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  background: transparent;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 400;
  width: 100%;
}

/* h3 removal */
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--olive);
  transition: var(--transition);
  flex-shrink: 0;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.faq-item.active .faq-icon {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.faq-answer li {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.faq-answer li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--olive);
}

/* ===== Content Sections ===== */
.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.content-block h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.content-block p {
  margin-bottom: 14px;
}

.content-block ul {
  margin-bottom: 16px;
}

.content-block li {
  font-size: 0.92rem;
  color: var(--gray);
  padding: 6px 0 6px 24px;
  position: relative;
}

.content-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--pista-dark);
  border-radius: 50%;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--olive);
  margin: 20px 0 24px;
  padding-left: 20px;
  border-left: 3px solid var(--pista-dark);
}

/* Signature List Styles */
.signature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.signature-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 14px !important;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.content-block .signature-item::before {
  content: none !important;
}

.signature-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sig-bg {
  fill: var(--pista-light);
  stroke: rgba(26, 26, 26, 0.3);
  stroke-width: 1px;
  transition: all 0.3s ease;
}

.sig-check {
  stroke: var(--pastel-green);
  transition: all 0.3s ease;
}

.signature-item:hover .sig-bg,
.signature-item.active .sig-bg {
  fill: var(--gold);
  stroke: var(--gold);
}

.signature-item:hover .sig-check,
.signature-item.active .sig-check {
  stroke: var(--white);
}

.signature-item span {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 1px;
  transition: var(--transition);
}

.signature-item:hover span,
.signature-item.active span {
  color: var(--green-dark);
}

/* Two Column Content */
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-content.reverse {
  direction: rtl;
}

.two-col-content.reverse>* {
  direction: ltr;
}

.content-image {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.content-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease-out;
}

.content-image:hover img {
  transform: scale(1.03);
}

/* ===== Signature Image Frame ===== */
.signature-frame {
  position: relative;
  overflow: visible; /* Need this for box-shadow outside container */
  border: 1.5px solid rgba(26, 26, 26, 0.3); /* Lower opacity line */
  background: var(--cream);
  padding: 30px; 
  height: 100%;
  display: flex;
  margin-left: 12px;
  margin-bottom: 12px;
}

.signature-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.8s ease-out;
}

.signature-frame:hover img {
  transform: scale(1.03);
}

/* Adjust two col content height matching */
.two-col-content.fade-in {
  align-items: center; /* keep centered vertically */
}

/* ===== CTA Section ===== */
/* ===== CTA Section ===== */
/* ===== CTA Section ===== */
.cta-section {
  background: var(--pista-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.cta-section p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-section .btn-outline {
  color: var(--green);
}

.cta-section .btn-outline:hover {
  color: var(--white);
}

.cta-section .hero-buttons {
  justify-content: center;
}

/* ===== Gallery ===== */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-slow);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--cream-dark);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--green);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

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

/* ===== Footer ===== */
.footer {
  background: var(--cream);
  color: var(--green-dark);
  padding: 80px 0 0;
  border-top: 1px solid var(--gray-lighter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-brand .navbar-logo {
  margin-bottom: 4px;
}

.footer-brand .navbar-logo span {
  color: var(--green-dark);
  font-size: 0.9rem;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  font-style: normal;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--olive);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-contact-item .icon {
  color: var(--green);
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
}

.footer-bottom a:hover {
  color: var(--olive);
}

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

/* ===== Stats / Counters ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* ===== Blog Cards ===== */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card .card-image {
  height: 220px;
}

.blog-card .card-body {
  padding: 24px;
}

.blog-card .blog-meta {
  font-size: 0.75rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children>*:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children>*:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children>*:nth-child(6) {
  transition-delay: 0.5s;
}

.stagger-children>*:nth-child(7) {
  transition-delay: 0.6s;
}

.stagger-children>*:nth-child(8) {
  transition-delay: 0.7s;
}

.stagger-children>*:nth-child(9) {
  transition-delay: 0.8s;
}

.stagger-children>*:nth-child(10) {
  transition-delay: 0.9s;
}

/* ===== Accolade / Award Card ===== */
.award-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gray-lighter);
  transition: var(--transition);
}

.award-card:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow-sm);
}

.award-card .award-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.award-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.award-card p {
  font-size: 0.85rem;
}

/* ===== Material Card ===== */
.material-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid var(--pista-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.material-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.material-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.material-card .material-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--olive);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.material-card h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  margin-top: 16px;
  margin-bottom: 8px;
}

/* ===== Customer Segment ===== */
.segment-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-lighter);
  margin-bottom: 20px;
  transition: var(--transition);
}

.segment-card:hover {
  border-color: var(--olive);
  box-shadow: var(--shadow-sm);
}

.segment-card .segment-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.segment-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.segment-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ===== Milestone Section ===== */
.milestone-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-lighter);
}

.milestone-item:last-child {
  border-bottom: none;
}

.milestone-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.milestone-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--green-dark);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .page-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-step::after {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero {
    min-height: 500px;
  }

  .page-hero {
    min-height: 280px;
    height: auto;
    padding: 140px 20px 80px;
  }

  /* Mobile Nav */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--green-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 0.85rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 0 0 0 16px;
    display: none;
    border-radius: 0;
    background: transparent;
  }

  .nav-item.mobile-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--gray-lighter);
  }

  .dropdown a:hover {
    padding-left: 4px;
    background: transparent;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .two-col-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-image img {
    height: 350px;
  }

  .two-col-content.reverse {
    direction: ltr;
  }

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

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

  .gallery-grid {
    columns: 2;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-hero .hero-content h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .gallery-grid {
    columns: 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* ===== Global Custom Cursor ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

/* Scale up on interactive elements */
.cursor-ring.cursor-hover {
  width: 50px;
  height: 50px;
  border-color: var(--gold-light);
}

.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0.6;
}

/* Hide on text inputs */
.cursor-ring.cursor-text {
  width: 4px;
  height: 24px;
  border-radius: 2px;
  border-color: var(--gold);
}

.cursor-dot.cursor-text {
  opacity: 0;
}

/* Hide custom cursor on touchscreens / mobile */
@media (max-width: 768px), (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}
