/* NTWoodshops Palette */
:root{
  --forest: #1F3A2A;      /* Forest Canopy */
  --pine:   #3E5F3B;      /* Pine Needle */
  --walnut: #7A4E2E;      /* Walnut Plank */
  --maple:  #D1A06A;      /* Maple Finish */
  --brass:  #C9A24D;      /* Brushed Brass */
  --paper:  #F2E6C9;      /* Workshop Parchment */
  --steel:  #2A2A2A;      /* Tool Steel */

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--forest);
  color: var(--paper);
  line-height: 1.5;
}

a{ color: var(--paper); text-decoration: none; }
a:hover{ text-decoration: underline; }

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{ left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:var(--brass); color:var(--steel); border-radius:10px; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(31,58,42,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(242,230,201,.12);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__mark{
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--brass), #b58f3c);
  color: var(--steel);
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  letter-spacing: .5px;
}
.brand__name{ font-weight: 800; letter-spacing: .3px; }
.brand__tag{ font-size: 12px; opacity: .9; }

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
}
.nav a{
  opacity:.92;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  opacity: 1;
  background: rgba(201,162,77,.12);
  text-decoration:none;
}

.nav__toggle{
  display:none;
  background: rgba(201,162,77,.14);
  border: 1px solid rgba(201,162,77,.35);
  color: var(--paper);
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav{
  display:none;
  padding: 10px 16px 16px;
  border-bottom: 1px solid rgba(242,230,201,.12);
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  border-top: 1px solid rgba(242,230,201,.10);
}

.hero{
  position: relative;
  padding: 72px 0 54px;
}

/* HERO BACKGROUND:
   - Drop a photo into assets/hero.jpg for best results.
   - If the image isn't present, the gradients still look good.
*/
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(31,58,42,.78), rgba(31,58,42,.95)),
    radial-gradient(800px 500px at 20% 20%, rgba(201,162,77,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(209,160,106,.16), transparent 60%),
    url("assets/hero.jpg") center/cover no-repeat;
}

.hero__inner{ position: relative; }
.hero__card{
  background: rgba(62,95,59,.22);
  border: 1px solid rgba(242,230,201,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  max-width: 760px;
}

.logoRow{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 10px;
}
.logoImg{ width: 74px; height:auto; display:block; }
.logoMark{
  width: 72px; height:72px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--brass), #b58f3c);
  color: var(--steel);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 1px;
}

.hero__name{ font-weight: 900; font-size: 20px; letter-spacing: .3px; }
.hero__subname{ font-size: 13px; opacity:.92; }

h1{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 10px 0 10px;
}
.lead{ font-size: 16px; opacity:.98; margin: 0 0 16px; }
.fineprint{ font-size: 13px; opacity:.85; margin: 14px 0 0; }

.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 0;
}

.section{
  padding: 54px 0;
}
.section--panel{
  background: linear-gradient(180deg, rgba(62,95,59,.25), rgba(62,95,59,.18));
  border-top: 1px solid rgba(242,230,201,.10);
  border-bottom: 1px solid rgba(242,230,201,.10);
}
.section__header{
  margin-bottom: 18px;
}
.section__subtitle{
  margin-top: 6px;
  opacity:.92;
  max-width: 70ch;
}

.grid{
  display:grid;
  gap: 18px;
}
.grid--2{ grid-template-columns: 1fr 1fr; }
.grid--3{ grid-template-columns: 1fr 1fr 1fr; }

.card{
  background: rgba(122,78,46,.14);
  border: 1px solid rgba(242,230,201,.14);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.section--panel .card{
  background: rgba(122,78,46,.12);
}

h2{ margin:0; font-size: clamp(22px, 2.6vw, 30px); }
h3{ margin:0 0 10px; font-size: 18px; }
h4{ margin:0 0 10px; font-size: 16px; }

.pillRow{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px; }
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.30);
}

.note{
  margin-top: 12px;
  padding: 12px 12px;
  border-left: 4px solid rgba(201,162,77,.7);
  background: rgba(201,162,77,.10);
  border-radius: 12px;
}

.check{
  display:flex;
  align-items:f
