/* ==========================================================================
   CantWork — cantwork.com.au
   Brand: Australian work health & safety aesthetic
   Safety orange + charcoal + warm white, hazard-stripe accents
   ========================================================================== */

:root {
  /* Brand colours */
  --orange:      #F15A0C;   /* safety orange — primary */
  --orange-deep: #C7430A;   /* hover / pressed */
  --orange-soft: #FFE7D6;   /* tint backgrounds */
  --hivis:       #FFD400;   /* hazard yellow — sparing accent */
  --ink:         #18171A;   /* near-black headings */
  --charcoal:    #232227;   /* dark panels */
  --body:        #423E3A;   /* warm body copy */
  --muted:       #6E685F;   /* secondary text */
  --cream:       #FCFAF6;   /* page background */
  --panel:       #FFFFFF;   /* cards */
  --panel-2:     #F4F1EA;   /* alt section */
  --line:        #E7E1D7;   /* borders */
  --good:        #1E7A4D;   /* positive */

  /* Type */
  --display: "Archivo", system-ui, sans-serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow: 0 1px 2px rgba(24,23,26,.04), 0 10px 30px -12px rgba(24,23,26,.18);
  --shadow-lg: 0 30px 60px -24px rgba(24,23,26,.30);
  --maxw: 1180px;

  /* Hazard stripe (reusable) */
  --hazard: repeating-linear-gradient(135deg,
      var(--ink) 0 14px, var(--orange) 14px 28px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; font-size: .72rem; color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 8px; background: var(--hazard); border-radius: 2px; }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: .85em 1.4em; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  letter-spacing: .01em; white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(241,90,12,.7); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Top utility bar ------------------------------------------------------- */
.utility {
  background: var(--charcoal); color: #d9d4cc; font-size: .82rem;
  font-family: var(--display); font-weight: 600; letter-spacing: .02em;
}
.utility .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.utility a { color: #d9d4cc; display: inline-flex; align-items: center; gap: 7px; }
.utility a:hover { color: #fff; }
.utility .u-left { display: flex; gap: 22px; }
.utility .u-left a::before { content: "›"; color: var(--orange); font-weight: 800; }
.utility .u-phone { color: var(--hivis); }

/* Header / nav ---------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(252,250,246,.9); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(24,23,26,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; border-radius: 11px; background: var(--orange); position: relative; overflow: hidden; flex: none; box-shadow: 0 6px 16px -8px rgba(241,90,12,.8); }
.brand-mark::before { content: ""; position: absolute; inset: 0; background: var(--hazard); opacity: .9; clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0 100%); }
.brand-mark::after { content: "?"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 900; color: #fff; font-size: 1.3rem; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.brand-name b { color: var(--orange); }
.brand-tag { display: block; font-family: var(--sans); font-weight: 600; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a, .menu > li > button {
  font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink);
  padding: 10px 14px; border-radius: 9px; background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.menu > li > a:hover, .menu > li > button:hover { background: var(--panel-2); color: var(--orange-deep); }
.caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s; }
.has-drop:hover .caret { transform: rotate(225deg); margin-top: 2px; }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 320px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; list-style: none; margin: 0;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 13px; border-radius: 9px; }
.dropdown a:hover { background: var(--orange-soft); }
.dropdown a strong { display: block; font-family: var(--display); color: var(--ink); font-size: .95rem; }
.dropdown a span { font-size: .82rem; color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: var(--ink); border: 0; width: 46px; height: 42px; border-radius: 10px; cursor: pointer; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 12px; width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: .25s; }
.nav-toggle span { top: 20px; } .nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hazard rule ----------------------------------------------------------- */
.hazard-rule { height: 8px; background: var(--hazard); }

/* Hero ------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 100px); }
.hero::before { content: ""; position: absolute; top: -120px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(241,90,12,.14), transparent 65%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 800; letter-spacing: -.03em; }
.hero h1 .hl { color: var(--orange); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: var(--hivis); z-index: -1; opacity: .85; transform: skewX(-12deg); }
.hero-lead { font-size: 1.18rem; color: var(--body); max-width: 32em; margin: 1.3rem 0 1.6rem; }
.checklist { list-style: none; margin: 0 0 1.9rem; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink); }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 7px; background: var(--orange); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: .9rem; margin-top: 1px; box-shadow: 0 6px 14px -8px rgba(241,90,12,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-card .hc-top { background: var(--charcoal); color: #fff; padding: 20px 24px; display: flex; align-items: center; gap: 12px; }
.hero-card .hc-top .vest { width: 34px; height: 34px; border-radius: 8px; background: var(--hivis); display: grid; place-items: center; color: var(--ink); font-weight: 900; }
.hero-card .hc-top h3 { color: #fff; font-size: 1.12rem; }
.hero-card ul { list-style: none; margin: 0; padding: 8px 8px 14px; }
.hero-card li a { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 11px; font-weight: 600; color: var(--ink); transition: background .15s; }
.hero-card li a:hover { background: var(--orange-soft); }
.hero-card li a .ic { flex:none; width:34px; height:34px; border-radius:9px; background:var(--hivis); color:var(--ink); display:grid; place-items:center; }
.hero-card li a .ic svg { width:19px; height:19px; }
.hero-card li a .arr { margin-left: auto; color: var(--orange); font-weight: 900; }
.hero-badges { display: flex; gap: 10px; padding: 0 16px 18px; }
.hero-badges .b { flex: 1; background: var(--panel-2); border-radius: 11px; padding: 12px; text-align: center; }
.hero-badges .b b { display: block; font-family: var(--display); font-size: 1.25rem; color: var(--orange-deep); }
.hero-badges .b span { font-size: .76rem; color: var(--muted); }

/* Value strip ----------------------------------------------------------- */
.values { background: var(--charcoal); color: #e8e3da; }
.values .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 54px 24px; }
.value h3 { color: #fff; font-size: 1.22rem; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.value h3 .v-ic { width: 40px; height: 40px; flex: none; border-radius: 10px; background: rgba(241,90,12,.18); border: 1px solid rgba(241,90,12,.4); color: var(--orange); display: grid; place-items: center; font-size: 1.2rem; }
.value p { color: #b7b1a7; margin: 0; font-size: .96rem; }

/* Section scaffolding --------------------------------------------------- */
section { padding: clamp(56px, 8vw, 104px) 0; }
.section-alt { background: var(--panel-2); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; margin: 16px 0 14px; }
.section-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }

/* Steps ----------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; position: relative; box-shadow: var(--shadow); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-weight: 900; font-size: 3.4rem; color: var(--orange-soft); position: absolute; top: 14px; right: 20px; line-height: 1; }
.step .s-ic { width: 52px; height: 52px; border-radius: 13px; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; box-shadow: 0 10px 20px -10px rgba(241,90,12,.9); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* About ----------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-grid p { font-size: 1.06rem; }
.about-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.about-panel { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 36px; position: relative; overflow: hidden; }
.about-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--hazard); }
.about-panel h3 { color: #fff; font-size: 1.2rem; margin: 8px 0 18px; }
.about-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.about-panel li { display: flex; gap: 12px; align-items: flex-start; color: #d9d4cc; font-size: .98rem; }
.about-panel li::before { content: "→"; color: var(--orange); font-weight: 900; flex: none; }

/* Pathway cards --------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .c-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--orange); display: grid; place-items: center; margin-bottom: 18px; }
.card .c-ic svg { width:28px; height:28px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0 0 16px; }
.card .tagline { font-family: var(--display); font-weight: 700; font-size: .82rem; color: var(--orange-deep); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.card .c-links { margin-top: auto; display: flex; gap: 18px; align-items: center; }
.card .c-links a { font-family: var(--display); font-weight: 700; font-size: .9rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.card .c-links a:first-child { color: var(--orange-deep); }
.card .c-links a:hover { text-decoration: underline; }

/* Why choose ------------------------------------------------------------ */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.why-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; text-align: center; }
.stat b { display: block; font-family: var(--display); font-weight: 900; font-size: 2rem; color: var(--orange-deep); line-height: 1; }
.stat span { font-size: .85rem; color: var(--muted); margin-top: 6px; display: block; }
.why-list { display: grid; gap: 14px; }
.why-item { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--orange); border-radius: var(--r-sm); padding: 20px 24px; }
.why-item h4 { font-size: 1.08rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Testimonials ---------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.quote h4 { font-size: 1.05rem; margin-bottom: 10px; }
.quote p { color: var(--body); font-style: italic; margin: 0 0 16px; }
.quote .by { font-family: var(--display); font-weight: 700; font-size: .85rem; color: var(--muted); font-style: normal; }

/* Guides ---------------------------------------------------------------- */
.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.guide:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.guide .g-top { height: 88px; background: var(--charcoal); position: relative; display: flex; align-items: center; padding: 0 24px; overflow: hidden; }
.guide .g-top::after { content: ""; position: absolute; right: -20px; top: 0; bottom: 0; width: 80px; background: var(--hazard); opacity: .35; transform: skewX(-12deg); }
.guide .g-cat { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--hivis); background: rgba(0,0,0,.25); padding: 6px 12px; border-radius: 999px; }
.guide .g-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.guide h3 { font-size: 1.1rem; line-height: 1.22; margin-bottom: 14px; }
.guide a.more { margin-top: auto; font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--orange-deep); }
.guide a.more:hover { text-decoration: underline; }

/* FAQ ------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--orange-soft); color: var(--orange-deep); display: grid; place-items: center; font-weight: 900; font-size: 1.2rem; transition: transform .25s, background .2s; }
.faq-item.open .pm { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--body); margin: 0; }

/* CTA band -------------------------------------------------------------- */
.cta-band { background: var(--orange); color: #fff; position: relative; overflow: hidden; text-align: center; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; background: var(--hazard); opacity: .25; }
.cta-band::before { left: -20px; transform: skewX(-12deg); }
.cta-band::after { right: -20px; transform: skewX(-12deg); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 40em; margin: 0 auto 26px; }

/* Footer ---------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #b7b1a7; padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-about .brand-name { color: #fff; }
.foot-about p { margin: 16px 0; font-size: .95rem; max-width: 30em; }
.foot-contact a { display: flex; align-items: center; gap: 10px; color: #e8e3da; font-weight: 600; margin-bottom: 10px; }
.foot-contact a:hover { color: var(--orange); }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-family: var(--display); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer ul a { font-size: .95rem; }
.site-footer ul a:hover { color: var(--orange); }
.foot-bottom { border-top: 1px solid #322f33; margin-top: 48px; padding-top: 24px; font-size: .82rem; color: #837d74; }
.foot-bottom .ack { margin-bottom: 14px; max-width: 70ch; }
.foot-bottom .legal { line-height: 1.7; }

/* Reveal on load / scroll ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: var(--d, 0s); }

/* Contact page ---------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(241,90,12,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--muted); margin-bottom: 22px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--orange); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-success { display: none; background: #eafaf0; border: 1.5px solid #aee3c4; color: var(--good); border-radius: var(--r); padding: 18px 20px; font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: block; }

.contact-aside { display: grid; gap: 18px; }
.aside-card { background: var(--charcoal); color: #fff; border-radius: var(--r-lg); padding: 30px; }
.aside-card.haz { position: relative; overflow: hidden; }
.aside-card.haz::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--hazard); }
.aside-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 14px; }
.aside-card .big-phone { font-family: var(--display); font-weight: 900; font-size: 1.7rem; color: var(--hivis); display: block; margin: 6px 0 4px; }
.aside-card p { color: #b7b1a7; font-size: .95rem; margin: 0; }
.aside-card ul { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 10px; }
.aside-card ul li { display: flex; gap: 10px; color: #d9d4cc; font-size: .95rem; }
.aside-card ul li::before { content: "✓"; color: var(--orange); font-weight: 900; }
.page-hero { background: var(--charcoal); color: #fff; padding: clamp(48px,7vw,84px) 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 8px; background: var(--hazard); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
.page-hero p { color: #c9c3ba; font-size: 1.15rem; max-width: 40em; margin-top: 14px; }
.page-hero .crumb { font-family: var(--display); font-weight: 600; font-size: .85rem; color: var(--orange); letter-spacing: .04em; margin-bottom: 12px; }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .why-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .values .wrap, .steps, .cards, .quotes, .guides { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .menu, .nav-cta .btn { display: none; }
  .menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 18px 20px; gap: 2px;
    box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s;
  }
  .nav-open .menu { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .menu > li > a, .menu > li > button { width: 100%; font-size: 1.05rem; padding: 14px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; min-width: 0; padding: 0 0 8px 12px; background: none; }
  .has-drop .caret { display: none; }
  .values .wrap, .steps, .cards, .quotes, .guides, .field-row, .foot-grid { grid-template-columns: 1fr; }
  .utility .u-left { display: none; }
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-hero { background: var(--charcoal); color:#fff; padding: clamp(44px,6vw,76px) 0; position:relative; overflow:hidden; }
.blog-hero::after { content:""; position:absolute; bottom:0; left:0; right:0; height:8px; background:var(--hazard); }
.blog-hero .crumb { font-family:var(--display); font-weight:600; font-size:.85rem; color:var(--orange); margin-bottom:12px; }
.blog-hero h1 { color:#fff; font-size:clamp(2rem,4.5vw,3rem); }
.blog-hero p { color:#c9c3ba; font-size:1.1rem; max-width:46em; margin-top:12px; }

.blog-layout { display:grid; grid-template-columns: 1fr 300px; gap:48px; align-items:start; }
.post-list { display:grid; gap:22px; }
.post-card { display:grid; grid-template-columns: 150px 1fr; background:#fff; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; transition:transform .2s,box-shadow .2s; }
.post-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.post-card .pc-banner { background:var(--charcoal); position:relative; overflow:hidden; }
.post-card .pc-banner::after { content:""; position:absolute; inset:0; background:var(--hazard); opacity:.28; }
.post-card .pc-body { padding:22px 24px; }
.post-card .cat { display:inline-block; font-family:var(--display); font-weight:800; text-transform:uppercase; letter-spacing:.07em; font-size:.7rem; color:var(--orange-deep); background:var(--orange-soft); padding:5px 11px; border-radius:999px; margin-bottom:10px; }
.post-card h2 { font-size:1.22rem; line-height:1.2; margin-bottom:8px; }
.post-card h2 a:hover { color:var(--orange-deep); }
.post-card p { color:var(--muted); font-size:.95rem; margin:0 0 12px; }
.post-card .meta { font-size:.82rem; color:var(--muted); font-family:var(--display); font-weight:600; }
.post-card .more { font-family:var(--display); font-weight:700; font-size:.88rem; color:var(--orange-deep); }

.blog-side .side-box { background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:24px; margin-bottom:22px; }
.blog-side h4 { font-family:var(--display); font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color:var(--ink); margin-bottom:16px; }
.blog-side ul { list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.blog-side ul a { display:flex; justify-content:space-between; font-size:.95rem; color:var(--body); padding:7px 0; border-bottom:1px dashed var(--line); }
.blog-side ul a:hover { color:var(--orange-deep); }
.blog-side .side-cta { background:var(--orange); color:#fff; }
.blog-side .side-cta h4 { color:#fff; } .blog-side .side-cta p { color:rgba(255,255,255,.92); font-size:.95rem; margin:0 0 16px; }

/* Article */
.article-hero { background:var(--charcoal); color:#fff; padding: clamp(40px,5vw,64px) 0; position:relative; overflow:hidden; }
.article-hero::after { content:""; position:absolute; bottom:0; left:0; right:0; height:8px; background:var(--hazard); }
.article-hero .crumb { font-family:var(--display); font-weight:600; font-size:.85rem; color:var(--orange); margin-bottom:14px; }
.article-hero .cat { display:inline-block; font-family:var(--display); font-weight:800; text-transform:uppercase; letter-spacing:.07em; font-size:.72rem; color:var(--ink); background:var(--hivis); padding:5px 12px; border-radius:999px; margin-bottom:16px; }
.article-hero h1 { color:#fff; font-size:clamp(1.9rem,4vw,2.9rem); max-width:20ch; }
.article-hero .a-meta { color:#b7b1a7; font-family:var(--display); font-weight:600; font-size:.9rem; margin-top:16px; display:flex; gap:18px; flex-wrap:wrap; }
.article-banner { height:10px; background:var(--hazard); }

.article-wrap { max-width:760px; margin:0 auto; padding: clamp(40px,5vw,64px) 24px; }
.article-body { font-size:1.08rem; color:var(--body); }
.article-body h2 { font-size:1.6rem; margin:2em 0 .6em; color:var(--ink); }
.article-body h3 { font-size:1.22rem; margin:1.6em 0 .5em; color:var(--ink); }
.article-body p { margin:0 0 1.15em; }
.article-body strong { color:var(--ink); }
.article-body ul { margin:0 0 1.3em; padding-left:0; list-style:none; display:grid; gap:10px; }
.article-body ul li { position:relative; padding-left:30px; }
.article-body ul li::before { content:"✓"; position:absolute; left:0; top:1px; width:20px; height:20px; background:var(--orange-soft); color:var(--orange-deep); border-radius:5px; display:grid; place-items:center; font-weight:900; font-size:.8rem; }
.article-body .callout { background:var(--orange-soft); border-left:5px solid var(--orange); border-radius:var(--r-sm); padding:20px 24px; margin:1.6em 0; }
.article-body .callout p { margin:0; color:var(--ink); font-weight:500; }
.article-cta { background:var(--ink); color:#fff; border-radius:var(--r-lg); padding:34px; margin:2.4em 0 0; text-align:center; position:relative; overflow:hidden; }
.article-cta::before { content:""; position:absolute; top:0; left:0; right:0; height:8px; background:var(--hazard); }
.article-cta h3 { color:#fff; font-size:1.4rem; margin:6px 0 10px; }
.article-cta p { color:#b7b1a7; margin:0 0 20px; }
.article-faq { margin-top:2.4em; }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:2.4em; }
.tag-row a { font-family:var(--display); font-weight:600; font-size:.82rem; color:var(--muted); background:var(--panel-2); padding:6px 13px; border-radius:999px; }
.tag-row a:hover { color:var(--orange-deep); }

@media (max-width: 860px){
  .blog-layout { grid-template-columns:1fr; }
  .post-card { grid-template-columns: 90px 1fr; }
}

/* ==========================================================================
   Service / About / Legal pages
   ========================================================================== */
.page-hero .svc-icon { width:64px; height:64px; border-radius:16px; background:var(--orange); color:#fff; display:grid; place-items:center; margin-bottom:18px; box-shadow:0 12px 26px -12px rgba(241,90,12,.9); }
.page-hero .svc-icon svg { width:32px; height:32px; }
.page-hero .lead-cta { margin-top:22px; }
.page-layout { display:grid; grid-template-columns: 1fr 320px; gap:48px; align-items:start; }
.fact-list { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.fact-list li { display:flex; gap:10px; align-items:flex-start; font-size:.95rem; color:var(--body); }
.fact-list li::before { content:"✓"; color:var(--orange-deep); font-weight:900; flex:none; }
.fact-list li.plain::before { content:""; }
.fact-list li b { color:var(--ink); font-family:var(--display); }
.side-box .side-links { list-style:none; margin:0; padding:0; display:grid; gap:4px; }
.side-box .side-links a { display:block; padding:9px 12px; border-radius:9px; font-weight:600; font-size:.94rem; color:var(--ink); }
.side-box .side-links a:hover { background:var(--orange-soft); color:var(--orange-deep); }
.side-box .side-links a.active { background:var(--ink); color:#fff; }
.legal-body { font-size:1.02rem; color:var(--body); }
.legal-body h2 { font-size:1.4rem; margin:1.8em 0 .5em; color:var(--ink); }
.legal-body p, .legal-body li { margin-bottom:.8em; }
.legal-body ul { padding-left:1.1em; }
.legal-updated { color:var(--muted); font-size:.9rem; margin-bottom:2em; }
@media (max-width: 980px){ .page-layout { grid-template-columns:1fr; gap:36px; } }

/* Form helper hint + flatpickr alignment */
.field label .hint { font-weight:500; color:var(--muted); font-size:.8rem; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background:var(--orange); border-color:var(--orange); }
.flatpickr-day.today { border-color:var(--orange); }
.flatpickr-months .flatpickr-month, .flatpickr-current-month, .flatpickr-weekday { color:var(--ink); }

/* Per-field helper note */
.field-note { font-size:.82rem; color:var(--muted); margin:7px 0 0; line-height:1.4; }

/* Honeypot (hidden from people, catches bots) */
.hp { position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; }
/* Form error message */
.form-error { display:none; background:#fdecec; border:1.5px solid #f3b4b4; color:#b42318; border-radius:var(--r); padding:16px 18px; font-weight:600; margin-bottom:20px; }
.form-error.show { display:block; }
