/* ============================================================
   CREEK — Web Design & Development Studio
   ============================================================ */

:root {
  /* Brand tokens — carried forward from the live site's globals.css, not invented */
  --green-950: #0E1A15; /* background-dark */
  --green-900: #0E2019; /* ink-block */
  --green-850: #16281F; /* ink-block-elevated */
  --green-800: #2A4034; /* ink-block-border */
  --green-700: #29392F; /* border-dark */

  --cream: #F4F7F2;      /* ink-block-fg */
  --cream-dim: #A7C0B3;  /* ink-block-muted */
  --cream-faint: rgba(167, 192, 179, 0.4);

  --orange: #D9552C;       /* ember (light) */
  --orange-light: #FF7A52; /* ember (dark) — used here as the emphasis/hover variant */
  --orange-dim: rgba(217, 85, 44, 0.45);

  --paper: #F3F6F4;    /* background (light) */
  --paper-alt: #E6ECE8; /* bg-stone */
  --ink: #13221D;       /* foreground (light) */
  --ink-dim: #536860;   /* foreground-muted (light) */
  --ink-faint: #DBE3DD; /* border (light) */

  --font-display: 'Fraunces', serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { background: var(--green-950); }

body {
  background: var(--green-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

::selection { background: var(--orange); color: var(--green-950); }

/* ---------- utility ---------- */
.section { padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 6rem); position: relative; }
.section-dark { background: var(--green-900); color: var(--cream); }
.section:not(.section-dark) { background: var(--paper); color: var(--ink); }

.section-head { max-width: 64rem; margin-bottom: clamp(2.5rem, 6vw, 5rem); }

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.section-intro {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  max-width: 38rem;
  line-height: 1.75;
  margin-top: 1.4rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn span { display: inline-block; }

.btn-primary {
  background: var(--orange);
  color: var(--green-950);
  font-weight: 600;
}
.btn-primary:hover { background: var(--orange-light); }

.btn-ghost {
  border: 1px solid var(--cream-faint);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-light); }

/* light-section variant — .btn-ghost assumes a dark background */
.btn-ghost-ink {
  border: 1px solid var(--ink-faint);
  color: var(--ink);
}
.btn-ghost-ink:hover { border-color: var(--orange); color: var(--orange); }

.btn-lg { padding: 1.15rem 2.4rem; font-size: 0.85rem; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 8000;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#cursor-dot.active, #cursor-ring.active { opacity: 1; }
#cursor-dot { width: 6px; height: 6px; background: var(--orange); }
#cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--orange-dim);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
#cursor-ring.hover { width: 56px; height: 56px; background: rgba(216,90,44,0.1); border-color: var(--orange); }

@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ============================================================
   GRAIN
   ============================================================ */
.grain {
  position: fixed; inset: -10%;
  width: 120%; height: 120%;
  z-index: 7000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   LOGO MARK (shared: header + footer)
   ============================================================ */
.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
}
.logo-frame {
  position: absolute; inset: 0;
  border: 1.5px solid var(--orange);
  border-radius: 2px;
}
.logo-frame::before, .logo-frame::after {
  content: ''; position: absolute; background: inherit;
}
.logo-text {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
#site-footer .logo-text { color: var(--cream); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(12,27,21,0.85) 0%, rgba(12,27,21,0) 100%);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
#site-header.scrolled {
  background: rgba(12, 27, 21, 0.82);
  border-bottom: 1px solid var(--green-800);
}

#main-nav { display: flex; gap: 2.2rem; }
#main-nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s var(--ease);
  position: relative;
}
#main-nav a:hover { color: var(--orange-light); }

#nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
#nav-toggle span { width: 22px; height: 1.5px; background: var(--cream); display: block; }

#mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--green-950);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
#mobile-nav.open { transform: translateY(0); }
#mobile-nav a {
  font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--green-950);
}

#current-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(12,27,21,0.35) 55%, var(--green-950) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 76rem;
  padding: 0 1.5rem;
  margin-top: 1.5rem;
}

.hero-inner .eyebrow { margin-bottom: 1.6rem; display: inline-block; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7.2vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 34rem;
  margin: 1.8rem auto 0;
  line-height: 1.7;
}

.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.6rem;
}

.scroll-cue {
  position: absolute; bottom: 2.4rem; right: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-cue span {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-faint); writing-mode: vertical-rl;
}
.scroll-cue-line { width: 1px; height: 40px; background: var(--cream-faint); overflow: hidden; position: relative; }
.scroll-cue-line::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--orange);
  animation: scrollcue 2.4s infinite var(--ease);
}
@keyframes scrollcue { to { top: 100%; } }

@media (max-width: 720px) {
  .scroll-cue { display: none; }
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.pricing-card {
  border-top: 1px solid var(--ink-faint);
  padding-top: 1.8rem;
}
.pricing-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 0.7rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink-dim);
  margin-bottom: 1.2rem;
}
.pricing-price strong {
  font-weight: 700;
  color: var(--orange);
}
.pricing-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-dim);
  line-height: 1.75;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}
.pricing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-tags li {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   WORK
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--green-700);
  border: 1px solid var(--green-700);
}
.work-card {
  position: relative;
  background: var(--green-900);
  padding: 2.6rem 2rem;
  min-height: 15rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
.work-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--swatch, var(--orange)) 0%, transparent 55%);
  opacity: 0.16;
  transition: opacity 0.5s var(--ease);
}
.work-card:hover::before { opacity: 0.32; }
.work-card:hover { background: var(--green-850); }

