/* ============================================================
   MONGER METHOD — Global Stylesheet
   Brand: Black #0D0D0D / Orange #C8722A / Cream #E8E4DC
   Typography: Helvetica Neue / Helvetica / Arial
   ============================================================ */

:root {
  --black:      #0D0D0D;
  --charcoal:   #1A1A1A;
  --charcoal-2: #2B2B2B;
  --orange:     #C8722A;
  --amber:      #E8A020;
  --cream:      #E8E4DC;
  --cream-soft: #FFF8EE;
  --gray-muted: #5A5A5A;
  --white:      #FFFFFF;

  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 1100px;
  --transition: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin-bottom: 1rem; color: var(--cream); opacity: 0.9; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--dark  { background: var(--black); }
.section--mid   { background: var(--charcoal); }
.section--deep  { background: #111111; }

/* ── Orange structural bar (brand marker) ───────────────── */
.orange-bar {
  width: 3px;
  background: var(--orange);
  flex-shrink: 0;
}

.orange-bar--top {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1.25rem;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-label .orange-bar { height: 100%; min-height: 3rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-ghost:hover {
  background: var(--orange);
  color: var(--black);
}

/* ── Logo 4 — Ladder Mark (nav + dividers + ghost) ─────── */
.ladder-mark {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 22px;
  flex-shrink: 0;
}
.ladder-mark span {
  display: block;
  border-radius: 1px;
  width: 4px;
}
.ladder-mark span:nth-child(1) { height: 8px;  background: #6b3610; }
.ladder-mark span:nth-child(2) { height: 11px; background: #8f4a14; }
.ladder-mark span:nth-child(3) { height: 15px; background: var(--orange); }
.ladder-mark span:nth-child(4) { height: 19px; background: var(--amber); }
.ladder-mark span:nth-child(5) { height: 22px; background: #f2be55; }

/* ── Nav logo wordmark layout ───────────────────────────── */
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav__logo-wordmark .wm-top {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav__logo-wordmark .wm-sub {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── Section Divider — ladder bars + rule ───────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 0 0;
  margin: 0;
}
.section-divider__bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 18px;
  flex-shrink: 0;
}
.section-divider__bars span {
  display: block;
  border-radius: 1px;
  width: 3.5px;
}
.section-divider__bars span:nth-child(1) { height: 6px;  background: #6b3610; }
.section-divider__bars span:nth-child(2) { height: 9px;  background: #8f4a14; }
.section-divider__bars span:nth-child(3) { height: 12px; background: var(--orange); }
.section-divider__bars span:nth-child(4) { height: 15px; background: var(--amber); }
.section-divider__bars span:nth-child(5) { height: 18px; background: #f2be55; }
.section-divider__rule {
  flex: 1;
  height: 1px;
  background: var(--charcoal-2);
}
.section-divider__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.28;
  white-space: nowrap;
}
.section-divider-wrap {
  background: var(--black);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding: 18px 0;
}
.section-divider-wrap.mid {
  background: var(--charcoal);
  border-color: var(--charcoal-2);
}

/* ── Hero ghost watermark ───────────────────────────────── */
.hero__ghost {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 55vh;
  max-height: 420px;
  min-height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.038;
}
.hero__ghost span {
  display: block;
  background: var(--orange);
  border-radius: 2px;
  width: 18px;
}
.hero__ghost span:nth-child(1) { height: 38%; }
.hero__ghost span:nth-child(2) { height: 54%; }
.hero__ghost span:nth-child(3) { height: 70%; }
.hero__ghost span:nth-child(4) { height: 85%; }
.hero__ghost span:nth-child(5) { height: 100%; }

/* ── Footer Logo 1 — stacked wordmark stamp ─────────────── */
.footer__stamp {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--charcoal-2);
  margin-bottom: 2.5rem;
}
.footer__stamp-big {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.footer__stamp-rule {
  width: 64px;
  height: 2px;
  background: var(--orange);
  margin: 10px auto;
}
.footer__stamp-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid var(--charcoal-2);
  backdrop-filter: blur(8px);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  color: var(--cream) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--orange);
  opacity: 1;
}

.nav__cta {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  padding: 0.5rem 1.25rem;
  background: var(--orange);
  color: var(--black) !important;
  opacity: 1 !important;
}
.nav__cta:hover { background: var(--amber); color: var(--black) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #0A0A0A;
  border-top: 1px solid var(--charcoal-2);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  max-width: 280px;
  margin-top: 0.75rem;
}

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a {
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.6;
  transition: all var(--transition);
}
.footer__col ul li a:hover { opacity: 1; color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--charcoal-2);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.4;
  color: var(--cream);
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-2);
  padding: 2rem;
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--orange); }

.card__number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }

.form-input {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--charcoal-2);
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder { color: var(--cream); opacity: 0.3; }
.form-input:focus { border-color: var(--orange); }

.email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
}
.email-form .form-input { flex: 1; }

/* ── Utility ─────────────────────────────────────────────── */
.text-orange  { color: var(--orange); }
.text-amber   { color: var(--amber); }
.text-cream   { color: var(--cream); }
.text-muted   { opacity: 0.5; }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.12em; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.divider {
  height: 1px;
  background: var(--charcoal-2);
  margin: 3rem 0;
}

/* ── Grid ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1.5rem; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .nav__links.open a { font-size: 1.1rem; opacity: 1; }
  .nav__links.open .nav__cta {
    padding: 0.85rem 2rem;
    font-size: 0.9rem !important;
  }
}
