@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --forest: #1f3d2e;
  --forest-dark: #10291d;
  --sage: #6b7d6b;
  --ivory: #f7f3ea;
  --burgundy: #781e2d;
  --charcoal: #2b2b2b;
  --paper: #fffdf8;
  --muted: #5f625d;
  --line: rgba(31, 61, 46, 0.18);
  --shadow: 0 22px 55px rgba(16, 41, 29, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--forest); text-underline-offset: 0.18em; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--ivory);
  color: var(--forest);
  border: 1px solid var(--forest);
}

.topbar {
  color: var(--ivory);
  background: var(--forest-dark);
  border-bottom: 3px solid var(--burgundy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar .wrap,
.header .wrap,
.section,
.footer .wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.48rem 0;
}
.topbar a { color: var(--ivory); text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 234, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(16, 41, 29, 0.06);
  backdrop-filter: blur(12px);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 92px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--forest);
  text-decoration: none;
}
.brand-mark {
  display: block;
  width: 235px;
  height: 78px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: url("../img/nota-problem-brand-logo-ivory.png") center / contain no-repeat;
}
.brand > span:last-child { display: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.nav a {
  position: relative;
  color: var(--forest-dark);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.nav a.button { color: #fff; }
.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 2px;
  background: var(--burgundy);
  transition: right 180ms ease;
}
.nav a:not(.button):hover::after { right: 0; }

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  border: 1px solid var(--burgundy);
  border-radius: 0;
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  font: 900 0.76rem/1 var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(120, 30, 45, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover,
button:hover { transform: translateY(-2px); background: #641522; }
.button.secondary {
  color: var(--forest);
  background: rgba(247, 243, 234, 0.84);
  border-color: var(--forest);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,243,234,0.99) 0%, rgba(247,243,234,0.97) 34%, rgba(247,243,234,0.72) 52%, rgba(31,61,46,0.18) 76%, rgba(16,41,29,0.08) 100%),
    url("../img/pacific-northwest-hero.png") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--forest) 0 74%, var(--burgundy) 74% 100%);
}
.hero .section { position: relative; padding-block: 7rem 6.5rem; }
.hero-content { max-width: 700px; }

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 0.65rem 0.22rem 0;
  background: currentColor;
}

h1, h2, h3 {
  margin: 0;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}
h1 { max-width: 11ch; font-size: clamp(3.2rem, 7vw, 6rem); letter-spacing: -0.035em; }
h2 { max-width: 19ch; font-size: clamp(2.35rem, 4.5vw, 4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.72rem; line-height: 1.1; }
.lead { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.hero .lead { max-width: 620px; color: #454b45; }
.brand-signoff {
  margin: 0.8rem 0 0;
  color: var(--forest);
  font: italic 600 1.42rem/1.2 var(--serif);
}
.hero-actions,
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }

.trust-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: var(--ivory);
}
.trust-strip div {
  position: relative;
  padding: 1.25rem 1.4rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(247,243,234,0.2);
}
.trust-strip div::before { content: "◆"; margin-right: 0.55rem; color: var(--burgundy); }

.section { padding-block: 5.5rem; }
.section > .lead { margin-bottom: 0; }
.section.soft {
  position: relative;
  width: 100%;
  max-width: none;
  background: var(--paper) url("../img/mountain-line.svg") center bottom / 100% auto no-repeat;
  border-block: 1px solid var(--line);
}
.section.soft > .inner { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.2rem;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  border-radius: 0;
  padding: 1.65rem;
  box-shadow: 0 12px 34px rgba(16, 41, 29, 0.07);
}
.card::after {
  content: "";
  position: absolute;
  top: -7px;
  right: 24px;
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  transform: rotate(45deg);
  border: 2px solid var(--ivory);
}
.card p,
.checklist li,
.service-list li { color: var(--muted); }
.card a { font-weight: 900; }
.service-list,
.checklist { padding-left: 1.25rem; }
.checklist li::marker,
.service-list li::marker { color: var(--burgundy); }

.callout {
  margin-top: 1.8rem;
  padding: 1.5rem;
  border-left: 4px solid var(--burgundy);
  background: rgba(255,253,248,0.9);
}
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper) url("../img/mountain-line.svg") center bottom / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(var(--forest) 0 70%, var(--burgundy) 70%);
}
.service-hero .section { position: relative; padding-block: 4.7rem; }
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: start; }

.contact-panel {
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  padding: 1.6rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
  filter: saturate(0.82) contrast(1.03);
}
label { display: block; margin-top: 1rem; color: var(--forest); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  margin-top: 0.35rem;
  padding: 0.76rem;
  border: 1px solid rgba(31,61,46,0.32);
  border-radius: 0;
  background: #fff;
  color: var(--charcoal);
  font: inherit;
}
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(120,30,45,0.26); border-color: var(--burgundy); }
textarea { min-height: 140px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.note { color: var(--muted); font-size: 0.92rem; }

.footer {
  position: relative;
  overflow: hidden;
  color: rgba(247,243,234,0.86);
  background: var(--forest-dark);
  padding: 4rem 0 3rem;
  border-top: 6px solid var(--burgundy);
}
.footer::after {
  content: "";
  position: absolute;
  inset: 15% 0 0;
  background: url("../img/mountain-line.svg") center bottom / cover no-repeat;
  filter: brightness(2.2);
  opacity: 0.24;
  pointer-events: none;
}
.footer .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr 0.9fr; gap: 2.5rem; }
.footer strong { color: #fff; font-family: var(--serif); font-size: 1.35rem; }
.footer a { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0.65rem 0 0; }
.footer li { margin: 0.38rem 0; }

@media (max-width: 1080px) {
  .header .wrap { display: block; padding-block: 0.65rem; }
  .brand-mark { width: 190px; height: 68px; }
  .nav { justify-content: flex-start; gap: 0.8rem; padding: 0.7rem 0 0.25rem; border-top: 1px solid var(--line); }
  .nav a { font-size: 0.7rem; }
}

@media (max-width: 760px) {
  .topbar .wrap,
  .header .wrap,
  .split,
  .footer .wrap { display: block; }
  .topbar .wrap { text-align: center; }
  .topbar a { display: none; }
  .header { position: static; }
  .brand-mark { width: 210px; }
  .nav { justify-content: flex-start; margin: 0.4rem 0 0; padding: 0.65rem 0 0; border-top: 1px solid var(--line); }
  .hero { min-height: 600px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(247,243,234,0.98) 0%, rgba(247,243,234,0.94) 58%, rgba(31,61,46,0.24) 100%),
      url("../img/pacific-northwest-hero.png") 68% center / cover no-repeat;
  }
  .hero .section { padding-block: 5.2rem 6.7rem; }
  .grid,
  .grid.two,
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(247,243,234,0.16); }
  .footer .wrap > div + div { margin-top: 1.75rem; }
}

@media (max-width: 520px) {
  .topbar .wrap,
  .header .wrap,
  .section,
  .section.soft > .inner,
  .footer .wrap { width: min(100% - 28px, 1180px); }
  .nav a:not(.button) { flex: 1 1 42%; }
  .nav .button { width: 100%; margin-top: 0.25rem; }
  h1 { font-size: clamp(2.85rem, 16vw, 4.25rem); }
  .section { padding-block: 4rem; }
  .hero-actions .button,
  .actions .button { width: 100%; }
}
