:root {
  --ink: #303236;
  --ink-deep: #222326;
  --text: #34363a;
  --muted: #6f7377;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #dedfe1;
  --orange: #f28c28;
  --orange-dark: #a84f00;
  --warm: #f4f4f2;
  --max-width: 1180px;
  --shadow: 0 18px 45px rgb(11 38 59 / 9%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: block;
  width: 42px;
  height: 37px;
  flex: 0 0 auto;
  object-fit: contain;
}

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

.brand-copy strong {
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-copy strong em {
  color: var(--orange);
  font-style: normal;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-since {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.hero {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 54px 18px 44px;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 13vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 4.7vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.15;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink-deep);
}

.button-primary:hover {
  border-color: #ff9c3a;
  background: #ff9c3a;
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.button-wide {
  grid-column: 1 / -1;
}

.availability {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  background: var(--ink);
  color: var(--white);
}

.panel-heading strong {
  font-size: 14px;
}

.panel-heading span {
  color: #c6d1d7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  gap: 10px;
}

.hero-panel li:first-child {
  border-top: 0;
}

.hero-panel li span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.hero-panel li p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.trust-strip {
  display: grid;
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 44px;
  gap: 8px;
}

.trust-strip p {
  position: relative;
  margin: 0;
  padding-left: 21px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip p::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 72px 18px;
}

.services-section,
.story-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.story-intro h2,
.contact-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 9vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.story-intro > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  display: grid;
  min-height: 340px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.service-card-featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.service-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.service-card-featured .service-number {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card-featured p {
  color: #ccd6dc;
}

.service-card .service-note {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.service-card-featured .service-note {
  color: var(--orange);
}

.service-card > a {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.service-card-featured > a {
  border-color: #405668;
  color: var(--white);
}

.service-card > a:hover span {
  transform: translate(2px, -2px);
}

.service-card > a span {
  transition: transform 160ms ease;
}

.process-section {
  background: var(--warm);
}

.compact-heading {
  max-width: 790px;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.process-grid li {
  padding: 23px;
  border: 1px solid rgb(11 38 59 / 16%);
  border-radius: 12px;
  background: rgb(255 255 255 / 45%);
}

.process-grid li > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.story-intro {
  max-width: 790px;
}

.timeline {
  display: grid;
  margin: 45px 0;
  border-top: 1px solid var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.timeline strong {
  color: var(--orange-dark);
  font-size: 18px;
}

.timeline span {
  color: var(--ink);
  font-weight: 750;
}

.people-grid {
  display: grid;
  gap: 12px;
}

.people-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.person-label {
  margin-bottom: 26px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.people-grid h3 {
  margin-bottom: 12px;
  font-size: 29px;
  font-weight: 900;
}

.people-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 65px 18px;
  background: var(--ink);
  color: var(--white);
  gap: 35px;
}

.eyebrow-light {
  color: var(--orange);
}

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

.contact-section > div:first-child > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: #c7d2d9;
  font-size: 17px;
}

.contact-actions {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-row {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #405668;
  grid-template-columns: 80px 1fr;
  gap: 18px;
}

.contact-row span {
  color: #aebdc6;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.45;
  text-align: right;
}

.contact-row:hover strong {
  color: var(--orange);
}

.site-footer {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 35px 18px 110px;
  color: var(--muted);
  gap: 20px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 18px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.mobile-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  padding: 8px;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 -8px 30px rgb(11 38 59 / 12%);
  backdrop-filter: blur(12px);
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 6px;
}

.mobile-contact-bar a {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.mobile-contact-bar a:first-child {
  border-color: var(--orange);
  background: var(--orange);
}

@media (min-width: 700px) {
  .site-header,
  .hero,
  .section,
  .contact-section,
  .site-footer {
    padding-right: 30px;
    padding-left: 30px;
  }

  .trust-strip {
    width: min(calc(100% - 60px), var(--max-width));
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .button-wide {
    grid-column: auto;
  }

  .availability {
    text-align: left;
  }

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

  .service-card-featured {
    grid-row: span 2;
  }

  .process-grid,
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-section,
  .site-footer {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .site-footer {
    padding-bottom: 42px;
  }

  .site-footer > p {
    margin-top: 0;
    text-align: right;
  }

  .mobile-contact-bar {
    display: none;
  }
}

@media (min-width: 920px) {
  .site-header {
    min-height: 82px;
  }

  .brand-mark {
    width: 49px;
    height: 42px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }

  .desktop-nav a:hover {
    color: var(--ink);
  }

  .desktop-nav .nav-contact {
    padding: 10px 14px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    color: var(--ink);
  }

  .header-since {
    display: none;
  }

  .hero {
    min-height: 680px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 76px;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
    gap: 65px;
  }

  .section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

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

  .service-card {
    padding: 29px;
  }

  .story-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    column-gap: 85px;
  }

  .timeline {
    grid-row: 2;
    grid-column: 1;
  }

  .people-grid {
    align-self: start;
    grid-row: 1 / span 2;
    grid-column: 2;
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-top: 88px;
    padding-bottom: 88px;
    gap: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
