:root {
  --ink: #173126;
  --muted: #5f6f68;
  --green: #17663f;
  --leaf: #e7f4da;
  --saffron: #f58220;
  --gold: #f7c948;
  --cream: #fffaf1;
  --paper: #ffffff;
  --line: #dbe6dd;
  --shadow: 0 18px 45px rgba(23, 49, 38, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--green); color: #fff; font-size: 14px; }
.topbar .wrap { display: flex; gap: 18px; justify-content: space-between; padding: 8px 0; flex-wrap: wrap; }
.nav {
  position: sticky; top: 0; z-index: 10; background: rgba(255,250,241,.94);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; line-height: 1.15; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand span { display: block; font-size: 14px; color: var(--muted); font-weight: 700; }
.menu { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.menu a { padding: 10px 12px; border-radius: 6px; font-weight: 700; font-size: 14px; }
.menu a:hover, .menu .active { background: var(--leaf); color: var(--green); }
.menu .support { background: var(--saffron); color: #fff; box-shadow: 0 10px 20px rgba(245,130,32,.22); }
.hero {
  min-height: 78vh; display: grid; align-items: end; position: relative; color: #fff;
  background: linear-gradient(90deg, rgba(11,46,30,.88), rgba(11,46,30,.42)), var(--hero) center/cover;
}
.hero .wrap { padding: 96px 0 70px; }
.eyebrow { color: var(--gold); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1 { font-size: clamp(42px, 7vw, 80px); line-height: .98; margin: 12px 0 20px; max-width: 900px; }
.hero p { font-size: clamp(18px, 2.3vw, 24px); max-width: 760px; margin: 0 0 30px; color: rgba(255,255,255,.92); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: 12px 18px; border-radius: 6px; font-weight: 900; border: 2px solid transparent;
}
.btn.primary { background: var(--saffron); color: #fff; }
.btn.secondary { background: #fff; color: var(--green); }
.btn.outline { border-color: currentColor; color: var(--green); }
section { padding: 76px 0; }
.section-title { max-width: 780px; margin-bottom: 32px; }
.section-title h2, .page-head h1 { font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05; margin: 6px 0 12px; }
.section-title p, .page-head p { color: var(--muted); font-size: 18px; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 12px 28px rgba(23,49,38,.08); }
.card .pad { padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-stack img { border-radius: 8px; object-fit: cover; width: 100%; min-height: 260px; box-shadow: var(--shadow); }
.photo-stack img:first-child { grid-row: span 2; min-height: 540px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { background: var(--green); color: #fff; padding: 22px; border-radius: 8px; }
.stat strong { display: block; font-size: 32px; line-height: 1; color: var(--gold); }
.band { background: var(--green); color: #fff; }
.band .section-title p, .band p { color: rgba(255,255,255,.82); }
.work-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.work-item { display: grid; grid-template-columns: 180px 1fr; gap: 18px; background: #fff; border-radius: 8px; padding: 14px; border: 1px solid var(--line); }
.work-item img { width: 180px; height: 150px; object-fit: cover; border-radius: 6px; }
.support-panel { background: #fff; border: 2px solid rgba(245,130,32,.35); border-radius: 8px; padding: 32px; box-shadow: var(--shadow); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 230px; object-fit: cover; border-radius: 8px; }
.gallery img.wide { grid-column: span 2; }
.page-head { padding: 82px 0 44px; background: var(--leaf); }
.content { background: #fff; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info { background: var(--leaf); padding: 24px; border-radius: 8px; border: 1px solid var(--line); }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; margin: 10px 0; }
.faq summary { font-weight: 900; cursor: pointer; }
footer { background: #10251c; color: #d8e8de; padding: 46px 0 22px; }
footer .cols { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 28px; }
footer h3 { color: #fff; margin-top: 0; }
footer a { display: block; margin: 8px 0; color: #d8e8de; }
.fine { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 18px; font-size: 14px; color: #aac2b2; }

@media (max-width: 900px) {
  .nav .wrap { align-items: flex-start; flex-direction: column; }
  .menu { justify-content: flex-start; }
  .hero { min-height: 72vh; }
  .grid-3, .split, .stats, .work-list, .contact-box, footer .cols { grid-template-columns: 1fr; }
  .work-item { grid-template-columns: 1fr; }
  .work-item img { width: 100%; height: 220px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img, .gallery img.wide { grid-column: auto; height: 210px; }
}

@media (max-width: 560px) {
  .topbar .wrap { display: block; }
  .brand img { width: 54px; height: 54px; }
  .menu a { padding: 8px 9px; font-size: 13px; }
  .hero .wrap { padding: 72px 0 46px; }
  section { padding: 52px 0; }
  .photo-stack { grid-template-columns: 1fr; }
  .photo-stack img, .photo-stack img:first-child { min-height: 260px; grid-row: auto; }
  .gallery { grid-template-columns: 1fr; }
}
