/* Bright1 Domains — site stylesheet
   Matched to the bright1.au storefront: Montserrat, storefront blue #00a1ef, square corners.
   Edit the tokens below to retheme the whole site. */
:root {
  --ink: #0f4b94;        /* logo blue — headings */
  --text: #484848;       /* storefront body text */
  --muted: #6b7378;      /* secondary copy */
  --line: #e5e5ec;       /* storefront rules/borders */
  --bg: #ffffff;         /* page ground (storefront is white) */
  --tint: #f0f5fb;       /* light blue panels */
  --panel: #ffffff;
  --accent: #00a1ef;     /* storefront blue — buttons, links */
  --accent-dark: #0086c8;
  --orange: #f7931e;     /* logo orange — small highlights only */
  --navy: #0f4b94;       /* deep band sections */
  --navy-2: #1565c0;
  --navy-text: #e8f1fb;
  --ok: #2e9e5b;
  --max: 1140px;
  --shadow: 0 2px 6px rgba(15,75,148,.08), 0 12px 32px rgba(15,75,148,.10);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #eaf2ff; --text: #d3dbe4; --muted: #98a4b0; --line: #2a3644;
    --bg: #0f1722; --tint: #16212e; --panel: #16212e; --accent: #2bb3f5; --accent-dark: #59c4f8;
    --navy: #0a1f3c; --navy-2: #12325c; --navy-text: #dbe6f3; --ok: #6fd095;
    --shadow: 0 2px 6px rgba(0,0,0,.4), 0 12px 32px rgba(0,0,0,.35);
  }
}
:root[data-theme="dark"] {
  --ink: #eaf2ff; --text: #d3dbe4; --muted: #98a4b0; --line: #2a3644;
  --bg: #0f1722; --tint: #16212e; --panel: #16212e; --accent: #2bb3f5; --accent-dark: #59c4f8;
  --navy: #0a1f3c; --navy-2: #12325c; --navy-text: #dbe6f3; --ok: #6fd095;
  --shadow: 0 2px 6px rgba(0,0,0,.4), 0 12px 32px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
body { margin: 0; background: var(--bg); color: var(--text); font: 15px/1.7 "Montserrat", "Segoe UI", system-ui, sans-serif; }
h1, h2, h3 { font-family: "Montserrat", "Segoe UI", system-ui, sans-serif; color: var(--ink); line-height: 1.2; text-wrap: balance; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; max-width: 62ch; }
a { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 20px; }
.eyebrow { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .7em; }
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }
.note { font-size: .86rem; color: var(--muted); }

/* Header — mirrors the storefront: white, 65px, thin rule */
.site-header { background: var(--panel); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 65px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { display: block; height: 46px; width: auto; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--text); padding: 8px 12px; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid transparent; }
nav a:hover, nav a[aria-current="page"] { color: var(--accent); }
nav a[aria-current="page"] { border-bottom-color: var(--accent); }
nav a:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* Buttons — storefront style: square, uppercase, weight 600, storefront blue */
.btn { display: inline-block; padding: 12px 22px; border-radius: 0; font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--accent); background: var(--accent); color: #fff; cursor: pointer; font-family: inherit; transition: background .15s ease, border-color .15s ease, transform .12s ease; }
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn.orange:hover { background: #e07f0e; border-color: #e07f0e; }
nav .btn { padding: 9px 16px; margin-left: 8px; border-bottom: 2px solid var(--accent); }
nav .btn:hover { color: #fff; }

/* Hero */
.hero-wrap { background: #fff; border-bottom: 1px solid var(--line); }
.hero { padding-block: 56px 48px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { max-width: 420px; width: 100%; }
.hero-art.fan img { max-width: 560px; }

/* Existing customer strip */
.customer-strip { padding-block: 0; }
.customer-card { background: var(--panel); border: 1px solid var(--line); border-top: 4px solid var(--orange); box-shadow: var(--shadow); padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: -32px; position: relative; }
.customer-card h3 { margin-bottom: 4px; }
.customer-card p { margin: 0; color: var(--muted); max-width: 60ch; font-size: .95rem; }
.customer-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sections */
section { padding-block: 56px; }
.tinted { background: var(--tint); }
.band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--navy-text); }
.band h2, .band h3 { color: #fff; }
.band p { color: var(--navy-text); }
.band .eyebrow { color: #7fd3ff; }
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: 26px 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow); }
.card .icon { height: 64px; display: flex; align-items: center; margin-bottom: 8px; }
.card .icon img { height: 64px; width: auto; }
.card .icon.glyph { width: 64px; justify-content: center; font-size: 1.6rem; font-weight: 700; color: var(--accent); background: var(--tint); }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
.card a.more { margin-top: auto; padding-top: 12px; font-weight: 700; text-decoration: none; font-size: .9rem; }
.band .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); border-top-color: var(--orange); box-shadow: none; }
.band .card p { color: var(--navy-text); }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img.art { width: 100%; max-width: 480px; justify-self: center; }
.art-panel { background: #fff; padding: 18px; justify-self: center; box-shadow: var(--shadow); border-top: 4px solid var(--orange); }
.art-panel img { display: block; width: 100%; max-width: 420px; }
.checklist { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.checklist li { padding-left: 30px; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .3em; width: 18px; height: 18px; background: var(--ok); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23000'/%3E%3Cpath d='M5.5 10.5l3 3 6-7' stroke='%23fff' stroke-width='2.2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23000'/%3E%3Cpath d='M5.5 10.5l3 3 6-7' stroke='%23fff' stroke-width='2.2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat; }
.band .checklist li::before { background: #7fd3ff; }

/* Portfolio */
.portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px; }
.work { background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; text-decoration: none; color: inherit; overflow: hidden; transition: transform .2s ease; }
.work:hover { transform: translateY(-3px); }
.work img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top; border-bottom: 3px solid var(--accent); }
.work .cap { padding: 16px 18px 18px; }
.work .cap h3 { margin-bottom: 2px; font-size: 1rem; }
.work .cap p { margin: 0; color: var(--muted); font-size: .88rem; }
.work .cap .tag { display: inline-block; margin-top: 8px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--accent); }

