:root {
  --rose: #C99383;
  --rose-soft: #D9B3A8;
  --rose-dark: #B87F6E;
  --rose-text: #463939;
  --page-bg: #EEEEEE;
  --content-bg: #FFFFFF;
  --footer-bg: #2A2829;
  --ink: #000000;
  --grey: #666666;
  --hair: #E0E0E0;

  --pad: clamp(1.25rem, 4.4vw, 3.5rem);
  --frame: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.shell {
  max-width: var(--frame);
  margin-inline: auto;
  background: var(--content-bg);
  /* clip, not hidden: hidden makes this a scroll container and stops the sticky header sticking. */
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: "Alice", Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

h1 { font-size: clamp(2rem, 3.2vw, 2.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.8125rem); text-align: center; }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.1875rem); }

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

a { color: var(--rose-text); }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

.wrap { padding-inline: var(--pad); }
section { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  /* Black, not brown: #463939 on this rose measured 4.19 against a 4.5 target. */
  color: var(--ink);
  background: var(--rose);
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}
.btn:hover { background: var(--rose-dark); color: var(--ink); }
.btn-round { border-radius: 5px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 60;
  background: var(--content-bg);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
  position: relative;
}

/* Large at rest, shrinks once the page scrolls so the sticky header stays out of the way. */
.brand img { height: 110px; width: auto; transition: height 220ms ease; }
.site-header.is-scrolled .brand img { height: 62px; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links li { display: flex; align-items: center; }
.nav-links li + li::before {
  content: "|";
  color: var(--rose);
  margin-inline: 0.85rem;
}
.nav-links a {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose-text); }
.nav-links .nav-cta { display: none; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hair);
  padding: 0.6rem 0.7rem;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); }
.nav-toggle span + span { margin-top: 5px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  background-image: url("assets/hero-living-room.jpg");
  background-size: cover;
  background-position: center;
}

