:root {
  --bg: #0b0f0d;
  --bg-2: #121816;
  --panel: #141b18;
  --panel-2: #18211d;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(140, 196, 156, 0.18);
  --text: #f3f6f4;
  --muted: #b8c6bd;
  --green: #8fd19e;
  --green-strong: #6fbe84;
  --accent: #203228;
  --shadow: 0 18px 50px rgba(0,0,0,0.28);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0a0f0d 0%, #0d1310 100%);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; color: var(--muted); }
h1,h2,h3,h4 { margin: 0; line-height: 1.08; letter-spacing: -0.03em; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.page-transition {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,15,13,.96), rgba(10,15,13,1));
  transform: translateY(100%);
}
body.transition-ready .page-transition { transition: transform .42s ease; }
body.page-enter .page-transition { transform: translateY(0); }
body.page-enter-active .page-transition { transform: translateY(100%); }
body.page-leave .page-transition { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,15,13,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; overflow: hidden; flex: 0 0 auto;
  border: 1px solid var(--line); background: #0f1512;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: grid; gap: 1px; }
.brand-text strong { font-size: .98rem; }
.brand-text span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px; border-radius: 999px; color: var(--muted); font-weight: 600; transition: .22s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.04); color: var(--text); }
.nav-links .nav-cta { background: var(--green-strong); color: #0a100d; }
.nav-links .nav-cta:hover { background: var(--green); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03); position: relative; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 999px; transition: .22s ease;
}
.nav-toggle span { top: 22px; }
.nav-toggle::before { top: 15px; }
.nav-toggle::after { top: 29px; }
.nav-toggle.open span { opacity: 0; }
.nav-toggle.open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open::after { transform: translateY(-7px) rotate(-45deg); }

section { padding: 54px 0; }
.hero { padding: 28px 0 40px; }
.hero-grid, .split-grid, .services-grid, .stats-grid, .contact-grid, .footer-grid, .gallery-grid {
  display: grid; gap: 18px;
}
.hero-grid { grid-template-columns: 1.04fr .96fr; align-items: stretch; }
.split-grid { grid-template-columns: 1fr 1fr; }
.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.stats-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-grid { grid-template-columns: 1.15fr .85fr; }
.contact-grid, .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.panel, .card, .service-card, .image-card, .cta-band, .footer-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy { padding: 34px; display: grid; gap: 18px; }
.hero-image { min-height: 430px; overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  padding: 16px 18px; border-radius: 16px; background: rgba(14,20,17,.88); border: 1px solid rgba(255,255,255,.08);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: max-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(143,209,158,.10);
  border: 1px solid var(--line-2);
  font-size: .72rem;
  font-weight: 700;
  color: #e6f4ea;
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1;
}
}
.hero-title { font-size: clamp(2.2rem, 4.6vw, 4.1rem); max-width: 10ch; }
.page-title { font-size: clamp(2rem, 4vw, 3.5rem); }
.section-title { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.lead { font-size: 1rem; max-width: 58ch; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px; border-radius: 12px; font-weight: 700; transition: .22s ease;
}
.btn-primary { background: var(--green-strong); color: #08100c; }
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-secondary { border: 1px solid var(--line-2); color: var(--text); background: rgba(255,255,255,.03); }
.btn-secondary:hover { background: rgba(255,255,255,.06); }

.stat-card, .info-card, .mini-card { padding: 18px; }
.stat-card strong, .mini-card strong, .info-card h3 { display: block; margin-bottom: 6px; font-size: 1rem; }
.story-copy { padding: 28px; display: grid; gap: 16px; }
.story-image, .image-card { overflow: hidden; min-height: 300px; }
.story-image img, .image-card img { width: 100%; height: 100%; object-fit: cover; }
.section-head { display: grid; gap: 12px; max-width: 740px; margin-bottom: 22px; }
.service-card { overflow: hidden; }
.service-card img { width: 100%; height: 185px; object-fit: cover; }
.service-content { padding: 18px; display: grid; gap: 10px; }
.service-list { display: grid; gap: 14px; }
.service-item { padding: 22px; }
.service-item h3 { margin-bottom: 8px; font-size: 1.2rem; }
.bullets { display: grid; gap: 10px; }
.bullets li { color: var(--muted); }
.compact-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.quote-band { padding: 30px; display: grid; gap: 12px; }
.footer-grid { align-items: start; }
.site-footer { padding: 24px 0 30px; border-top: 1px solid var(--line); background: #0a0f0d; }
.footer-box { padding: 20px; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand .brand-mark { width: 48px; height: 48px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.small-note { font-size: .94rem; }
.contact-box { padding: 24px; display: grid; gap: 14px; }
.contact-line { color: var(--text); font-weight: 700; }
.gallery-stack { display: grid; gap: 18px; }
.hero-copy.panel, .story-copy.panel, .service-item.card, .stat-card.card, .info-card.card, .quote-band.cta-band, .contact-box.card, .footer-box.footer-card { box-shadow: var(--shadow); }

@media (max-width: 980px) {
  .hero-grid, .split-grid, .gallery-grid, .contact-grid, .footer-grid, .services-grid, .stats-grid, .compact-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 320px; }
  .service-card img { height: 200px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch;
    padding: 12px; border: 1px solid var(--line); background: rgba(10,15,13,.98); border-radius: 16px; box-shadow: var(--shadow);
  }
  .nav-links.show { display: flex; }
  .nav-links a { padding: 12px 14px; }
}
@media (max-width: 720px) {
  section { padding: 42px 0; }
  .hero-copy, .story-copy, .quote-band, .contact-box { padding: 22px; }
  .hero-title { max-width: none; }
  .footer-bottom { flex-direction: column; }
  .container { width: min(calc(100% - 24px), var(--max)); }
}
.footer-social{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:8px;
}

.social-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  font-size:16px;
}

.social-icon:hover{
  background:var(--green);
  color:#0b0f0d;
}

.social-handle{
  font-size:0.9rem;
  color:var(--muted);
  font-weight:600;
  line-height:1;
  position:relative;
  top:1px;
}
.instagram-link{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}

