:root {
  --ink: #172b2d;
  --ink-soft: #3f5356;
  --eucalypt: #6f8b7c;
  --sage: #dce8df;
  --mist: #f5f8f6;
  --sea: #e6eef0;
  --lavender: #e8e4f1;
  --lavender-deep: #827795;
  --stone: #f1eee8;
  --sand: #d8cdbf;
  --line: rgba(23, 43, 45, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(23, 43, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: Avenir Next, Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: rgba(245, 248, 246, 0.84);
  box-shadow: 0 18px 48px rgba(23, 43, 45, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(23, 43, 45, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(220, 232, 223, 0.95), rgba(232, 228, 241, 0.95)),
    var(--sage);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(111, 139, 124, 0.12);
  color: var(--ink);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 31, 31, 0.9) 0%, rgba(15, 31, 31, 0.64) 33%, rgba(15, 31, 31, 0.16) 68%),
    linear-gradient(180deg, rgba(15, 31, 31, 0.18), rgba(15, 31, 31, 0.26));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 170px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--eucalypt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d6ded9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 70px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 18px;
}

.button.primary {
  background: var(--sage);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--lavender);
  outline: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  display: grid;
  width: min(480px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(245, 248, 246, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  min-height: 76px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(23, 43, 45, 0.12);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 18px;
}

.hero-panel span:last-child {
  border-right: 0;
}

.section-pad {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(280px, 610px);
  gap: 70px;
  align-items: end;
  background: linear-gradient(135deg, var(--mist), var(--sea));
}

.intro p:last-child,
.founder-copy p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  padding: 28px;
}

.service-card.feature {
  background: linear-gradient(160deg, #eef5f1, #e8e4f1);
}

.service-card.advisory {
  background: #f7f3f8;
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(111, 139, 124, 0.16);
  color: var(--ink);
  font-weight: 800;
}

.service-card p {
  color: var(--ink-soft);
  min-height: 120px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eucalypt);
  content: "";
}

.approach {
  background: linear-gradient(180deg, var(--sea), var(--mist));
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
}

.process article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.process article:last-child {
  border-right: 0;
}

.process span {
  display: block;
  margin-bottom: 46px;
  color: var(--lavender-deep);
  font-weight: 800;
}

.process p {
  color: var(--ink-soft);
}

.founders {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(280px, 430px);
  gap: 90px;
  align-items: center;
  background: var(--white);
}

.founder-cards {
  display: grid;
  gap: 14px;
}

.founder-cards article {
  display: grid;
  grid-template-columns: 76px 1fr;
  column-gap: 18px;
  align-items: center;
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f9f7, #efedf7);
  padding: 22px;
}

.founder-cards span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.founder-cards h3,
.founder-cards p {
  margin-bottom: 0;
}

.founder-cards p {
  color: var(--ink-soft);
}

.north-shore {
  background: #eef3f1;
}

.suburb-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suburb-strip span {
  border: 1px solid rgba(23, 43, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-weight: 700;
  padding: 12px 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(280px, 560px);
  gap: 90px;
  background: linear-gradient(135deg, #f9faf8, #ebe7f3);
}

.note {
  margin-top: 30px;
  border-left: 3px solid var(--eucalypt);
  padding-left: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(23, 43, 45, 0.08);
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 43, 45, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lavender-deep);
  outline: 3px solid rgba(130, 119, 149, 0.18);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 36px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process article:nth-child(2) {
    border-right: 0;
  }

  .process article:nth-child(1),
  .process article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .founders,
  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 6px;
    background: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(245, 248, 246, 0.96);
    padding: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(15, 31, 31, 0.85) 0%, rgba(15, 31, 31, 0.52) 58%, rgba(15, 31, 31, 0.3) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 640px);
    padding: 132px 0 160px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel span {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 43, 45, 0.12);
    padding: 14px 16px;
  }

  .hero-panel span:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card p {
    min-height: 0;
  }

  .process article,
  .process article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .founder-cards article {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