.hero-panel {
  position: relative;
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.hero-panel h1 { line-height: 1.3; }
.hero-panel .sub {
  font-family: "Alice", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  color: var(--ink);
}

/* ---------- page banner ---------- */

.banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  background-image: url("assets/band-architecture-soft.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}
.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.banner h1 {
  color: #FFFFFF;
  font-size: clamp(2.25rem, 4.4vw, 3.25rem);
}
.banner-rule {
  width: 72px;
  height: 2px;
  background: var(--rose);
  border: 0;
  margin: 0;
}

.banner-calc { background-image: url("assets/calc-banner.jpg"); }
.banner-services { background-image: url("assets/banner-services-aerial.jpg"); }

/* Taller than the other banners so the skyline is readable rather than a crop. */
.banner-melbourne {
  background-image: url("assets/banner-melbourne.jpg");
  min-height: 360px;
}

/* An h1 for SEO, styled to look exactly like the h2 it replaced. */
.calc-title {
  text-align: center;
  font-size: clamp(2rem, 3.6vw, 2.8125rem);
}

/* A page heading with no banner behind it. */
.page-title {
  text-align: center;
  color: var(--rose);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* Solid rose gold banner, no photo. Heading flips to near-black for contrast. */
.banner-rose { background-image: none; background: var(--rose-soft); }

/* Sizes to the heading rather than holding a photo's height. */
.banner-compact {
  min-height: 0;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
}
.banner-compact h1 { font-size: clamp(1.625rem, 3vw, 2.25rem); }
.banner-compact .banner-rule { width: 56px; }
.banner-compact .banner-inner { gap: 0.9rem; }
.banner-rose::after { content: none; }
.banner-rose h1 { color: var(--ink); }
.banner-rose .banner-rule { background: var(--ink); }

/* ---------- calculator tiles ---------- */

.calc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.calc-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 373 / 320;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}
.calc-tile span {
  background: var(--rose);
  /* Near-black, not white: white on this rose measures 2.63 against a 4.5 target. */
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  text-align: center;
  padding: 0.85rem 1.35rem;
  max-width: 76%;
  transition: background-color 180ms ease;
}
.calc-tile:hover span, .calc-tile:focus-visible span { background: var(--rose-dark); }

/* Dark text with the rose border: rose text on white measured 2.63. */
.btn-outline {
  background: transparent;
  color: var(--rose-text);
  border: 1px solid var(--rose);
}
.btn-outline:hover { background: var(--rose); color: var(--ink); }

/* ---------- card grid ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.6vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.25);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card-head h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.card-icon { width: 42px; height: 42px; flex-shrink: 0; }
.card p { font-size: 15px; line-height: 1.7; }

.card-centered { align-items: center; text-align: center; }
.card-centered .badge {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-centered .badge svg { width: 34px; height: 34px; }

.features { margin: 0.35rem 0 0; padding: 0; list-style: none; width: 100%; }
.features li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}
.features-label { font-weight: 500; font-size: 14px; align-self: flex-start; }

/* ---------- expandable service cards ---------- */

/* A wrapping row rather than a grid, so a short last row sits centred instead of leaving a gap.
   Cards size to their own content so an open one does not stretch its row. */
.cards-toggle {
  --gap: clamp(1.25rem, 2.6vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--gap);
}
.cards-toggle > .card { flex: 0 0 calc((100% - 2 * var(--gap)) / 3); }

/* Every title reserves two lines in the three column layout, so closed cards all match in height. */
@media (min-width: 1001px) {
  .card-toggle summary h2 {
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.card-toggle { display: block; }
.card-toggle summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.card-toggle summary::-webkit-details-marker { display: none; }
/* The titles are h2 for screen readers, sized as the h3 they replaced so nothing moves. */
.card-toggle summary h2 { font-size: clamp(1.5rem, 2.8vw, 2.1875rem); }
.card-toggle summary:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }

.card-toggle .more {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--rose-text);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}
.card-toggle .more::after { content: "Read more"; }
.card-toggle[open] .more::after { content: "Close"; }
.card-toggle summary:hover .more { color: var(--rose); }

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.step { display: flex; flex-direction: column; gap: 0.5rem; }
/* Rotating the tile keeps the digit upright inside the diamond.
   The rotated box overflows its 64px layout box by ~13px each side, hence the margin. */
.step .num {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 64px;
  height: 64px;
  background: var(--rose);
  transform: rotate(45deg);
  margin: 1rem 0 1.6rem 1rem;
}
.step .num span {
  transform: rotate(-45deg);
  font-family: "Shadows Into Light", cursive;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--rose-text);
}
.step p { font-size: 16px; line-height: 1.7; }

.center-cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* Understated so it does not compete with the filled buttons on the same page. */
.more-link {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.more-link a {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  color: var(--rose-text);
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 3px;
}
.more-link a:hover { color: var(--rose); border-bottom-color: var(--rose-dark); }

/* ---------- testimonial band ---------- */

.tband {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  background-image: url("assets/band-architecture-soft.jpg");
  background-size: cover;
  background-position: center;
}
.tband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}
.tband-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.tband blockquote {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: #FFFFFF;
}
.tband blockquote p + p { margin-top: 0.9rem; }

.tslide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
}
.tslide.is-on { display: flex; }

.tband .name {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--ink);
  background: var(--rose);
  padding: 0.5rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 180ms ease;
}
.tband a.name:hover { background: var(--rose-dark); color: var(--ink); }

/* The visible dot is 13px. The padding widens the tap target to 25px without making the dot bigger. */
.tdots { display: flex; gap: 0.1rem; }
.tdot {
  width: 25px;
  height: 25px;
  padding: 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  background-clip: content-box;
  cursor: pointer;
}
.tdot[aria-selected="true"] { background-color: var(--rose); }
.tdot:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 3px; }

/* ---------- inline contact strip ---------- */

.strip { padding-block: clamp(2.75rem, 5vw, 4rem); }
.strip h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6875rem);
  line-height: 1.4;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.strip-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
}
.line-field { display: flex; flex-direction: column; }
.line-field input {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  padding: 0.35rem 0 0.5rem;
  border: 0;
  border-bottom: 1px solid var(--rose);
  background: transparent;
  border-radius: 0;
  width: 100%;
}
.line-field input::placeholder { color: var(--grey); opacity: 1; }
.line-field input:focus { outline: none; border-bottom-width: 2px; }

/* ---------- boxed form ---------- */

.form-intro { text-align: center; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.form-intro p { font-size: 16px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-details h2 {
  text-align: left;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin-bottom: 1.4rem;
}
.contact-details dl { margin: 0; display: flex; flex-direction: column; gap: 1.15rem; }
.contact-details dl > div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-details dt {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-text);
}
.contact-details dd { margin: 0; font-size: 15px; line-height: 1.6; }
.contact-details dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rose); }
.contact-details dd a:hover { color: var(--rose-text); border-bottom-color: var(--rose-dark); }

.contact-grid form.boxed { max-width: none; margin-inline: 0; }

