/* ==========================================================================
   Prairie Web Design — site stylesheet (hand-written, no framework)
   Palette from the logo: teal-navy, wheat gold, sage, warm off-white.
   Type: Sora (headings) + Inter (body), self-hosted variable fonts (OFL).
   ========================================================================== */

@font-face {
  font-family: 'Sora';
  src: url('../fonts/sora-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #173841;
  --navy-deep: #0f272e;
  --navy-soft: #24505c;
  --navy-tint: #e7eef0;
  --wheat: #e2a63a;
  --wheat-dark: #c48b22;
  --wheat-tint: #fbf1dc;
  --sage: #7d9c6a;
  --sage-deep: #5b7a4b;
  --sage-tint: #eef3ea;
  --lime: #b9ef7a;
  --maple: #d52b1e;
  --ink: #1b2428;
  --ink-soft: #3c474c;
  --grey: #6b7478;
  --grey-light: #a4abad;
  --line: #e1e3dc;
  --paper: #f7f5ee;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(23, 56, 65, 0.12);
  --shadow-sm: 0 3px 10px rgba(23, 56, 65, 0.08);
  --radius: 16px;
  --radius-sm: 9px;
  --font-head: 'Sora', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --wrap: 1180px;
  --topbar-h: 40px;
  --header-h: 84px;
}

/* --------------------------------------------------------------------------
   Reset-ish
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 0.5em;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.5rem); }
h3, .h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
table { border-collapse: collapse; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
.ic { width: 1.25em; height: 1.25em; flex: 0 0 auto; vertical-align: -0.28em; }
.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--wheat); color: var(--navy-deep); padding: 8px 14px; border-radius: 6px; font-weight: 700;
}
.skip:focus { left: 8px; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 800px; }
.center { text-align: center; }

/* --------------------------------------------------------------------------
   Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-deep);
  background: var(--sage-tint); border-radius: 999px; padding: 6px 14px 6px 10px;
  margin: 0 0 16px;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--wheat); flex: 0 0 auto; }
.eyebrow-light { color: var(--wheat); background: rgba(255, 255, 255, .1); }
.eyebrow-light::before { background: var(--wheat); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.sec-head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.sec-head .lead { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin-bottom: .4em; }
.sec-more { text-align: center; margin: 40px 0 0; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy); }
.link-arrow .ic { transition: transform .2s; }
.link-arrow:hover { text-decoration: none; color: var(--sage-deep); }
.link-arrow:hover .ic { transform: translateX(4px); }

.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.4em; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: 0.4em; }
.prose p { color: var(--ink-soft); }
.prose-light p, .prose-light li { color: #dbe3e0; }
.tick-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.tick-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .95rem; color: var(--ink-soft); }
.tick-list .ic { color: var(--sage-deep); margin-top: 3px; width: 1.1em; height: 1.1em; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 0.97rem; line-height: 1.2; white-space: nowrap;
  transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
  text-decoration: none; font-family: var(--font-body);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--wheat); color: var(--navy-deep); border-color: var(--wheat); box-shadow: 0 6px 18px rgba(226, 166, 58, .35); }
.btn-primary:hover { background: var(--wheat-dark); border-color: var(--wheat-dark); color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .7); }
.btn-outline-light:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }
.pill-light { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .35); color: var(--white); font-weight: 600; font-size: .95rem; }
.pill-light .ic { color: var(--wheat); }

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */
.topbar { background: var(--navy-deep); color: #c9d3d6; font-size: 0.86rem; min-height: var(--topbar-h); }
.topbar-in { display: flex; align-items: center; gap: 22px; min-height: var(--topbar-h); flex-wrap: nowrap; }
.tb-item { display: inline-flex; align-items: center; gap: 7px; color: inherit; white-space: nowrap; }
.tb-item .ic { color: var(--wheat); width: 1.1em; height: 1.1em; }
.tb-canada .ic { color: var(--maple); }
a.tb-item:hover { color: var(--white); text-decoration: none; }
.tb-social { margin-left: auto; display: inline-flex; gap: 6px; }
.tb-social a { display: inline-flex; padding: 5px; border-radius: 6px; color: #c9d3d6; }
.tb-social a:hover { color: var(--white); background: rgba(255, 255, 255, .1); }
.tb-social .ic { width: 1.15em; height: 1.15em; }

/* --------------------------------------------------------------------------
   Header (sticky; NO transform, NO backdrop-filter — see gotchas)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.site-header.is-stuck { box-shadow: 0 2px 14px rgba(23, 56, 65, .10); }
.header-in { display: flex; align-items: center; gap: 36px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-deep); flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand-mark { width: auto; height: 48px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.brand-text small { font-size: 0.66rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; max-width: 34ch; line-height: 1.3; }
/* The tagline is a full sentence: two short lines under the name, never one long one */
.site-header .brand-text small { max-width: 40ch; font-size: 0.62rem; line-height: 1.25; margin-top: 3px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-list a { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 13px; font-weight: 600; font-size: .95rem; color: var(--ink); border-radius: 999px; white-space: nowrap; line-height: 1; }
.nav-list a:hover { background: var(--paper); text-decoration: none; color: var(--navy); }
.nav-list a.is-active { color: var(--navy); background: var(--navy-tint); }
.nav-extra { display: flex; align-items: center; gap: 14px; padding-left: 18px; border-left: 1px solid var(--line); }
.nav-cta { padding: 11px 20px; font-size: .93rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--navy-deep); white-space: nowrap; }
.nav-phone .ic { color: var(--wheat-dark); }
.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy-deep); align-items: center; justify-content: center;
}
.nav-toggle .ic { width: 26px; height: 26px; }
.nav-toggle .ic-close { display: none; }
.nav-overlay { position: fixed; inset: 0; background: rgba(15, 39, 46, .55); z-index: 60; }

/* --------------------------------------------------------------------------
   Flash
   -------------------------------------------------------------------------- */
.flash { padding: 14px 0; font-weight: 600; }
.flash-success { background: var(--sage-tint); color: var(--sage-deep); border-bottom: 1px solid #d3e2ca; }
.flash-error { background: #fdecec; color: #8a1c1c; border-bottom: 1px solid #f3c9c9; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.sec { padding: 88px 0; }
.sec-tint { background: var(--paper); }
.sec-dark { background: var(--navy-deep); color: #d5dfe2; }
.sec-dark h2, .sec-dark h3 { color: var(--white); }
.sec-dark .lead { color: #bfcbcf; }
.sec-dark .eyebrow { color: var(--wheat); background: rgba(255, 255, 255, .08); }
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--navy-deep); color: var(--white); overflow: hidden; min-height: 660px; display: flex; align-items: center; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 60%; z-index: -2; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(15, 39, 46, .94) 0%, rgba(15, 39, 46, .82) 42%, rgba(15, 39, 46, .18) 100%);
}
.hero-in { padding-top: 96px; padding-bottom: 96px; max-width: var(--wrap); }
.hero h1 { color: var(--white); max-width: 16ch; margin-bottom: 0.45em; }
.hero .lead { color: #dfe6e3; font-size: 1.18rem; max-width: 56ch; margin-bottom: 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 0.92rem; color: #e6ebe9; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges .ic { color: var(--wheat); }
.hero-badges .badge-canada .ic { color: var(--maple); }
.hero-badges .badge-canada { background: rgba(255, 255, 255, .12); border-radius: 999px; padding: 6px 12px 6px 9px; font-weight: 600; }

/* --------------------------------------------------------------------------
   Page head (inner pages)
   -------------------------------------------------------------------------- */
.page-head { background: var(--navy-deep); color: var(--white); padding: 64px 0 56px; position: relative; overflow: hidden; isolation: isolate; }
.page-head h1 { color: var(--white); margin-bottom: .3em; }
.page-head .lead { color: #d0d9dc; }
.page-head-img { min-height: 380px; display: flex; align-items: flex-end; }
.page-head-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-head-img::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15, 39, 46, .35) 0%, rgba(15, 39, 46, .9) 100%); }
.crumbs { font-size: 0.86rem; color: #b6c1c5; margin-bottom: 18px; }
.crumbs a { color: #e1e7e9; }

/* --------------------------------------------------------------------------
   Cards (services, work, posts)
   -------------------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { position: relative; display: block; aspect-ratio: 3 / 2; background: var(--paper); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img-wide { aspect-ratio: 1200 / 630; background: var(--navy-tint); }
.card-icon {
  position: absolute; left: 18px; bottom: -22px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--navy); color: var(--wheat); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(23, 56, 65, .3);
}
.card-icon .ic { width: 26px; height: 26px; }
.card-icon-inline { position: static; margin-bottom: 18px; }
.card-body { padding: 34px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-post .card-body, .card-work .card-body { padding-top: 20px; }
.card-body h3, .card-body .h3 { margin-bottom: .3em; }
.card-body h3 a, .card-body .h3 a { color: var(--navy-deep); }
.card-body h3 a:hover, .card-body .h3 a:hover { color: var(--sage-deep); text-decoration: none; }
.card-sub { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sage-deep); font-weight: 700; margin-bottom: .6em; }
.card-body p { color: var(--ink-soft); }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.price-tag { font-family: var(--font-head); font-weight: 700; color: var(--navy-deep); }
.card-post time { font-size: .82rem; color: var(--grey); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; display: block; margin-bottom: 8px; }
.work-tag { position: absolute; top: 12px; left: 12px; background: var(--wheat); color: var(--navy-deep); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; }
.work-host { font-size: .86rem; color: var(--grey); font-weight: 600; }
.work-grid-lg .card-body .prose p { font-size: 1rem; }
.work-note { margin: 36px auto 0; max-width: 760px; text-align: center; color: var(--grey); font-size: .95rem; display: flex; gap: 8px; align-items: flex-start; justify-content: center; }
.work-note .ic { color: var(--wheat-dark); margin-top: 3px; }

/* Featured (flagship) service on the homepage */
.svc-featured { display: grid; grid-template-columns: 1.05fr 1fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.svc-featured-img { display: block; position: relative; min-height: 320px; background: var(--paper); }
.svc-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-featured-body { padding: 36px 36px 28px; display: flex; flex-direction: column; }
.svc-featured-body h3 { font-size: 1.6rem; }
.svc-featured-body h3 a { color: var(--navy-deep); }
.svc-featured-body h3 a:hover { color: var(--sage-deep); text-decoration: none; }
.svc-featured-body > p { color: var(--ink-soft); }

/* Services page rows */
.svc-rows { display: flex; flex-direction: column; gap: 56px; }
.svc-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.svc-row-flip .svc-row-img { order: 2; }
.svc-row-img { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; background: var(--paper); box-shadow: var(--shadow); }
.svc-row-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-row-body h2 { font-size: 1.7rem; }
.svc-row-body h2 a { color: var(--navy-deep); }
.svc-row-body h2 a:hover { color: var(--sage-deep); text-decoration: none; }
.svc-row-body > p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Features (dark band)
   -------------------------------------------------------------------------- */
.feature { padding: 28px 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09); }
.feature-icon { display: inline-flex; width: 54px; height: 54px; border-radius: 14px; background: var(--wheat); color: var(--navy-deep); align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon .ic { width: 28px; height: 28px; }
.feature-icon .ic-maple { color: var(--maple); }
.feature h3 { font-size: 1.12rem; }
.feature p { margin: 0; color: #bfcbcf; font-size: .96rem; }
.feature-light { background: var(--white); border-color: var(--line); }
.feature-light p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Proudly Canadian band
   -------------------------------------------------------------------------- */
.canada-band { position: relative; background: var(--navy-deep); color: var(--white); overflow: hidden; isolation: isolate; }
.canada-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; z-index: -2; }
.canada-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15, 39, 46, .95) 0%, rgba(15, 39, 46, .86) 48%, rgba(15, 39, 46, .12) 100%); }
.canada-in { padding-top: 84px; padding-bottom: 84px; }
.canada-copy { max-width: 600px; }
.canada-leaf { display: inline-flex; width: 64px; height: 64px; border-radius: 50%; background: var(--white); color: var(--maple); align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 8px 20px rgba(0, 0, 0, .25); }
.canada-leaf .ic { width: 36px; height: 36px; }
.canada-band h2 { color: var(--white); }
.canada-band .hero-actions { margin-bottom: 0; margin-top: 8px; }

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { position: relative; padding: 30px 24px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.step-num { position: absolute; top: 18px; right: 20px; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--wheat); opacity: .9; }
.step-icon { display: inline-flex; color: var(--navy); margin-bottom: 14px; }
.step-icon .ic { width: 34px; height: 34px; }
.step h3 { font-size: 1.12rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* --------------------------------------------------------------------------
   About + counters
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.about-media { position: relative; padding-bottom: 60px; padding-right: 60px; }
.about-main { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-inset { position: absolute; right: 0; bottom: 0; width: 58%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-sm); border: 6px solid var(--white); box-shadow: var(--shadow); }
.about-years { position: absolute; left: -10px; top: 32px; background: var(--wheat); color: var(--navy-deep); padding: 14px 18px; border-radius: 12px; font-size: .85rem; line-height: 1.2; box-shadow: var(--shadow); font-weight: 600; }
.about-years b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
.about-copy h2 { margin-bottom: .6em; }
.counters { list-style: none; margin: 64px 0 0; padding: 32px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter b { display: block; font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.counter b .count { font: inherit; color: inherit; }
.counter > span { display: block; font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; color: var(--grey); font-weight: 600; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.plan-featured { border-color: var(--wheat); box-shadow: 0 16px 40px rgba(226, 166, 58, .22); }
.plan-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--wheat); color: var(--navy-deep); font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 1.3rem; }
.plan-price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 18px; flex-wrap: wrap; }
.plan-price b { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--navy-deep); line-height: 1; letter-spacing: -0.02em; }
.plan-price span { color: var(--grey); font-size: .95rem; }
.plan-list { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.plan-list li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.plan-list .ic { color: var(--sage-deep); margin-top: 3px; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px 22px; box-shadow: var(--shadow-sm); position: relative; }
.testimonial::before { content: '“'; position: absolute; right: 22px; top: 6px; font-family: var(--font-head); font-size: 5rem; line-height: 1; color: var(--wheat-tint); }
.testimonial blockquote { margin: 0; }
.testimonial p { font-size: 1.05rem; color: var(--ink); position: relative; }
.testimonial figcaption { font-size: .92rem; color: var(--grey); }
.testimonial figcaption strong { color: var(--navy-deep); }
.stars { display: inline-flex; gap: 2px; margin-bottom: 12px; }
.stars .ic { width: 18px; height: 18px; }
.stars .on { color: var(--wheat); }
.stars .off { color: var(--line); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); padding: 0 20px; }
.faq[open] { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; font-weight: 600; font-family: var(--font-head); font-size: 1.02rem; color: var(--navy-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { color: var(--wheat-dark); transition: transform .2s; }
.faq[open] summary .ic { transform: rotate(180deg); }
.faq-a { padding: 0 0 18px; color: var(--ink-soft); }
.faq-a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { position: relative; background: var(--navy-deep); color: var(--white); padding: 88px 0; overflow: hidden; isolation: isolate; text-align: center; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; z-index: -2; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15, 39, 46, .55), rgba(15, 39, 46, .8)); }
.cta-band h2 { color: var(--white); max-width: 22ch; margin: 0 auto .4em; }
.cta-band .lead { color: #dde5e2; margin: 0 auto 1.6em; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Contact + form
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.contact-grid-solo { grid-template-columns: 1fr; max-width: 720px; }
.contact-list { list-style: none; margin: 0 0 24px; padding: 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.contact-list .ic { color: var(--wheat-dark); margin-top: 3px; }
.contact-list.big { font-size: 1.1rem; }
.contact-list.big a { color: var(--navy-deep); font-weight: 700; }
.contact-list small { color: var(--grey); font-size: .9rem; }
.hours h3 { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
.hours h3 .ic { color: var(--wheat-dark); }
.hours-table { width: 100%; max-width: 360px; font-size: .96rem; }
.hours-table th { text-align: left; font-weight: 600; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours-table td { text-align: right; padding: 6px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.hours-table .is-closed td { color: var(--grey); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.quote-form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 16px; }
.quote-form input:not([type=checkbox]), .quote-form select, .quote-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #cdd2d0; border-radius: var(--radius-sm);
  background: var(--white); font-weight: 400; font-size: 1rem;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 2px solid var(--wheat); outline-offset: 1px; border-color: var(--wheat); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checks { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px 6px; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 4px 18px; }
.form-checks legend { font-weight: 700; font-size: .92rem; padding: 0 6px; }
.form-checks .check { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; margin-bottom: 8px; }
.form-checks input { width: 18px; height: 18px; accent-color: var(--navy); }
.form-note { font-size: .92rem; color: var(--grey); }
.form-note.small { font-size: .82rem; margin-top: 12px; }
.req { color: #c22; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.area-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-list li { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-weight: 600; font-size: .92rem; }
.area-list .ic { color: var(--wheat-dark); }

/* --------------------------------------------------------------------------
   Detail (service) + post
   -------------------------------------------------------------------------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.detail-main .prose p { font-size: 1.08rem; }
.included { margin: 36px 0; }
.included h2 { display: flex; align-items: center; gap: 8px; }
.included h2 .ic { color: var(--sage-deep); }
.included-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.included-list li { display: flex; align-items: center; gap: 10px; background: var(--paper); border-radius: var(--radius-sm); padding: 10px 14px; font-weight: 600; }
.included-list .ic { color: var(--sage-deep); }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.side-card-dark { background: var(--navy-deep); color: #d5dfe2; border-color: var(--navy-deep); }
.side-card-dark .btn { margin-top: 10px; }
.side-card-canada { background: var(--wheat-tint); border-color: #f0dfb8; }
.side-card-canada .ic { color: var(--maple); }
.side-card-canada p { margin-bottom: 4px; }
.side-card-canada .side-note { color: var(--ink-soft); margin: 0; }
.side-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); margin: 0; line-height: 1; letter-spacing: -0.02em; }
.side-note { font-size: .92rem; color: #b3bfc3; margin: 8px 0 16px; }
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { border-bottom: 1px dashed var(--line); }
.side-list a { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--ink); font-weight: 600; }
.side-list a:hover { color: var(--navy); text-decoration: none; }
.side-list .ic { color: var(--wheat-dark); }
.guarantee { display: flex; gap: 28px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.guarantee-inline { margin-top: 40px; background: var(--paper); box-shadow: none; }
.guarantee-icon { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 18px; background: var(--navy); color: var(--wheat); display: flex; align-items: center; justify-content: center; }
.guarantee-icon .ic { width: 38px; height: 38px; }
.guarantee h2 { margin-bottom: .3em; }
.guarantee .prose p:last-child { margin-bottom: 0; }
.post-body p { font-size: 1.1rem; }
.post-sig { margin-top: 2.5em; padding-top: 1.2em; border-top: 1px solid var(--line); font-size: .95rem; color: var(--grey); }
.team-grid { justify-content: center; }
.member { text-align: center; }
.member img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 4px solid var(--wheat); }
.member h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .2em; }
.member-role { color: var(--wheat); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.member p:last-child { color: #bfcbcf; font-size: .96rem; }
.sec-404 { padding: 120px 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #b3bfc3; padding: 70px 0 0; font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer h3 { color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #d5dfe2; }
.site-footer a:hover { color: var(--white); }
.site-footer .brand { color: var(--white); margin-bottom: 16px; }
.site-footer .brand-text small { color: #94a3a8; max-width: 34ch; }
.site-footer .brand-text { min-width: 0; }
.foot-canada { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; }
.foot-canada .ic { color: var(--maple); }
.foot-social { display: flex; gap: 8px; }
.foot-social a { display: inline-flex; padding: 8px; border-radius: 8px; background: rgba(255, 255, 255, .08); }
.foot-social a:hover { background: var(--wheat); color: var(--navy-deep); }
.foot-areas { font-size: .88rem; color: #94a3a8; }
.foot-areas strong { color: #d5dfe2; }
.site-footer .contact-list li { padding: 4px 0; }
.site-footer .contact-list .ic { color: var(--wheat); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; color: #94a3a8; }

/* --------------------------------------------------------------------------
   Admin bar + floating pencil (only when an admin is signed in)
   -------------------------------------------------------------------------- */
.ltk-edit { display: none; }
.ltk-editable { position: relative; }
.ltk-editable:hover { outline: 2px dashed rgba(226, 166, 58, .7); outline-offset: 6px; }
.ltk-pencil {
  position: fixed; z-index: 2147483647; display: none; align-items: center; gap: 6px;
  background: var(--wheat); color: var(--navy-deep); font: 700 .82rem/1 var(--font-body);
  padding: 8px 12px; border-radius: 999px; box-shadow: 0 6px 18px rgba(0, 0, 0, .25); text-decoration: none;
  transform: translate(-100%, 0);
}
.ltk-pencil.is-on { display: inline-flex; }
.ltk-pencil:hover { background: var(--wheat-dark); text-decoration: none; }
.ltk-pencil .ic { width: 16px; height: 16px; }
.ltk-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2147483646;
  background: var(--navy-deep); color: #d5dfe2; font-size: .86rem;
  display: flex; align-items: center; gap: 4px; padding: 6px 12px; flex-wrap: wrap;
  border-top: 3px solid var(--wheat);
}
.ltk-bar a { color: #e6ebe9; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 6px; }
.ltk-bar a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; color: var(--white); }
.ltk-bar .ic { width: 16px; height: 16px; }
.ltk-bar-who { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; color: var(--wheat); }
.ltk-bar-out { margin-left: auto; }
.ltk-badge { background: var(--wheat); color: var(--navy-deep); border-radius: 999px; padding: 1px 7px; font-size: .75rem; }
body.is-admin { padding-bottom: 46px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1400px) {
  .nav-phone { display: none; }
}
@media (max-width: 1240px) {
  .header-in { gap: 24px; }
  .nav-list a { padding: 0 10px; font-size: .9rem; }
  .nav { gap: 14px; }
  .nav-extra { padding-left: 14px; }
  .nav-cta { padding: 10px 16px; font-size: .88rem; }
  .brand-text small { display: none; }
  .brand-text strong { font-size: 1.1rem; }
  .brand-mark { height: 42px; }
}
@media (max-width: 1080px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .tb-hours { display: none; }
}
@media (max-width: 960px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .faq-grid, .contact-grid, .detail-grid, .svc-row { grid-template-columns: 1fr; gap: 40px; }
  .svc-row { gap: 24px; }
  .svc-row-flip .svc-row-img { order: 0; }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-featured-img { min-height: 0; aspect-ratio: 16 / 9; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .cols-3.work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .brand-mark { height: 42px; }
  .brand-text strong { font-size: 1.1rem; }
  .brand-text small { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Mobile drawer. The header is sticky with NO transform and NO
     backdrop-filter, so this position:fixed drawer sizes to the viewport. */
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 360px); margin: 0;
    background: var(--white); z-index: 80; flex-direction: column; align-items: stretch; gap: 0;
    padding: 88px 22px 32px; overflow-y: auto;
    transform: translateX(105%); transition: transform .25s ease; visibility: hidden;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .25);
  }
  body.nav-open .nav { transform: translateX(0); visibility: visible; }
  /* Lift the whole header above the overlay while the menu is open */
  body.nav-open .site-header { z-index: 70; }
  body.nav-open .nav-toggle { position: relative; z-index: 90; }
  body.nav-open .nav-toggle .ic-open { display: none; }
  body.nav-open .nav-toggle .ic-close { display: inline-flex; }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { display: flex; height: auto; padding: 14px 10px; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; background: none; }
  .nav-list a.is-active { box-shadow: inset 4px 0 0 var(--wheat); border-radius: 0; padding-left: 14px; background: none; }
  .nav-extra { flex-direction: column; align-items: stretch; margin-top: 22px; gap: 12px; padding-left: 0; border-left: 0; }
  .nav-phone { display: inline-flex; justify-content: center; padding: 12px; border: 1px solid var(--line); border-radius: 999px; }
  .nav-cta { width: 100%; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .sec { padding: 60px 0; }
  .cols-2, .cols-3, .cols-3.work-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-in { padding-top: 64px; padding-bottom: 64px; }
  .hero-bg { object-position: 72% 50%; }
  .hero::after { background: linear-gradient(180deg, rgba(15, 39, 46, .9) 0%, rgba(15, 39, 46, .84) 100%); }
  .hero-badges { gap: 8px 18px; font-size: .86rem; }
  .canada-in { padding-top: 60px; padding-bottom: 60px; }
  .canada-band::after { background: linear-gradient(180deg, rgba(15, 39, 46, .9), rgba(15, 39, 46, .86)); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .guarantee { flex-direction: column; padding: 26px; }
  .included-list, .tick-list { grid-template-columns: 1fr; }
  .page-head { padding: 48px 0 40px; }
  .page-head-img { min-height: 300px; }
  .svc-featured-body { padding: 26px 22px 22px; }
  .foot-bottom { flex-direction: column; gap: 6px; }
  .cta-band { padding: 64px 0; }
}
@media (max-width: 600px) {
  /* Topbar at 375px: phone + Canadian badge only; socials and hours would wrap it to two rows */
  .tb-social { display: none; }
  .topbar-in { gap: 14px; justify-content: space-between; }
  .cols-4, .steps, .counters { grid-template-columns: 1fr; }
  .steps { gap: 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-years { left: 0; top: 16px; padding: 10px 14px; }
  .about-years b { font-size: 1.5rem; }
  .ltk-bar { font-size: .78rem; }
  body.is-admin { padding-bottom: 92px; }
}
@media (max-width: 400px) {
  .tb-canada span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
