:root {
  --bg: #f4f9fb;
  --surface: #ffffff;
  --ink: #203b47;
  --muted: #637985;
  --accent: #315b6b;
  --accent-2: #0b5d96;
  --line: #d7e2e6;
  --pill: #edf0f4;
  --radius: 26px;
  --max: 1140px;
  --nav-max: 1190px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .01em;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 24px;
  background: rgba(244, 249, 251, .9);
  backdrop-filter: blur(14px);
}

/* =========================================
   NAVIGATION
========================================= */

.nav-shell {
  max-width: var(--nav-max);
  height: 82px;
  margin: auto;
  padding: 0 24px 0 42px;

  background: rgba(255, 255, 255, 0.94);
  border-radius: 48px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  box-shadow: 0 10px 30px rgba(40, 70, 80, 0.06);
}

/* -----------------------------------------
   Logo
----------------------------------------- */

.brand {
  width: 110px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

/* -----------------------------------------
   Center Navigation
----------------------------------------- */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 0;
}

.nav-links a,
.mobile-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.nav-links a.active {
  color: var(--ink);
}

/* -----------------------------------------
   Social Links
----------------------------------------- */

.social-links {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #284651;
  color: #ffffff;

  border-radius: 16px;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:hover {
  background: #cfe2cf;
  color: #ffffff;
  transform: translateY(-2px);
}

/* -----------------------------------------
   Mobile Hamburger
----------------------------------------- */

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  width: 44px;
  height: 44px;

  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #718087;
  margin: 5px auto;
  border-radius: 2px;
}

/* -----------------------------------------
   Mobile Dropdown
----------------------------------------- */

.mobile-menu {
  display: none;

  max-width: var(--nav-max);
  margin: 8px auto 0;

  background: #fff;
  border-radius: 25px;
  padding: 14px;
}

.mobile-menu a {
  display: block;
  padding: 14px 18px;
  border-radius: 16px;
}

.mobile-menu a:hover {
  background: var(--pill);
}

/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
  padding: 110px 24px;
}

.section-soft {
  background: #eef5f8;
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 70px 24px;

  background: #f2f8fa;
}

.hero-inner {
  position: relative;
  z-index: 2;

  width: min(100%, 900px);
  max-width: 900px;
  min-width: 0;

  text-align: center;
}

