:root {
  --ink: #182033;
  --muted: #5f6877;
  --line: #d8dde7;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --navy: #26325d;
  --teal: #286f6c;
  --gold: #a27436;
  --shadow: 0 20px 60px rgba(24, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 245px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--navy);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/seattle-hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 18, 31, 0.78), rgba(12, 18, 31, 0.36) 58%, rgba(12, 18, 31, 0.2));
}

.hero-content {
  width: min(760px, 100%);
  color: white;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 640px;
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e6c489;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 88px);
}

.intro,
.split,
.contact-page {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.25fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section-heading h2,
.contact-band h2,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.text-stack p:first-child {
  margin-top: 0;
}

.services-band {
  background: var(--navy);
  color: white;
}

.services-band .section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.service-card,
.wide-card,
.focus-panel {
  border: 1px solid rgba(216, 221, 231, 0.78);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-card h3,
.wide-card h2,
.person h2,
.focus-panel h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.service-card a,
.wide-card a,
.text-link {
  text-decoration: none;
}

.service-card p,
.wide-card p {
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 420px);
  gap: 36px;
  align-items: center;
  background: var(--soft);
}

.contact-details {
  padding: 26px;
  border-left: 4px solid var(--teal);
  background: white;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 6vw, 88px);
  background: linear-gradient(135deg, #f7f8fa, #e7edf1);
}

.page-hero.compact {
  min-height: 320px;
}

.page-hero p {
  max-width: 820px;
  font-size: 1.1rem;
}

.cards-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  padding: clamp(24px, 4vw, 42px);
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.focus-panel {
  padding: 28px;
  position: sticky;
  top: 110px;
}

.focus-panel ul {
  margin: 0;
  padding-left: 20px;
}

.focus-panel li + li {
  margin-top: 10px;
}

.people-list {
  display: grid;
  gap: 40px;
}

.person {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-copy {
  max-width: 920px;
  margin: 0 auto;
}

.legal-copy h2 {
  margin-top: 36px;
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer {
  background: #111827;
  color: white;
  padding: 48px clamp(20px, 6vw, 88px) 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer a {
  color: white;
}

.site-footer address {
  font-style: normal;
}

.copyright {
  margin: 34px 0 0;
  color: #b8c0cc;
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    align-items: center;
  }

  .brand img {
    width: 205px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: calc(94vh - 72px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 14vw, 4.1rem);
  }

  .intro,
  .split,
  .contact-band,
  .contact-page,
  .footer-inner,
  .person {
    grid-template-columns: 1fr;
  }

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

  .focus-panel {
    position: static;
  }
}
