/* EasyJet Plumbing — Brisbane
   Palette derived from the business photo (charcoal slate + steel grey + burnt-orange gloves/wrench). */

:root {
  /* Dominant 1 — charcoal slate (the textured dark background of the tools photo) */
  --ink: #1b1f24;
  --ink-2: #262b32;
  --ink-3: #313842;

  /* Dominant 2 — cool steel grey (the metallic tools, braided hose) */
  --steel: #5b6470;
  --steel-light: #8b939e;
  --mist: #eef1f4;
  --mist-2: #e2e7ec;

  /* Accent — burnt orange (the pipe wrench + work gloves) */
  --rust: #d4622a;
  --rust-dark: #b84d1c;
  --rust-soft: #f5e2d6;

  --paper: #ffffff;
  --paper-2: #f7f9fb;

  --text: #20252b;
  --text-soft: #515b66;
  --line: #dde3e9;

  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 40px -22px rgba(20, 26, 33, 0.45);
  --shadow-sm: 0 8px 20px -14px rgba(20, 26, 33, 0.5);

  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.section { padding: 78px 0; }
.section--tight { padding: 56px 0; }
.section--mist { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--mist); }
.section--ink h2, .section--ink h3 { color: #fff; }

.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--rust); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--rust-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn--on-dark:hover { background: rgba(255,255,255,0.16); }
.btn--small { min-height: 44px; padding: 10px 18px; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Logo lockup */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo__name b { color: var(--rust); font-weight: 700; }
.logo__tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
  font-weight: 600;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 26px; }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-soft);
  padding: 6px 0;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
}

/* Mobile nav toggle (CSS checkbox hack) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.nav-burger span { position: relative; }
.nav-burger span::before { content: ""; position: absolute; top: -6px; left: 0; }
.nav-burger span::after { content: ""; position: absolute; top: 6px; left: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,24,29,0.93) 0%, rgba(20,24,29,0.74) 42%, rgba(20,24,29,0.4) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 92px 0; max-width: 640px; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.86); }
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.hero__rating .stars { color: #ffc14d; letter-spacing: 2px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__strip {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  margin-top: 34px;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.85);
}
.hero__strip span { display: inline-flex; align-items: center; gap: 8px; }
.tick { color: var(--rust); font-weight: 700; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink-2); color: var(--mist); }
.trustbar .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  padding-top: 26px; padding-bottom: 26px;
}
.trustbar__item { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; }
.trustbar__item strong { color: #fff; font-family: var(--font-display); }
.trustbar svg { width: 26px; height: 26px; flex: none; color: var(--rust); }

/* ---------- Section heads ---------- */
.section-head { max-width: 62ch; margin-bottom: 38px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rust-soft); }
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--rust-soft);
  color: var(--rust-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--text-soft); font-size: 0.98rem; flex: 1; }
.svc-card .card-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--rust-dark);
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .card-link:hover { gap: 10px; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
}
.feature-list { list-style: none; margin: 22px 0 0; padding: 0; }
.feature-list li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .fl-ico {
  flex: none; width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  margin-top: 2px;
}
.feature-list strong { display: block; color: var(--ink); font-family: var(--font-display); }
.feature-list span { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding-top: 12px; }
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--rust);
  line-height: 1;
}
.step h3 { margin: 10px 0 6px; }
.step p { color: var(--text-soft); font-size: 0.98rem; margin: 0; }
.section--ink .step p { color: rgba(255,255,255,0.78); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure.wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.review .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 1.05rem; color: var(--text); }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink-2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.review__who strong { display: block; font-family: var(--font-display); color: var(--ink); }
.review__who span { font-size: 0.85rem; color: var(--steel); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 52px 44px;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(212,98,42,0.55), transparent 70%);
}
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; max-width: 46ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 220px; height: 4px; background: var(--rust);
}
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 56ch; margin-bottom: 0; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; letter-spacing: 0.04em; }
.crumbs a:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ci {
  flex: none; width: 44px; height: 44px; border-radius: 11px;
  background: var(--rust-soft); color: var(--rust-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row .cl { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); font-weight: 600; }
.contact-row .cv { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); font-weight: 600; }
.contact-row .cv a:hover { color: var(--rust-dark); }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .hl-day { color: var(--text-soft); }
.hours-list .hl-time { font-family: var(--font-display); font-weight: 600; color: var(--ink); }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.area-tags span {
  background: var(--mist); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px; font-size: 0.92rem; color: var(--text-soft);
  font-family: var(--font-display); font-weight: 500;
}

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat { text-align: center; padding: 22px; }
.stat__n { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--rust); line-height: 1; }
.stat__l { color: var(--text-soft); margin-top: 8px; font-size: 0.96rem; }
.section--ink .stat__l { color: rgba(255,255,255,0.78); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer .logo__name { color: #fff; }
.site-footer .logo__tag { color: var(--steel-light); }
.footer-about { max-width: 38ch; margin-top: 16px; font-size: 0.96rem; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-call {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: #fff; margin-top: 6px;
}
.footer-call:hover { color: var(--rust); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.86rem; color: var(--steel-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .split { gap: 32px; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 22px 18px;
    transform: translateY(-130%);
    transition: transform .28s ease;
    z-index: 40;
  }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a:last-of-type { border-bottom: 0; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__header-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-toggle:checked ~ .nav__links { transform: translateY(0); }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }

  .grid--3, .grid--2 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media img { max-height: 340px; }
  .reviews { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure.wide { grid-column: span 2; }
  .hero { min-height: 0; }
  .hero__inner { padding: 70px 0; }
  .hero__cta .btn { flex: 1 1 100%; }
  .cta-band { padding: 38px 26px; }
  .cta-band__actions .btn { flex: 1 1 100%; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trustbar__item { flex: 1 1 100%; }
}
