:root {
  --navy-950: #010b2a;
  --navy-900: #071443;
  --navy-850: #0c1f5b;
  --navy-800: #132767;
  --navy-700: #1f3378;
  --navy-600: #30418f;
  --bg: #f4f6fb;
  --text: #0f1a2f;
  --muted: #4a5775;
  --accent: #274ee5;
  --accent-dark: #142053;
  --border: #dbe3f3;
  --card: #ffffff;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(120deg, rgba(3, 9, 34, 0.7), rgba(6, 15, 56, 0.65));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 25px rgba(1, 4, 14, 0.25);
  color: #f2f5ff;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.logo-img {
  height: 40px;
}

.footer-logo {
  height: 50px;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.35rem;
  margin-left: 0.5rem;
  color: #fff;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--navy-900);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #040a26;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: inherit;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-link {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.hero .btn-link {
  color: #fff;
  font-size: 1rem;
}

.btn-dark {
  background: var(--navy-800);
}

.hero {
  position: relative;
  min-height: 90vh;
  margin-top: -88px;
  padding: 88px 0 0;
  background-image: linear-gradient(
      90deg,
      rgba(1, 6, 23, 0.9) 15%,
      rgba(1, 6, 23, 0.4) 60%,
      rgba(7, 20, 67, 0.4)
    ),
    url('images/business%20district%20night.jpg');
  background-size: cover;
  background-position: center;
  color: #f3f5ff;
  display: flex;
  align-items: stretch;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(1, 7, 29, 0.85) 0%,
    rgba(1, 7, 29, 0.3) 40%,
    rgba(6, 23, 79, 0.2) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 90vh;
}

.hero-overlay {
  width: min(720px, 94vw);
  margin-left: clamp(16px, 6vw, 120px);
  margin-right: auto;
  background: linear-gradient(160deg, rgba(7, 20, 67, 0.82), rgba(20, 49, 139, 0.72));
  border-radius: 32px;
  padding: 3rem;
  box-shadow: -5px 25px 60px rgba(1, 5, 21, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero h1,
.hero h2,
.hero-card h2 {
  color: #fff;
}

.hero-name {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  align-items: center;
}

.section {
  padding: 3rem 0 1rem;
}

.about {
  background: #fcfdfd;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.about-subhead {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-copy p {
  max-width: 60ch;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.about-photo img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 30px 50px rgba(10, 16, 43, 0.2);
  object-fit: cover;
}

.about-cases {
  width: 100%;
  max-width: 520px;
  color: var(--muted);
}

.about-cases-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-cases ul {
  margin: 0;
  padding-left: 1.25rem;
}

.about-cases li + li {
  margin-top: 0.35rem;
}

.case-link {
  font-style: italic;
  text-decoration: underline;
}

.blue-panel {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  color: #f4f6ff;
  overflow: hidden;
}

.blue-panel.light-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(137, 168, 255, 0.35), transparent 55%),
    rgba(1, 10, 42, 0.5);
}

.blue-panel > .container {
  position: relative;
  z-index: 1;
}

.blue-panel .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  color: #f4f6ff;
}

.availability-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(1, 7, 29, 0.98), rgba(15, 40, 125, 0.92));
  color: #f4f6ff;
  overflow: hidden;
}

.availability-panel.light-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(93, 139, 255, 0.28), transparent 55%),
    radial-gradient(circle at bottom right, rgba(8, 13, 34, 0.85), rgba(3, 9, 34, 0.95));
}

.availability-panel > .container {
  position: relative;
  z-index: 1;
}

.availability-panel .section-heading p {
  color: rgba(244, 246, 255, 0.9);
  max-width: 60ch;
}

.calendar-embed {
  display: flex;
  justify-content: center;
}

.calendar-frame {
  width: 100%;
  max-width: 960px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.calendar-frame iframe {
  width: 100%;
  border: 0;
  border-radius: 24px;
  min-height: 540px;
  background: #fff;
  aspect-ratio: 4 / 3;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  flex: 1;
}

.services-grid .card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.services-grid .card h3 {
  margin: 0;
  min-height: 3.5rem;
}

.services-grid .card ul {
  margin: 0;
  padding-left: 1.5rem;
}

.services-grid .card li + li {
  margin-top: 0.35rem;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-grid figure {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  color: var(--text);
  box-shadow: 0 20px 45px rgba(15, 20, 50, 0.08);
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-grid blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  flex: 1;
}

.testimonial-grid figcaption {
  margin-top: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-panel {
  position: relative;
  background-image: linear-gradient(
      120deg,
      rgba(1, 7, 29, 0.9) 0%,
      rgba(1, 7, 29, 0.4) 45%,
      rgba(6, 23, 79, 0.35) 100%
    ),
    url('images/Vancouver%20city.jpg');
  background-size: cover;
  background-position: center;
  color: #f5f7ff;
  padding-top: 4rem;
}

.contact-panel .container {
  position: relative;
  z-index: 1;
}

.contact-panel .eyebrow,
.contact-panel .contact-list span,
.contact-panel .contact-list a {
  color: #f5f7ff;
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: none;
  box-shadow: 0 20px 50px rgba(1, 4, 13, 0.45);
  display: grid;
  gap: 1rem;
  color: var(--navy-900);
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #142053;
}

input,
textarea {
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-meta {
  color: var(--muted);
}

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

@media (max-width: 768px) {
  .site-nav ul {
    position: absolute;
    top: 72px;
    right: 5vw;
    background: #fff;
    color: var(--text);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    width: min(280px, 90vw);
    box-shadow: 0 18px 40px rgba(14, 28, 47, 0.15);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav ul.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    margin-top: -70px;
    padding-top: 70px;
  }

  .hero-overlay {
    width: 100%;
    border-radius: 28px;
  }

  .calendar-frame iframe {
    min-height: 420px;
  }
}
