/* =========================================================
   FONE FELLAS — front-end stylesheet
   Phone / tablet / computer repair · Young, NSW
   Hand-written, zero build step. Distinct design language.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Archivo:wght@600;700;800;900&display=swap');

:root {
  /* Brand palette — teal + logo navy + warm amber accent */
  --teal:        #0E586F;   /* main brand colour */
  --teal-dark:   #0A4153;
  --teal-deep:   #072A37;   /* near-navy teal, used for dark sections */
  --teal-tint:   #E4EFF2;   /* pale teal wash */
  --teal-tint-2: #F2F8F9;
  --amber:       #F2A03D;   /* accent / CTA pop (from logo hair) */
  --amber-dark:  #DC8526;
  --sky:         #4F9BEE;   /* logo blue, used sparingly */
  --ink:         #0B1B2B;   /* logo outline navy — headings */
  --ink-soft:    #2C3E4C;
  --cream:       #FBF8F3;   /* warm off-white page bg */
  --paper:       #FFFFFF;
  --text:        #21333E;
  --muted:       #5E727E;
  --line:        #E5E0D7;   /* warm border */
  --line-teal:   #CFE0E4;
  --success:     #1E8E5A;
  --danger:      #C0392B;

  --font-display: 'Archivo', system-ui, sans-serif;   /* chunky, matches logo lettering */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --sh-sm: 0 2px 10px rgba(11, 27, 43, 0.06);
  --sh-md: 0 14px 34px rgba(11, 27, 43, 0.10);
  --sh-lg: 0 30px 70px rgba(11, 27, 43, 0.18);
  --sh-teal: 0 16px 40px rgba(14, 88, 111, 0.30);
  --wrap: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .15s; }
