@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark: #1B4D2E;
  --green-mid: #2D6E45;
  --green-bright: #3d8c52;
  --green-light: #eef5f0;
  --orange: #E8930A;
  --orange-light: #fef3dc;
  --cream: #F5F2EC;
  --bg: #FAFCF8;
  --text: #111111;
  --text-light: #5a6672;
  --white: #FFFFFF;
  --border: #e2ebe4;
  --border-dark: #d0d8d3;
  --shadow-sm: 0 2px 12px rgba(27,77,46,0.07);
  --shadow-md: 0 6px 28px rgba(27,77,46,0.10);
  --shadow-lg: 0 16px 48px rgba(27,77,46,0.13);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* TICKER */
.ticker-wrap { background: var(--green-dark); overflow: hidden; padding: 9px 0; white-space: nowrap; position: relative; z-index: 201; }
.ticker-inner { display: inline-flex; animation: ticker 24s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 12px; padding: 0 28px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,252,248,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 66px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); position: relative; padding-bottom: 2px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--green-bright); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--green-dark) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 4px; font-weight: 600 !important; font-size: 0.75rem !important; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 300; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.06em; color: var(--green-dark); text-decoration: none; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text); }

/* SHARED SECTION */
section { padding: 88px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 14px; }
.section-eyebrow::before { content: ''; display: block; width: 18px; height: 1px; background: var(--green-bright); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--green-dark); line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 14px; }
.section-sub { color: var(--text-light); font-size: 0.97rem; line-height: 1.75; max-width: 520px; font-weight: 300; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--border); padding: 72px 48px 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--border-dark) 1px, transparent 1px), linear-gradient(90deg, var(--border-dark) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.14; }
.page-hero-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-breadcrumb { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero-breadcrumb a { color: var(--green-bright); text-decoration: none; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 7vw, 6rem); color: var(--text); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 20px; }
.page-hero h1 span { color: var(--green-dark); }
.page-hero p { font-size: 1rem; color: var(--text-light); max-width: 520px; line-height: 1.75; font-weight: 300; }

/* BUTTONS */
.btn-primary { background: var(--green-dark); color: #fff; padding: 14px 30px; border-radius: 4px; font-weight: 600; font-size: 0.88rem; text-decoration: none; letter-spacing: 0.02em; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; padding: 14px 30px; border-radius: 4px; font-weight: 600; font-size: 0.88rem; text-decoration: none; letter-spacing: 0.02em; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(232,147,10,0.3); border: none; cursor: pointer; font-family: 'Outfit', sans-serif; }
.btn-orange:hover { background: #c97d08; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); padding: 14px 30px; border-radius: 4px; font-weight: 500; font-size: 0.88rem; text-decoration: none; border: 1px solid var(--border-dark); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--green-dark); color: var(--green-dark); transform: translateY(-1px); }

/* CTA STRIP */
.cta-strip { background: var(--green-dark); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-strip h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 12px; letter-spacing: 0.02em; }
.cta-strip p { color: rgba(255,255,255,0.65); font-size: 0.97rem; max-width: 440px; margin: 0 auto 28px; font-weight: 300; line-height: 1.7; }
.cta-strip-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--green-dark); padding: 14px 30px; border-radius: 4px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: #f0f7f2; transform: translateY(-1px); }
.btn-white-outline { background: transparent; color: #fff; padding: 14px 30px; border-radius: 4px; font-weight: 500; font-size: 0.88rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.3); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); transform: translateY(-1px); }

/* FOOTER */
footer { background: #0c1f12; padding: 60px 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.footer-logo img { height: 42px; filter: brightness(0) invert(1); opacity: 0.7; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; font-weight: 300; }
.footer-brand .abn { font-size: 0.75rem; color: rgba(255,255,255,0.22); margin-top: 12px; }
.footer-col h5 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-link { width: 34px; height: 34px; border-radius: 4px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.85rem; transition: background 0.2s; }
.social-link:hover { background: var(--green-bright); }

/* FLOATING CTA */
.float-cta { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 99; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 4px; font-weight: 600; font-size: 0.82rem; text-decoration: none; letter-spacing: 0.03em; box-shadow: 0 4px 18px rgba(0,0,0,0.18); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.float-call { background: var(--green-dark); color: #fff; }
.float-quote { background: var(--orange); color: #fff; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* FORMS */
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.7rem; font-weight: 700; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1px solid var(--border); border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 0.9rem; outline: none; background: var(--bg); color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(61,140,82,0.10); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  section { padding: 64px 20px; }
  .page-hero { padding: 52px 20px 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip { padding: 48px 20px; }
  footer { padding: 44px 20px 24px; }
  .float-btn span { display: none; }
  .float-btn { padding: 13px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; gap: 0; }
}