/* Steps */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step::before { counter-increment: step; content: counter(step); font-weight: 700; font-size: .9rem; display: inline-grid; place-items: center; width: 34px; height: 34px; background: var(--orange); color: #fff; margin-bottom: 12px; }
.step p { font-size: .95rem; }
.band .step p { color: var(--navy-text); opacity: .9; }

/* FAQ */
details { border-top: 1px solid var(--line); padding: 14px 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; color: var(--muted); }

/* Testimonial */
blockquote { margin: 0; background: var(--tint); border-left: 4px solid var(--orange); padding: 20px 24px; font-size: 1.02rem; max-width: 62ch; font-style: italic; }
blockquote footer { color: var(--muted); font-size: .88rem; margin-top: 8px; font-style: normal; }

/* Forms */
form.contact { display: grid; gap: 16px; max-width: 620px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .88rem; color: var(--ink); }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; font: inherit; background: var(--panel); color: var(--text); width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-aside { background: var(--tint); border-top: 3px solid var(--accent); padding: 24px; }
.contact-aside dl { margin: 0; display: grid; gap: 10px; }
.contact-aside dt { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-aside dd { margin: 0 0 4px; }

/* CTA strip */
.cta-strip { background: var(--accent); color: #fff; padding-block: 34px; }
.cta-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-strip p { margin: 0; color: #fff; font-size: 1.05rem; }
.cta-strip .btn { background: #fff; color: var(--accent-dark); border-color: #fff; }
.cta-strip .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Footer */
.site-footer { padding-block: 32px; background: var(--tint); border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero, .split { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-block: 40px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 300px; }
  .portfolio { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; padding-block: 12px; }
  nav a { padding: 6px 8px; font-size: .78rem; }
  nav .btn { margin-left: 0; }
  .customer-card { margin-top: 0; }
}

/* Stat panel (why it matters) */
.stat-panel { background: #fff; color: #484848; padding: 26px 28px 20px; box-shadow: var(--shadow); border-top: 4px solid var(--orange); justify-self: center; width: 100%; max-width: 460px; }
.stat-panel .eyebrow { color: #0086c8; }
.stat-panel h3 { color: #0f4b94; margin-bottom: 14px; }
.stat-panel p { color: #484848; }
.bar { display: flex; height: 44px; font-size: .8rem; font-weight: 600; color: #fff; overflow: hidden; }
.bar span { display: flex; align-items: center; padding-inline: 12px; white-space: nowrap; }
.bar span b { font-size: 1.05rem; margin-right: 6px; }
.bar .no { background: #f7931e; }
.bar .yes { background: #00a1ef; }
.bar-note { font-size: .74rem; color: #6b7378; margin: 8px 0 18px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; border-top: 1px solid #e5e5ec; padding-top: 16px; }
.stats b { display: block; font-size: 1.7rem; color: #0f4b94; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stats span { display: block; font-size: .74rem; color: #6b7378; line-height: 1.4; margin-top: 4px; }
.sources { font-size: .68rem; color: #9aa3a9; margin: 16px 0 0; }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; } .bar span { padding-inline: 8px; } }
