:root {
  --ink: #17211d;
  --muted: #5f6c66;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #0e3f33;
  --green-2: #1f6b55;
  --gold: #c69a43;
  --mist: #e9eee9;
  --line: #d6ddd6;
  --charcoal: #202520;
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--green);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.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: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(214, 221, 214, 0.86);
  backdrop-filter: blur(14px);
}

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

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

.brand-logo {
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid rgba(14, 63, 51, 0.16);
  border-radius: 6px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(23, 33, 29, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.site-nav a:not(.nav-call) {
  padding: 8px 0;
}

.site-nav a:not(.nav-call):hover {
  color: var(--green-2);
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 7px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.nav-call {
  padding: 0 14px;
  background: var(--green);
  color: var(--white);
}

.nav-call svg,
.button svg,
.contact-methods svg,
.service-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--green);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: min(720px, 76svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-office.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 24, 19, 0.92) 0%, rgba(5, 24, 19, 0.72) 38%, rgba(5, 24, 19, 0.18) 73%),
    linear-gradient(0deg, rgba(5, 24, 19, 0.3), rgba(5, 24, 19, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 108px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #e0bc69;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-2);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 8vw, 6.8rem);
  font-weight: 850;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  font-weight: 820;
}

h3 {
  font-size: 1.12rem;
  font-weight: 780;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  min-width: 0;
  padding: 0 18px;
}

.button:hover,
.nav-call:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  background: var(--gold);
  color: #1c1609;
}

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

.hero-facts {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  background: rgba(7, 30, 24, 0.56);
}

.hero-facts dt {
  margin: 0 0 5px;
  color: #e0bc69;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

section {
  scroll-margin-top: 88px;
}

.section-band {
  background: var(--mist);
}

.intro,
.services,
.clients,
.approach,
.contact {
  padding: clamp(68px, 9vw, 120px) 0;
}

.intro-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.intro-grid p:last-child,
.contact-copy > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.06);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--green-2);
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.client-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(23, 33, 29, 0.18);
}

.client-list div {
  display: grid;
  grid-template-columns: 58px 0.7fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.18);
}

.client-list span {
  color: var(--gold);
  font-weight: 850;
}

.client-list strong {
  font-size: 1.08rem;
}

.client-list p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  counter-reset: approach;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline div {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 52px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 820;
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-methods a,
.contact-methods p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}

.contact-methods a {
  font-weight: 760;
}

.contact-methods svg {
  width: 22px;
  height: 22px;
  color: var(--green-2);
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d2ca;
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition:
    border 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(31, 107, 85, 0.12);
}

.form-button {
  width: 100%;
  min-height: 50px;
  border: 0;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 28px 0;
  background: var(--green);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 76px 20px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 10px;
  }

  .nav-call {
    margin-top: 8px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 24, 19, 0.92), rgba(5, 24, 19, 0.62)),
      linear-gradient(0deg, rgba(5, 24, 19, 0.34), rgba(5, 24, 19, 0.18));
  }

  .intro-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-copy {
    position: static;
  }
}

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

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

  .brand-logo {
    width: 44px;
    height: 44px;
    padding: 3px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .site-nav {
    inset: 68px 14px auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-content {
    padding: 54px 0 46px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.05rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    min-height: 48px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .intro,
  .services,
  .clients,
  .approach,
  .contact {
    padding: 62px 0;
  }

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

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

  .timeline span {
    margin-bottom: 28px;
  }

  .client-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
