/* Clean Cut Plumbing — modernised editorial */
:root {
  --blue: #3597D3;
  --blue-dark: #1F6FA5;
  --blue-deep: #0E3B5C;
  --blue-50: #EAF4FB;
  --blue-100: #CFE6F5;
  --ink: #0E1A24;
  --ink-2: #2A3744;
  --muted: #5B6975;
  --line: #E6EAEE;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FA;
  --accent: var(--blue);
  --radius: 4px;
  --radius-lg: 14px;
  --maxw: 1320px;
  --pad: 32px;
  --gap: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Type */
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Inter Tight', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6vw, 88px); font-weight: 400; line-height: 1.05; }
h2 { font-size: clamp(36px, 4.6vw, 68px); }
h3 { font-size: clamp(24px, 2.2vw, 32px); }
h4 { font-size: 20px; letter-spacing: -0.01em; }
.serif { font-family: 'Fraunces', Georgia, serif; }
.italic { font-style: italic; font-variation-settings: "SOFT" 50; }

p { margin: 0 0 1em; color: var(--ink-2); text-wrap: pretty; }
.lead { font-size: 22px; line-height: 1.5; color: var(--ink-2); max-width: 60ch; }

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 110px 0; }
.section--tight { padding: 72px 0; }
.section--bg { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p, .section--ink .lead { color: rgba(255,255,255,0.78); }
.section--ink .eyebrow { color: rgba(255,255,255,0.6); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); }
.btn--ghost { border-color: rgba(14,26,36,0.15); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--blue-50); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn--big { padding: 18px 28px; font-size: 16px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 15px; color: var(--ink-2);
  transition: all .15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); background: var(--blue-50); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--ink);
  font-size: 15px;
}
.nav__phone .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #2BB673;
  box-shadow: 0 0 0 0 rgba(43,182,115,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,182,115,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(43,182,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,182,115,0); }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* Hero */
.hero {
  background: var(--blue-100);
  position: relative; overflow: hidden;
  padding: 120px 0 100px;
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px;
  align-items: end;
}
.hero h1 { color: var(--blue-deep); }
.hero h1 .accent { color: var(--accent); }
.hero__sub {
  margin-top: 40px; font-size: 20px; line-height: 1.55; color: var(--blue-deep); opacity: 0.78;
  max-width: 52ch;
}
.hero__ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(14,59,92,0.15);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.hero__meta div { color: var(--blue-deep); }
.hero__meta strong { font-family: 'Fraunces', serif; font-weight: 500; font-size: 32px; display: block; }
.hero__meta span { font-size: 13px; opacity: 0.7; letter-spacing: 0.04em; text-transform: uppercase; }
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ddd;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; color: var(--ink);
  padding: 14px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2BB673; }
.hero__badge strong { display: block; font-weight: 600; font-size: 14px; }
.hero__badge span { font-size: 12px; color: var(--muted); }
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 80px 0 60px; }
  .hero__visual { aspect-ratio: 4/3; }
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__item {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; color: var(--ink-2);
  white-space: nowrap;
}
.marquee__item .star { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Service grid */
.services-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}
.service-card {
  background: #fff;
  padding: 36px 32px 40px;
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px;
  transition: background .2s ease;
  cursor: pointer;
}
.service-card:hover { background: var(--blue-50); }
.service-card--lg { grid-column: span 6; min-height: 360px; }
.service-card--sm { grid-column: span 3; }
.service-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.1em;
}
.service-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon img { width: 100%; height: 100%; }
.service-card h3 { font-size: 28px; }
.service-card p { font-size: 15px; color: var(--muted); margin: 0; }
.service-card__arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 500; font-size: 14px;
}
.service-card--lg h3 { font-size: 36px; }
.service-card--lg p { font-size: 17px; max-width: 38ch; color: var(--ink-2); }
.service-card--feat {
  background: var(--ink); color: #fff;
}
.service-card--feat h3 { color: #fff; }
.service-card--feat p { color: rgba(255,255,255,0.75); }
.service-card--feat:hover { background: var(--blue-deep); }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--lg, .service-card--sm { grid-column: span 1; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Approach / process */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  margin-top: 56px;
  border: 1px solid var(--line);
}
.process__step {
  background: #fff; padding: 36px 28px 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.process__step .num {
  font-family: 'Fraunces', serif; font-size: 56px; color: var(--accent);
  line-height: 1; font-weight: 400;
}
.process__step h4 { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.process__step p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; } }

/* Editorial split */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ddd;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 24px; }
.split__body .lead { margin-bottom: 28px; }
.split__stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
}
.split__stat strong {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 48px; color: var(--accent); display: block; line-height: 1;
}
.split__stat span { font-size: 14px; color: var(--muted); margin-top: 6px; display: block; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px;
  margin-top: 48px;
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery__item--wide { grid-column: span 8; aspect-ratio: 16/10; }
.gallery__item--sq { grid-column: span 4; aspect-ratio: 1; }
.gallery__caption {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95); padding: 8px 12px;
  border-radius: 6px; font-size: 13px; font-weight: 500;
}
@media (max-width: 880px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall, .gallery__item--wide, .gallery__item--sq { grid-column: span 1; aspect-ratio: 1; }
}

/* Testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: #fff; padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial__stars { color: var(--accent); font-size: 16px; letter-spacing: 4px; }
.testimonial__quote {
  font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.35;
  color: var(--ink); font-weight: 400;
  flex: 1;
  text-wrap: pretty;
}
.testimonial__author { font-size: 14px; color: var(--muted); }
.testimonial__author strong { display: block; color: var(--ink); font-weight: 600; font-size: 15px; }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 18px; max-width: 50ch; }
.cta-banner__right {
  text-align: right;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.cta-banner__phone {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--accent); letter-spacing: -0.02em; line-height: 1;
}
.cta-banner__bg {
  position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(53,151,211,0.25), transparent 70%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-banner__right { text-align: left; align-items: flex-start; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 32px;
}
.footer h4 { color: #fff; font-family: 'Inter Tight', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; color: rgba(255,255,255,0.5); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand p { color: rgba(255,255,255,0.6); max-width: 36ch; font-size: 15px; }
.footer__brand .footer-logo { font-family: 'Fraunces', serif; font-size: 36px; color: #fff; letter-spacing: -0.02em; margin-bottom: 18px; }
.footer__brand .footer-logo .accent { color: var(--accent); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer li a { color: rgba(255,255,255,0.7); font-size: 15px; }
.footer li a:hover { color: #fff; }
.footer__bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer__social a:hover { background: var(--accent); }
.footer__social img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Page header (interior pages) */
.page-header {
  padding: 120px 0 80px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 24px; }
.page-header__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.page-header__media {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: #ddd;
}
.page-header__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .page-header__grid { grid-template-columns: 1fr; gap: 36px; }
  .page-header__media { aspect-ratio: 16/10; }
}
.page-header h1 { font-size: clamp(52px, 7vw, 104px); color: var(--blue-deep); line-height: 1.04; }
.page-header__lead { margin-top: 28px; font-size: 22px; color: var(--blue-deep); opacity: 0.75; max-width: 56ch; }

/* Service detail rows */
.svc-row {
  display: grid; grid-template-columns: 80px 1fr 1.4fr;
  gap: 32px; align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__num { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--muted); letter-spacing: 0.1em; padding-top: 8px; }
.svc-row__title h3 { font-size: 36px; }
.svc-row__title .icon { width: 48px; height: 48px; margin-bottom: 20px; }
.svc-row__body p { font-size: 16.5px; color: var(--ink-2); }
.svc-row__list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.svc-row__list li { font-size: 14.5px; color: var(--muted); padding-left: 18px; position: relative; }
.svc-row__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: var(--accent);
}
.svc-row__cta { padding-top: 8px; }
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
}

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.contact-info__row:first-child { padding-top: 0; }
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--blue-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__icon img { width: 20px; height: 20px; }
.contact-info__row .label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-info__row .value { font-family: 'Fraunces', serif; font-size: 24px; color: var(--ink); }
.contact-form {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form label { font-size: 13px; color: var(--muted); display: block; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; font: inherit; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--accent);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* About / value cards */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.value-card__icon { width: 48px; height: 48px; }
.value-card h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; }
.value-card p { font-size: 15px; color: var(--muted); margin: 0; }
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }

/* Service area pills */
.suburbs {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.suburb-pill {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  background: #fff;
}
.suburb-pill.featured { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Section header */
.section-head {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: end;
  margin-bottom: 0;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head__lead { font-size: 18px; color: var(--ink-2); max-width: 50ch; }
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }

/* Floating call FAB */
.fab {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--accent); color: #fff;
  padding: 16px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 12px 32px rgba(53,151,211,0.4);
  display: flex; align-items: center; gap: 10px;
  z-index: 40;
  animation: fabIn .5s ease both;
}
.fab:hover { background: var(--blue-dark); }
@keyframes fabIn { from { opacity: 0; transform: translateY(20px); } }

/* Density variants */
body.density-spacious .section { padding: 140px 0; }
body.density-compact .section { padding: 80px 0; }

/* Hero variants */
body.hero-style-photo .hero { background: var(--ink); color: #fff; }
body.hero-style-photo .hero h1 { color: #fff; }
body.hero-style-photo .hero h1 .accent { color: var(--accent); }
body.hero-style-photo .hero__sub { color: rgba(255,255,255,0.75); }
body.hero-style-photo .hero__meta { border-top-color: rgba(255,255,255,0.15); }
body.hero-style-photo .hero__meta div { color: #fff; }
body.hero-style-photo .hero__meta span { color: rgba(255,255,255,0.6); }

body.hero-style-minimal .hero { background: #fff; }
body.hero-style-minimal .hero h1 { color: var(--ink); }
body.hero-style-minimal .hero h1 .accent { color: var(--accent); }
body.hero-style-minimal .hero__sub { color: var(--ink-2); }
body.hero-style-minimal .hero__meta { border-top-color: var(--line); }
body.hero-style-minimal .hero__meta div { color: var(--ink); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
