/* MazumaOne — brand: orange #FF7900, charcoal #303030 */
:root {
  --orange: #ff7900;
  --orange-ink: #c24f00;      /* AA-contrast orange for small text on white */
  --charcoal: #303030;
  --ink: #1f1f1f;
  --body: #4a4a4a;
  --muted: #6b6b6b;
  --line: #e6e3df;
  --bg: #ffffff;
  --bg-alt: #f6f4f1;
  --dark: #262626;   /* = the plate colour baked into logo-dark.png; keep equal */
  --dark-2: #2c2c2c;
  --radius: 14px;
  --wrap: 1180px;
  --head: "Nunito", ui-rounded, "Segoe UI", system-ui, sans-serif;
  --text: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--text); font-size: 17px; line-height: 1.65; color: var(--body); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-ink); }
h1, h2, h3 { font-family: var(--head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 800; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr-only, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; z-index: 100; background: var(--charcoal); color: #fff; padding: 8px 14px; border-radius: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4em; font-family: var(--head); font-weight: 800; font-size: 1.02rem;
  background: var(--orange); color: #1b1b1b; text-decoration: none; padding: .85em 1.5em; border-radius: 999px; border: 2px solid var(--orange);
  cursor: pointer; white-space: nowrap; transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.btn:hover { background: #ff8c24; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(255,121,0,.6); }
.btn-sm { padding: .55em 1.1em; font-size: .95rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: #fff; box-shadow: none; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); box-shadow: none; }
.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; box-shadow: none; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand img { width: 240px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav ul a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .93rem; white-space: nowrap; }
.site-nav ul a:hover { background: var(--bg-alt); }
.site-nav ul a[aria-current="page"] { color: var(--orange-ink); box-shadow: inset 0 -2px 0 var(--orange); border-radius: 0; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle .bar { display: block; width: 24px; height: 3px; border-radius: 2px; background: var(--charcoal); margin: 4px 0; transition: transform .2s, opacity .2s; }
@media (max-width: 1060px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 76px; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 12px; padding: 12px 24px 24px; display: none; box-shadow: 0 20px 30px -20px rgba(0,0,0,.25); }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; }
  .site-nav ul a { padding: 12px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .site-nav ul a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--orange); padding-left: 14px; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
}

/* eyebrow / ledes */
.eyebrow { font-family: var(--head); font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-ink); margin-bottom: .8em; }
.eyebrow-light { color: var(--orange); }
.lede { font-size: 1.18rem; max-width: 40em; }
.section-lede { font-size: 1.08rem; max-width: 46em; margin-bottom: 2em; }
.accent { color: var(--orange); }
.muted { color: #b9b9b9; }
.muted-light { color: #c9c9c9; margin-top: 1.4em; }
.muted-light a { color: var(--orange); font-weight: 600; }
.h-light { color: #fff; }
.link-strong { font-weight: 700; text-decoration: none; }
.link-strong:hover { text-decoration: underline; }

/* home hero */
.hero { background: radial-gradient(1200px 500px at 85% -10%, rgba(255,121,0,.12), transparent 60%), linear-gradient(#fff, var(--bg-alt)); padding: 80px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero .accent { display: inline-block; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding: 56px 0 64px; } }

/* hero mock storefront (pure CSS) */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.35), 0 0 0 8px rgba(48,48,48,.04); padding: 16px; transform: rotate(1.5deg); }
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.mock-bar span:first-child { background: var(--orange); }
.mock-ymm { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 8px; background: var(--charcoal); border-radius: 12px; padding: 10px; }
.mock-select { background: #fff; border-radius: 8px; padding: 6px 10px; font-size: .7rem; color: var(--muted); line-height: 1.3; }
.mock-select b { display: block; color: var(--ink); font-size: .8rem; }
.mock-go { background: var(--orange); border-radius: 8px; color: #1b1b1b; font-family: var(--head); font-weight: 800; font-size: .8rem; display: flex; align-items: center; padding: 0 12px; }
.mock-fit { margin: 12px 0; background: #eaf7ee; color: #1d6b36; border-radius: 8px; padding: 8px 12px; font-weight: 600; font-size: .85rem; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-card { border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.mock-card i { display: block; height: 70px; border-radius: 6px; background: linear-gradient(135deg, #efefef, #e2e2e2); margin-bottom: 8px; }
.mock-card em { display: block; height: 8px; width: 80%; background: #e5e5e5; border-radius: 4px; margin-bottom: 6px; }
.mock-card strong { display: block; height: 10px; width: 36%; background: var(--orange); border-radius: 4px; opacity: .85; }
@media (max-width: 520px) { .mock-ymm { grid-template-columns: 1fr 1fr; } .mock-go { justify-content: center; padding: 8px; } }

/* sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.band { padding: 64px 0; }
.band-dark { background: var(--dark); }
@media (max-width: 700px) { .section { padding: 60px 0; } }

.chips { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-family: var(--head); font-weight: 800; color: #fff; background: var(--dark-2); border: 1px solid #3d3d3d; border-radius: 999px; padding: 10px 18px; }

/* cards */
.cards { display: grid; gap: 20px; }
.cards-5 { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; }
.card p { font-size: .96rem; flex: 1; }
.card-link { text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card-link:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 18px 40px -22px rgba(0,0,0,.35); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--charcoal); display: grid; place-items: center; margin-bottom: 18px; }
.card-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.more { font-family: var(--head); font-weight: 800; color: var(--orange-ink); font-size: .95rem; white-space: nowrap; }
.more::after { content: " \2192"; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding: 14px 16px 14px 50px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.checklist li::before { content: ""; position: absolute; left: 16px; top: 16px; width: 20px; height: 20px; border-radius: 50%; background: var(--orange)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3 3 7-7' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; }
.checklist strong { color: var(--ink); }
.checklist-tight li { padding: 10px 12px 10px 44px; font-size: .95rem; }
.checklist-tight li::before { left: 12px; top: 12px; }

.steps { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.step-n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--orange); color: #1b1b1b; font-family: var(--head); font-weight: 900; font-size: 1.3rem; margin-bottom: 14px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; border-top: 4px solid var(--orange); }
.feature p { margin: 0; font-size: .97rem; }
@media (max-width: 960px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }

.dist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dist { background: var(--dark); border-radius: var(--radius); padding: 24px 22px; }
.dist h3 { color: #fff; font-size: 1.1rem; }
.dist p { color: #bdbdbd; margin: 0; font-size: .93rem; }
.dist-more { background: var(--orange); }
.dist-more h3, .dist-more p { color: #1b1b1b; }
@media (max-width: 980px) { .dist-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .dist-grid { grid-template-columns: 1fr; } }

/* interior hero */
.page-hero { background: radial-gradient(900px 420px at 90% 0%, rgba(255,121,0,.22), transparent 60%), var(--dark); color: #d6d6d6; padding: 88px 0 80px; }
.page-hero h1 { color: #fff; max-width: 16em; }
.page-hero-short { padding: 70px 0 60px; }

/* CTA band */
.cta-band { background: var(--orange); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #1b1b1b; margin-bottom: .25em; }
.cta-band p { color: #2b2b2b; margin: 0; font-size: 1.08rem; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } .contact-form { padding: 20px; } }
.contact-form label { display: grid; gap: 6px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.contact-form input, .contact-form textarea { font: inherit; font-weight: 400; color: var(--ink); padding: 12px 14px; border: 1.5px solid #d6d2cc; border-radius: 10px; background: #fff; width: 100%; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(255,121,0,.2); }
.contact-form fieldset { border: 0; padding: 0; margin: 0; }
.contact-form legend { font-weight: 600; color: var(--ink); font-size: .95rem; margin-bottom: 8px; }
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.checks label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; padding: 8px 14px; border: 1.5px solid #d6d2cc; border-radius: 999px; cursor: pointer; }
.checks label:has(input:checked) { border-color: var(--orange); background: #fff4ea; }
.checks input { width: auto; accent-color: var(--orange); }
.req { color: var(--orange-ink); }
.form-status { margin: 0; font-weight: 600; min-height: 1.5em; }
.form-status.ok { color: #1d6b36; }
.form-status.err { color: #b3261e; }
.contact-aside h2 { font-size: 1.25rem; margin-top: 0; }
.contact-aside p { margin-bottom: 1.8em; font-size: 1.1rem; }

/* footer */
.site-footer { background: var(--dark); color: #bdbdbd; padding: 64px 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid img { width: 220px; margin-bottom: 16px; }
.footer-h { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { color: #d6d6d6; text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-base { border-top: 1px solid #363636; margin-top: 48px; padding: 22px 24px 28px; font-size: .85rem; color: #8f8f8f; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }
