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

/* === VARIABLES === */
:root {
  --forest: #19723c;
  --forest-dark: #125c30;
  --forest-darker: #0f4f0f;
  --gold: #DAA520;
  --gold-light: #f0d060;
  --gold-dark: #b8860b;
  --white: #FFFFFF;
  --off-white: #FDF8F0;
  --text: #1a1a1a;
  --text-light: #555555;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --max-width: 1100px;
}

/* === TYPOGRAPHY === */
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--forest-dark);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.85rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; color: var(--forest-dark); }

/* === HEADER / NAV === */
.site-header {
  background: var(--forest-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.logo:hover { color: var(--white); text-decoration: none; }
.logo span { color: var(--gold); font-weight: 600; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-links li { display: flex; align-items: center; }

.nav-links li + li::before {
  content: '|';
  color: var(--gold);
  padding: 0 0.75rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(218,165,32,0.12) 0%, rgba(218,165,32,0) 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 1.25rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero .cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* === BUTTONS === */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-darker);
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background: var(--gold-light);
  text-decoration: none;
  color: var(--forest-darker);
  transform: translateY(-1px);
}
.cta-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

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

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

.section {
  padding: 4rem 1.5rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

/* === VIP DIVIDER === */
.vip-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem auto;
  max-width: 600px;
}

/* === QUICK STATS === */
.quick-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

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

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card h3 { color: var(--forest-dark); }
.card a { color: var(--gold-dark); font-weight: 600; }
.card a:hover { color: var(--gold); }

/* === CTA BLOCK === */
.cta-block {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  text-align: center;
  padding: 4rem 1.5rem;
  margin: 0;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* === GOLD STAR RATINGS === */
.star-rating {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.rating-row:last-child { border-bottom: none; }

/* === REVIEW TABLE === */
.review-box {
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 2rem 0;
}

.review-box h3 { margin-bottom: 1rem; }

/* === BONUS HIGHLIGHT === */
.bonus-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(218,165,32,0.06) 0%, var(--white) 100%);
  position: relative;
}

.bonus-featured::before {
  content: 'Featured';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold);
  color: var(--forest-darker);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === STEPS === */
.steps {
  counter-reset: step-counter;
  max-width: 700px;
  margin: 2rem auto;
}

.step {
  counter-increment: step-counter;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  position: relative;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step::before {
  content: counter(step-counter);
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: var(--forest-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
}

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.25rem 0;
}

.faq-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question[aria-expanded="true"]::after {
  content: '−';
}

.faq-answer {
  padding-top: 0.75rem;
  display: none;
  color: var(--text-light);
}

.faq-answer.active { display: block; }

/* === BREADCRUMBS === */
.breadcrumb {
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; color: #ccc; }

/* === CONTENT === */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.content h2 { margin-top: 2rem; }
.content ul, .content ol {
  margin: 1rem 0 1rem 1.5rem;
}
.content li { margin-bottom: 0.4rem; }

/* === PAYMENT TABLE === */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.payment-table th {
  background: var(--forest-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.payment-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
}

.payment-table tr:nth-child(even) {
  background: var(--off-white);
}

/* === FOOTER === */
.site-footer {
  background: var(--forest-darker);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--gold);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom p { margin-bottom: 0.4rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 3.5rem 1.5rem; }
  .quick-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.75rem; }
  .card-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--forest-dark);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(218,165,32,0.3);
  }
  .nav-links.active { display: flex; }
  .nav-links li + li::before { display: none; }
  .nav-links li { padding: 0.5rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1rem; }
}
