:root {
  --sky: #eef5f7;
  --horizon: #d7ebf2;
  --cloud: #ffffff;
  --ink: #10212b;
  --muted: #5d6a72;
  --soft: #f7fbfc;
  --edge: #dce8ed;
  --edge-soft: #edf4f6;
  --blue: #236c8e;
  --blue-deep: #164e69;
  --green: #2f7d65;
  --green-soft: #e8f2ed;
  --amber-soft: #fff5df;
  --shadow: 0 1px 1px rgba(16, 33, 43, 0.04), 0 22px 54px -30px rgba(16, 33, 43, 0.32);
  --shadow-strong: 0 4px 12px rgba(16, 33, 43, 0.08), 0 28px 70px -34px rgba(16, 33, 43, 0.42);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --pill: 999px;
  --container: 1180px;
  --pad: clamp(20px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.92), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(47, 125, 101, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--horizon) 0%, var(--sky) 34%, #fbfdfe 100%);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue-deep);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(35, 108, 142, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--cloud);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - (var(--pad) * 2), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(56px, 8vw, 100px) 0;
}

.concept-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 42px;
  padding: 8px var(--pad);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  text-align: center;
}

.concept-bar a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px var(--pad);
  background: rgba(238, 245, 247, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 232, 237, 0.78);
}

.nav-wrap {
  width: min(100%, var(--container));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: min(225px, 48vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--edge);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 40px -30px rgba(16, 33, 43, 0.4);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--pill);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--soft);
  color: var(--blue-deep);
}

.nav-links .nav-phone {
  color: var(--blue-deep);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--cloud);
}

.nav-links .nav-cta:hover {
  background: var(--blue-deep);
  color: var(--cloud);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--edge);
  border-radius: var(--pill);
  background: var(--cloud);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: relative;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 4px;
}

.menu-open .menu-icon {
  transform: rotate(45deg);
}

.menu-open .menu-icon::before {
  transform: translateY(6px) rotate(90deg);
}

.menu-open .menu-icon::after {
  opacity: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 7vw, 92px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 245, 247, 0.94) 0%, rgba(238, 245, 247, 0.74) 44%, rgba(238, 245, 247, 0.14) 100%),
    url("assets/kamloops.jpg") center / cover no-repeat;
  opacity: 0.92;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(238, 245, 247, 0), var(--sky));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.sticky-copy h2,
.location-copy h2,
.faq-grid h2,
.owner-panel h2 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 78px;
  line-height: 1.01;
}

.hero h1 span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #32434d;
  font-size: 21px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--pill);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: var(--cloud);
  box-shadow: var(--shadow);
}

.button-primary:hover {
  background: var(--blue-deep);
  color: var(--cloud);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border: 1px solid var(--edge);
}

.button-secondary:hover {
  background: var(--cloud);
  color: var(--blue-deep);
  border-color: #c5dce5;
}

.microcopy {
  max-width: 550px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.visit-panel {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(220, 232, 237, 0.88);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.panel-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--edge);
}

.panel-top strong {
  display: block;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

.panel-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.panel-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.panel-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.panel-list strong {
  color: var(--ink);
}

.icon-dot,
.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  font-weight: 900;
}

.icon-dot {
  width: 30px;
  height: 30px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
}