a:hover { color: var(--teal-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; position: relative; }
.section--tint { background: var(--teal-tint-2); }
.section--cream { background: var(--cream); }
.section--deep {
  background: var(--teal-deep);
  color: #C4D6DC;
}
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--teal { background: var(--teal); color: #DCEBEF; }
.section--teal h2, .section--teal h3 { color: #fff; }

/* Eyebrow label */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.kicker::before {
  content: '';
  width: 22px; height: 3px;
  background: var(--amber);
  border-radius: 3px;
}
.section--deep .kicker, .section--teal .kicker { color: var(--amber); }

.h-xl { font-size: clamp(2.4rem, 5.2vw, 4rem); }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.section--deep .lead, .section--teal .lead { color: #B6CCD3; }
.center { text-align: center; }
.center .lead, .center .kicker { margin-left: auto; margin-right: auto; }
.center .kicker { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--amber { background: var(--amber); color: var(--ink); box-shadow: 0 10px 24px rgba(242,160,61,.34); }
.btn--amber:hover { background: var(--amber-dark); color: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242,160,61,.42); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: var(--sh-teal); }
.btn--teal:hover { background: var(--teal-dark); color:#fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--teal); border-color: var(--line-teal); }
.btn--ghost:hover { border-color: var(--teal); background: var(--teal-tint); color: var(--teal-dark); }
.btn--white { background:#fff; color: var(--teal); }
.btn--white:hover { background: var(--teal-tint); transform: translateY(-2px); color: var(--teal-dark); }
.btn--lg { padding: 18px 36px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .25s, box-shadow .25s, padding .25s;
  padding: 14px 0;
}
.site-header.is-solid { background: var(--cream); box-shadow: 0 2px 18px rgba(11,27,43,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: var(--logo-h, 54px); width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600; color: var(--ink); padding: 10px 16px; border-radius: var(--r-pill);
  font-size: .98rem; transition: background .15s, color .15s;
}
.nav a:hover, .nav a.is-active { background: var(--teal-tint); color: var(--teal); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 800;
  font-family: var(--font-display); color: var(--ink); font-size: 1.05rem;
}
.header-phone svg { width: 20px; height: 20px; color: var(--teal); }
.header-phone small { display:block; font-family: var(--font-body); font-weight:600; font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); line-height:1; margin-bottom:2px; }
.nav-toggle { display: none; background: var(--teal); border: none; width: 46px; height: 46px; border-radius: 12px; cursor: pointer; padding: 12px; }
.nav-toggle span { display: block; height: 2.5px; background: #fff; border-radius: 2px; margin: 4px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--teal-deep);
  color: #fff;
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero::before {
  /* soft teal glow */
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(79,155,238,.22), transparent 60%),
    radial-gradient(700px 600px at 12% 95%, rgba(14,88,111,.55), transparent 60%);
}
.hero::after {
  /* sparkle dots like the logo backdrop */
  content: ''; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, transparent 85%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -0.02em; }
.hero h1 .hl { color: var(--amber); }
.hero p.lead { color: #BcD3DA; font-size: 1.24rem; margin-top: 6px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.hero-pill {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #DCEBEF; padding: 9px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: .92rem;
}
.hero-pill svg { width: 16px; height: 16px; color: var(--amber); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 28px; display:flex; align-items:center; gap:14px; color:#9FBAC3; font-size:.9rem; font-weight:600; }
.hero-stars { color: var(--amber); letter-spacing: 2px; font-size: 1.1rem; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(4px);
  box-shadow: var(--sh-lg);
  width: 100%;
}
.hero-logo-wrap { background: #fff; border-radius: var(--r-md); padding: 26px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.hero-logo-wrap img { width: 100%; }
.hero-quote { margin-top: 20px; color:#CFE0E4; font-style: italic; font-size: 1rem; }
.hero-quote .by { display:block; margin-top:8px; font-style: normal; font-weight: 700; color:#fff; font-family: var(--font-display); }

/* curved divider under hero */
.hero-wave { position: relative; z-index: 2; line-height: 0; margin-bottom: -1px; }
.hero-wave svg { width: 100%; height: 70px; display:block; }

/* ---------- Service strip / quick badges ---------- */
.qbadges { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: -56px; position: relative; z-index: 5; }
.qbadge {
  background: var(--paper); border-radius: var(--r-md); padding: 22px; box-shadow: var(--sh-md);
  border: 1px solid var(--line); display:flex; gap:14px; align-items:flex-start;
}
.qbadge .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-tint); color: var(--teal); display:grid; place-items:center; }
.qbadge .ic svg { width: 24px; height: 24px; }
.qbadge h3 { font-size: 1.05rem; margin: 0 0 3px; }
.qbadge p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left:auto; margin-right:auto; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.svc-card {
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--line-teal); }
.svc-card__media { aspect-ratio: 16/10; background: var(--teal-tint); position: relative; overflow:hidden; }
.svc-card__media img { width:100%; height:100%; object-fit: cover; }
.svc-card__icon {
  position:absolute; left: 18px; bottom: -22px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal); color:#fff; display:grid; place-items:center; box-shadow: var(--sh-teal); border: 3px solid var(--paper);
}
.svc-card__icon svg { width: 26px; height: 26px; }
.svc-card__body { padding: 34px 24px 26px; flex:1; display:flex; flex-direction:column; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .96rem; flex:1; }
.svc-card .more { font-weight: 700; color: var(--teal); display:inline-flex; align-items:center; gap:7px; margin-top: 10px; }
.svc-card .more svg { width:16px;height:16px; transition: transform .15s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step__num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--paper); border: 3px solid var(--amber); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  display:grid; place-items:center; position: relative; z-index: 2;
}
.steps .step:not(:last-child)::after {
  content:''; position:absolute; top: 32px; left: 60%; width: 80%; height: 3px;
  background: repeating-linear-gradient(90deg, var(--line-teal) 0 8px, transparent 8px 16px); z-index: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Why / features split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fic { flex:0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--teal); color: #fff; display:grid; place-items:center; }
.feature .fic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin: 2px 0 4px; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--sh-md); width:100%; }
.split-media .badge-float {
  position:absolute; bottom: -22px; right: -16px; background: var(--amber); color: var(--ink);
  padding: 16px 22px; border-radius: var(--r-md); font-family: var(--font-display); font-weight: 800;
  box-shadow: var(--sh-md); text-align:center; line-height:1;
}
.split-media .badge-float span { display:block; font-family: var(--font-body); font-weight:600; font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; margin-top:5px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem,4vw,3.2rem); color: #fff; line-height:1; }
.stat .l { color: #B6CCD3; font-weight: 600; margin-top: 8px; font-size: .98rem; }
.stat .n .amber { color: var(--amber); }

/* ---------- Testimonials ---------- */
.tmons { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tmon {
  background: var(--paper); border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--line);
  box-shadow: var(--sh-sm); display:flex; flex-direction:column; gap: 16px;
}
.tmon .stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.tmon p { font-size: 1.02rem; color: var(--ink-soft); margin: 0; flex:1; }
.tmon .who { display:flex; align-items:center; gap:12px; }
.tmon .av { width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color:#fff; display:grid; place-items:center; font-family: var(--font-display); font-weight: 800; }
.tmon .who b { display:block; color: var(--ink); font-family: var(--font-display); }
.tmon .who span { font-size: .85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--r-lg); padding: 56px; text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--sh-teal);
}
.cta-band::after {
  content:''; position:absolute; inset:0; opacity:.5;
  background-image: radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.5px); background-size: 26px 26px;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color:#fff; font-size: clamp(1.9rem,3.4vw,2.7rem); }
.cta-band p { color:#DCEBEF; max-width: 52ch; margin: 0 auto 26px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Blog cards ---------- */
.post-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.post-card { background: var(--paper); border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; display:flex; flex-direction:column; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.post-card__img { aspect-ratio: 16/9; background: var(--teal-tint); overflow:hidden; }
.post-card__img img { width:100%; height:100%; object-fit:cover; }
.post-card__body { padding: 24px; flex:1; display:flex; flex-direction:column; }
.post-meta { display:flex; gap:10px; align-items:center; font-size:.8rem; color:var(--muted); margin-bottom:10px; font-weight:600; }
.chip { background: var(--teal-tint); color: var(--teal); padding: 4px 12px; border-radius: var(--r-pill); font-size:.76rem; font-weight: 700; }
.post-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--teal); }
.post-card p { color: var(--muted); font-size: .93rem; flex:1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-deep); color: #A7C0C8; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color:#fff; font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .02em; }
.site-footer a { color: #A7C0C8; }
.site-footer a:hover { color: var(--amber); }
.footer-links { list-style:none; display:grid; gap: 11px; }
.footer-brand img { height: 70px; margin-bottom: 18px; }
.footer-contact { display:grid; gap: 13px; }
.footer-contact .row { display:flex; gap:12px; align-items:flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex:0 0 auto; margin-top: 3px; }
.footer-phone { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color:#fff !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding-top: 24px; display:flex; justify-content: space-between; gap: 16px; flex-wrap:wrap; font-size:.88rem; }
.footer-bottom a { color:#A7C0C8; }

/* ---------- Generic page / prose ---------- */
.page-hero { background: var(--teal-deep); color:#fff; padding: 64px 0; position: relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(700px 400px at 80% 10%, rgba(79,155,238,.18), transparent 60%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color:#fff; font-size: clamp(2.2rem,4.4vw,3.4rem); }
.page-hero .crumbs { color:#9FBAC3; font-weight:600; font-size:.9rem; margin-bottom: 14px; }
.page-hero .crumbs a { color:#9FBAC3; }
.page-hero .crumbs a:hover { color: var(--amber); }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; }
.prose p { margin: 0 0 1.1em; font-size: 1.05rem; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--r-md); margin: 1.4em 0; }
.prose a { color: var(--teal); font-weight: 600; text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--amber); margin: 1.4em 0; padding: .4em 0 .4em 1.4em; color: var(--ink-soft); font-style: italic; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-card { background: var(--paper); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-md); border:1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight: 600; margin-bottom: 7px; color: var(--ink); font-size: .94rem; }
.field input, .field textarea, .field select {
  width:100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--text); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,88,111,.12); }
.field textarea { min-height: 140px; resize: vertical; }
.info-panel { display:grid; gap: 22px; }
.info-row { display:flex; gap:16px; align-items:flex-start; }
.info-row .ic { flex:0 0 auto; width: 50px; height: 50px; border-radius: 14px; background: var(--teal-tint); color: var(--teal); display:grid; place-items:center; }
.info-row .ic svg { width: 24px; height: 24px; }
.info-row h3 { font-size: 1.08rem; margin: 4px 0 3px; }
.info-row p, .info-row a { margin:0; color: var(--muted); }

.alert { padding: 15px 18px; border-radius: var(--r-sm); margin-bottom: 22px; font-weight: 600; }
.alert-success { background: #E7F6EE; color: #15703f; border: 1px solid #BfE6CF; }
.alert-error { background: #FCEBEA; color: #98271b; border: 1px solid #F4C9C4; }

/* ---------- Pagination ---------- */
.pagination { display:flex; gap:8px; justify-content:center; margin-top: 48px; list-style:none; flex-wrap:wrap; }
.pagination a, .pagination span { padding: 10px 16px; border-radius: var(--r-sm); border: 1px solid var(--line); font-weight: 600; color: var(--ink); background:#fff; }
.pagination .active span { background: var(--teal); color:#fff; border-color: var(--teal); }
.pagination a:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Misc ---------- */
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.muted { color: var(--muted); }
.tag-row { display:flex; flex-wrap:wrap; gap: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .svc-grid, .post-grid, .tmons { grid-template-columns: repeat(2,1fr); }
  .qbadges { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps .step::after { display:none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav, .header-phone small { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open {
    display: flex; position: absolute; top: 76px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; background: #fff; padding: 14px;
    border-radius: var(--r-md); box-shadow: var(--sh-lg); gap: 4px;
  }
  .nav.is-open a { padding: 13px 16px; }
  .svc-grid, .post-grid, .tmons, .qbadges, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .qbadges { margin-top: 28px; }
  .split-media .badge-float { right: 12px; }
}

/* Reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* Form error + flash */
.field-error { color: var(--danger); font-size: .85rem; margin-top: 5px; font-weight: 600; }
.flash-wrap { padding-top: 24px; }