form.boxed { display: flex; flex-direction: column; gap: 1.1rem; max-width: 900px; margin-inline: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.box-field { display: flex; flex-direction: column; gap: 0.35rem; }
.box-field label { font-size: 13px; font-weight: 400; }
.box-field input, .box-field textarea, .box-field select {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--hair);
  background: #FFFFFF;
  border-radius: 0;
  width: 100%;
}
.box-field textarea { min-height: 120px; resize: vertical; }
.box-field input:focus, .box-field textarea:focus, .box-field select:focus { outline: none; border-color: var(--rose); }
form.boxed .btn { align-self: flex-start; padding-inline: 2.25rem; }
.hp { position: absolute; left: -9999px; }

/* ---------- calculator panel ---------- */

.calc-panel {
  background: #000000;
  color: #FFFFFF;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calc-field { display: flex; flex-direction: column; gap: 0.3rem; }
.calc-field label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
}
.calc-input { display: flex; align-items: stretch; gap: 0.6rem; }
.calc-input input, .calc-input select {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  padding: 0.45rem 0.6rem;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  border-radius: 0;
  flex: 1;
  min-width: 0;
}
.calc-input .unit { color: #FFFFFF; font-size: 13px; align-self: center; flex-shrink: 0; }

.calc-result { background: var(--rose); padding: 0.75rem 1rem; }
.calc-result .rl { font-size: 13px; font-weight: 500; color: var(--ink); }
.calc-result .rv {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  font-weight: 300;
  /* Black, not white: white on this rose measured 2.63. */
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}
.calc-note .nl { font-size: 13px; font-weight: 500; }
.calc-note .nt { font-size: 12px; font-style: italic; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }

.calc-links { display: flex; flex-direction: column; gap: 0.9rem; align-items: center; margin-top: 2rem; }
.calc-links a { font-size: 16px; color: var(--rose-text); }

/* ---------- refer a friend ---------- */

.refer-intro {
  text-align: center;
  max-width: 54rem;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.refer-intro h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
.refer-intro p { font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; }

.refer-panel {
  background: rgba(201, 147, 131, 0.08);
  border: 1px solid rgba(201, 147, 131, 0.35);
  border-radius: 20px;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  max-width: 62rem;
  margin-inline: auto;
}

.refer-form { display: flex; flex-direction: column; gap: 1.1rem; }
.refer-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.refer-field { display: flex; flex-direction: column; gap: 0.35rem; }
.refer-field label {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  color: var(--ink);
}
.refer-field .req { color: #B23A2F; }
.refer-field input, .refer-field textarea {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--hair);
  background: #FFFFFF;
  border-radius: 0;
  width: 100%;
}
.refer-field input:focus, .refer-field textarea:focus { outline: none; border-color: var(--rose); }
.refer-field textarea { min-height: 110px; resize: vertical; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.4rem;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  cursor: pointer;
}
.consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.18rem;
  accent-color: var(--rose);
  flex-shrink: 0;
}

.refer-form .btn {
  align-self: center;
  margin-top: 0.75rem;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
}

/* One line under each form saying what happens to the details sent. */
.form-note { font-size: 13px; line-height: 1.6; color: var(--grey); margin-top: 0.8rem; }
.form-note a { color: var(--rose-text); }
.refer-form .form-note { text-align: center; }

.howto { text-align: center; }
.howto h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.howto { margin-bottom: clamp(2.25rem, 4.5vw, 3rem); }
.howto ol {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding-left: 1.4rem;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  line-height: 1.95;
}

/* ---------- review cards ---------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.review {
  display: block;
  background: var(--rose-soft);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}
.review summary { display: block; list-style: none; cursor: pointer; }
.review summary::-webkit-details-marker { display: none; }
.review summary:focus-visible { outline: 2px solid var(--ink); outline-offset: -3px; }

.review-photo { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #D8D8D8; }
.review-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }

.review-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
}
.review-bar .role {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--rose-text);
}
.review-name {
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.25;
  color: var(--ink);
}
.review .more {
  display: inline-block;
  background: var(--rose-dark);
  /* Black, not white: white on this rose measured 3.33. */
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 0.4rem 1.4rem;
  margin-top: 0.55rem;
  transition: background-color 180ms ease;
}
.review .more::after { content: "Read"; }
.review[open] .more::after { content: "Close"; }
/* Mouse only. On touch screens a tap leaves hover switched on, so the button used to stay black. */
@media (hover: hover) {
  .review summary:hover .more { background: var(--ink); color: #FFFFFF; }
}

.review-more { padding: 0 clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.25rem, 2.4vw, 1.6rem); }
.review-more .said { font-size: 14px; line-height: 1.85; color: var(--rose-text); }