.proof-strip {
  padding: 18px 0 36px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  min-height: 112px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--edge);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.proof-icon {
  width: 38px;
  height: 38px;
  background: var(--soft);
  color: var(--blue-deep);
  border: 1px solid var(--edge);
  font-size: 15px;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-grid strong {
  color: var(--ink);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.sticky-copy h2,
.location-copy h2,
.faq-grid h2,
.owner-panel h2 {
  font-size: 54px;
  line-height: 1.06;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.provider-card,
.steps-grid article {
  border: 1px solid var(--edge);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.service-card > div:not(.service-mark) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.service-card h3,
.provider-card h3,
.steps-grid h3 {
  margin: 0;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-card p,
.provider-card p,
.steps-grid p,
.sticky-copy p,
.location-copy dd,
.owner-panel p {
  color: var(--muted);
}

.service-card p,
.steps-grid p {
  margin: 0;
}

.service-card a,
.provider-card a,
.steps-grid a,
.footer-grid a {
  color: var(--blue-deep);
  font-weight: 800;
}

.service-card a {
  margin-top: auto;
}

.service-card-text {
  justify-content: space-between;
  background: linear-gradient(145deg, #ffffff, var(--green-soft));
}

.service-card-text > div:last-child {
  min-height: 310px;
}

.service-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin: 20px 20px 0;
  border-radius: 24px;
  color: var(--green);
  background:
    radial-gradient(circle at 35% 30%, rgba(35, 108, 142, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.64);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.split-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 242, 237, 0.52));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.sticky-copy p {
  max-width: 460px;
  margin: 20px 0 28px;
  font-size: 17px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.provider-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 18px;
  border-radius: var(--radius-lg);
  align-items: center;
}

.provider-card img {
  width: 118px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--edge);
}

.provider-card h3 {
  font-size: 20px;
}

.provider-card p {
  margin: 10px 0 14px;
  font-size: 14px;
}

.coverage-section {
  background: var(--soft);
  border-block: 1px solid var(--edge-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.steps-grid span {
  display: inline-flex;
  width: fit-content;
  min-width: 48px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--pill);
  background: var(--amber-soft);
  color: #8b5a00;
  font-weight: 900;
}

.steps-grid a {
  margin-top: auto;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 36px;
  background: var(--cloud);
  box-shadow: var(--shadow-strong);
}

.location-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(16, 33, 43, 0.02), rgba(16, 33, 43, 0.28)),
    url("assets/kamloops.jpg") center / cover no-repeat;
}

.location-copy {
  padding: clamp(28px, 5vw, 56px);
}

.details-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--edge);
}

.details-list dt {
  font-weight: 900;
}

.details-list dd {
  margin: 0;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--edge);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
  list-style-position: inside;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.owner-section {
  padding: 42px 0 72px;
  background: var(--sky);
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 36px;
  color: var(--cloud);
  background:
    radial-gradient(circle at 88% 20%, rgba(47, 125, 101, 0.42), transparent 24rem),
    linear-gradient(135deg, var(--ink), #173847);
  box-shadow: var(--shadow-strong);
}

.owner-panel h2,
.owner-panel p,
.owner-panel .eyebrow {
  color: var(--cloud);
}

.owner-panel p {
  max-width: 690px;
  margin: 16px 0 0;
  opacity: 0.82;
}

.owner-panel .button-primary {
  background: var(--cloud);
  color: var(--ink);
}

.owner-panel .button-primary:hover {
  background: var(--green-soft);
  color: var(--ink);
}

.site-footer {
  padding: 56px 0;
  background: #071821;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(180px, 0.6fr));
  gap: 30px;
}

.footer-grid img {
  width: 220px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-grid p {
  max-width: 560px;
  margin: 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 17px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid a:hover {
  color: #ffffff;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 62px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .section-heading h2,
  .sticky-copy h2,
  .location-copy h2,
  .faq-grid h2,
  .owner-panel h2 {
    font-size: 46px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 0 10px;
  }

  .proof-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .location-image {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-block: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 118px var(--pad) auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .visit-panel {
    border-radius: 26px;
  }

  .provider-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .owner-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 18px;
  }

  .concept-bar {
    font-size: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 184px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .panel-top strong,
  .section-heading h2,
  .sticky-copy h2,
  .location-copy h2,
  .faq-grid h2,
  .owner-panel h2 {
    font-size: 34px;
  }

  .proof-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .service-card,
  .provider-card,
  .steps-grid article {
    border-radius: 22px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    aspect-ratio: 1.55;
  }

  .provider-card {
    grid-template-columns: 86px 1fr;
    min-height: 0;
    gap: 14px;
  }

  .provider-card img {
    width: 86px;
    height: 112px;
    border-radius: 18px;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .location-panel,
  .owner-panel {
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
