:root {
  --ink: #17231f;
  --muted: #5d6964;
  --paper: #fffaf0;
  --paper-deep: #f3eadb;
  --white: #ffffff;
  --forest: #173f34;
  --forest-deep: #0e2c25;
  --blue: #173456;
  --gold: #b67a2f;
  --gold-light: #e4bd75;
  --line: rgba(23, 35, 31, 0.15);
  --shadow: 0 20px 52px rgba(28, 30, 25, 0.13);
  --radius: 22px;
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; line-height: 1.58; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { margin: 0; font-family: "Lora", Georgia, serif; line-height: 1.08; }
p { margin: 0; }
.wrap { width: min(var(--content), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 16px; border-radius: 10px; background: var(--white); color: var(--forest-deep); box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; color: #fff9ea; background: rgba(14, 44, 37, 0.96); border-bottom: 1px solid rgba(255, 255, 255, 0.14); backdrop-filter: blur(16px); }
.nav-wrap { width: min(var(--content), calc(100% - 40px)); min-height: 72px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand strong { font-family: "Lora", Georgia, serif; font-size: 1.04rem; }
.brand span { margin-top: 5px; color: rgba(255, 249, 234, 0.7); font-size: 0.73rem; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { min-height: 46px; display: inline-flex; align-items: center; padding: 10px 13px; border-radius: 10px; color: rgba(255, 249, 234, 0.84); font-size: 0.94rem; font-weight: 700; text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; background: rgba(255, 255, 255, 0.1); outline: none; }
.menu-toggle { width: 48px; height: 48px; display: none; place-items: center; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 12px; color: #fff9ea; background: transparent; font: inherit; font-weight: 800; cursor: pointer; }

.eyebrow { color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.hero { position: relative; isolation: isolate; min-height: min(790px, calc(100svh - 72px)); display: grid; align-items: center; color: #fff9ea; background: #102d26; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("forest-appalachia-lightpath.jpg") center 48% / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 27, 22, 0.96) 0%, rgba(8, 27, 22, 0.86) 42%, rgba(8, 27, 22, 0.28) 78%, rgba(8, 27, 22, 0.13) 100%); }
.hero-content { max-width: 760px; padding: clamp(76px, 10vw, 126px) 0; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { margin-top: 13px; font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -0.035em; }
.hero-lede { max-width: 700px; margin-top: 22px; color: rgba(255, 249, 234, 0.88); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-note { max-width: 640px; margin-top: 18px; color: rgba(255, 249, 234, 0.7); font-size: 0.94rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; line-height: 1.15; text-align: center; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 13px 30px rgba(0, 0, 0, 0.16); outline: none; }
.button.primary { color: var(--forest-deep); background: #fff9ea; }
.button.secondary { color: #fff9ea; background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.35); }
.button.dark { color: #fff9ea; background: var(--forest-deep); }
.button.outline { color: var(--forest-deep); background: var(--white); border-color: rgba(14, 44, 37, 0.28); }

.section { padding: clamp(70px, 8vw, 112px) 0; }
.section.soft { background: var(--paper-deep); border-block: 1px solid var(--line); }
.section.dark { color: #fff9ea; background: var(--forest-deep); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2 { margin-top: 10px; color: var(--forest-deep); font-size: clamp(2rem, 4.5vw, 4rem); letter-spacing: -0.025em; }
.section-heading p { margin-top: 15px; color: var(--muted); font-size: 1.08rem; }
.section.dark .section-heading h2 { color: #fff9ea; }
.section.dark .section-heading p { color: rgba(255, 249, 234, 0.74); }

.door-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.door { min-height: 286px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(29, 32, 27, 0.07); text-decoration: none; }
.door.recommended { color: #fff9ea; background: var(--forest); border-color: var(--forest); }
.door-kicker { color: var(--gold); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.door.recommended .door-kicker { color: var(--gold-light); }
.door h3 { margin-top: 11px; color: var(--blue); font-size: 1.55rem; }
.door.recommended h3 { color: #fff9ea; }
.door p { margin-top: 11px; color: var(--muted); font-size: 0.98rem; }
.door.recommended p { color: rgba(255, 249, 234, 0.74); }
.door-link { margin-top: 28px; color: var(--forest); font-weight: 800; }
.door.recommended .door-link { color: #fff9ea; }
.door:hover, .door:focus-visible { transform: translateY(-3px); border-color: rgba(182, 122, 47, 0.6); box-shadow: var(--shadow); outline: none; }

.practical-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.panel { padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.panel h3 { color: var(--blue); font-size: clamp(1.55rem, 3vw, 2.3rem); }
.panel p { margin-top: 13px; color: var(--muted); }
.panel .actions { margin-top: 22px; }
.tool-callout { margin-top: 24px; padding: 19px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: #f8f1e5; }
.tool-callout strong { display: block; color: var(--forest-deep); }
.tool-callout span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.94rem; }

.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.experience { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); }
.experience-media { aspect-ratio: 16 / 9; overflow: hidden; background: #0b211c; }
.experience-media img { width: 100%; height: 100%; object-fit: cover; }
.experience-copy { padding: 25px; }
.experience-copy h3 { font-size: 1.75rem; }
.experience-copy p { margin-top: 11px; color: rgba(255, 249, 234, 0.72); }
.experience-copy .button { margin-top: 21px; }

.current-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.current-card { padding: 23px; border-top: 3px solid var(--gold); background: var(--white); box-shadow: 0 12px 30px rgba(29, 32, 27, 0.06); }
.current-card h3 { color: var(--blue); font-size: 1.32rem; }
.current-card p { margin-top: 10px; color: var(--muted); font-size: 0.96rem; }

.grounding { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 7vw, 90px); align-items: start; }
.grounding h2 { color: var(--forest-deep); font-size: clamp(2rem, 4.5vw, 3.8rem); }
.grounding-copy p { margin-top: 16px; color: var(--muted); font-size: 1.04rem; }
.grounding-copy strong { color: var(--ink); }

.contact-band { padding: 52px 0; color: #fff9ea; background: var(--blue); }
.contact-inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.contact-inner h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.contact-inner p { max-width: 710px; margin-top: 10px; color: rgba(255, 249, 234, 0.74); }

.site-footer { padding: 34px 0; color: #d8ded9; background: #0a211b; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 35px; }
.footer-grid p { max-width: 710px; color: rgba(255, 249, 234, 0.65); font-size: 0.9rem; }
.footer-grid p + p { margin-top: 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: flex-start; gap: 8px 16px; }
.footer-links a { min-height: 42px; display: inline-flex; align-items: center; color: #fff9ea; font-weight: 700; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-light); outline: none; }

@media (max-width: 980px) {
  .door-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .current-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap, .nav-wrap { width: min(100% - 32px, var(--content)); }
  .nav-wrap { min-height: 66px; }
  .brand span { display: none; }
  .menu-toggle { display: grid; }
  .nav-links { position: fixed; inset: 66px 0 auto; max-height: calc(100svh - 66px); display: none; padding: 14px 16px 22px; background: var(--forest-deep); border-top: 1px solid rgba(255, 255, 255, 0.12); overflow-y: auto; }
  .nav-links.open { display: grid; }
  .nav-links a { width: 100%; min-height: 52px; padding: 13px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); border-radius: 0; font-size: 1rem; }
  .hero { min-height: auto; }
  .hero::before { background-position: 58% center; }
  .hero::after { background: linear-gradient(180deg, rgba(8, 27, 22, 0.76), rgba(8, 27, 22, 0.92) 58%, rgba(8, 27, 22, 0.98)); }
  .hero-content { padding: 78px 0 70px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4.2rem); }
  .hero-lede { font-size: 1.08rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .actions .button { width: 100%; }
  .door-grid, .practical-grid, .experience-grid, .grounding, .contact-inner, .footer-grid { grid-template-columns: 1fr; }
  .door { min-height: 235px; }
  .contact-inner .button { width: 100%; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
