:root {
  --ink: #073763;
  --muted: #667f85;
  --soft: #244e6f;
  --night: #00315c;
  --navy: #003b70;
  --panel: #ffffff;
  --panel-soft: #f6fbfd;
  --cream: #f8fbfc;
  --mint: #e6f3ee;
  --line: #d7e8e8;
  --line-strong: #a8d4cf;
  --blue: #1594d2;
  --blue-bright: #e6f6fd;
  --green: #78b49c;
  --gold: #1594d2;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(0, 59, 112, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 180, 156, 0.18), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #f6fbfd 48%, #edf7f3 100%);
  color: var(--ink);
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 252, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 54px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 59, 112, 0.13));
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.05vw, 18px);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px !important;
  border: 1px solid rgba(21, 148, 210, 0.28);
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, 7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(690px, calc(88vh - 82px));
  display: flex;
  align-items: center;
  padding: clamp(52px, 7vw, 104px) clamp(22px, 5vw, 72px) clamp(42px, 5vw, 70px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.98) 0%, rgba(251, 253, 255, 0.9) 46%, rgba(251, 253, 255, 0.34) 100%),
    url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=2200&q=82") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 54%;
  width: 18vw;
  z-index: -1;
  border-left: 2px solid rgba(120, 180, 156, 0.34);
  border-right: 2px solid rgba(21, 148, 210, 0.18);
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(120, 180, 156, 0.08), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-owl-mark {
  position: absolute;
  left: min(980px, 69vw);
  top: 49%;
  z-index: 1;
  width: clamp(166px, 15.6vw, 262px);
  height: auto;
  opacity: 0.48;
  transform: translateY(-50%);
  filter: drop-shadow(0 22px 38px rgba(0, 59, 112, 0.16));
  pointer-events: none;
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(21, 148, 210, 0.2);
}

.button.primary:hover {
  background: #0d78b0;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-strong);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(18px, 3vw, 34px) clamp(18px, 4vw, 58px) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.proof-strip article {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 96px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 59, 112, 0.08);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--ink);
  font-size: 17px;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.proof-icon {
  display: inline-grid !important;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: 0 !important;
  color: var(--blue) !important;
  background: var(--blue-bright);
  border: 1px solid rgba(21, 148, 210, 0.18);
  border-radius: 8px;
  font-size: 22px !important;
  font-weight: 950;
  line-height: 1;
}

.section {
  padding: clamp(44px, 6vw, 78px) clamp(20px, 4vw, 58px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 26px;
}

.section-heading p,
.standards-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

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

.audience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audience-grid article::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% 42%;
  height: 230px;
  background: radial-gradient(circle, rgba(21, 148, 210, 0.1), transparent 68%);
  pointer-events: none;
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  color: var(--blue);
  background: var(--blue-bright);
  border: 1px solid rgba(21, 148, 210, 0.2);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}

.audience-copy {
  position: relative;
  max-width: 620px;
  z-index: 1;
}

.card-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-grid p:not(.card-label),
.service-grid p,
.process-grid p,
.review-grid blockquote,
.standards-list span {
  color: var(--muted);
}

.request-section {
  background:
    linear-gradient(180deg, rgba(230, 243, 238, 0.62), rgba(248, 251, 252, 0.72));
}

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

.request-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 59, 112, 0.08);
}

.request-grid article::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(120, 180, 156, 0.28);
  border-radius: 50%;
}

.request-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.request-grid p {
  color: var(--muted);
}

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

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

.service-grid article,
.process-grid article,
.review-grid article,
.standards-list div {
  min-height: 220px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 59, 112, 0.09);
}

.service-grid article {
  overflow: hidden;
  padding: 0;
}

.service-grid article > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid article > span,
.service-grid article > h3,
.service-grid article > p {
  margin-right: 20px;
  margin-left: 20px;
}

.service-grid article > span {
  margin-top: 20px;
}

.service-grid article > p {
  margin-bottom: 22px;
}

.service-grid span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
  background: rgba(21, 148, 210, 0.08);
  border: 1px solid rgba(21, 148, 210, 0.22);
  font-weight: 900;
  border-radius: 6px;
}

.process-section {
  background: var(--mint);
  margin-top: clamp(24px, 4vw, 46px);
}

.standards-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

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

.standards-list div {
  min-height: 150px;
}

.standards-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.reviews-section {
  background:
    linear-gradient(90deg, rgba(0, 49, 92, 0.92), rgba(21, 148, 210, 0.78)),
    url("https://quickandeasymoving.ca/wp-content/uploads/2024/09/suburb-page-banner.webp") center / cover no-repeat;
  color: var(--white);
}

.reviews-section .eyebrow,
.reviews-section .section-heading p {
  color: #d9f5ef;
}

.reviews-section h2 {
  color: var(--white);
}

.review-grid article {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: var(--ink);
}

.star-rating {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f6b33d;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

blockquote {
  margin: 0 0 18px;
  font-size: 18px;
}

cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin: clamp(20px, 4vw, 58px);
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.96), rgba(230, 243, 238, 0.9)),
    url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1600&q=82") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 59, 112, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .full,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 58px);
  background: linear-gradient(180deg, #fbfdff 0%, #e6f3ee 100%);
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo {
  filter: drop-shadow(0 8px 14px rgba(0, 59, 112, 0.13));
}

.footer-brand .brand-copy strong {
  color: var(--ink);
}

.footer-brand .brand-copy small {
  color: var(--green);
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--blue);
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
  place-items: center;
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(251, 253, 255, 0.96), rgba(230, 243, 238, 0.9)),
    url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1600&q=82") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-card .brand {
  margin-bottom: 36px;
}

.thanks-card h1 {
  font-size: clamp(38px, 6vw, 64px);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 18px 20px;
    background: rgba(255, 252, 246, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(150, 178, 216, 0.14);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero-owl-mark {
    right: 24px;
    left: auto;
    width: clamp(96px, 19vw, 146px);
    opacity: 0.22;
  }

  .proof-strip,
  .audience-grid,
  .request-grid,
  .process-grid,
  .review-grid,
  .standards-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .proof-strip {
    margin-inline: 18px;
  }

  .standards-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 42px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: 1.04;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-text {
    max-width: 100%;
    font-size: 17px;
  }

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

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

  .proof-strip article,
  .audience-grid article,
  .request-grid article,
  .process-grid article,
  .review-grid article,
  .contact-form {
    padding: 18px;
  }

  .hero-owl-mark {
    display: none;
  }

  .service-grid article {
    padding: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin-inline: 18px;
  }
}
