:root {
  color-scheme: light;
  --ink: #111713;
  --muted: #5d665f;
  --green: #1f3b2d;
  --green-2: #355949;
  --cream: #f5f1e8;
  --paper: #ffffff;
  --line: #ddd8ce;
  --gold: #caa76a;
  --shadow: 0 18px 45px rgba(17, 23, 19, 0.12);
  --radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(17, 23, 19, 0.05);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.88rem;
}
.topbar a { text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  color: var(--green);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.nav a:hover { color: var(--green-2); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-image {
  background: url("/assets/hero-interior.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(13, 22, 17, 0.68), rgba(13, 22, 17, 0.28) 46%, rgba(13, 22, 17, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 850px;
  padding: 105px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 400;
}

h1 {
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.hero-content p {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.18rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 23px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.button.primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
}
.button:hover { filter: brightness(0.95); }

.intro-band {
  padding: 60px 0;
  background: var(--green);
  color: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.section {
  padding: 88px 0;
  background: var(--paper);
}
.muted {
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.section h2,
.contact-section h2 { margin-bottom: 24px; }

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.service-card div { padding: 26px; }
.service-card p,
.section-copy,
.contact-section p,
details p,
.local-intent li,
.suburb-list li {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 650px;
  background: var(--cream);
}
.feature-copy {
  display: grid;
  align-content: center;
  padding: 80px max(38px, calc((100vw - 1180px) / 2)) 80px max(38px, calc((100vw - 1180px) / 2));
}
.feature-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}
.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.text-link {
  width: max-content;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  height: 380px;
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.chip-list a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.local-intent {
  margin-top: 30px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}
.local-intent ul { margin: 0; padding-left: 20px; }
.local-intent li + li { margin-top: 8px; }

.postcode-groups,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
}
summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 700;
}

.suburb-list {
  columns: 2 280px;
  column-gap: 34px;
  margin: 16px 0 0;
  padding-left: 20px;
}
.suburb-list li {
  break-inside: avoid;
  margin: 0 0 8px;
}

.contact-section {
  padding: 95px 0;
  background: var(--green);
  color: #fff;
}
.contact-section p { color: rgba(255, 255, 255, 0.82); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}
.contact-card {
  padding: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-card p {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.contact-card p:last-child { border-bottom: 0; }
.contact-card strong {
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.contact-card a {
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: #fff;
}
.site-footer a { color: #fff; }
.site-footer p { margin: 0; }

@media (max-width: 860px) {
  .topbar,
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar { gap: 6px; }
  .header-inner { padding-bottom: 16px; }
  .brand { min-height: 64px; }
  .nav { gap: 14px; flex-wrap: wrap; }
  .hero { min-height: 680px; }
  .hero-content { padding: 70px 0; }
  .intro-grid,
  .service-grid,
  .split-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-image img { min-height: 420px; }
  .gallery-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-strip img { height: 290px; }
  .section,
  .contact-section { padding: 64px 0; }
  .contact-card p { grid-template-columns: 1fr; gap: 4px; }
}
