:root {
  --bg:        #2D3433;
  --bg-2:      #252E2C;
  --bg-card:   #323D3B;
  --text:      #DCEBE6;
  --text-soft: rgba(220,235,230,0.65);
  --copper:    #C98A52;
  --copper-2:  #C98A52;
  --border:    rgba(203,204,204,0.12);
  --border-2:  rgba(203,204,204,0.07);
  --radius:    18px;
  --max:       860px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  font-weight: 600;
  font-size: 28px;
}

a {
  color: var(--copper-2);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ── Skip link ── */
.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: fixed; left: 18px; top: 18px; width: auto; height: auto;
  padding: 10px 16px; background: var(--copper); color: #fff;
  border-radius: 10px; z-index: 9999;
}

/* ── Container ── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ── Header ── */
header {
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand:hover { text-decoration: none; }

.brand img {
  width: 48px;
  height: auto;
  opacity: 0.9;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-title strong {
  font-size: 20px;
  font-weight: 600;
}
.brand-title span {
  font-size: 14px;
  opacity: 0.6;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 17px;
  color: var(--text);
  opacity: 0.8;
  transition: opacity var(--transition), background var(--transition);
}
.navlinks a:hover {
  opacity: 1;
  background: var(--border-2);
  text-decoration: none;
}

/* ── CTA button ── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(156,107,61,0.5);
  background: rgba(156,107,61,0.1);
  color: var(--copper-2);
  font-family: inherit;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.cta:hover {
  background: rgba(156,107,61,0.18);
  border-color: var(--copper-2);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  padding: 64px 0 52px;
  text-align: center;
}

.bird-hero {
  margin-bottom: 28px;
}
.bird-hero img {
  width: clamp(100px, 14vw, 160px);
  height: auto;
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 .amp {
  font-weight: 400;
  font-style: italic;
  font-size: 0.8em;
  opacity: 0.85;
}

.lede {
  font-size: 28px;
  opacity: 0.88;
  max-width: 58ch;
  margin: 0 auto 16px;
  line-height: 1.45;
}

.lede-accent {
  font-size: 28px;
  font-style: italic;
  color: var(--copper-2);
  margin: 8px auto 32px;
  max-width: 40ch;
}

.hero-sub {
  max-width: 58ch;
  margin: 0 auto 36px;
  display: grid;
  gap: 14px;
}
.hero-sub p {
  font-size: 28px;
  opacity: 0.8;
  line-height: 1.55;
}

.cta-hero {
  font-size: 20px;
  padding: 14px 28px;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  opacity: 1;
}
.divider img {
  width: clamp(100px, 14vw, 160px);
  height: auto;
}

/* ── Sections ── */
.section {
  padding: 56px 0;
}

.section-label {
  font-size: 25px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 12px;
  opacity: 1;
}

.section h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.section-intro {
  font-size: 28px;
  opacity: 0.82;
  max-width: 58ch;
  margin-bottom: 24px;
  line-height: 1.55;
}

.section-close {
  font-size: 28px;
  font-style: italic;
  opacity: 0.75;
  margin-top: 28px;
  max-width: 54ch;
  line-height: 1.55;
}

/* ── Scope list ── */
.scope-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 54ch;
  margin: 0 auto;
  text-align: left;
}
.scope-list li {
  font-size: 28px;
  padding-left: 24px;
  position: relative;
  opacity: 0.88;
  line-height: 1.5;
}
.scope-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--copper);
  opacity: 0.7;
}
.scope-list li a {
  color: var(--copper-2);
}

/* ── Steps list ── */
.steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 58ch;
}
.steps-list li {
  font-size: 20px;
  padding: 16px 18px 16px 20px;
  border-left: 2px solid rgba(156,107,61,0.35);
  background: rgba(203,204,204,0.04);
  border-radius: 0 10px 10px 0;
  line-height: 1.5;
  opacity: 0.88;
}
.steps-list li a {
  color: var(--copper-2);
}

/* ── Not included ── */
.not-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 52ch;
}
.not-list li {
  font-size: 28px;
  padding-left: 36px;
  position: relative;
  opacity: 0.9;
  line-height: 1.45;
}
.not-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--copper-2);
  opacity: 1;
  font-size: 28px;
  font-weight: 900;
  top: 0px;
}

