/* Force AOS to work even if CDN is slow */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.aos-init[data-aos] {
  opacity: 0 !important;
}

.aos-animate[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

:root {
  --ink: #080D0A;
  --deep: #0D1810;
  --forest: #1A3D28;
  --moss: #2E6644;
  --sage: #4E9966;
  --mint: #8ECBA3;
  --gold: #D4A224;
  --amber: #E8BC50;
  --cream: #FAF5E8;
  --off-white: #F2EDD8;
  --terra: #C24B1E;
  --terra-light: #E06A3A;
  --border: rgba(212, 162, 36, 0.15);
  --glass: rgba(250, 245, 232, 0.03);
  --header-h: 80px;
  --max-w: 1300px;
  --radius: 4px;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--ink)
}

body {
  font-family: 'Syne', sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

a {
  color: inherit
}

ul {
  list-style: none
}

input,
select,
textarea,
button {
  font-family: inherit;
  border: none;
  outline: none
}

/* === GRAIN === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E")
}

/* === LAYOUT === */
.wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem
}

.section {
  padding: 8rem 0;
  position: relative
}

.section-header {
  margin-bottom: 4rem;
  max-width: 700px
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
.serif {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream)
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--amber)
}

.mono-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block
}

p {
  color: rgba(250, 245, 232, .65);
  line-height: 1.85;
  font-size: 1.05rem
}

/* === PAGE LOADER === */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
  animation: loaderAuto 3s ease forwards
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

/* Auto-hide loader after 3s even if JS fails */
@keyframes loaderAuto {

  0%,
  80% {
    opacity: 1;
    visibility: visible
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
  }
}

.loader-inner {
  text-align: center
}

.loader-logo-svg {
  width: 120px;
  height: 50px;
  margin-bottom: 2rem
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(250, 245, 232, .1);
  border-radius: 2px;
  overflow: hidden
}

.loader-fill {
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderGrow 2s ease forwards
}

@keyframes loaderGrow {
  to {
    width: 100%
  }
}

body.loading {
  overflow: hidden
}

/* === HEADER === */
.main-header {
  height: var(--header-h);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(8, 13, 10, .88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: transform .4s ease, background .3s ease
}

.main-header.scrolled {
  background: rgba(8, 13, 10, .96)
}

.main-header.hidden-up {
  transform: translateY(-100%)
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%
}

.brand-logo {
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--cream);
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: .3rem
}

.brand-logo span {
  color: var(--gold)
}

.brand-logo small {
  font-size: .55rem;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(250, 245, 232, .35);
  letter-spacing: .1em;
  text-transform: uppercase
}

.nav-menu {
  display: flex;
  gap: 2.5rem
}

.nav-menu a {
  text-decoration: none;
  color: rgba(250, 245, 232, .55);
  font-size: .85rem;
  font-weight: 600;
  transition: color .3s;
  position: relative
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--cream)
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold)
}

.nav-arrow {
  font-size: .5rem;
  margin-left: .25rem;
  opacity: .5
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.nav-cta {
  padding: .7rem 1.6rem;
  font-size: .82rem
}

/* Dropdown */
.has-dropdown {
  position: relative
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(13, 24, 16, .98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  pointer-events: none
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all
}

.nav-dropdown a {
  display: block;
  padding: .6rem 1.5rem;
  font-size: .82rem;
  color: rgba(250, 245, 232, .55);
  text-decoration: none;
  transition: all .2s
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(212, 162, 36, .05);
  padding-left: 1.8rem
}

/* Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 999
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  margin-bottom: 6px;
  transition: all .3s ease;
  border-radius: 2px
}

.mobile-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px)
}

.mobile-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0
}

.mobile-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px)
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(8, 13, 10, .98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible
}

.mobile-nav {
  text-align: center
}

.mobile-nav-link {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cream);
  text-decoration: none;
  padding: .6rem 0;
  opacity: .6;
  transition: all .3s
}

.mobile-nav-link:hover {
  opacity: 1;
  color: var(--amber)
}

.mobile-menu-footer {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 280px
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #25D366;
  color: white;
  padding: .8rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--moss);
  color: var(--cream);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  border-radius: var(--radius);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(250, 245, 232, .08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px
}

.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46, 102, 68, .35)
}

.btn-outline {
  display: inline-block;
  color: var(--cream);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  transition: all .35s;
  cursor: pointer
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 162, 36, .05)
}

/* === HERO === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 162, 36, .1), transparent 40%), radial-gradient(circle at 20% 80%, rgba(46, 102, 68, .15), transparent 50%);
  pointer-events: none
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(212, 162, 36, .03) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(212, 162, 36, .03) 80px);
  pointer-events: none
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 2
}

.hero-text .mono-label {
  margin-bottom: 1.5rem
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 2rem
}

.hero-text>p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 520px
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap
}

.hero-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 60px 120px rgba(0, 0, 0, .5)
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, transparent 40%);
  pointer-events: none
}

/* === CARDS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem
}

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

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

.pro-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 8px;
  transition: all .45s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
  overflow: hidden
}

.pro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--moss));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease
}

.pro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 162, 36, .3);
  background: rgba(212, 162, 36, .04)
}

.pro-card:hover::before {
  transform: scaleX(1)
}

.pro-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block
}

.pro-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem
}

.pro-card p {
  font-size: .92rem
}

/* === STATS === */
.stats-strip {
  background: linear-gradient(135deg, var(--forest), var(--deep));
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--gold);
  line-height: 1
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 245, 232, .45);
  margin-top: .8rem;
  display: block
}

