:root {
  --ink: #15171a;
  --muted: #59616d;
  --line: #dde3e8;
  --paper: #fbfcfd;
  --panel: #ffffff;
  --sea: #0d6670;
  --forest: #265b4f;
  --amber: #b8642a;
  --deep: #101820;
  --wash: #eef5f3;
  --shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 34px;
  color: var(--ink);
  background: rgba(251, 252, 253, 0.92);
  border-bottom: 1px solid rgba(221, 227, 232, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--deep);
  border-radius: 8px;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sea);
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.86) 0%, rgba(16, 24, 32, 0.64) 48%, rgba(16, 24, 32, 0.16) 100%),
    url("assets/images/Picture of Vancouver over water from Stanley Park.jpeg") center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #91d6cf;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.12;
}

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

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--sea);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--forest);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1040px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-points div {
  padding: 18px;
  background: rgba(16, 24, 32, 0.38);
}

.proof-points dt {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
}

.proof-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  scroll-margin-top: 94px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.wide {
  max-width: 920px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.focus-item {
  min-height: 244px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.focus-item:nth-child(2) {
  border-top: 5px solid var(--sea);
}

.focus-item:nth-child(1) {
  border-top: 5px solid var(--amber);
}

.focus-item:nth-child(3) {
  border-top: 5px solid var(--forest);
}

.focus-item p {
  color: var(--muted);
}

.recent-section {
  width: 100%;
  max-width: none;
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(13, 102, 112, 0.88)),
    url("callout4.png") center / cover no-repeat;
}

.recent-section .eyebrow {
  color: #e9a36d;
}

.recent-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.recent-card {
  grid-column: span 2;
  min-height: 222px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.recent-card.emphasis {
  grid-column: span 3;
}

.recent-card.ai {
  background: rgba(184, 100, 42, 0.2);
}

.recent-card .work-label {
  color: #e9a36d;
}

.recent-card p:not(.work-label) {
  color: rgba(255, 255, 255, 0.78);
}

.work-section {
  width: 100%;
  max-width: none;
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
  background: var(--wash);
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

.work-card img {
  height: 258px;
  object-fit: cover;
  background: #d8e3e6;
}

.work-card > div {
  padding: 26px;
}

.work-card.feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.28fr 1fr;
}

.work-card.feature img {
  height: 100%;
  min-height: 380px;
}

.work-card.text-only {
  display: grid;
  align-items: end;
  min-height: 360px;
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.92), rgba(13, 102, 112, 0.84)),
    url("callout2_test.png") center / cover no-repeat;
}

.work-card.ai-work {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.92), rgba(184, 100, 42, 0.78)),
    url("assets/images/Museam of human rights poster all human beings are born free and equal in dignity and rights.jpeg") center / cover no-repeat;
}

.work-card.platform-work {
  grid-column: span 2;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.9), rgba(38, 91, 79, 0.8)),
    url("assets/images/Stock image security monitoring center.jpeg") center / cover no-repeat;
}

.work-card.text-only .work-label,
.work-card.text-only p {
  color: rgba(255, 255, 255, 0.82);
}

.work-label {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-card p {
  color: var(--muted);
}

.technical-section {
  padding-bottom: 70px;
}

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

.capability-groups article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.capability-groups h3 {
  font-size: 19px;
}

.capability-groups p {
  color: var(--muted);
}

.experience-section {
  width: 100%;
  max-width: none;
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
  color: #ffffff;
  background: var(--deep);
}

.experience-section .eyebrow {
  color: #e9a36d;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.narrative p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 60px;
  align-items: center;
}

.portrait-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-wrap img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 48% 48%;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.photo-section-heading {
  max-width: 760px;
  margin-top: 60px;
  margin-bottom: 22px;
}

.photo-section-heading h3 {
  max-width: 680px;
  font-size: 28px;
  line-height: 1.2;
}

.personal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.personal-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.personal-strip img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.personal-strip .wedding-tile img {
  object-position: 46% center;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  width: 100%;
  max-width: none;
  padding: 86px max(20px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.contact-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-address {
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.copy-email {
  min-height: 42px;
  padding: 9px 15px;
  color: #ffffff;
  border: 1px solid var(--sea);
  border-radius: 8px;
  background: var(--sea);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.copy-email:hover,
.copy-email:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
}

.contact-section p.copy-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.contact-meta {
  max-width: 320px;
}

.contact-section p.identity-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.contact-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(89, 97, 109, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--sea);
  text-decoration-color: currentColor;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.redirect-message {
  width: min(520px, calc(100% - 40px));
  text-align: center;
}

.redirect-message h1 {
  font-size: 44px;
}

.redirect-message p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 20px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .focus-grid,
  .recent-grid,
  .work-grid,
  .capability-groups,
  .experience-layout,
  .about-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .recent-card,
  .recent-card.emphasis,
  .work-card.platform-work {
    grid-column: auto;
  }

  .work-card.feature {
    grid-template-columns: 1fr;
  }

  .work-card.feature img {
    min-height: auto;
    height: 280px;
  }

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

  .contact-links {
    justify-content: flex-start;
  }

  .contact-primary {
    align-items: stretch;
  }

  .contact-section p.identity-note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 30px, 1120px);
    padding: 32px 0;
  }

  .hero-actions {
    margin-bottom: 26px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .narrative p,
  .about-copy p:not(.eyebrow),
  .contact-section p:not(.eyebrow) {
    font-size: 16px;
  }

  .section,
  .recent-section,
  .work-section,
  .experience-section,
  .contact-section {
    padding-top: 38px;
    padding-bottom: 58px;
    scroll-margin-top: 132px;
  }

  .experience-list,
  .personal-strip {
    grid-template-columns: 1fr;
  }

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

  .proof-points div {
    padding: 14px;
  }

  .proof-points dt {
    font-size: 16px;
  }

  .proof-points dd {
    font-size: 12px;
  }

  .photo-section-heading {
    margin-top: 42px;
  }

  .photo-section-heading h3 {
    font-size: 23px;
  }

  .work-card img {
    height: 220px;
  }

  .work-card.text-only {
    min-height: 290px;
  }

  .recent-card,
  .capability-groups article {
    min-height: auto;
  }
}
