/* --- Base (self-contained demo) --- */
:root {
  --ink:#183018;
  --muted:#3b4b3b;
  --bg:#fbfaf7;
  --card:#ffffff;
  --line:rgba(24,48,24,.14);
  --accent:#2d5a27;
  --accent2:#c9a959;
  --soft:rgba(201,169,89,.12);
  --radius:16px;
  --shadow: 0 8px 24px rgba(0,0,0,.06);
  --max: 980px;
}

* {
  box-sizing: border-box;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 72px;
}

.card {
  background: #FFFFFF;
  border: 1px solid #2F6B44;
  border-radius: 1rem;
  box-shadow: #1F1F1F;
}

.kicker {
  color: var(--muted);
  font-size: 0.98rem;
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  border: 1px solid #2F6B44;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.topbar .demo {
  font-size: 0.9rem;
  color: var(--muted);
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #2F6B44;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* --- Hero --- */
.hero {
  padding: 26px 22px;
}

.hero p {
  margin: 8px 0;
  color: var(--muted);
}

.trustgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust {
  border: 1px solid #2F6B44;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.6);
}

.trust strong {
  display: block;
  color: var(--ink);
}

.trust span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .trustgrid {
    grid-template-columns: 1fr;
  }
}
/* --- Table --- */
.prices-table-wrap {
  padding: 22px;
  background: rgba(42, 110, 115, 0.05);
}

.table-responsive {
  overflow-x: auto;
}

table.prices-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  margin-top: 12px;
}

.prices-table th, .prices-table td {
  border-bottom: 1px solid #2F6B44;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.prices-table th {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--muted);
  background: rgba(24, 48, 24, 0.03);
  position: sticky;
  top: 0;
}

.prices-table tr:hover td {
  background: rgba(201, 169, 89, 0.08);
}

.price {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.05rem;
}

.retreat-option {
  font-size: 1.15rem;
}

.badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #D4AF37;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  vertical-align: middle;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid rgba(201, 169, 89, 0.25);
  color: var(--muted);
}

/* --- Two-column blocks --- */
.grid2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

@media (max-width: 800px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}
.box {
  padding: 18px;
}

.box h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.box p {
  margin: 8px 0;
  color: var(--muted);
}

.box ul {
  margin: 10px 0 0 18px;
  color: var(--muted);
}

.callout {
  border: 1px solid rgba(45, 90, 39, 0.25);
  background: rgba(45, 90, 39, 0.05);
}

/* --- Included grid --- */
.included {
  padding: 22px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.included-item {
  border: 1px solid #2F6B44;
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.65);
}

.included-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.included-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 860px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}
/* --- FAQ --- */
.faq {
  padding: 22px;
}

details {
  border: 1px solid #2F6B44;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.65);
  margin: 10px 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p, details ul {
  margin: 10px 0 0;
  color: var(--muted);
}

/* --- CTA --- */
.cta {
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta strong {
  font-size: 1.15rem;
}

.btnrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #2F6B44;
  background: #fff;
  font-weight: 700;
}

.btn.primary {
  border-color: rgba(45, 90, 39, 0.35);
  background: rgba(45, 90, 39, 0.92);
  color: #fff;
}

.fineprint {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* --- Responsive prices table: stack into cards on phones --- */
@media (max-width: 800px) {
  .table-responsive {
    overflow-x: visible;
  }
  table.prices-table {
    min-width: 0;
  }
  table.prices-table thead {
    display: none;
  }
  table.prices-table, table.prices-table tbody, table.prices-table tr, table.prices-table td {
    display: block;
    width: 100%;
  }
  table.prices-table tr {
    border: 1px solid #2F6B44;
    border-radius: 14px;
    margin: 12px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
  }
  table.prices-table td {
    border-bottom: 1px solid #2F6B44;
    padding: 12px 12px;
  }
  table.prices-table td:last-child {
    border-bottom: none;
  }
  table.prices-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 4px;
  }
  table.prices-table td.price {
    white-space: normal;
    font-size: 1.1rem;
  }
  /* Make the "Most chosen" badge wrap nicely */
  .badge {
    margin-left: 6px;
    margin-top: 6px;
    display: inline-block;
  }
}

/*# sourceMappingURL=prices-page.css.map */
