/* ============================================================================
   Melbourne Heritage Tiles: shared brand stylesheet for the mockup pages.
   Cool slate palette, Libre Caslon + Archivo, soft corners.
   Tokens mirror the theme's assets/css/design-system.css (--ds-*).
   ============================================================================ */
:root {
  --paper:  oklch(98.6% 0.002 250);
  --panel:  oklch(96.3% 0.004 250);
  --stone:  oklch(93.3% 0.006 250);
  --line:   oklch(90.5% 0.006 250);

  --ink:    oklch(26% 0.006 250);
  --body:   oklch(42% 0.007 250);
  --muted:  oklch(54% 0.006 250);

  --accent:      oklch(54% 0.045 250);
  --accent-ink:  oklch(45% 0.05 250);
  --accent-deep: oklch(41% 0.045 250);

  --char:        oklch(25% 0.006 250);
  --char-text:   oklch(93% 0.004 250);
  --char-muted:  oklch(78% 0.006 250);
  --char-accent: oklch(76% 0.035 250);

  --display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --heading: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 10px; --r: 16px; --r-lg: 26px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px oklch(30% 0.006 250 / .06), 0 6px 18px oklch(30% 0.006 250 / .06);
  --shadow-lg: 0 30px 70px oklch(24% 0.01 250 / .22);

  --measure: 62ch;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4.25rem, 8vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation: none !important; transition: none !important; } }

body { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.65; color: var(--body); background: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { color: var(--ink); font-weight: 400; line-height: 1.1; text-wrap: balance; }
p { text-wrap: pretty; }

.wrap { max-width: 82rem; margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 60rem; margin-inline: auto; }

.eyebrow { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.7rem; border-radius: var(--r-pill); font-family: var(--sans); font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: oklch(18% 0.006 250); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--on-dark { border-color: oklch(100% 0 0 / .32); color: var(--char-text); }
.btn--on-dark:hover { background: oklch(100% 0 0 / .08); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--stone); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1rem; }

.arrow-link { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--accent-ink); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.arrow-link svg { transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* Header */
.site-head { position: sticky; top: 0; z-index: 50; background: oklch(98.6% 0.002 250 / .88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.head-inner { max-width: 82rem; margin-inline: auto; padding: .85rem var(--gutter); display: flex; align-items: center; gap: 1.5rem; }
.brand { margin-right: auto; display: inline-flex; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.1rem); }
.nav a:not(.btn) { font-family: var(--sans); font-weight: 500; font-size: .95rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--accent-ink); }
.nav a[aria-current="page"] { font-weight: 600; }
.nav .btn { white-space: nowrap; }
/* wp_nav_menu items render as bare <li>s inside .nav (items_wrap stripped) */
.nav li { list-style: none; display: inline-flex; align-items: center; }
.nav .current-menu-item > a { color: var(--accent-ink); font-weight: 600; }
.nav .menu-cta { order: 3; }           /* CTA pill forced last */
.nav .menu-cta > a { background: var(--ink); color: #fff; border-radius: var(--r-pill); padding: .65rem 1.3rem; line-height: 1; }
.nav .menu-cta > a:hover { background: oklch(18% 0.006 250); color: #fff; }
@media (max-width: 860px) { .nav .menu-item:not(.menu-cta) > a { display: none; } .brand img { height: 42px; } .head-inner { gap: 1rem; } .nav { gap: 1rem; } .nav .menu-cta > a { padding: .55rem 1.1rem; } }

/* Footer primary menu (plain list, inherits .site-foot ul/li/a styling) */
.foot-menu { list-style: none; padding: 0; margin: 0; }

/* Page hero */
.page-hero { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.1rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs span { margin: 0 .5rem; opacity: .5; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.1rem; }
.page-hero .lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--body); max-width: 56ch; }

/* Sections */
.section { padding: var(--section) 0; }
.section--panel { background: var(--panel); }
.section--dark { background: var(--char); color: var(--char-text); }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section-head { max-width: 48rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }
.section-head h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); margin: .7rem 0 1rem; }
.section-head p { font-size: 1.12rem; max-width: var(--measure); }

/* Split (image + copy) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-copy { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2rem; } .split.reverse .split-copy { order: 0; } }
.split-img img { width: 100%; height: clamp(20rem, 42vw, 32rem); object-fit: cover; border-radius: var(--r-lg); }
.split-copy h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: .7rem 0 1.1rem; }

/* Ticked lists */
.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; max-width: var(--measure); }
.checks li { padding-left: 1.8rem; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: .5rem; width: .65rem; height: .65rem; rotate: 45deg; background: var(--accent); }
.checks strong { color: var(--ink); font-weight: 600; }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.5rem, 3vw, 2.25rem); }
.card { display: flex; flex-direction: column; }
.card-img { aspect-ratio: 16/11; overflow: hidden; border-radius: var(--r); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding-top: 1.3rem; }
.card-body h3 { font-family: var(--heading); font-size: 1.5rem; margin-bottom: .5rem; }
.card-body p { font-size: 1rem; margin-bottom: 1rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.5rem, 2.5vw, 2rem); }
.section--panel .step { background: #fff; }
.step-num { width: 2.9rem; height: 2.9rem; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-family: var(--display); font-size: 1.35rem; display: grid; place-items: center; margin-bottom: 1.1rem; }
.step h3 { font-family: var(--heading); font-size: 1.35rem; margin-bottom: .5rem; }
.step p { font-size: .98rem; }

/* Trust bar */
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.4rem, 3vw, 2.25rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.trust-item { display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem; color: var(--ink); font-weight: 500; line-height: 1.35; }
.trust-item::before { content: ""; flex: none; margin-top: .35rem; width: .6rem; height: .6rem; rotate: 45deg; background: var(--accent); }
@media (max-width: 780px) { .trust-card { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .trust-card { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.gallery figure { margin: 0; }
.gallery .frame { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { padding-top: .85rem; font-size: .95rem; color: var(--muted); }
.gallery figcaption strong { display: block; color: var(--ink); font-family: var(--heading); font-size: 1.15rem; font-weight: 400; margin-bottom: .1rem; }

/* Blog / posts */
.filter-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.chip { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .5rem 1.1rem; cursor: pointer; text-decoration: none; transition: all .2s var(--ease); }
.chip:hover { border-color: var(--ink); }
.chip[aria-current="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(1.75rem, 3vw, 2.5rem); }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.post .thumb { aspect-ratio: 3/2; overflow: hidden; }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post .pb { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post .meta { display: flex; gap: .7rem; align-items: center; font-size: .8rem; color: var(--muted); margin-bottom: .7rem; }
.tag { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--panel); border-radius: var(--r-pill); padding: .3rem .7rem; }
.post h3 { font-family: var(--heading); font-size: 1.4rem; margin-bottom: .5rem; line-height: 1.2; }
.post p { font-size: .97rem; margin-bottom: 1.1rem; }
.post a.more { margin-top: auto; }
.post a.stretched { position: absolute; inset: 0; }

.post-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; margin-bottom: clamp(2rem, 4vw, 3rem); }
.post-feature .thumb { min-height: 100%; }
.post-feature .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-feature .pb { padding: clamp(2rem, 4vw, 3.5rem); align-self: center; }
.post-feature h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); margin: .6rem 0 1rem; }
.post-feature p { font-size: 1.08rem; margin-bottom: 1.5rem; max-width: 46ch; }
@media (max-width: 820px) { .post-feature { grid-template-columns: 1fr; } .post-feature .thumb { aspect-ratio: 3/2; } }

/* Forms */
.field { display: grid; gap: .45rem; margin-bottom: 1.25rem; }
.field label { font-size: .92rem; font-weight: 600; color: var(--ink); }
.field .hint { font-size: .82rem; color: var(--muted); font-weight: 400; }
.field .req { color: var(--accent-ink); }
input, select, textarea { font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: .8rem .95rem; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
textarea { min-height: 8rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent-ink); box-shadow: 0 0 0 3px oklch(54% 0.045 250 / .18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.choice { display: flex; gap: .7rem; align-items: flex-start; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; background: #fff; transition: border-color .2s var(--ease); }
.choice:hover { border-color: var(--ink); }
.choice input { width: auto; margin-top: .2rem; accent-color: var(--accent-ink); }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .7rem; margin-bottom: 1.25rem; }
.filedrop { border: 1.5px dashed var(--line); border-radius: var(--r); padding: 1.75rem; text-align: center; color: var(--muted); background: var(--panel); cursor: pointer; }
.filedrop strong { color: var(--ink); display: block; margin-bottom: .2rem; }

/* Info list (contact) */
.info-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-ic { flex: none; width: 2.6rem; height: 2.6rem; border-radius: var(--r-sm); background: var(--panel); display: grid; place-items: center; color: var(--accent-ink); }
.info-list .k { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }
.info-list .v { color: var(--ink); font-size: 1.05rem; }
.info-list .v a { color: var(--ink); text-decoration: none; }
.info-list .v a:hover { color: var(--accent-ink); }

/* FAQ */
.faq { max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; position: relative; font-family: var(--heading); font-size: 1.2rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.5rem; color: var(--accent-ink); transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 1.4rem; max-width: var(--measure); }

/* Proof / dark card */
.proof-card { max-width: 62rem; margin-inline: auto; background: var(--char); color: var(--char-text); border-radius: var(--r-lg); padding: clamp(2.5rem, 5vw, 4.25rem); text-align: center; }
.proof-card .eyebrow { color: var(--char-accent); }
.proof-card blockquote { font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.42; color: #fff; margin: 1.5rem 0; text-wrap: balance; }
.proof-card cite { font-style: normal; font-family: var(--sans); font-weight: 600; color: var(--char-muted); }
.proof-card p { font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.42; color: #fff; margin: 1.5rem 0; text-wrap: balance; }
.proof-card .cite { display: block; font-family: var(--sans); font-weight: 600; color: var(--char-muted); }

/* CTA card */
.cta-card { max-width: 62rem; margin-inline: auto; background: var(--char); color: var(--char-text); border-radius: var(--r-lg); padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.75rem, 5vw, 4rem); text-align: center; }
.cta-card h2 { font-family: var(--display); color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 1rem; }
.cta-card p { color: var(--char-muted); font-size: 1.15rem; max-width: 48ch; margin: 0 auto 1.75rem; }
.cta-card .phone { display: inline-block; font-family: var(--display); font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; text-decoration: none; margin-bottom: 1.5rem; }
.cta-card .phone:hover { color: var(--char-accent); }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.75rem; font-size: .95rem; color: var(--char-muted); }

/* Footer */
.site-foot { background: var(--char); color: var(--char-muted); padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-foot h3 { color: #fff; font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-foot a { color: var(--char-muted); text-decoration: none; }
.site-foot a:hover { color: #fff; }
.site-foot ul { list-style: none; padding: 0; }
.site-foot li { padding-block: .28rem; }
.foot-brand img { height: 44px; margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .92; }
.foot-brand p { max-width: 34ch; }
.foot-legal { padding-top: 1.5rem; margin-top: 2.75rem; border-top: 1px solid oklch(100% 0 0 / .12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }

/* ---- Header (GeneratePress) brand styling ---- */
.site-logo img, .header-image, .site-header .site-logo img, img.custom-logo { height: 46px; width: auto; max-width: 320px; }
/* logo already includes the wordmark, so hide the duplicate text title */
.wp-custom-logo .main-title, .wp-custom-logo .site-description { display: none; }
.main-navigation .main-nav ul li a,
.main-navigation .menu-toggle { font-family: var(--sans); font-weight: 500; font-size: .95rem; color: var(--ink); }
.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus > a,
.main-navigation .main-nav ul li.current-menu-item > a { color: var(--accent-ink); }
.main-navigation .main-nav ul li.current-menu-item > a { font-weight: 600; }
/* Get a Quote pill */
.main-navigation .main-nav ul li.menu-cta > a { background: var(--ink); color: #fff; border-radius: var(--r-pill); padding-top: .6rem; padding-bottom: .6rem; margin-left: .6rem; line-height: 1; }
.main-navigation .main-nav ul li.menu-cta:hover > a,
.main-navigation .main-nav ul li.menu-cta > a:hover { background: oklch(18% 0.006 250); color: #fff; }
.site-title a { font-family: var(--display); color: var(--ink); }
/* keep header content aligned with the page on full-bleed pages */
body.mht-full .inside-header { max-width: 82rem; margin-inline: auto; }

/* Full-bleed pattern pages: let content run edge to edge (GeneratePress caps #page at the container width) */
body.mht-full #page { max-width: 100%; }
body.mht-full .site-content { padding: 0; }
body.mht-full .inside-article,
body.mht-full .entry-content { margin: 0; }

/* Home hero (overlapping charcoal panel over a photo) */
.hero { padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 0; }
.hero-inner { max-width: 82rem; margin-inline: auto; position: relative; }
.hero-photo { width: 100%; height: clamp(26rem, 60vw, 40rem); object-fit: cover; border-radius: var(--r-lg); }
.hero-panel { background: var(--char); color: var(--char-text); padding: clamp(2rem, 4vw, 3.25rem); border-radius: var(--r-lg); margin-top: 1rem; }
.hero-panel .eyebrow { color: var(--char-accent); }
.hero-panel h1 { font-family: var(--display); color: #fff; font-size: clamp(2.4rem, 4.8vw, 4.1rem); margin: 1.1rem 0 1.3rem; }
.hero-panel p { color: var(--char-muted); max-width: 42ch; margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-reassure { margin-top: 1.4rem; font-size: .88rem; color: var(--char-muted); display: flex; align-items: center; gap: .5rem; }
.hero-reassure .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--char-accent); flex: none; }
@media (min-width: 900px) {
  .hero-photo { height: clamp(33rem, 47vw, 43rem); }
  .hero-panel { position: absolute; right: 0; bottom: clamp(2rem, 5vw, 4rem); width: min(38rem, 47%); margin-top: 0; box-shadow: var(--shadow-lg); }
}

/* Centred statement */
.statement { padding-block: var(--section); padding-inline: var(--gutter); }
.statement-inner { max-width: 58rem; margin-inline: auto; text-align: center; }
.statement p { font-family: var(--heading); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.4; color: var(--ink); }
.statement .lede { font-family: var(--sans); font-size: 1.12rem; color: var(--body); margin-top: 1.4rem; max-width: 54ch; margin-inline: auto; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); text-align: center; }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--ink); line-height: 1; }
.stat .lbl { font-size: .95rem; color: var(--muted); margin-top: .4rem; }

/* Audience cards (who we work with) */
.audience { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.aud { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.5rem, 2.5vw, 2rem); }
.aud h3 { font-family: var(--heading); font-size: 1.3rem; margin-bottom: .5rem; }
.aud p { font-size: .97rem; }

/* Suburb list */
.suburbs { display: flex; flex-wrap: wrap; gap: .6rem; max-width: 60rem; }
.suburbs span { font-size: .95rem; color: var(--ink); background: var(--panel); border-radius: var(--r-pill); padding: .5rem 1.1rem; }

/* Prose (article body) */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-family: var(--display); font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 2.5rem; }
.prose h3 { font-family: var(--heading); font-size: 1.35rem; margin-top: 2rem; }
.prose p, .prose li { font-size: 1.08rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose img { border-radius: var(--r); margin-block: 1.75rem; }
.prose blockquote { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.4; color: var(--ink); padding-block: 1rem; text-wrap: balance; }
.prose blockquote cite { display: block; font-family: var(--sans); font-style: normal; font-size: .95rem; font-weight: 600; color: var(--muted); margin-top: .8rem; }
.prose .lead { font-size: 1.25rem; color: var(--ink); }

/* At a glance / detail list */
.glance { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.glance li { display: grid; gap: .1rem; }
.glance .k { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.glance .v { color: var(--ink); font-weight: 500; }
.sticky { position: sticky; top: 6rem; }
@media (max-width: 920px) { .sticky { position: static; } }

/* Utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; } }
.sidebar-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 920px) { .sidebar-layout { grid-template-columns: 1fr; } }
.panel-box { background: var(--panel); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2rem); }
.panel-box.white { background: #fff; border: 1px solid var(--line); }

/* ---- MHT Reviews (mht-reviews plugin) brand skin ----
   Maps the plugin's portable --mhtr-* API onto the slate + Libre Caslon system.
   `body ` prefix guarantees these win over the plugin's neutral defaults. */
body .mhtr,
body .mhtr-summary {
	--mhtr-star:        var(--accent);       /* slate-blue stars, not SaaS gold */
	--mhtr-star-empty:  var(--line);
	--mhtr-card-bg:     #fff;
	--mhtr-card-border: var(--line);
	--mhtr-card-radius: var(--r);
	--mhtr-ink:         var(--ink);
	--mhtr-text:        var(--body);
	--mhtr-muted:       var(--muted);
	--mhtr-accent:      var(--char);         /* charcoal — avatar, quote mark, hover edge */
	--mhtr-on-accent:   var(--char-text);
	--mhtr-serif:       var(--heading);      /* Libre Caslon Text for names */
	--mhtr-gap:         clamp(1.5rem, 3vw, 2.25rem);
	--mhtr-shadow:      var(--shadow-sm);
	--mhtr-shadow-hover: 0 22px 50px oklch(24% 0.01 250 / .16);
	--mhtr-ease:        var(--ease);
}
/* Display serif for the headline average number. */
body .mhtr-summary__avg { font-family: var(--display); font-weight: 400; }

/* ---- Form pages: panel headings + note under a form ---- */
.contact-form h2,
.quote-form h2 { font-family: var(--heading); font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--accent-ink); text-decoration: none; font-weight: 600; }

/* ponytail: build-time placeholder for a form that is not wired up yet. Deliberately
   loud so it cannot ship unnoticed. Delete this rule once no .form-slot remains. */
.form-slot { border: 1.5px dashed var(--accent-ink); border-radius: var(--r-sm); padding: 1.25rem; background: var(--panel); font-size: .9rem; color: var(--muted); }
.form-slot p { margin: 0 0 .6rem; }
.form-slot p:last-child { margin-bottom: 0; }
.form-slot strong { display: block; color: var(--accent-ink); font-size: 1rem; margin-bottom: .6rem; }
.form-slot code { font-family: monospace; background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: .1rem .35rem; }

/* ---- Start a project: form sidebar ---- */
.side h3 { font-family: var(--heading); font-size: 1.3rem; margin-bottom: 1rem; }
.side .num-list { list-style: none; padding: 0; margin: 0 0 2rem; counter-reset: s; display: grid; gap: 1.1rem; }
.side .num-list li { counter-increment: s; display: flex; gap: .9rem; align-items: flex-start; font-size: .97rem; }
.side .num-list li::before { content: counter(s); flex: none; width: 1.8rem; height: 1.8rem; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-family: var(--display); font-size: .95rem; display: grid; place-items: center; }
.side .call { font-family: var(--display); font-size: 1.9rem; color: var(--ink); text-decoration: none; display: block; }
.side .call:hover { color: var(--accent-ink); }
.side-panel { margin-bottom: 1.5rem; }
.side-callback { border-top: 1px solid var(--line); padding-top: 1.25rem; }
.side-callback .k { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .4rem; }
.side-callback .v { font-size: .9rem; color: var(--muted); margin-top: .3rem; }
/* Sidebar trust card: single column, flat inside the panel stack. */
.side .trust-card { grid-template-columns: 1fr; box-shadow: none; }

/* ponytail: stylised location card, not a live map. Swap .map for an iframe embed if a
   real map is ever needed - the surrounding .loc frame stays as-is. */
.loc { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 2rem; }
.loc .map { aspect-ratio: 21/9; background:
		radial-gradient(circle at 30% 40%, oklch(90% 0.02 250) 0 2px, transparent 2px) 0 0/26px 26px,
		radial-gradient(circle at 70% 80%, oklch(90% 0.02 250) 0 2px, transparent 2px) 13px 13px/26px 26px,
		var(--panel);
	display: grid; place-items: center; position: relative; }
.loc .pin { text-align: center; }
.loc .pin .dot { width: 3rem; height: 3rem; border-radius: var(--r-pill); background: var(--ink); color: #fff; display: grid; place-items: center; margin: 0 auto .7rem; box-shadow: var(--shadow-sm); }
.loc .pin strong { font-family: var(--heading); color: var(--ink); font-size: 1.2rem; }
.loc-note { font-size: .92rem; color: var(--muted); margin-top: 1rem; }
