/* Lakebeam Operations — shared styles */

:root {
  --navy: #1F3A5F;
  --navy-dark: #142540;
  --green: #2E7D5B;
  --green-dark: #1F5A40;
  --sunset: #C2683C;
  --sunset-warm: #D9824C;
  --sunset-soft: #FCF1E8;
  --green-soft: #E9F3EC;
  --blue-soft: #EEF3F0;
  --cream: #FBF8F3;
  --bg: #FDFCF9;
  --text: #1A1A1A;
  --muted: #5A5A5A;
  --border: #E4E0D8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--sunset); }

/* ===== Top navigation ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(253, 252, 249, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-size: 18px;
  text-transform: uppercase;
}
.nav-brand .accent { color: var(--sunset); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 15px;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.nav-links a:hover { border-bottom-color: var(--sunset); color: var(--text); }
.nav-links a.active { border-bottom-color: var(--navy); color: var(--navy); }
.nav-links a.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 5px;
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.15s ease;
  margin-left: 12px;
}
.nav-links a.nav-cta:hover { background: var(--sunset); color: #fff !important; border-bottom: none; }

/* ===== Page wrapper ===== */
.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }
.section.tint { background: var(--blue-soft); }
.section.tint-green { background: var(--green-soft); }
.section.tint-sunset { background: var(--sunset-soft); }
.section-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", "Source Serif Pro", serif;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
h1 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 28px;
}
h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 22px;
}
h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 12px;
}
.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 16px;
}
p { margin: 0 0 18px; }
.lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 36px;
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, #fff 0%, var(--sunset-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--navy); }
.hero-art {
  width: 100%;
  height: auto;
}

/* ===== Stage cards ===== */
.stages {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
}
.stage {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--sunset);
  padding: 28px 30px;
  border-radius: 0 6px 6px 0;
  position: relative;
}
.stage-num {
  font-family: Georgia, serif;
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 38px;
  color: var(--sunset);
  font-weight: 700;
  opacity: 0.35;
  letter-spacing: -0.02em;
}
.stage h3 {
  margin-bottom: 8px;
  color: var(--navy);
}
.stage-tag {
  font-size: 13px;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.stage p { margin: 0; color: var(--text); }

/* ===== "What I'm not / what I do" lists ===== */
.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 24px 0;
}
.col-2 h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tag-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 17px;
}
.tag-list.x li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 8px;
  color: #B23A48;
  font-weight: 700;
}
.tag-list.v li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 700;
}

/* ===== Origin callout ===== */
.origin {
  background: var(--sunset-soft);
  border-left: 5px solid var(--sunset);
  padding: 32px 36px;
  border-radius: 0 6px 6px 0;
  margin: 16px 0;
}
.origin .eyebrow { color: var(--sunset); }
.origin h3 { color: var(--navy); margin-bottom: 12px; }
.origin p { margin: 0; }

/* ===== FAQ ===== */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-a { color: var(--text); margin: 0; }

/* ===== Credentials section ===== */
.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 12px;
}
.cred-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px 24px;
  border-radius: 6px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cred-card:hover {
  border-color: var(--sunset);
}
.cred-name {
  font-family: Georgia, serif;
  font-size: 21px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.cred-role {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ===== CTA section ===== */
.cta-section {
  text-align: center;
  padding: 88px 0;
  background: var(--navy);
  color: #fff;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 19px; max-width: 560px; margin: 0 auto 28px; }
.cta-button {
  display: inline-block;
  background: var(--sunset);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.cta-button:hover { background: var(--sunset-warm); color: #fff !important; }

/* ===== Status note ===== */
.status-note {
  background: #fff;
  border: 1px dashed var(--border);
  padding: 22px 28px;
  border-radius: 6px;
  margin: 32px 0;
  font-style: italic;
  color: var(--muted);
}
.status-note strong {
  color: var(--navy);
  font-style: normal;
  display: block;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ===== Footer ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 56px 28px 40px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 8px;
}
.footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.footer-col a {
  color: rgba(255,255,255,0.78);
  display: block;
  padding: 4px 0;
  font-size: 14px;
}
.footer-col a:hover { color: var(--sunset-warm); }
.footer-bottom {
  max-width: 1080px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ===== Mobile ===== */
@media (max-width: 800px) {
  .nav-inner { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 18px; font-size: 14px; }
  .nav-cta { padding: 7px 12px; font-size: 13px; }
  .page { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-inner { padding: 0; }
  .hero { padding: 48px 0 64px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  .lede { font-size: 18px; }
  .col-2 { grid-template-columns: 1fr; gap: 24px; }
  .creds { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stage { padding: 22px 22px; }
  .stage-num { font-size: 30px; top: 14px; right: 18px; }
}
