/* Circle Contracting. One stylesheet, no build step. Ivory, espresso and bronze, taken from the logo. */

:root {
  color-scheme: light;
  --bg: #F7F4EF;          /* ivory */
  --surface: #FFFFFF;
  --alt: #EFE9DF;
  --ink: #1C1A17;
  --muted: #5E574C;
  --line: #E0D8CA;
  --brand: #2A241C;       /* espresso */
  --brand-ink: #F7F4EF;
  --accent: #8A6230;      /* bronze; 5.4:1 against white */
  --accent-hover: #6F4E25;
  --gold: #D4B27A;        /* for text on espresso */
  --star: #D99A1E;
  --radius: 6px;
  --wrap: 1160px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem); color: var(--brand); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: var(--surface); padding: 8px 12px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px;
  background: var(--accent); color: #fff;
  border: 2px solid var(--accent); border-radius: var(--radius);
  font: 700 1rem/1 var(--font); text-decoration: none; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: .95rem; }
.text-link { font-weight: 700; text-underline-offset: 3px; }
.fine { font-size: .9rem; color: var(--muted); }
.stars { color: var(--star); letter-spacing: 2px; }

/* Header */
.top {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.top-row { display: flex; align-items: center; gap: 24px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; color: var(--brand); }
.brand img { width: 44px; height: 44px; flex: none; }
.brand span { white-space: nowrap; }
.nav { display: none; margin-left: auto; gap: 22px; }
.nav a { text-decoration: none; font-weight: 500; color: var(--muted); white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.top .btn-small { margin-left: auto; white-space: nowrap; }
/* Phones already have the call bar at the bottom; a second number up here just crowds the name. */
@media (max-width: 559px) { .top .btn-small { display: none; } }
@media (min-width: 1100px) {
  .nav { display: flex; }
  .top .btn-small { margin-left: 8px; }
}

/* Hero */
.hero { padding: 36px 0 48px; }
.hero-grid { display: grid; gap: 32px; align-items: center; }
.eyebrow { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.hero h1 { font-size: clamp(2.4rem, 4.4vw + 1rem, 4.2rem); max-width: 12ch; color: var(--brand); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 34em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 20px; }
@media (max-width: 559px) { .cta-row .btn { width: 100%; } }
.rating { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: .95rem; color: var(--muted); }
.rating strong { color: var(--ink); }
.rating:hover span:last-child { text-decoration: underline; text-underline-offset: 3px; }
.hero-media { margin: 0; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--alt); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; }
}

/* Promises */
.promises { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.promise-grid { list-style: none; margin: 0 auto; display: grid; }
.promise-grid li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.promise-grid li:last-child { border-bottom: 0; }
.promise-grid strong { display: block; font-weight: 800; color: var(--brand); margin-bottom: 2px; }
.promise-grid span { color: var(--muted); font-size: .95rem; }
@media (min-width: 700px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .promise-grid li:nth-last-child(2) { border-bottom: 0; }
}
@media (min-width: 1000px) {
  .promise-grid { grid-template-columns: repeat(4, 1fr); }
  .promise-grid li { border-bottom: 0; padding: 28px 0; }
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--alt); }
.section-dark { background: var(--brand); color: var(--brand-ink); }
.section-dark h2 { color: var(--brand-ink); }
.section-head { max-width: 40em; margin-bottom: 28px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
@media (min-width: 900px) { .section { padding: 96px 0; } }

/* Gallery */
.chips { display: flex; gap: 8px; overflow-x: auto; margin: 0 -20px 20px; padding: 0 20px 6px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chips button {
  flex: none; min-height: 40px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
  font: 500 .95rem/1 var(--font); color: var(--ink); cursor: pointer;
}
.chips button[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.gallery figure { margin: 0; }
.gallery figure[hidden] { display: none; }
/* Nine photos first; the rest behind a button. site.js adds .collapsed, so without JS every photo shows. */
.gallery.collapsed figure:nth-child(n+10) { display: none; }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; background: var(--alt); }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.03); }
.gallery figcaption { font-size: .9rem; color: var(--muted); padding: 8px 2px 0; line-height: 1.35; }
.more-row { margin: 28px 0 0; text-align: center; }

/* Services */
.services { display: grid; gap: 16px; }
@media (min-width: 800px) { .services { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1100px) { .services-3 { grid-template-columns: repeat(3, 1fr); } }
.service { background: var(--surface); border-radius: var(--radius); padding: 28px 24px; border-top: 4px solid var(--accent); }
.service h3 { color: var(--brand); font-size: 1.5rem; }
.service ul { list-style: none; margin: 0 0 16px; padding: 0; }
.service li { padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); position: relative; }
.service li:last-child { border-bottom: 0; }
.service li::before { content: ""; position: absolute; left: 2px; top: 1.05em; width: 8px; height: 8px; background: var(--accent); }
.service .fine { margin: 0; }
@media (min-width: 900px) { .service { padding: 36px 36px 32px; } }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; counter-reset: step; }
.steps li { counter-increment: step; border-top: 1px solid rgba(247, 244, 239, .25); padding-top: 20px; }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; font-weight: 800; color: var(--gold); margin-bottom: 8px; font-size: .95rem; letter-spacing: .05em; }
.steps p { color: #D3CCC0; margin: 0; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* Reviews */
.reviews { display: grid; gap: 32px; align-items: center; }
.reviews > div > p { color: var(--muted); max-width: 34em; }
.score { background: var(--surface); border-radius: var(--radius); padding: 28px; text-align: center; border: 1px solid var(--line); }
.score p { margin: 0; color: var(--muted); }
.score .score-num { font-size: 4rem; font-weight: 800; line-height: 1; color: var(--brand); letter-spacing: -0.03em; }
.score .stars { font-size: 1.5rem; margin: 6px 0; color: var(--star); }
.quote { margin: 0 0 20px; padding: 20px 22px; background: var(--surface); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.quote p { margin: 0 0 8px; color: var(--ink); }
.quote footer { font-size: .9rem; color: var(--muted); }
.review-links { margin-top: 20px; }
@media (min-width: 800px) { .reviews { grid-template-columns: 260px 1fr; gap: 64px; } }

/* Area */
.two-col { display: grid; gap: 36px; }
.two-col > div > p { color: var(--muted); max-width: 34em; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 80px; } }
.suburbs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; align-content: start; }
.suburbs li { padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
@media (min-width: 560px) { .suburbs { grid-template-columns: repeat(3, 1fr); } }

/* About */
.about { display: grid; gap: 24px; align-items: center; }
.about p { color: var(--muted); max-width: 38em; }
.about-logo { width: 112px; height: 112px; }
@media (min-width: 800px) { .about { grid-template-columns: 180px 1fr; gap: 56px; } .about-logo { width: 180px; height: 180px; } }

/* Values (home page) */
.values { display: grid; gap: 16px; }
@media (min-width: 700px) { .values { grid-template-columns: 1fr 1fr; gap: 24px; } }
.value { border-top: 2px solid var(--brand); padding-top: 18px; }
.value h3 { color: var(--brand); }
.value p { color: var(--muted); margin: 0; }
.page-links { display: grid; gap: 12px; margin-top: 40px; }
@media (min-width: 800px) { .page-links { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.page-link {
  display: block; padding: 22px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); text-decoration: none;
  transition: border-color .15s;
}
.page-link:hover { border-color: var(--accent); }
.page-link strong { display: block; color: var(--brand); font-size: 1.1rem; margin-bottom: 4px; }
.page-link span { color: var(--muted); font-size: .95rem; }
.page-link::after { content: "Read more →"; display: block; margin-top: 10px; font-weight: 700; color: var(--accent); font-size: .95rem; }
.service-more { margin: 14px 0 0; }

/* Article pages (How we tile, Bathrooms, Builders) */
.article { max-width: 760px; }
.article .eyebrow a { text-decoration: none; }
.article h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); color: var(--brand); }
.article h2 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem); margin-top: 2.2em; }
.article h3 { margin-top: 1.6em; color: var(--brand); }
.article p, .article li { color: #3E3931; }
.article ul, .article ol { padding-left: 1.2em; }
.article li { margin-bottom: 6px; }
.article a:not(.btn) { color: var(--accent); text-underline-offset: 3px; }
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 28px 0; }
.toc p { margin: 0 0 8px; font-weight: 700; color: var(--ink); }
.toc ol { margin: 0; columns: 2; column-gap: 28px; }
@media (max-width: 559px) { .toc ol { columns: 1; } }
.callout { background: var(--alt); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 24px 0; }
.callout p { margin: 0; }
.photo-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.photo-row figure { margin: 0; }
.photo-row img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.photo-row figcaption { font-size: .88rem; color: var(--muted); padding-top: 6px; line-height: 1.35; }
@media (min-width: 700px) { .photo-row.three { grid-template-columns: repeat(3, 1fr); } }
.table-wrap { overflow-x: auto; margin: 20px 0; }
.spec { width: 100%; border-collapse: collapse; font-size: .95rem; background: var(--surface); border-radius: var(--radius); }
.spec th, .spec td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec th { background: var(--brand); color: var(--brand-ink); font-weight: 700; }
.spec td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
@media (max-width: 559px) { .spec td:first-child { white-space: normal; } }
.glossary dt { font-weight: 800; color: var(--brand); margin-top: 16px; }
.glossary dd { margin: 4px 0 0; color: #3E3931; }
.sources { font-size: .9rem; color: var(--muted); border-top: 1px solid var(--line); margin-top: 48px; padding-top: 20px; }
.sources li, .sources p { color: var(--muted); }
.article-cta { background: var(--brand); color: var(--brand-ink); border-radius: var(--radius); padding: 28px 24px; margin-top: 48px; }
.article-cta h2 { color: var(--brand-ink); margin-top: 0; }
.article-cta p { color: #D3CCC0; }
.article-cta .btn-ghost { color: var(--brand-ink); border-color: rgba(247, 244, 239, .7); }
.article-cta .btn-ghost:hover { background: var(--brand-ink); color: var(--brand); }

/* Projects page */
.glance { list-style: none; margin: 32px 0 8px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.glance li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.glance strong { display: block; color: var(--brand); font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; }
.glance span { color: var(--muted); font-size: .9rem; }
@media (min-width: 900px) { .glance { grid-template-columns: repeat(4, 1fr); } }
.projects-h { margin: 56px 0 20px; }
.projects { display: grid; gap: 16px; }
@media (min-width: 800px) { .projects { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1100px) { .projects { grid-template-columns: repeat(3, 1fr); } }
.project { background: var(--surface); border-radius: var(--radius); padding: 22px 22px 18px; border-top: 4px solid var(--accent); }
.project h3 { color: var(--brand); margin-bottom: 4px; }
.project p { color: var(--muted); margin: 0 0 8px; }
.project-meta { font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent) !important; }
.project-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: -6px -6px 16px; }
.project-photos img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }

/* Top bar: desktop only; phones have the call bar */
.topbar { display: none; background: var(--brand); color: #D3CCC0; font-size: .85rem; }
.topbar a { color: var(--brand-ink); text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }
.topbar-row { display: flex; justify-content: space-between; gap: 16px; min-height: 36px; align-items: center; }
@media (min-width: 800px) { .topbar { display: block; } }

/* Trust badges under the hero buttons */
.trust { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .92rem; color: var(--muted); }
.trust li { display: flex; align-items: center; gap: 6px; }
.trust li:not(.trust-rating)::before { content: "\2713"; color: var(--accent); font-weight: 800; }
.trust a { text-decoration: none; color: var(--muted); }
.trust a:hover strong { text-decoration: underline; text-underline-offset: 3px; }
.trust strong { color: var(--ink); }
.trust-rating { flex-basis: 100%; }

/* Service cards */
.svc-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.svc { display: grid; grid-template-columns: 110px 1fr; background: var(--surface); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid var(--line); transition: border-color .15s, transform .15s; }
.svc:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc img { width: 100%; height: 100%; object-fit: cover; min-height: 120px; }
.svc-body { padding: 16px 18px; display: grid; align-content: center; gap: 4px; }
.svc-body strong { color: var(--brand); font-size: 1.05rem; }
.svc-body span { color: var(--muted); font-size: .92rem; line-height: 1.45; }
@media (min-width: 560px) {
  .svc { grid-template-columns: 1fr; }
  .svc img { aspect-ratio: 16 / 10; height: auto; min-height: 0; }
}

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 28px 16px 0; list-style: none; position: relative; color: var(--brand); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.4rem; color: var(--accent); font-weight: 500; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); margin: 0 0 16px; }
.faq a { color: var(--accent); }

