:root {
  --ink: #1f2933;
  --deep: #173432;
  --green: #2d6a4f;
  --ochre: #b66a2b;
  --sand: #f5f0e8;
  --paper: #ffffff;
  --mist: #edf4f1;
  --muted: #657386;
  --line: #d7dfdb;
  --shadow: 0 18px 50px rgba(23, 52, 50, 0.14);
  --radius: 8px;
  --max: 1140px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--deep); }
.skip-link { position: absolute; left: 12px; top: -44px; z-index: 100; background: var(--deep); color: #fff; padding: 8px 12px; }
.skip-link:focus { top: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.wrap, .nav-wrap { width: min(100%, var(--max)); margin: 0 auto; padding-left: 20px; padding-right: 20px; min-width: 0; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.top-strip { background: var(--deep); color: #fff; font-size: 14px; }
.top-strip .wrap { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: center; padding-top: 8px; padding-bottom: 8px; }
.top-strip a { color: #fff; font-weight: 800; text-decoration: none; }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; flex-direction: column; color: var(--deep); text-decoration: none; line-height: 1.1; min-width: 0; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 23px; letter-spacing: 0; }
.brand span { color: var(--muted); font-size: 13px; margin-top: 4px; }
.nav-toggle { min-width: 44px; min-height: 44px; border: 1px solid var(--green); background: var(--green); color: #fff; border-radius: var(--radius); cursor: pointer; }
.menu-button-bars, .menu-button-bars::before, .menu-button-bars::after { display: block; width: 20px; height: 2px; background: currentColor; content: ""; margin: 0 auto; }
.menu-button-bars::before { transform: translateY(-7px); }
.menu-button-bars::after { transform: translateY(5px); }
.site-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; gap: 4px; padding: 10px 20px 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.site-nav.is-open { display: flex; }
.site-nav a { min-height: 44px; display: flex; align-items: center; padding: 8px 4px; color: var(--deep); text-decoration: none; font-weight: 800; }
.site-nav a[aria-current="page"] { color: var(--green); }
.site-nav a.button, .site-nav a.button:hover { color: #fff; padding: 10px 14px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button, .button-outline, .button-light { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); padding: 11px 16px; font-weight: 900; line-height: 1.2; text-decoration: none; }
.button { background: var(--green); color: #fff; border: 1px solid var(--green); }
.button:hover { background: var(--deep); border-color: var(--deep); color: #fff; }
.button-outline { background: transparent; color: var(--deep); border: 1px solid var(--deep); }
.button-outline:hover { background: var(--deep); color: #fff; }
.button-light { background: #fff; color: var(--deep); border: 1px solid #fff; }
.button-light:hover { background: var(--sand); color: var(--deep); }
.hero, .page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 52, 50, 0.94), rgba(45, 106, 79, 0.76)),
    url("/assets/images/nt-rural-remote-facebook.jpg") center/cover;
}
.hero-grid { display: grid; gap: 28px; padding-top: 54px; padding-bottom: 44px; }
.hero-grid > * { min-width: 0; }
.page-hero .wrap { padding-top: 48px; padding-bottom: 42px; }
.eyebrow { margin: 0 0 10px; color: var(--ochre); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2, h3 { color: var(--deep); font-family: Georgia, "Times New Roman", serif; line-height: 1.15; letter-spacing: 0; }
.hero h1, .page-hero h1 { color: #fff; }
h1 { margin: 0; font-size: clamp(38px, 8vw, 66px); }
h2 { margin: 0 0 18px; font-size: clamp(28px, 5vw, 42px); }
h3 { margin: 0 0 10px; font-size: 23px; }
p { margin: 0 0 16px; }
.lead { max-width: 760px; color: inherit; font-size: 18px; overflow-wrap: anywhere; }
.hero .lead, .page-hero .lead { color: rgba(255, 255, 255, 0.9); }
.hero .button-outline { color: #fff; border-color: rgba(255, 255, 255, 0.42); background: rgba(255, 255, 255, 0.08); }
.hero .button-outline:hover { color: var(--deep); background: #fff; border-color: #fff; }
.button-outline.light-outline { color: #fff; border-color: rgba(255, 255, 255, 0.58); background: rgba(255, 255, 255, 0.08); }
.button-outline.light-outline:hover { color: var(--deep); background: #fff; border-color: #fff; }
.hero-card { display: grid; gap: 14px; padding: 18px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.26); border-radius: var(--radius); overflow: hidden; }
.hero-card strong { color: #fff; font-size: 18px; }
.section { padding: 52px 0; }
.section.alt { background: var(--mist); }
.section.visual-section { padding-top: 42px; padding-bottom: 42px; }
.section-head { max-width: 780px; margin-bottom: 24px; }
.grid, .two-col, .contact-grid { display: grid; gap: 20px; }
.grid > *, .two-col > *, .contact-grid > * { min-width: 0; }
.align-centre { align-items: center; }
.card, .contact-card, .notice { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(23, 52, 50, 0.06); }
.card.feature { border-top: 4px solid var(--ochre); }
.card h2 { font-size: 30px; }
.service-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-row h2 { margin: 4px 0 0; font-size: clamp(25px, 4vw, 34px); }
.service-row p { margin-bottom: 0; color: var(--ink); }
.service-row a { font-weight: 900; align-self: start; }
.service-number { color: var(--ochre); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; }
.process-steps { display: grid; gap: 12px; margin-top: 22px; }
.process-steps article { padding: 18px; border-left: 4px solid var(--ochre); background: var(--sand); border-radius: var(--radius); }
.process-steps strong { display: block; margin-bottom: 6px; color: var(--deep); font-size: 18px; }
.process-steps p { margin: 0; }
.about-feature { align-items: start; }
.about-aside {
  display: grid;
  gap: 18px;
  justify-self: end;
  width: min(100%, 440px);
  min-width: 0;
}
.about-image-pair {
  display: grid;
  gap: 14px;
}
.profile-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.profile-image img {
  width: 100%;
  height: auto;
}
.visual-copy { max-width: 540px; }
.image-panel { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
.image-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-image img { aspect-ratio: 5 / 4; }
.image-panel-wide img { aspect-ratio: 16 / 11; }
.image-panel figcaption { padding: 10px 12px; color: var(--muted); font-size: 13px; }
.check-list, .plain-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding-left: 24px; margin-bottom: 10px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px; background: var(--ochre); border-radius: 50%; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 2px; background: currentColor; }
.hero-card .plain-list li { color: rgba(255, 255, 255, 0.9); overflow-wrap: anywhere; }
.callout { padding: 24px; color: #fff; background: var(--deep); border-radius: var(--radius); }
.callout h2, .callout h3 { color: #fff; }
.callout p { color: rgba(255, 255, 255, 0.88); }
address { font-style: normal; }
.site-footer { color: #fff; background: var(--deep); }
.footer-grid { display: grid; gap: 22px; padding-top: 34px; padding-bottom: 28px; }
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer a { color: #fff; }
.site-footer p { color: rgba(255, 255, 255, 0.84); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.16); padding: 14px 20px; text-align: center; color: rgba(255, 255, 255, 0.72); font-size: 13px; }
@media (min-width: 760px) {
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr); align-items: end; padding-top: 78px; padding-bottom: 72px; }
  .two-col { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr); gap: 36px; }
  .visual-section .two-col { grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr); }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-row { grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr) minmax(150px, 0.38fr); gap: 28px; align-items: start; }
  .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: flex; flex-direction: row; align-items: center; gap: 16px; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .site-nav a { padding: 8px 0; }
}
@media (max-width: 979px) {
  .site-header {
    position: relative;
    top: auto;
    backdrop-filter: none;
  }
  .top-strip { font-size: 13px; line-height: 1.35; }
  .top-strip .wrap {
    justify-content: flex-start;
    gap: 3px 12px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .nav-wrap {
    min-height: auto;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brand { flex: 1 1 0; max-width: calc(100% - 54px); }
  .brand strong { font-size: 19px; line-height: 1.12; }
  .brand span { font-size: 12px; margin-top: 3px; }
  .site-nav {
    position: static;
    flex-basis: 100%;
    padding: 8px 0 2px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    box-shadow: none;
  }
  .site-nav a {
    min-height: 40px;
    padding: 6px 0;
  }
  .site-nav a.button,
  .site-nav a.button:hover {
    padding: 9px 12px;
  }
  .hero-grid { padding-top: 36px; padding-bottom: 38px; }
  .page-hero .wrap { padding-top: 34px; padding-bottom: 36px; }
  .about-aside {
    justify-self: stretch;
    width: 100%;
  }
  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(31px, 9vw, 42px);
  }
  .lead { font-size: 17px; }
}
@media (max-width: 520px) {
  .wrap, .nav-wrap { padding-left: 16px; padding-right: 16px; }
  .top-strip { font-size: 12px; }
  .top-strip .wrap {
    display: grid;
    gap: 1px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .top-strip span { min-width: 0; }
  .brand strong { font-size: 16px; }
  .nav-toggle { min-width: 40px; min-height: 40px; }
  h1 { font-size: clamp(27px, 7.4vw, 30px); }
  h2 { font-size: clamp(25px, 7vw, 32px); }
  .section { padding: 42px 0; }
  .section.visual-section { padding-top: 34px; padding-bottom: 34px; }
  .button-row > * { width: 100%; }
}