.hero h1 {
  margin: 10px 0 18px;

  font-size: clamp(56px, 7vw, 94px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.055em;

  max-width: 100%;
}

.hero h2 {
  margin: 0 0 24px;

  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.15;

  max-width: 100%;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;

  color: var(--muted);

  font-size: 19px;
  line-height: 1.55;
}

.eyebrow,
.section-kicker {
  color: #6c8793;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================================
   HERO ROLE MARQUEE
========================================= */

.role-pills {
  width: min(100%, 760px);
  max-width: 100%;

  margin: 32px auto 0;

  overflow: hidden;

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.role-track {
  display: flex;

  /*
    IMPORTANT:
    Keep max-content so the marquee can
    continuously scroll horizontally.
  */
  width: max-content;

  gap: 10px;

  animation: roleMarquee 18s linear infinite;

  will-change: transform;
}

/* Pause when the user interacts */

.role-pills:hover .role-track {
  animation-play-state: paused;
}

.role-track span {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;

  padding: 11px 18px;

  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.72);

  color: #6f7e84;

  font-size: 15px;
  font-weight: 500;

  white-space: nowrap;

  box-shadow:
    0 4px 12px rgba(40, 70, 80, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.role-track b {
  display: inline-grid;
  place-items: center;

  width: 21px;
  height: 21px;

  margin-right: 8px;

  border-radius: 50%;

  background: #3d5b67;
  color: #ffffff;

  font-size: 12px;
  font-weight: 700;

  flex: 0 0 auto;
}

/* -----------------------------------------
   Horizontal Animation
----------------------------------------- */

@keyframes roleMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

/* -----------------------------------------
   Hero Background
----------------------------------------- */

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: .42;

  background-image:
    linear-gradient(#dce8ec 1px, transparent 1px),
    linear-gradient(90deg, #dce8ec 1px, transparent 1px);

  background-size: 88px 88px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 82%,
      transparent
    );
}

.hero-arc {
  position: absolute;

  width: 410px;
  height: 900px;

  border: 5px solid rgba(221, 233, 238, .65);
  border-radius: 50%;

  top: -130px;
}

.hero-arc-left {
  left: -310px;

  box-shadow:
    24px 0 0 rgba(255, 255, 255, .7),
    48px 0 0 rgba(221, 233, 238, .45);
}

.hero-arc-right {
  right: -310px;

  box-shadow:
    -24px 0 0 rgba(255, 255, 255, .7),
    -48px 0 0 rgba(221, 233, 238, .45);
}

/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #111;
  margin: 8px 0 20px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto 18px;
}

.text-link {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* =========================================
   TIMELINE
========================================= */

.timeline {
  position: relative;
  max-width: 1060px;
  margin: auto;
  padding: 30px 0;
}

.timeline::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 4px;

  transform: translateX(-50%);

  background: #d1dde2;
  border-radius: 4px;
}

.timeline-item {
  position: relative;

  width: 50%;

  padding: 0 54px 64px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;

  top: 30px;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #587acb;

  border: 4px solid #eef5f8;

  box-shadow: 0 0 0 1px #cad9df;
}

.left .timeline-dot {
  right: -10px;
}

.right .timeline-dot {
  left: -10px;
}

.timeline-date {
  display: block;

  color: #587acb;

  font-weight: 700;
  font-size: 14px;

  letter-spacing: .04em;

  margin-bottom: 10px;
}

.timeline-card {
  position: relative;

  background: #fff;

  border: 1px solid #d6e1e6;
  border-radius: 16px;

  padding: 22px 24px;

  box-shadow: 0 8px 22px rgba(36, 62, 70, .05);

  transition:
    transform .2s,
    box-shadow .2s;
}

.timeline-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(36, 62, 70, .1);
}

.left .timeline-card::after,
.right .timeline-card::after {
  content: "";

  position: absolute;

  top: 24px;

  width: 18px;
  height: 18px;

  background: #fff;

  transform: rotate(45deg);

  border-top: 1px solid #d6e1e6;
  border-right: 1px solid #d6e1e6;
}

.left .timeline-card::after {
  right: -10px;
}

.right .timeline-card::after {
  left: -10px;
  transform: rotate(225deg);
}

.timeline-company {
  font-size: 15px;
  color: #587acb;
  font-weight: 700;
  margin: 0 0 8px;
}

.timeline-role {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.15;
}

.timeline-location {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
}

.timeline-desc {
  color: #506670;
  line-height: 1.55;
  margin: 0;
  font-size: 15px;
}

.skill-tags {
  margin-top: 16px;

  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}

.left .skill-tags {
  justify-content: flex-end;
}

.skill-tag {
  padding: 7px 10px;

  background: var(--pill);

  border-radius: 10px;

  color: #71818a;

  font-size: 12px;
}

.timeline-more {
  display: none;

  margin-top: 12px;

  color: #587acb;

  font-weight: 700;
  font-size: 13px;
}

/* =========================================
   PROJECTS
========================================= */

.projects-section {
  background: #f4f9fb;
}

.project-category {
  max-width: 1160px;
  margin: 0 auto 100px;
}

.project-category > h3 {
  font-size: 34px;
  text-align: left;
  margin: 0 0 14px;
  color: #172a31;
  font-weight: 500;
}

.category-intro {
  text-align: center;
  color: #5e747f;
  font-size: 17px;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* =========================================
   PROJECT GRID
========================================= */

.project-grid {
  display: grid;

  grid-template-columns: repeat(3, 360px);

  gap: 48px 40px;

  justify-content: center;
}

.project-card {
  width: 360px;
  height: 375px;

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 8px 22px rgba(30, 55, 65, .05);

  display: flex;
  flex-direction: column;

  transition:
    transform .25s,
    box-shadow .25s;
}

.project-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 38px rgba(30, 55, 65, .12);
}

.project-image {
  width: 360px;
  height: 202px;

  flex: 0 0 202px;

  overflow: hidden;

  background: #dce7eb;
}

.project-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.project-body {
  height: 173px;

  padding: 18px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  text-align: center;
}

.project-title {
  margin: 0;

  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;

  color: #233e4a;
}

.project-meta {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.project-tag {
  background: var(--pill);
  color: #74858e;

  padding: 10px 14px;

  border-radius: 12px;

  font-size: 13px;
}

.project-arrow {
  width: 43px;
  height: 43px;

  border-radius: 17px;

  background: #284551;
  color: #fff;

  display: grid;
  place-items: center;

  font-size: 28px;

  text-decoration: none;

  flex: none;

  transition:
    transform .2s ease,
    background .2s ease;
}

.project-arrow:hover {
  background: #1b333d;
  transform: translateY(-2px);
}

.project-arrow--disabled {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}

.data-category {
  margin-top: 0;
}

/* =========================================
   ABOUT
========================================= */

.about-section {
  background: #eef5f8;
}

.about-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1.25fr;

  gap: 80px;

  align-items: center;
}

.about-visual {
  min-height: 500px;

  position: relative;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 36px;

  background: linear-gradient(
    135deg,
    #e2edf1,
    #f8fbfc
  );
}

.about-visual img {
  width: 600px;

  position: relative;

  z-index: 2;
}

.about-orbit {
  position: absolute;

  width: 430px;
  height: 430px;

  border: 2px solid #d6e4e9;

  border-radius: 50%;

  box-shadow:
    0 0 0 22px rgba(255, 255, 255, .35),
    0 0 0 44px rgba(215, 229, 235, .3);
}

.about-copy h2 {
  color: #111;

  font-size: clamp(32px, 3.5vw, 42px);

  margin: 8px 0 20px;

  line-height: 1;
}

.about-lead {
  color: #5f747e;

  font-size: 20px;

  line-height: 1.5;

  margin-bottom: 28px;
}

/* =========================================
   FAQ
========================================= */

.faq details {
  background: #fff;

  border-radius: 14px;

  margin: 10px 0;

  border: 1px solid #d9e4e8;
}

.faq summary {
  cursor: pointer;

  list-style: none;

  padding: 18px 20px;

  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  color: #607681;

  line-height: 1.55;

  padding: 0 20px 20px;

  margin: 0;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #213c48;

  color: #e8f1f3;

  padding: 65px 7vw 35px;

  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 50px;
}

.footer-brand {
  font-family: Georgia, serif;

  font-size: 28px;

  margin: 0 0 14px;
}

.site-footer p {
  max-width: 620px;

  line-height: 1.6;

  color: #c7d7dc;
}

.footer-links {
  display: flex;

  justify-content: flex-end;

  gap: 80px;
}

.footer-links div {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;

  color: #fff;
}

.footer-links a {
  text-decoration: none;

  color: #c7d7dc;
}

.copyright {
  grid-column: 1 / -1;

  border-top: 1px solid rgba(255, 255, 255, .15);

  padding-top: 24px;

  margin: 0;

  font-size: 13px;
}

/* =========================================
   RESPONSIVE — TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 1220px) {

  .project-grid {
    grid-template-columns: repeat(2, 360px);
  }

  .nav-shell {
    max-width: 1040px;
  }
}

/* =========================================
   RESPONSIVE — TABLET / MOBILE
========================================= */

@media (max-width: 850px) {

  .site-header {
    padding: 10px 14px;
  }

  .nav-shell {
    height: 70px;

    padding: 0 16px 0 22px;
  }

  .brand {
    width: 90px;
  }

  .brand img {
    height: 58px;
  }

  .nav-links,
  .social-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.open {
    display: block;
  }

  /* -----------------------------------------
     Hero
  ----------------------------------------- */

  .hero {
    min-height: 600px;

    padding: 70px 20px;
  }

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

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

  .role-pills {
    width: 100%;
    max-width: 760px;
  }

  /* Keep arcs from visually dominating mobile */
  .hero-arc {
    opacity: .8;
  }

  /* -----------------------------------------
     General
  ----------------------------------------- */

  .section {
    padding: 80px 20px;
  }

  /* -----------------------------------------
     Timeline
  ----------------------------------------- */

  .timeline {
    padding-left: 25px;
  }

  .timeline::before {
    left: 25px;
    transform: none;
  }

  .timeline-item,
  .timeline-item.right,
  .timeline-item.left {
    width: 100%;
    left: 0;

    padding: 0 0 48px 45px;

    text-align: left;
  }

  .left .timeline-dot,
  .right .timeline-dot {
    left: -9px;
    right: auto;
  }

  .left .timeline-card::after,
  .right .timeline-card::after {
    left: -10px;
    right: auto;

    transform: rotate(225deg);
  }

  .left .skill-tags {
    justify-content: flex-start;
  }

  /* -----------------------------------------
     Projects
  ----------------------------------------- */

  .project-grid {
    grid-template-columns: 360px;
  }

  /* -----------------------------------------
     About
  ----------------------------------------- */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .about-visual {
    min-height: 380px;
  }

  /* -----------------------------------------
     Footer
  ----------------------------------------- */

  .site-footer {
    grid-template-columns: 1fr;
  }

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

/* =========================================
   RESPONSIVE — PHONE
========================================= */

@media (max-width: 500px) {

  /* -----------------------------------------
     Header
  ----------------------------------------- */

  .site-header {
    padding: 8px 10px;
  }

  .nav-shell {
    height: 64px;

    padding: 0 12px 0 18px;

    border-radius: 38px;
  }

  .brand {
    width: 80px;
    height: 58px;
  }

  .brand img {
    height: 52px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  /* -----------------------------------------
     Hero
  ----------------------------------------- */

  .hero {
    min-height: 640px;

    padding: 70px 18px;

    width: 100%;
  }

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

  .eyebrow {
    max-width: 100%;

    font-size: 11px;

    letter-spacing: .15em;

    overflow-wrap: break-word;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;

    margin: 10px 0 16px;

    font-size: 54px;

    line-height: .98;

    letter-spacing: -.05em;

    overflow-wrap: break-word;
  }

  .hero h2 {
    width: 100%;
    max-width: 100%;

    margin-bottom: 20px;

    font-size: 21px;

    line-height: 1.2;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.5;
  }

  /* -----------------------------------------
     Mobile Role Marquee
  ----------------------------------------- */

  .role-pills {
    width: 100%;
    max-width: 100%;

    margin-top: 28px;

    overflow: hidden;
  }

  .role-track {
    width: max-content;

    gap: 8px;
  }

  .role-track span {
    font-size: 13px;

    padding: 9px 12px;
  }

  .role-track b {
    width: 19px;
    height: 19px;

    margin-right: 6px;

    font-size: 11px;
  }

  /* -----------------------------------------
     Mobile Hero Decoration
  ----------------------------------------- */

  .hero-grid {
    background-size: 60px 60px;
  }

  .hero-arc {
    width: 280px;
    height: 720px;

    top: -60px;

    border-width: 4px;

    opacity: .65;
  }

  .hero-arc-left {
    left: -225px;
  }

  .hero-arc-right {
    right: -225px;
  }

  /* -----------------------------------------
     Sections
  ----------------------------------------- */

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  /* -----------------------------------------
     Projects
  ----------------------------------------- */

  .project-grid {
    grid-template-columns: minmax(0, 360px);
    width: 100%;
  }

  .project-card {
    width: 100%;
    max-width: 360px;

    margin: auto;
  }

  .project-image {
    width: 100%;
  }

  .project-category > h3 {
    font-size: 28px;
  }

  .category-intro {
    font-size: 15px;
  }

  /* -----------------------------------------
     Newsletter
  ----------------------------------------- */

  .newsletter-content {
    padding: 28px 22px;
  }

  .newsletter-content h4 {
    font-size: 40px;
  }

  .newsletter-list a {
    font-size: 20px;
  }

  /* -----------------------------------------
     About
  ----------------------------------------- */

  .about-visual {
    min-height: 320px;
  }

  .about-visual img {
    width: 100%;
    max-width: 450px;
  }

  .about-orbit {
    width: 300px;
    height: 300px;
  }

  /* -----------------------------------------
     Footer
  ----------------------------------------- */

  .footer-links {
    gap: 45px;
    flex-wrap: wrap;
  }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* -----------------------------------------
   Different Reveal Speeds
----------------------------------------- */

.reveal-slow {
  transition-duration: 1.1s;
}

.reveal-fast {
  transition-duration: 0.55s;
}

/* -----------------------------------------
   Staggered Children
----------------------------------------- */

.reveal-stagger > * {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;

  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.33s;
}

.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.40s;
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .role-track {
    animation: none;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;

    transform: none;

    transition: none;
  }
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
  max-width: var(--max);

  margin: 0 auto;

  padding-top: 70px;
}

.contact-heading {
  max-width: 720px;

  margin: 0 0 56px;
}

.contact-heading .section-kicker {
  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--accent);
}

.kicker-dash {
  width: 28px;
  height: 2px;

  background: var(--accent);

  display: inline-block;
}

.contact-heading h1 {
  font-size: clamp(48px, 7vw, 78px);

  line-height: 1;

  font-weight: 700;

  color: #111;

  margin: 14px 0 22px;
}

.contact-heading p {
  color: var(--muted);

  font-size: 18px;

  line-height: 1.5;

  max-width: 620px;

  margin: 0;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1.35fr 1fr;

  gap: 32px;

  align-items: start;
}

.contact-card,
.focus-card {
  background: var(--surface);

  border-radius: var(--radius);

  box-shadow: 0 8px 22px rgba(30, 55, 65, .05);

  padding: 28px;
}

.contact-row {
  display: block;

  text-decoration: none;

  color: inherit;

  border: 1px solid var(--line);

  border-radius: 16px;

  padding: 16px 20px;

  margin-bottom: 16px;

  transition:
    border-color .2s ease,
    transform .2s ease;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-row:hover {
  border-color: var(--accent-2);

  transform: translateY(-2px);
}

.contact-label {
  display: block;

  color: var(--accent);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  margin-bottom: 6px;
}

.contact-value {
  display: block;

  font-size: 17px;

  font-weight: 700;

  color: #172a31;

  word-break: break-word;
}

.focus-card h3 {
  font-size: 30px;

  color: #111;

  margin: 0 0 20px;
}

.focus-list {
  list-style: none;

  margin: 0 0 28px;

  padding: 0;
}

.focus-list li {
  position: relative;

  padding-left: 20px;

  margin-bottom: 12px;

  color: #34505b;

  font-size: 15px;

  line-height: 1.5;
}

.focus-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--accent-2);
}

.focus-cta {
  display: inline-block;

  background: #284551;

  color: #fff;

  font-weight: 700;

  text-decoration: none;

  padding: 14px 24px;

  border-radius: 14px;

  transition:
    background .2s ease,
    transform .2s ease;
}

.focus-cta:hover {
  background: #1b333d;

  transform: translateY(-2px);
}

/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 860px) {

  .contact-page {
    padding-top: 40px;
  }

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

@media (max-width: 500px) {

  .contact-page {
    padding-top: 30px;
  }

  .contact-heading {
    margin-bottom: 40px;
  }

  .contact-heading h1 {
    font-size: 52px;
  }

  .contact-heading p {
    font-size: 16px;
  }

  .contact-card,
  .focus-card {
    padding: 20px;
  }

  .contact-value {
    font-size: 15px;
  }
}