:root {
  --navy: #0b2341;
  --navy-deep: #07182d;
  --navy-soft: #17395f;
  --amber: #e5a42a;
  --amber-light: #f4ca73;
  --white: #ffffff;
  --mist: #f3f5f7;
  --line: #d6dde5;
  --ink: #182638;
  --muted: #5c6875;
  --success: #23653d;
  --error: #a83232;
  --heading: Poppins, "IBM Plex Sans", Arial, sans-serif;
  --body: "Open Sans", Inter, Arial, sans-serif;
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--heading);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 5.3rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 750;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow-container {
  max-width: 830px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 13px;
  color: #a96800;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--amber);
  border-radius: 5px;
  color: var(--navy-deep);
  background: var(--amber);
  font-family: var(--heading);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--amber-light);
  background: var(--amber-light);
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber-light);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.84rem;
}

.button-ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.button-full {
  width: 100%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 35, 65, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: flex-end;
  gap: 3px;
  padding: 5px;
  border: 2px solid var(--navy);
  background: var(--mist);
}

.brand-mark span {
  display: block;
  width: 7px;
  background: var(--amber);
}

.brand-mark span:nth-child(1) {
  height: 9px;
}

.brand-mark span:nth-child(2) {
  height: 16px;
}

.brand-mark span:nth-child(3) {
  height: 23px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--heading);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a:not(.button) {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: #9c6200;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 67%, var(--mist) 67%, var(--mist) 100%);
}