.work-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  position: relative; z-index: 1;
}
.work-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--swatch, var(--orange-light));
}
.work-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cream-faint);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.work-card:hover .work-link { opacity: 1; transform: translateY(0); }

.work-card h3 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 2rem;
  color: var(--cream);
}
.work-card p {
  position: relative; z-index: 1;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-dim);
  margin-top: 0.6rem;
  max-width: 24rem;
}

/* Hover-expand image gallery — a visual showcase of real client work */
.work-gallery {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  height: 480px;
  width: 100%;
}
.work-gallery-item {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  transition: flex-grow 0.6s var(--ease);
}
.work-gallery-item:hover { flex-grow: 4; }
.work-gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,32,25,0.85) 0%, rgba(14,32,25,0.1) 35%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-gallery-item:hover::after { opacity: 1; }
.work-gallery-label {
  position: absolute; left: 1.4rem; bottom: 1.3rem; z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.work-gallery-item:hover .work-gallery-label { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .work-gallery { flex-direction: column; height: auto; gap: 0.75rem; }
  .work-gallery-item { flex: none; height: 220px; }
  .work-gallery-item .work-gallery-label { opacity: 1; transform: translateY(0); }
  .work-gallery-item::after { opacity: 1; }
}

/* ============================================================
   WHY CREEK
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.why-card { border-top: 1px solid var(--ink-faint); padding-top: 1.6rem; }
.section-dark .why-card { border-top-color: var(--green-700); }
.why-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--orange);
  display: block;
  margin-bottom: 1.2rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 0.7rem;
}
.why-card p { font-size: 0.92rem; font-weight: 300; color: var(--ink-dim); line-height: 1.7; }
.section-dark .why-card p { color: var(--cream-dim); }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 0.5rem;
}
.testimonial-card { border-top: 1px solid var(--ink-faint); padding-top: 1.6rem; }
.section-dark .testimonial-card { border-top-color: var(--green-700); }
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--orange); }
.testimonial-quote::after { content: '\201D'; color: var(--orange); }
.testimonial-attribution {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.section-dark .testimonial-attribution { color: var(--cream-dim); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-list { display: flex; flex-direction: column; }
.process-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--green-700);
  align-items: baseline;
}
.process-row:first-child { border-top: 1px solid var(--green-700); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--orange-light);
}
.process-row h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0.5rem;
}
.process-row p { font-size: 0.92rem; font-weight: 300; color: var(--cream-dim); max-width: 32rem; }

@media (max-width: 640px) {
  .process-row { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-strip {
  background: var(--orange);
  color: var(--green-950);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 6rem);
  gap: 2rem;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-left: 0.15rem;
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
  max-width: 12rem;
  opacity: 0.75;
}

@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--ink-faint); max-width: 52rem; }
.faq-item { border-bottom: 1px solid var(--ink-faint); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 0;
  text-align: left;
}
.faq-q span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}
.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p {
  padding-bottom: 1.6rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-dim);
  max-width: 38rem;
  line-height: 1.75;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--green-950);
  padding: clamp(6rem, 14vw, 10rem) 1.5rem;
  text-align: center;
  overflow: hidden;
}
#current-canvas-cta {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.cta-inner { position: relative; z-index: 2; }
.cta-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  margin: 1.4rem 0 2.4rem;
}
.cta-heading em { font-style: italic; font-weight: 700; color: var(--orange-light); }

.cta-alt {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cream-faint);
}
.cta-alt a { color: var(--cream-dim); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s var(--ease); }
.cta-alt a:hover { color: var(--orange-light); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(9rem, 20vw, 12.5rem) clamp(1.5rem, 6vw, 6rem) clamp(4rem, 9vw, 6.5rem);
}
.page-hero .eyebrow { display: block; margin-bottom: 1.4rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  max-width: 42rem;
}
.page-hero-sub {
  margin-top: 1.7rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 34rem;
  line-height: 1.75;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-block { max-width: 30rem; }
.form-field { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.form-field input, .form-field textarea {
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--ink-faint);
  border-radius: 10px;
  background: var(--paper-alt);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 8rem; }
.form-note { font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 1.6rem; line-height: 1.6; }
.form-error {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.form-success {
  border: 1px solid var(--ink-faint);
  border-radius: 12px;
  padding: 1.8rem;
  background: var(--paper-alt);
}
.form-success h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--ink-dim); font-size: 0.95rem; line-height: 1.7; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--green-950);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 6rem) 2rem;
  border-top: 1px solid var(--green-800);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2.5rem;
}
.footer-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--orange-light); }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--green-800);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cream-faint);
}

/* ============================================================
   REVEAL ANIMATION BASE STATE
   Content is visible by default — JS sets the hidden starting
   state itself (via gsap.set in app.js) right before animating,
   so visibility never depends on the animation library loading.
   Do not add opacity:0 here again — see app.js SCROLL REVEALS.
   ============================================================ */

/* ============================================================
   RESPONSIVE — NAV
   ============================================================ */
@media (max-width: 860px) {
  #main-nav, #site-header .btn { display: none; }
  #nav-toggle { display: flex; }
}
