/* ╔══════════════════════════════════════════════════════════════╗
   ║  global.css — Shared styles used on EVERY page              ║
   ╠══════════════════════════════════════════════════════════════╣
   ║  BEGINNER TIPS:                                             ║
   ║  • To change the MAIN GREEN color → find --green: #1a6b3c  ║
   ║    and replace #1a6b3c with any hex color you like          ║
   ║  • To change the GOLD accent → find --gold: #e8a020        ║
   ║  • To change the font → find font-family: 'Inter'          ║
   ║  • All CSS variables (--name) are in the :root {} block     ║
   ╚══════════════════════════════════════════════════════════════╝ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:  #1a6b3c;
  --green2: #22883e;
  --gl:     #e8f5ee;
  --gold:   #e8a020;
  --gold2:  #f5c842;
  --red:    #c0392b;
  --dark:   #1c2b2a;
  --gray:   #5a6b6a;
  --light:  #f4f9f6;
  --white:  #ffffff;
  --nav-h:  64px;
  --shadow: 0 4px 24px rgba(26,107,60,.12);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; max-width: 100%; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.sec       { padding: 72px 5%; }
.sec-sm    { padding: 48px 5%; }
.sec-dark  { background: var(--light); }
.sec-green { background: linear-gradient(135deg, #0a3d1f, #1a6b3c); }
.sec-head  { margin-bottom: 8px; }
.text-center { text-align: center; }
.text-center .sub { margin: 0 auto; }

/* ── Typography ── */
.lbl   { font-size: .74rem; font-weight: 700; color: var(--green); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.lbl-w { color: var(--gold2); }
h2.sh  { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); line-height: 1.2; }
h2.sh-w{ color: #fff; }
.divider   { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 14px 0 36px; }
.divider-c { margin: 14px auto 36px; }
.sub   { color: var(--gray); line-height: 1.75; max-width: 600px; }
.sub-w { color: rgba(255,255,255,.8); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: .88rem; cursor: pointer; border: none; font-family: inherit; transition: all .22s; position: relative; overflow: hidden; }
.btn-g  { background: var(--green); color: #fff; }
.btn-g:hover  { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,60,.25); }
.btn-go { background: var(--gold); color: var(--dark); }
.btn-go:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-w  { background: #fff; color: var(--green); }
.btn-w:hover  { background: var(--gold2); color: var(--dark); transform: translateY(-2px); }
.btn-o  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-o:hover  { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-r  { background: var(--red); color: #fff; }
.btn-r:hover  { background: #a93226; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Page hero ── */
.page-hero {
  background: linear-gradient(135deg, #0a3d1f, #1a6b3c);
  padding: calc(var(--nav-h) + 44px) 5% 56px;
  text-align: center;
  margin-top: 0;
}
.page-hero .lbl { color: var(--gold2); }
.page-hero h1   { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 14px; }
.page-hero p    { color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Card ── */
.card       { background: #fff; border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }
.card-hover { transition: all .3s; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(26,107,60,.15); }

/* ── CTA Banner (shared) ── */
.cta-banner { background: linear-gradient(135deg, var(--gold), var(--gold2)); padding: 60px 5%; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 10px; }
.cta-banner p  { color: var(--dark); opacity: .8; margin-bottom: 26px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Responsive: global ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sec { padding: 44px 5%; }
  .sec-sm { padding: 32px 5%; }
}
@media (max-width: 480px) {
  .cta-btns { flex-direction: column; align-items: center; }
  .sec { padding: 36px 5%; }
}
