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

:root {
  --forest: #1e3d2f;
  --forest-mid: #2a5940;
  --leaf: #3d8b5e;
  --amber: #c97d2a;
  --amber-light: #e09040;
  --cream: #faf7f2;
  --parchment: #f0ebe1;
  --ink: #1c1c1c;
  --slate: #4a5568;
  --rule: #d8cfc2;
  --white: #ffffff;
  --r: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}

/* ── Layout ── */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Top bar ── */
.topbar {
  background: var(--forest);
  padding: 0;
  border-bottom: 2px solid var(--amber);
}
.topbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 18px 0;
}
.logo-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-accent { color: var(--amber-light); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  display: block;
  padding: 20px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.site-nav .nav-action {
  background: var(--amber);
  color: var(--white);
  margin-left: 8px;
  border-radius: var(--r);
  font-weight: 600;
  padding: 10px 18px;
  align-self: center;
}
.site-nav .nav-action:hover { background: var(--amber-light); border-bottom-color: transparent; }

/* ── Banner (hero) ── */
.banner {
  background: var(--forest);
  background-image: linear-gradient(160deg, var(--forest) 55%, var(--forest-mid) 100%);
  padding: 72px 0 64px;
  color: var(--white);
}
.banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}
.banner h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
}
.banner-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  max-width: 540px;
}
.banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn-go {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--r);
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.15s;
}
.btn-go:hover { background: var(--amber-light); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.9);
  padding: 12px 24px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.85); color: var(--white); }
.btn-solid {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--r);
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.15s;
}
.btn-solid:hover { background: var(--forest-mid); }

/* Banner aside card */
.banner-aside {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 28px 24px;
}
.banner-aside h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-light);
  margin-bottom: 16px;
  font-weight: 700;
}
.quick-facts { list-style: none; }
.quick-facts li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 10px;
}
.quick-facts li:last-child { border-bottom: none; }
.qf-label { color: rgba(255,255,255,0.5); min-width: 100px; }

/* ── Sections ── */
.section { padding: 60px 0; }
.section-alt { background: var(--parchment); }
.section-dark { background: var(--forest); color: var(--white); }

.section-heading {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 10px;
}
.section-dark .section-heading { color: var(--white); }
.section-sub {
  color: var(--slate);
  max-width: 620px;
  margin-bottom: 36px;
  font-size: 1rem;
}
.section-dark .section-sub { color: rgba(255,255,255,0.78); }

/* ── Pillars (why register) ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pillar {
  background: var(--white);
  border-radius: 6px;
  padding: 26px 22px;
  border-top: 3px solid var(--leaf);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 16px;
}
.pillar h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 7px;
}
.pillar p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ── Entity types ── */
.entity-rows { display: flex; flex-direction: column; gap: 16px; }
.entity-row {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--rule);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
}
.entity-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
}
.entity-label span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  margin-top: 3px;
}
.entity-desc { font-size: 14.5px; color: var(--slate); }
.entity-link {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--leaf);
  text-decoration: none;
}
.entity-link:hover { color: var(--forest); }

/* ── Numbered process ── */
.numbered-steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.num-step {
  display: flex;
  gap: 0;
  position: relative;
}
.num-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: -1px;
  width: 2px;
  background: var(--rule);
}
.num-step:last-child::before { display: none; }
.step-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-right: 22px;
  margin-top: 2px;
  z-index: 1;
  counter-increment: step;
}
.step-body {
  padding: 0 0 32px;
  flex: 1;
}
.step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 5px;
}
.step-body p { font-size: 14.5px; color: var(--slate); }

/* ── Posts grid ── */
.posts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.post-tile {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.post-tile a { display: block; padding: 22px 20px; text-decoration: none; color: inherit; }
.post-tile-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 8px;
}
.post-tile h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.4;
}
.post-tile p { font-size: 13.5px; color: var(--slate); line-height: 1.6; }
.post-tile-more {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--leaf);
}

/* ── CTA band ── */
.cta-band {
  background: var(--amber);
  padding: 52px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Page content (inner pages) ── */
.page-main { padding: 52px 0 64px; }
.page-cols {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
}
.content-area h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.25;
}
.page-intro {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--rule);
}
.content-area h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--forest);
  margin: 36px 0 12px;
  padding-top: 8px;
}
.content-area h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin: 24px 0 8px;
}
.content-area p { margin-bottom: 16px; font-size: 15.5px; }
.content-area ul, .content-area ol {
  margin: 0 0 18px 22px;
  font-size: 15.5px;
}
.content-area li { margin-bottom: 6px; }
.content-area a { color: var(--leaf); text-decoration: underline; text-underline-offset: 2px; }
.content-area strong { color: var(--forest); font-weight: 700; }

.callout {
  background: #e8f4ed;
  border-left: 3px solid var(--leaf);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--ink);
}
.callout p { margin: 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0 28px;
}
.data-table th {
  background: var(--forest);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.data-table tr:nth-child(even) td { background: var(--parchment); }

/* Sidebar */
.sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 22px 20px;
  margin-bottom: 16px;
}
.sidebar-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--forest);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { margin-bottom: 8px; }
.sidebar-card ul a {
  font-size: 14px;
  color: var(--leaf);
  text-decoration: none;
  font-weight: 500;
}
.sidebar-card ul a:hover { color: var(--forest); }
.sidebar-cta {
  background: var(--forest);
  color: var(--white);
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
}
.sidebar-cta h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; border: none; padding: 0; text-transform: none; letter-spacing: 0; }
.sidebar-cta p { font-size: 13.5px; color: rgba(255,255,255,0.78); margin-bottom: 16px; }

/* Blog list */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-entry {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.blog-entry:first-child { padding-top: 0; }
.blog-entry-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--rule);
  min-width: 36px;
  line-height: 1;
  padding-top: 4px;
}
.blog-entry h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
  line-height: 1.4;
}
.blog-entry p { font-size: 14px; color: var(--slate); }
.blog-entry-date { font-size: 12px; color: var(--amber); font-weight: 600; margin-bottom: 6px; }

/* Contact form */
.enquiry-form { max-width: 540px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--leaf);
}
.field textarea { height: 120px; resize: vertical; }
.submit-btn {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--r);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.submit-btn:hover { background: var(--forest-mid); }

/* Fees table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0 28px;
}
.fee-table th {
  background: var(--forest);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.fee-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
}
.fee-table tr:nth-child(even) td { background: var(--parchment); }

/* ── Footer ── */
.foot {
  background: #111c16;
  color: rgba(255,255,255,0.80);
  padding: 48px 0 0;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.foot-brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}
.foot-about { line-height: 1.65; }
.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 9px; }
.foot-col a { color: rgba(255,255,255,0.78); text-decoration: none; }
.foot-col a:hover { color: var(--white); }
.foot-base {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 800px) {
  .banner-inner { grid-template-columns: 1fr; }
  .banner-aside { display: none; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .entity-row { grid-template-columns: 1fr; gap: 8px; }
  .posts-row { grid-template-columns: 1fr; }
  .page-cols { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .foot-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .banner h1 { font-size: 1.75rem; }
}
