:root {
  --green-950: #0b2f20;
  --green-900: #10452f;
  --green-800: #155a3d;
  --green-700: #1d6b49;
  --green-100: #e8f1eb;
  --gold-500: #d4a72c;
  --gold-400: #e2bd58;
  --gold-200: #f4e4af;
  --cream: #faf8f0;
  --ink: #173127;
  --muted: #64766d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(13, 48, 32, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 47, 32, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: white; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.main-nav { display: flex; gap: 28px; color: rgba(255,255,255,.8); font-size: .92rem; font-weight: 600; }
.main-nav a { transition: color .2s; }
.main-nav a:hover { color: var(--gold-400); }
.menu-toggle { display:none; background:none; border:0; color:white; font-size:1.5rem; }

.hero {
  position: relative; overflow: hidden; min-height: 680px;
  color: white; background:
  radial-gradient(circle at 82% 35%, rgba(226,189,88,.16), transparent 24%),
  linear-gradient(135deg, var(--green-950), var(--green-800));
}
.hero::after {
  content:""; position:absolute; inset:auto -5% -110px; height:230px;
  background:var(--cream); border-radius:50% 50% 0 0 / 40% 40% 0 0;
}
.hero-pattern {
  position:absolute; inset:0; opacity:.08;
  background-image: linear-gradient(30deg, transparent 47%, #fff 48%, #fff 50%, transparent 51%);
  background-size: 48px 48px;
}
.hero-grid {
  min-height: 680px; position:relative; z-index:2;
  display:grid; grid-template-columns: 1.05fr .95fr; align-items:center; gap:60px;
  padding: 60px 0 100px;
}
.eyebrow { margin:0 0 12px; color:var(--gold-400); font-size:.76rem; letter-spacing:.22em; font-weight:900; }
.hero h1 { margin:0; max-width:680px; font-family: Georgia, "Times New Roman", serif; font-size:clamp(3rem, 6vw, 5.6rem); line-height:.98; letter-spacing:-.045em; }
.hero h1 span { color:var(--gold-400); }
.hero-text { max-width:600px; margin:24px 0 30px; color:rgba(255,255,255,.78); font-size:1.1rem; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 22px; border-radius:7px; font-weight:800; font-size:.9rem; transition:transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform:translateY(-2px); box-shadow:0 10px 25px rgba(0,0,0,.16); }
.btn-gold { color:var(--green-950); background:var(--gold-400); }
.btn-outline { color:white; border:1px solid rgba(255,255,255,.35); }
.btn-outline:hover { background:rgba(255,255,255,.08); }

.hero-emblem { justify-self:center; position:relative; width:min(400px, 80vw); aspect-ratio:1; display:grid; place-items:center; }
.hero-emblem img { position:relative; z-index:2; width:76%; height:76%; object-fit:contain; filter:drop-shadow(0 18px 30px rgba(0,0,0,.28)); }
.emblem-ring { position:absolute; inset:5%; border:1px solid rgba(226,189,88,.48); border-radius:50%; box-shadow: inset 0 0 0 16px rgba(226,189,88,.04), 0 0 0 1px rgba(255,255,255,.08); }
.emblem-ring::before, .emblem-ring::after { content:""; position:absolute; width:10px; height:10px; background:var(--gold-400); border-radius:50%; top:50%; }
.emblem-ring::before { left:-5px; } .emblem-ring::after { right:-5px; }
.motto { position:absolute; z-index:3; bottom:3%; display:flex; gap:7px; font-size:.55rem; letter-spacing:.12em; color:var(--gold-200); font-weight:900; }
.scroll-hint { position:absolute; z-index:4; bottom:45px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.55); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }

section { padding:100px 0; }
.section-heading { max-width:700px; margin-bottom:44px; }
.section-heading h2, .about h2, .contact h2 { margin:0 0 14px; font-family:Georgia, "Times New Roman", serif; font-size:clamp(2.2rem, 4vw, 3.5rem); line-height:1.05; letter-spacing:-.035em; }
.section-heading > p:last-child { margin:0; color:var(--muted); }
.value-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.value-card { padding:34px; background:white; border:1px solid #e3e8e3; border-radius:12px; box-shadow:var(--shadow); }
.value-card.featured { background:var(--green-900); color:white; transform:translateY(-12px); }
.value-card .icon { width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--gold-400); color:var(--gold-500); border-radius:50%; margin-bottom:24px; }
.value-card h3 { margin:0 0 8px; font-family:Georgia, serif; font-size:1.55rem; }
.value-card p { margin:0; color:var(--muted); }
.value-card.featured p { color:rgba(255,255,255,.72); }

.about { background:#edf3ee; }
.about-grid { display:grid; grid-template-columns:1.3fr .7fr; gap:24px; align-items:stretch; }
.about-card { padding:55px; background:white; border-radius:12px; box-shadow:var(--shadow); }
.about-card p { color:var(--muted); max-width:650px; }
.about-accent {
  min-height:380px; padding:45px; display:flex; flex-direction:column; justify-content:space-between;
  border-radius:12px; background:var(--gold-400); color:var(--green-950);
}
.about-accent span { font-family:Georgia,serif; font-size:8rem; line-height:.7; opacity:.28; }
.about-accent p { margin:0; font-family:Georgia,serif; font-size:1.65rem; line-height:1.25; }

.news { background:var(--cream); }
.split { max-width:none; display:flex; justify-content:space-between; align-items:end; gap:40px; }
.split > p { max-width:400px; margin:0; }
.news-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.news-card { background:white; border:1px solid #e3e8e3; border-radius:12px; overflow:hidden; transition:transform .25s, box-shadow .25s; }
.news-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.news-image { height:190px; position:relative; display:flex; align-items:end; padding:18px; overflow:hidden; }
.news-image::before, .news-image::after { content:""; position:absolute; border-radius:50%; }
.news-image::before { width:180px; height:180px; right:-35px; top:-55px; border:28px solid rgba(255,255,255,.14); }
.news-image::after { width:100px; height:100px; left:-30px; bottom:-40px; background:rgba(226,189,88,.25); }
.image-one { background:linear-gradient(135deg,#164f37,#4d8665); }
.image-two { background:linear-gradient(135deg,#0f3928,#1e7650); }
.image-three { background:linear-gradient(135deg,#806323,#c49d38); }
.news-image span { position:relative; z-index:2; color:white; font-size:.68rem; font-weight:900; letter-spacing:.16em; }
.news-content { padding:26px; }
.news-content small { color:#8b7743; font-weight:800; }
.news-content h3 { margin:8px 0 10px; font-family:Georgia,serif; font-size:1.45rem; line-height:1.15; }
.news-content p { margin:0 0 18px; color:var(--muted); font-size:.92rem; }
.news-content a { color:var(--green-800); font-weight:900; font-size:.85rem; }

.contact { padding:70px 0; background:var(--green-950); color:white; }
.contact-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; }
.contact h2 { color:white; }
.contact p:last-child { margin:0; color:rgba(255,255,255,.7); max-width:650px; }

.site-footer { padding:38px 0 24px; background:#082419; color:white; }
.footer-grid { display:grid; grid-template-columns:1fr auto; gap:25px; align-items:center; }
.footer-brand { display:flex; align-items:center; gap:12px; }
.footer-brand img { width:55px; height:55px; object-fit:contain; }
.footer-brand strong, .footer-brand span { display:block; }
.footer-brand span { margin-top:2px; color:rgba(255,255,255,.5); font-size:.72rem; }
.footer-links { display:flex; gap:20px; color:rgba(255,255,255,.7); font-size:.82rem; }
.footer-links a:hover { color:var(--gold-400); }
.copyright { grid-column:1/-1; padding-top:20px; margin:0; border-top:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.4); font-size:.72rem; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 800px) {
  .container { width:min(100% - 28px, 680px); }
  .main-nav {
    display:none; position:absolute; left:14px; right:14px; top:70px; padding:18px;
    flex-direction:column; gap:14px; background:var(--green-950); border:1px solid rgba(255,255,255,.1); border-radius:10px;
  }
  .main-nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero-grid { grid-template-columns:1fr; text-align:center; gap:20px; padding-top:55px; }
  .hero-copy { display:flex; flex-direction:column; align-items:center; }
  .hero-emblem { width:290px; }
  .motto { font-size:.46rem; }
  .hero { min-height:850px; }
  .hero-grid { min-height:850px; }
  .value-grid, .news-grid, .about-grid { grid-template-columns:1fr; }
  .value-card.featured { transform:none; }
  .about-card { padding:35px 28px; }
  .split, .contact-inner { flex-direction:column; align-items:flex-start; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links { flex-wrap:wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; transition:none; }
}