.hero::before {
  position: absolute;
  top: 44px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(229, 164, 42, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: 730px;
  padding-bottom: 72px;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 22px;
}

.hero-note {
  margin-bottom: 0;
  color: var(--navy-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-note span {
  color: #9c6200;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--navy);
}

.visual-label {
  display: inline-block;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--amber);
  font-family: var(--heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stair-shape {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: 20px;
}

.step,
.cabinet {
  position: absolute;
  bottom: 0;
  border: 2px solid var(--white);
}

.step {
  width: 20%;
  border-bottom: 0;
  background: var(--navy-soft);
}

.step-one { left: 0; height: 20%; }
.step-two { left: 20%; height: 40%; }
.step-three { left: 40%; height: 60%; }
.step-four { left: 60%; height: 80%; }
.step-five { left: 80%; height: 100%; }

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

.cabinet i {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.cabinet-one {
  left: 2%;
  width: 17%;
  height: 15%;
}

.cabinet-two {
  left: 22%;
  width: 17%;
  height: 35%;
}

.cabinet-three {
  left: 42%;
  width: 17%;
  height: 55%;
}

.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.visual-caption strong {
  font-family: var(--heading);
  font-size: 0.9rem;
}

.visual-caption span {
  color: #bdcad8;
  font-size: 0.74rem;
}

.stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--navy-deep);
}

.stats-bar > div {
  min-height: 118px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-bar > div:last-child {
  border-right: 0;
}

.stats-bar strong,
.stats-bar span {
  display: block;
}

.stats-bar strong {
  color: var(--amber);
  font-family: var(--heading);
  font-size: 2.15rem;
  line-height: 1;
}

.stats-bar span {
  margin-top: 9px;
  color: #cbd5df;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--navy);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
}

.service-card svg {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card-accent {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.service-card-accent h3 {
  color: var(--white);
}

.service-card-accent p {
  color: #c7d2de;
}

.work-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.work-section::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(229, 164, 42, 0.5);
  content: "";
  transform: rotate(45deg);
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: var(--white);
}

.section-heading-light .eyebrow {
  color: var(--amber-light);
}

.section-heading-light > p {
  color: #bdcad8;
}

.result-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.result-card {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
}

.result-card-amber {
  border-color: rgba(229, 164, 42, 0.7);
  background: var(--amber);
  color: var(--navy-deep);
}

.result-number {
  display: block;
  margin-bottom: 28px;
  color: var(--amber);
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 800;
}

.result-card-amber .result-number {
  color: var(--navy-deep);
}

.result-suburb {
  margin-bottom: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-card h3 {
  color: var(--white);
  font-size: 1.34rem;
}

.result-card-amber h3 {
  color: var(--navy-deep);
}

.result-card > p:last-child {
  margin-bottom: 0;
  color: #c4d0dc;
  font-size: 0.91rem;
}

.result-card-amber > p:last-child {
  color: #23364b;
}

.reviews {
  background: var(--mist);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.stars {
  margin-bottom: 25px;
  color: #a96800;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.review-card blockquote {
  flex: 1;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.65;
}

.review-card figcaption {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-card figcaption strong,
.review-card figcaption span {
  display: block;
}

.review-card figcaption strong {
  color: var(--navy);
  font-family: var(--heading);
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-section {
  padding: 105px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 0.7fr);
  gap: 100px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: #c4d0dc;
  font-size: 1.05rem;
}

.contact-copy .eyebrow {
  color: var(--amber-light);
}

.contact-details {
  display: grid;
  gap: 4px;
  margin-top: 42px;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
}

.contact-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--navy-deep);
  background: var(--amber);
  font-family: var(--heading);
  font-weight: 800;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: #9eafc0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--heading);
  font-size: 0.95rem;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
}

.form-heading {
  margin-bottom: 27px;
}

.form-heading h3 {
  margin-bottom: 6px;
  font-size: 1.6rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.form-row {
  margin-bottom: 17px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 0.79rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #b9c3ce;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
}

.form-row input {
  height: 47px;
  padding: 9px 12px;
}

.form-row textarea {
  min-height: 105px;
  padding: 10px 12px;
  resize: vertical;
}

.form-row input.invalid,
.form-row textarea.invalid {
  border-color: var(--error);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 0.77rem;
  cursor: pointer;
}

.consent-row input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
  accent-color: var(--navy);
}

.consent-row a {
  color: var(--navy);
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.error {
  color: var(--error);
}

.form-status.success {
  color: var(--success);
}

.site-footer {
  padding: 68px 0 22px;
  color: #c2ceda;
  background: #051221;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 65px;
  padding-bottom: 52px;
}

.brand-footer {
  margin-bottom: 18px;
  color: var(--white);
}

.brand-footer .brand-mark {
  border-color: var(--white);
  background: transparent;
}

.brand-footer .brand-copy small {
  color: #98aabc;
}

.footer-grid > div:first-child p {
  max-width: 365px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) span {
  display: block;
  margin: 9px 0;
  color: #c2ceda;
  font-size: 0.83rem;
  text-decoration: none;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--white);
}

.privacy-main {
  background: var(--white);
}

.privacy-hero {
  padding: 92px 0 72px;
  color: var(--white);
  background: var(--navy);
}

.privacy-hero h1 {
  margin-bottom: 17px;
  color: var(--white);
}

.privacy-hero > .container > p:not(.eyebrow):not(.policy-date) {
  color: #c9d4de;
  font-size: 1.15rem;
}

.policy-date {
  display: inline-block;
  margin: 18px 0 0;
  padding: 7px 11px;
  color: var(--navy-deep);
  background: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
}

.policy-content h2 {
  margin-top: 46px;
  font-size: 1.55rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: #465361;
}

.policy-content a:not(.button) {
  color: #15518a;
  font-weight: 700;
}

.policy-back {
  margin-top: 32px;
}

.privacy-footer {
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .button {
    margin-top: 16px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero-visual {
    min-height: 405px;
    margin-bottom: 30px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar > div:nth-child(2) {
    border-right: 0;
  }

  .stats-bar > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid,
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    line-height: 1.8;
  }

  .hero-visual {
    min-height: 338px;
    padding: 18px;
  }

  .stair-shape {
    height: 210px;
  }

  .visual-caption span {
    display: none;
  }

  .stats-bar strong {
    font-size: 1.72rem;
  }

  .stats-bar > div {
    min-height: 110px;
    padding: 22px 17px;
  }

  .section,
  .contact-section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .services-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .result-card {
    min-height: 0;
  }

  .service-card {
    padding: 27px;
  }

  .result-card {
    padding: 27px;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-hero {
    padding: 65px 0 55px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}