.limitation-note {
  margin-top: 32px;
  font-size: 28px;
  font-style: italic;
  opacity: 0.65;
  max-width: 52ch;
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.contact-or {
  text-align: center;
  margin: 24px 0;
  font-size: 20px;
  opacity: 0.45;
  font-style: italic;
}

.cta-hero {
  font-size: 22px;
  padding: 16px 32px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ── Privacy note ── */
.section-privacy {
  padding: 28px 0;
  text-align: center;
}
.section-privacy p {
  font-size: 28px;
  opacity: 0.6;
}
.section-privacy a {
  opacity: 0.8;
}

/* ── Contact form ── */
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label,
.contact-form .full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 17px;
  opacity: 0.8;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(203,204,204,0.05);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(156,107,61,0.5);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form button.cta {
  justify-self: start;
  margin-top: 4px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 44px;
  height: auto;
  opacity: 0.6;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand strong {
  font-size: 18px;
  font-weight: 600;
}
.footer-brand span {
  font-size: 14px;
  opacity: 0.55;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.footer-contact a {
  font-size: 17px;
  opacity: 0.65;
  color: var(--text);
}
.footer-contact a:hover {
  opacity: 1;
  color: var(--copper-2);
}

.footer-copy {
  font-size: 14px;
  opacity: 0.4;
  border-top: 1px solid var(--border-2);
  padding-top: 20px;
}
.footer-copy a {
  color: var(--text);
  opacity: 0.7;
}

/* Center scope-style sections */
#scope,
#scope .container,
.section:has(.scope-list) .container {
  text-align: center;
}
#scope .scope-list,
.section:has(.scope-list) .scope-list {
  margin: 0 auto;
  text-align: left;
}
#scope .section-intro,
.section:has(.scope-list) .section-intro,
#scope .section-close,
.section:has(.scope-list) .section-close {
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  body { font-size: 21px; }

  header {
    padding: 18px 0 14px;
  }

  .brand-title span {
    display: none;
  }

  .navlinks a:not(.cta) {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .hero {
    padding: 24px 0 20px;
  }

  .section {
    padding: 40px 0;
  }

  .lede, .lede-accent, .hero-sub p,
  .section-intro, .section-close,
  .scope-list li, .not-list li,
  .limitation-note {
    font-size: 23px;
  }

  .section-label {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .section-privacy p {
    font-size: 23px;
  }
}

/* ── About page ── */
.about-container,
.privacy-container {
  max-width: 680px;
  margin: 0 auto;
}
.about-intro {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 40px;
  color: var(--text);
}
.about-container h2,
.privacy-container h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--copper-2);
  margin: 36px 0 14px;
  letter-spacing: .04em;
}
.about-container p,
.privacy-container p {
  font-size: 26px;
  line-height: 1.6;
  opacity: .88;
  margin-bottom: 16px;
}

/* ── Sep/div photo placeholder ── */
.sepdiv-photo-placeholder {
  width: 200px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  border: 1px solid rgba(220,235,230,0.2);
  background: rgba(220,235,230,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
.sepdiv-photo-placeholder span {
  font-size: 16px;
  opacity: .35;
  font-style: italic;
  letter-spacing: .04em;
  color: var(--text);
}

/* ── Workflow cross-link strip ── */
.workflow-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(220,235,230,0.10);
  text-align: center;
}
.workflow-strip p {
  font-size: 19px;
  opacity: .65;
}
.workflow-strip a {
  color: var(--copper-2);
  text-decoration: underline;
}

/* ── Privacy / tight hero ── */
.hero--tight {
  padding: 36px 0 16px;
}
.bird-hero--small img {
  width: clamp(100px, 14vw, 160px);
  opacity: 0.7;
}
.section--tight {
  padding-top: 24px;
}

/* ── Mobile header / hero buttons ── */
.brand-mobile { display: none; }
.brand-full { display: block; }

.sepdiv-hero-actions {
  display: none;
}

@media (max-width: 640px) {
  .brand-full { display: none; }
  .brand-mobile {
    display: block;
    font-size: 12px;
    opacity: 0.7;
  }
  .brand-title strong {
    font-size: 11px !important;
    letter-spacing: 0 !important;
    font-weight: 700 !important;
  }
  .brand-mobile {
    display: block !important;
    font-size: 10px !important;
    opacity: 0.7 !important;
    letter-spacing: 0 !important;
  }
  .brand img {
    width: 24px !important;
  }
  .brand {
    gap: 6px !important;
  }
  .navlinks a:not(.cta) {
    display: none;
  }
  .navlinks .cta {
    font-size: 13px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    border-radius: 8px !important;
  }
  .nav {
    flex-wrap: nowrap;
    gap: 6px;
  }
  /* Show consult button under lede-accent */
  .sepdiv-hero-actions {
    display: flex;
    justify-content: center;
    margin: 20px 0 28px;
  }
  .sepdiv-hero-actions .cta {
    font-size: 20px !important;
    padding: 14px 24px !important;
  }
}

/* ============================================================
   HAMBURGER MENU
   ============================================================ */

/* Clean up old mobile overrides */
.brand-mobile { display: none !important; }
.brand-full { display: block; }

/* Bigger brand in header */
.brand img {
  width: 64px !important;
}
.brand-title strong {
  font-size: 22px !important;
}
.brand-title span {
  font-size: 14px !important;
  opacity: 0.75;
  line-height: 1;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(220,235,230,0.1);
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

/* Animated X when open */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 700px) {
  /* Show hamburger, hide regular nav */
  .hamburger { display: flex; }

  .navlinks {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 40px 32px;
  }
  .navlinks.open {
    display: flex;
  }
  .navlinks a {
    display: block !important;
    font-size: 32px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(220,235,230,0.15) !important;
    opacity: 1 !important;
    color: var(--text) !important;
    background: none !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    text-align: center;
    width: 100%;
    text-decoration: none;
  }
  .navlinks a:last-child {
    border-bottom: none !important;
  }
  .navlinks a:hover {
    opacity: 0.75 !important;
    text-decoration: none;
  }
  /* Close button inside menu */
  .hamburger[aria-expanded="true"] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
}

/* Hide Yukon subtitle on desktop, show on mobile only */
.brand-yukon {
  display: none;
}
@media (max-width: 700px) {
  .brand-yukon {
    display: block;
    font-size: 16px !important;
    opacity: 0.75;
  }
}

/* ── Form success message ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-success.visible {
  display: block;
}
.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 20px;
  color: var(--text);
  opacity: .75;
}

/* ── Headshot ── */
.about-headshot {
  width: 200px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