/* ---------- prose ---------- */

.prose { max-width: 70ch; margin-inline: auto; display: flex; flex-direction: column; gap: 1.2rem; }
.prose p { font-size: 16px; }
.prose h2, .prose h3 { margin-top: 0.75rem; font-size: clamp(1.25rem, 2.2vw, 1.6875rem); text-align: left; }
.center-text { text-align: center; }

.finenote {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  margin-top: 1.6rem;
  font-style: italic;
  font-size: 13px;
  line-height: 1.8;
  color: #4A4A4A;
}

/* Sits between two sections, so the section padding supplies its spacing. */
.rule-line {
  width: min(340px, 60%);
  height: 1px;
  background: var(--hair);
  border: 0;
  margin: 0 auto;
}

/* Echoes the angular mark in the logo. */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-block: clamp(2.75rem, 5.5vw, 4.5rem);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  background: var(--hair);
  flex: 0 1 150px;
}
.divider span {
  width: 9px;
  height: 9px;
  background: var(--rose);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- legal pages ---------- */

/* Pulls the body text up closer to the banner above it. */
.tight-top { padding-top: clamp(1.5rem, 3vw, 2.25rem); }

.legal-page {
  max-width: 78ch;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.legal-page h2 {
  text-align: left;
  font-size: clamp(1.125rem, 1.9vw, 1.375rem);
  margin-top: 1.1rem;
}
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.7; }
.legal-page ul {
  margin: 0;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-page address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.9;
  padding: 1.1rem 1.4rem;
  background: rgba(201, 147, 131, 0.08);
  border-left: 3px solid var(--rose);
}
.legal-page address strong { font-weight: 500; }
.legal-page .updated {
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
  margin-top: 1.5rem;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--footer-bg);
  color: #FFFFFF;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-brand > a { display: inline-block; margin-bottom: 1.1rem; }
.footer-brand img { height: 96px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-brand .abn { margin-top: 1.1rem; }
.footer-brand .legal { margin-top: 1.6rem; font-size: 13px; line-height: 1.7; max-width: 34ch; }
.footer-brand a { color: #FFFFFF; text-decoration: none; }
.footer-brand a:hover { color: var(--rose); }

.social { display: flex; align-items: center; gap: 1rem; }
.social a { display: inline-flex; color: rgba(255, 255, 255, 0.72); transition: color 180ms ease; }
.social a:hover { color: var(--rose); }
.social svg { width: 26px; height: 26px; }

.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: #FFFFFF; text-decoration: none; font-size: 16px; }
.footer-col a:hover { color: var(--rose); }
.footer-col h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 0.9rem;
}

.footer-legal {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 14px;
}
.footer-legal a { color: #FFFFFF; text-decoration: underline; }
.footer-legal a:hover { color: var(--rose); }

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  /* Three-card rows stack rather than stranding the last one alone. */
  .cards-trio { grid-template-columns: 1fr; }
  .strip-form { grid-template-columns: repeat(2, 1fr); }
  .strip-form .btn { grid-column: 1 / -1; justify-self: start; }
  .cards-toggle > .card { flex-basis: calc((100% - var(--gap)) / 2); }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .brand img { height: 72px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--content-bg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem var(--pad) 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: block; }
  .nav-links li + li::before { content: none; }
  .nav-links a { display: block; padding-block: 0.8rem; border-bottom: 1px solid var(--hair); }
  .nav-links .nav-cta { display: block; margin-top: 1rem; }
  .nav-links .nav-cta a {
    background: var(--rose);
    color: var(--ink);
    text-align: center;
    border-bottom: 0;
    font-family: "Poppins", Arial, sans-serif;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { justify-content: center; }
}

@media (max-width: 640px) {
  .cards, .cards-3, .reviews { grid-template-columns: 1fr; }
  .cards-toggle > .card { flex-basis: 100%; }
  /* Phones show almost the whole photo, so they get the full frame at a phone size.
     Wider screens only ever show the middle strip, which is what the main file is cropped to. */
  .banner-services { background-image: url("assets/banner-services-aerial-sm.jpg"); }
  .calc-tiles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .strip-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ---------- thank you and not found pages ---------- */

/* Tall enough that the footer does not ride up the screen on a page this short. */
.thanks {
  text-align: center;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 9vw, 6.5rem);
}
.thanks .form-intro { margin-bottom: 0; }
