/* ── NOON SHARED STYLES — Earth Palette v2 ───────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  /* ── BASE — obsidian with green soul ──────────────────────────── */
  --earth:        #0d1210;   /* near-black, green undertone */
  --soil:         #131a16;   /* sections bg */
  --stone:        #192118;   /* card bg */
  --limestone:    #1f2a1e;   /* elevated card */
  --bark:         #2e3e2c;   /* borders, dividers */
  --canopy:       #3a5234;   /* hover states */

  /* ── SIGNATURE — Noon electric green ─────────────────────────── */
  --noon:         #9ddb58;   /* PRIMARY accent — electric, luminous */
  --noon-dim:     #6aab32;   /* secondary green, nav labels */
  --noon-glow:    rgba(157,219,88,0.12);

  /* ── WATER — deep teal, alive ─────────────────────────────────── */
  --teal:         #2a9688;   /* deeper water */
  --teal-bright:  #3ec9b4;   /* highlights, italic text */
  --teal-glow:    rgba(62,201,180,0.1);

  /* ── WARM — gold sun, NOT brown ───────────────────────────────── */
  --gold:         #e8a830;   /* metrics, $$ numbers — warm sun */
  --gold-dim:     #b87820;   /* secondary warm */

  /* ── TERRACOTTA — logo only, sharp accent ─────────────────────── */
  --clay:         #c05030;   /* logo mark arc only */
  --clay-dim:     #8a3820;   /* logo construction lines */

  /* ── TEXT — cool limestone, high contrast ─────────────────────── */
  --cream:        #e8f0e0;   /* primary text — cool green-white */
  --mist:         #9ab89a;   /* secondary text */
  --ghost:        #526852;   /* muted text */
  --faint:        #2e422e;   /* very muted */
}

html { scroll-behavior: smooth; }

body {
  background: var(--earth);
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* NAV */
.n-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(22,18,16,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157,219,88,0.08);
  transition: padding .3s ease;
}
.n-nav.scrolled { padding: 14px 48px; }

.n-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300;
  letter-spacing: 8px; color: var(--noon);
  text-decoration: none; text-transform: uppercase;
}
.n-logo span {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--noon); margin: 0 2px 2px;
  animation: breathe 3s infinite;
}
@keyframes breathe {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.3;transform:scale(.5)}
}

.n-links { display:flex; gap:36px; list-style:none; }
.n-links a {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ghost);
  text-decoration: none; transition: color .2s;
}
.n-links a:hover, .n-links a.active { color: var(--noon); }

.n-nav-cta {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--earth);
  background: var(--noon); padding: 10px 22px;
  text-decoration: none; transition: all .2s;
}
.n-nav-cta:hover { background: var(--noon-dim); transform: translateY(-1px); }

/* BUTTONS */
.btn-primary {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--earth);
  background: var(--noon); padding: 16px 36px;
  text-decoration: none; display: inline-block;
  transition: all .25s; border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--noon-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(157,219,88,0.25);
}

.btn-ghost {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mist);
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: color .2s;
  background: none; border: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost::after { content:'→'; transition:transform .2s; }
.btn-ghost:hover::after { transform:translateX(4px); }

.btn-outline {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--noon);
  border: 1px solid rgba(157,219,88,0.3);
  padding: 14px 32px; text-decoration: none;
  display: inline-block; transition: all .2s;
}
.btn-outline:hover {
  background: rgba(157,219,88,0.08);
  border-color: var(--noon);
}

/* PAGE HEADER */
.n-page-header {
  padding: 180px 48px 100px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(157,219,88,0.08);
}
.n-page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(62,201,180,0.08) 0%, transparent 60%);
}

.n-eyebrow {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--moss);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.n-eyebrow::before { content:''; width:32px; height:1px; background:var(--moss); }

.n-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300; line-height: 1.0;
  color: var(--cream); letter-spacing: -1px;
}
.n-page-title em { font-style:italic; color:var(--noon); }

.n-page-sub {
  margin-top: 20px; font-size: 15px;
  color: var(--ghost); max-width: 520px;
  line-height: 1.8; font-weight: 300;
}

/* SECTION */
.n-section { padding: 100px 48px; position: relative; background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(232,168,48,0.04) 0%, transparent 60%); }

.n-section-label {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--moss);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.n-section-label::before { content:''; width:24px; height:1px; background:var(--moss); }

.n-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 20px; letter-spacing:-.5px;
}
.n-section-title em { font-style:italic; color:var(--teal-bright); }

.n-section-body {
  font-size: 15px; color: var(--ghost);
  max-width: 560px; line-height: 1.8;
}

/* FOOTER */
.n-footer {
  background: var(--soil);
  padding: 64px 48px 40px;
  border-top: 1px solid rgba(157,219,88,0.06);
}
.n-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 48px;
}
.n-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; letter-spacing: 6px;
  color: var(--noon); text-transform: uppercase; margin-bottom: 16px;
}
.n-footer-tagline {
  font-size: 13px; color: var(--ghost);
  line-height: 1.75; max-width: 280px;
  font-style: italic; font-family: 'Cormorant Garamond', serif;
}
.n-footer-col-title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--moss); margin-bottom: 16px;
}
.n-footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.n-footer-links a {
  font-size:13px; color:var(--ghost);
  text-decoration:none; transition:color .2s;
}
.n-footer-links a:hover { color:var(--noon); }
.n-footer-bottom {
  border-top: 1px solid rgba(157,219,88,0.06);
  padding-top: 24px; display:flex;
  justify-content:space-between; align-items:center;
}
.n-footer-copy {
  font-family:'Archivo Narrow',sans-serif;
  font-size:10px; letter-spacing:1px; color:var(--bark);
}
.n-footer-pbc {
  font-family:'Archivo Narrow',sans-serif;
  font-size:9px; letter-spacing:2px;
  text-transform:uppercase; color:var(--bark);
}

/* REVEAL */
.reveal {
  opacity:0; transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .n-nav { padding: 16px 24px; }
  .n-links { display: none; }
  .n-page-header { padding: 140px 24px 60px; }
  .n-section { padding: 60px 24px; }
  .n-footer { padding: 48px 24px 32px; }
  .n-footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
