/* =========================================================
   CAMP FACTS
   ========================================================= */



.camp-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	overflow: hidden;
}

.camp-facts__item {
	padding: var(--space-md);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-xs);
}

.camp-facts__item:not(:last-child) {
	border-right: 1px solid var(--color-border);
}

.camp-facts__icon {
	width: 28px;
	height: 28px;
	color: var(--color-primary);
	margin-bottom: 4px;
}

.camp-facts__icon svg {
  width: 100%;
  height: 100%;
}

.camp-facts__label {
  color: var(--color-text-muted);
}

.camp-facts__value {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

/* =========================================================
   CAMP ABOUT
   ========================================================= */

.camp-about {
  background: var(--color-beige);
}

.camp-about__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}

.camp-about__content:only-child {
  grid-column: 1 / -1;
  max-width: 760px;
}

.camp-about__content {
  max-width: 760px;
}

.camp-about__title {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.camp-about__text {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.camp-about__text:last-child {
  margin-bottom: 0;
}

.camp-about__team-grid {
  display: grid;
  gap: var(--space-sm);
}

.camp-leader {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-sm);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-sm);
}

.camp-leader__avatar {
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-beige);
  flex-shrink: 0;
}

.camp-leader__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-leader__name {
  margin-bottom: 4px;
  font-size: var(--font-size-body);
  color: var(--color-text);
}

.camp-leader__role {
  margin: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

/* =========================================================
   CAMP PROGRAM
   ========================================================= */

.camp-program {
  background: var(--color-background-light);
}

.camp-program__header {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.camp-program__title {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.camp-program__text {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.camp-program__timeline {
  display: grid;
  gap: var(--space-sm);
}

.camp-program__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.camp-program__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 var(--space-md);
  border-radius: var(--radius-pill);
  background: rgba(56, 102, 65, 0.12);
  color: var(--color-primary);
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-bold);
  width: fit-content;
}

.camp-program__item-title {
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-body);
  color: var(--color-text);
}

.camp-program__item-text {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* =========================================================
   CAMP CTA
   ========================================================= */

.camp-cta {
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 60%, #386641 100%);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.camp-cta::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(167, 201, 87, 0.08);
  pointer-events: none;
}

.camp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.camp-cta__title {
  margin-bottom: var(--space-xs);
  color: #ffffff;
  font-size: var(--font-size-heading);
}

.camp-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.camp-cta__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =========================================================
   CAMP PRACTICAL
   ========================================================= */

.camp-practical {
  background: var(--color-beige);
}

.camp-practical__header {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.camp-practical__title {
  margin-bottom: 0;
  color: var(--color-text);
}

.camp-practical__list {
  display: grid;
  gap: var(--space-sm);
}

.practical-item {
  padding: 0;
}

.practical-item__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-md);
  font-weight: var(--font-weight-bold);
  position: relative;
}

.practical-item__summary::-webkit-details-marker {
  display: none;
}

.practical-item__summary::after {
  content: "+";
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color-text-muted);
}

.practical-item[open] .practical-item__summary::after {
  content: "–";
}

.practical-item__content {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-text-muted);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .camp-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .camp-about__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .camp-facts__grid {
    grid-template-columns: 1fr;
  }

  .camp-program__item {
    grid-template-columns: 1fr;
  }

  .camp-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .camp-cta__actions {
    justify-content: center;
  }

  .camp-leader {
    grid-template-columns: 64px 1fr;
  }

  .camp-leader__avatar {
    width: 64px;
    height: 64px;
  }
}