/* Founder quote */
.founder { margin: 24px 0 0; padding: 20px 24px; background: var(--alt); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.founder p { color: var(--ink) !important; font-size: 1.1rem; font-weight: 500; margin: 0 0 8px; }
.founder footer { color: var(--muted); font-size: .9rem; font-weight: 700; }

/* Form extras */
.form-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.opt { font-weight: 400; color: var(--muted); }
.photos { border: 0; margin: 0; padding: 0; display: grid; gap: 8px; }
.photos legend { font-weight: 700; font-size: .95rem; margin-bottom: 6px; padding: 0; }

/* Footer */
.foot-grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; } }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot a { text-decoration: none; }
.foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot-brand { display: flex; align-items: center; gap: 10px; color: var(--bg); font-weight: 800; font-size: 1.1rem; }
.foot-h { color: var(--gold); font-weight: 800; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.foot-small { font-size: .88rem; }
.foot-base { border-top: 1px solid rgba(247, 244, 239, .15); margin-top: 32px; padding-top: 18px; font-size: .85rem; }
.foot-base p { margin: 0; }

/* Hourly rates page */
.rates { max-width: 900px; }
.rates .eyebrow a { text-decoration: none; }
.rates h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); color: var(--brand); max-width: 16ch; }
.rate-cards { display: grid; gap: 16px; margin: 32px 0 40px; }
@media (min-width: 700px) { .rate-cards { grid-template-columns: 1fr 1fr; gap: 24px; } }
.rate { background: var(--surface); border-radius: var(--radius); padding: 26px 24px; border-top: 4px solid var(--accent); }
.rate h2 { font-size: 1.4rem; margin-bottom: 8px; }
.rate-price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--brand); margin: 0 0 6px; }
.rate-price span { font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.rate-gst { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.rate ul { list-style: none; margin: 0; padding: 0; }
.rate li { padding: 9px 0 9px 20px; border-top: 1px solid var(--line); position: relative; color: var(--muted); }
.rate li::before { content: ""; position: absolute; left: 2px; top: 1.05em; width: 7px; height: 7px; background: var(--accent); }
.rates-h { font-size: 1.5rem; }
.rates-terms { margin: 0 0 32px; padding-left: 1.2em; color: var(--muted); }
.rates-terms li { margin-bottom: 8px; }
.rates-terms strong { color: var(--ink); }
.rates-note { background: var(--alt); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 28px; }
.rates-note p { color: var(--muted); }
.rates-note p:last-child { margin: 0; }
.rates-note strong { color: var(--ink); }
.small-jobs { margin: 24px 0 0; color: var(--muted); }
.foot-links { margin-top: 6px; }

/* Contact */
.contact-list { list-style: none; margin: 24px 0 16px; padding: 0; display: grid; gap: 12px; max-width: 320px; }
.contact-list .btn { width: 100%; }
.contact-list .text-link { display: inline-block; padding: 8px 0; }

.form { background: var(--surface); border-radius: var(--radius); padding: 24px; display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-weight: 700; font-size: .95rem; }
.form input, .form select, .form textarea {
  width: 100%; min-height: 48px; padding: 10px 12px;
  font: 400 1rem/1.4 var(--font); color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
}
.form input[type="file"] { padding: 10px; background: transparent; }
.form textarea { resize: vertical; }
.form .btn { width: 100%; }
.form .fine { margin: 0; }
.hp { position: absolute; left: -9999px; }
@media (min-width: 900px) { .form { padding: 32px; } }

/* Footer */
.foot { background: var(--ink); color: #BDB6AA; padding: 40px 0 110px; font-size: .95rem; }
.foot strong { color: var(--bg); }
.foot a { color: var(--bg); }
.foot-row { display: grid; gap: 20px; }
@media (min-width: 800px) { .foot-row { grid-template-columns: repeat(3, 1fr); } .foot { padding-bottom: 48px; } }

/* Call bar: phones only. Most people who land here are one tap from calling. */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--brand); padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
}
.callbar a {
  display: flex; align-items: center; justify-content: center; min-height: 50px;
  border-radius: var(--radius); text-decoration: none; font-weight: 800; color: #fff; background: var(--accent);
}
.callbar a + a { background: transparent; border: 2px solid rgba(247, 244, 239, .6); }
@media (min-width: 800px) { .callbar { display: none; } }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw); max-height: 92vh; overflow: visible; }
.lightbox::backdrop { background: rgba(20, 18, 15, .9); }
.lightbox img { max-height: 82vh; width: auto; margin: 0 auto; border-radius: var(--radius); }
.lightbox p { color: #E8E3DA; text-align: center; margin: 12px 0 0; font-size: .95rem; }
.lb-close {
  position: absolute; top: -48px; right: 0; width: 44px; height: 44px;
  border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery img { transition: none; }
}