/* === FORM === */
.pro-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem
}

.pro-form .form-group {
  display: flex;
  flex-direction: column
}

.pro-form label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem
}

.pro-form input,
.pro-form select,
.pro-form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  color: var(--cream);
  border-radius: var(--radius);
  font-size: .9rem;
  transition: border-color .3s
}

.pro-form input:focus,
.pro-form select:focus,
.pro-form textarea:focus {
  border-color: var(--gold)
}

.pro-form textarea {
  resize: vertical;
  min-height: 120px
}

.success-banner {
  background: rgba(46, 102, 68, .12);
  border: 1px solid var(--moss);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 2rem
}

.success-banner h3 {
  color: var(--sage);
  margin-bottom: .5rem
}

/* === PRICING TIERS === */
.price-card {
  text-align: left
}

.price-card .price {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  margin: 1.5rem 0
}

.price-card .price small {
  font-size: .9rem;
  color: rgba(250, 245, 232, .35)
}

.price-card.featured {
  border-color: var(--gold);
  background: rgba(212, 162, 36, .04);
  transform: translateY(-20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4)
}

.price-card ul {
  margin: 2.5rem 0
}

.price-card ul li {
  padding: .5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: .9rem;
  color: rgba(250, 245, 232, .7)
}

.price-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: .75rem
}

.badge-popular {
  font-family: 'JetBrains Mono', monospace;
  font-size: .5rem;
  background: var(--gold);
  color: var(--ink);
  padding: .2rem .6rem;
  border-radius: 2px;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* === FOOTER === */
.site-footer {
  padding: 8rem 0 3rem;
  background: var(--deep);
  border-top: 1px solid var(--border)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem
}

.footer-desc {
  margin-top: 1.5rem;
  font-size: .88rem;
  max-width: 300px;
  line-height: 1.8
}

.footer-links h4 {
  margin-bottom: 1.5rem
}

.footer-links ul {
  margin-top: 0
}

.footer-links li {
  margin-bottom: .7rem
}

.footer-links a {
  text-decoration: none;
  color: rgba(250, 245, 232, .5);
  font-size: .88rem;
  transition: color .3s, padding-left .3s
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: .3rem
}

.footer-contact p {
  font-size: .88rem;
  margin-bottom: 1rem
}

.footer-bottom {
  border-top: 1px solid rgba(250, 245, 232, .05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: rgba(250, 245, 232, .25)
}

.footer-legal a {
  margin-left: 2rem;
  color: inherit;
  text-decoration: none;
  transition: color .3s
}

.footer-legal a:hover {
  color: var(--gold)
}

/* Floating Buttons */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  background: #25D366;
  color: white;
  padding: .6rem 1.4rem .6rem .8rem;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
  transition: all .3s ease;
  border: 1px solid rgba(255, 255, 255, .1)
}

.whatsapp-sticky:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 45px rgba(37, 211, 102, .4)
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible
}

.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-5px)
}

/* Timeline Cards */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem
}

.timeline-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 12px;
  transition: all .4s ease;
  position: relative
}

.timeline-card:hover {
  background: rgba(212, 162, 36, 0.05);
  border-color: var(--gold);
  transform: translateY(-10px)
}

.timeline-card .time-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  background: rgba(212, 162, 36, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.5rem
}

.timeline-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700
}

.timeline-card p {
  font-size: 0.92rem;
  line-height: 1.7
}

@media (max-width:1024px) {
  .timeline-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:600px) {
  .timeline-grid {
    grid-template-columns: 1fr
  }
}

/* === SOCIAL ICONS === */
.social-links {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(250, 245, 232, .4);
  transition: all .3s ease
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 162, 36, .08);
  transform: translateY(-2px)
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* === RESPONSIVE UTILITIES === */
.responsive-grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .responsive-grid-1 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* === RESPONSIVE === */
@media(max-width:1024px) {
  .wrapper {
    padding: 0 2rem
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .hero-text {
    text-align: center
  }

  .hero-text>p {
    margin: 0 auto 3rem
  }

  .hero-actions {
    justify-content: center
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr
  }

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

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

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

  .price-card.featured {
    transform: none
  }
}

@media(max-width:768px) {
  .wrapper {
    padding: 0 1.5rem
  }

  .desktop-nav {
    display: none
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center
  }

  .nav-cta {
    display: none
  }

  .hero-text h1 {
    font-size: clamp(2.5rem, 10vw, 4rem)
  }

  .section {
    padding: 5rem 0
  }

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

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

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

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

  .footer-legal a {
    margin: 0 1rem
  }

  /* Specific fix for Camp Daily Schedule */
  .camps-timeline-row {
    grid-template-columns: 1fr !important;
  }
  
  .camp-date-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  
  .camp-date-card div {
    text-align: center !important;
  }

  .camp-date-card div:last-child {
    text-align: center !important;
  }
  
  .pro-card[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media(max-width:480px) {
  .wrapper {
    padding: 0 1.2rem
  }

  .hero-text h1 {
    font-size: 2.4rem
  }

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

  .pro-card {
    padding: 2rem
  }

  .whatsapp-sticky span {
    display: none
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Desktop styles for camp-date-card */
@media (min-width: 769px) {
  .camp-date-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 3rem;
    align-items: center;
  }
}