*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
:root {
  --cream:#F2EFE9; --cream-2:#E8E4DC; --cream-3:#DDD8CE;
  --teal:#0D3D36; --teal-2:#155C52; --teal-3:#0A2E29;
  --amber:#F5A800; --amber-2:#E09700;
  --ink:#0A0F0E; --ink-2:#2D3B39; --ink-3:#6B7D7A;
  --border:rgba(13,61,54,0.1);
  --teal-ghost:rgba(13,61,54,0.06);
  --amber-ghost:rgba(245,168,0,0.1);
  --font-d:'Cabinet Grotesk',sans-serif;
  --font-b:'Satoshi',sans-serif;
  --sh-sm:0 4px 24px rgba(13,61,54,0.08);
  --sh-md:0 12px 48px rgba(13,61,54,0.12);
  --sh-lg:0 32px 80px rgba(13,61,54,0.18);
}
html { scroll-behavior:smooth; }
body { background:var(--cream); color:var(--ink); font-family:var(--font-b); font-weight:400; line-height:1.65; font-size:16px; -webkit-font-smoothing:antialiased; }

/* NAV */
.nav { position:fixed; top:0; left:0; right:0; z-index:200; display:flex; align-items:center; justify-content:space-between; padding:0 56px; height:64px; background:rgba(242,239,233,0.93); backdrop-filter:blur(20px); border-bottom:1px solid var(--border); transition:box-shadow 0.3s; }
.nav.scrolled { box-shadow:var(--sh-sm); }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-emblem { width:36px; height:36px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.nav-emblem img { width:100%; height:100%; object-fit:cover; }
.nav-name { font-family:var(--font-d); font-size:15px; font-weight:800; color:var(--teal); letter-spacing:-0.01em; }
.nav-links { display:flex; gap:4px; align-items:center; }
.nav-link { font-family:var(--font-d); font-size:13px; font-weight:500; color:var(--ink-3); text-decoration:none; padding:6px 14px; border-radius:6px; transition:all 0.2s; }
.nav-link:hover, .nav-link.active { color:var(--teal); background:var(--teal-ghost); }
.nav-cta { font-family:var(--font-d); font-size:13px; font-weight:700; color:var(--cream); background:var(--teal); padding:9px 22px; border-radius:8px; text-decoration:none; transition:all 0.2s; box-shadow:0 2px 12px rgba(13,61,54,0.2); }
.nav-cta:hover { background:var(--teal-2); transform:translateY(-1px); box-shadow:0 6px 20px rgba(13,61,54,0.28); }

/* PAGE HEADER */
.page-header { padding:160px 56px 80px; border-bottom:1px solid var(--border); position:relative; overflow:hidden; background:var(--teal-3); }
.ph-glow { position:absolute; top:-20%; right:-10%; width:500px; height:500px; background:radial-gradient(circle,rgba(245,168,0,0.08) 0%,transparent 65%); pointer-events:none; }
.ph-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.ph-eyebrow { font-family:var(--font-d); font-size:11px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:rgba(242,239,233,0.4); margin-bottom:20px; display:flex; align-items:center; gap:12px; }
.ph-eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--amber); border-radius:2px; }
.ph-title { font-family:var(--font-d); font-weight:900; font-size:clamp(44px,6vw,80px); letter-spacing:-0.03em; line-height:0.93; color:var(--cream); margin-bottom:24px; }
.ph-title .amber { color:var(--amber); }
.ph-desc { font-size:17px; color:rgba(242,239,233,0.5); line-height:1.8; max-width:540px; }

/* SECTIONS */
.section { padding:112px 56px; border-bottom:1px solid var(--border); }
.section.alt { background:var(--cream-2); }
.section.dark { background:var(--teal-3); }
.section-inner { max-width:1100px; margin:0 auto; }
.eyebrow { font-family:var(--font-d); font-size:11px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; margin-bottom:20px; display:flex; align-items:center; gap:12px; }
.eyebrow::before { content:''; display:block; width:28px; height:2px; border-radius:2px; }
.eyebrow.light { color:var(--teal); }
.eyebrow.light::before { background:var(--teal); }
.eyebrow.dark { color:rgba(242,239,233,0.4); }
.eyebrow.dark::before { background:var(--amber); }
.s-title { font-family:var(--font-d); font-weight:900; font-size:clamp(32px,4vw,52px); letter-spacing:-0.02em; line-height:1.05; margin-bottom:20px; }
.s-title.light { color:var(--teal); }
.s-title.dark { color:var(--cream); }
.s-title .amber { color:var(--amber); }

/* DATA GRID (shared by about + contact) */
.data-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.data-statement { font-family:var(--font-d); font-size:clamp(20px,2.5vw,30px); font-weight:800; letter-spacing:-0.02em; line-height:1.25; color:var(--teal); border-left:4px solid var(--amber); padding-left:28px; margin-bottom:32px; }
.data-body { font-size:16px; color:var(--ink-2); line-height:1.85; }
.data-body p { margin-bottom:20px; }
.data-body p:last-child { margin-bottom:0; }
.data-body strong { color:var(--teal); font-weight:700; }

/* BUTTONS */
.btn-amber { font-family:var(--font-d); font-size:15px; font-weight:700; color:var(--teal); background:var(--amber); padding:15px 32px; border-radius:10px; text-decoration:none; transition:all 0.2s; box-shadow:0 4px 20px rgba(245,168,0,0.3); display:inline-flex; align-items:center; gap:8px; }
.btn-amber:hover { background:#FFB800; transform:translateY(-2px); box-shadow:0 8px 32px rgba(245,168,0,0.4); }

/* FOOTER */
.footer { padding:56px 56px 28px; background:var(--ink); }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-emblem { width:44px; height:44px; border-radius:50%; overflow:hidden; margin-bottom:14px; }
.footer-emblem img { width:100%; height:100%; object-fit:cover; }
.footer-brand-name { font-family:var(--font-d); font-size:15px; font-weight:800; color:var(--cream); margin-bottom:4px; }
.footer-tagline { font-family:var(--font-d); font-size:10px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--amber); margin-bottom:12px; }
.footer-desc { font-size:13px; color:rgba(242,239,233,0.28); line-height:1.7; max-width:220px; }
.footer-col-title { font-family:var(--font-d); font-size:10px; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(242,239,233,0.22); margin-bottom:16px; }
.footer-link { display:block; font-family:var(--font-d); font-size:13px; font-weight:500; color:rgba(242,239,233,0.48); text-decoration:none; margin-bottom:10px; transition:color 0.2s; }
.footer-link:hover { color:var(--amber); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:24px; border-top:1px solid rgba(255,255,255,0.05); flex-wrap:wrap; gap:12px; }
.footer-copy { font-family:var(--font-d); font-size:12px; color:rgba(242,239,233,0.18); letter-spacing:0.04em; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.rd1{transition-delay:0.1s} .rd2{transition-delay:0.2s} .rd3{transition-delay:0.3s} .rd4{transition-delay:0.4s}

/* MOBILE (shared nav/footer/page-header/data-grid rules) */
@media(max-width:960px){
  .nav{padding:0 24px;}
  .nav-links{display:none;}
  .page-header{padding:120px 24px 64px;}
  .section{padding:80px 24px;}
  .data-grid{grid-template-columns:1fr;gap:48px;}
  .footer{padding:48px 24px 24px;}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px;}
}
@media(max-width:600px){
  .footer-top{grid-template-columns:1fr;}
}
