:root {
  --ink: #102126;
  --muted: #587075;
  --line: #d8e7e6;
  --surface: #ffffff;
  --soft: #f5fbfa;
  --wash: #e9f7f5;
  --teal: #0bb7aa;
  --teal-dark: #087c78;
  --blue: #2764d8;
  --amber: #d89a27;
  --rose: #ce5f7b;
  --shadow: 0 24px 60px rgba(16, 33, 38, 0.1);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: #ffffff;
  background: var(--teal-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem max(1.2rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(216, 231, 230, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 760;
  font-size: 1.05rem;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.94rem;
  color: #263e43;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0 0.8rem;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--wash);
  color: var(--teal-dark);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  color: #ffffff;
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  color: #ffffff;
  background: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.28rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
}

.section-inner {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

.section-band {
  background:
    linear-gradient(90deg, rgba(11, 183, 170, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(39, 100, 216, 0.06) 1px, transparent 1px),
    var(--soft);
  background-size: 42px 42px;
}

.home-hero {
  min-height: calc(100vh - var(--header-height) - 64px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: 4.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: 3.65rem;
  line-height: 1.02;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p,
.section-heading p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-lede {
  margin-bottom: 1.7rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 720;
}

.button.primary {
  color: #ffffff;
  background: var(--teal-dark);
  box-shadow: 0 12px 24px rgba(8, 124, 120, 0.16);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #075e5c;
  outline: none;
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
  outline: none;
}

.signal-panel {
  min-height: 440px;
  padding: 1rem;
  border: 1px solid rgba(16, 33, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.signal-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.35rem 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.signal-visual {
  position: relative;
  min-height: 365px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(11, 183, 170, 0.22), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(39, 100, 216, 0.16), transparent 28%),
    #ffffff;
}

.signal-track {
  position: absolute;
  left: 2rem;
  top: 2.1rem;
  bottom: 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.track-node {
  width: 1rem;
  height: 1rem;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: #ffffff;
}

.track-node.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 6px rgba(11, 183, 170, 0.14);
}

.track-line {
  width: 2px;
  flex: 1;
  background: var(--line);
}

.signal-cards {
  display: grid;
  gap: 1rem;
  margin-left: 2.8rem;
}

.signal-cards a {
  display: grid;
  min-height: 86px;
  align-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.signal-cards a:hover,
.signal-cards a:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(16, 33, 38, 0.09);
  outline: none;
}

.signal-cards strong {
  font-size: 1rem;
}

.signal-cards span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-access,
.featured-work,
.credential-strip,
.bio-section,
.principles-section,
.work-browser,
.writing-index {
  padding: 4.8rem 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.quick-link {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.quick-link:hover,
.quick-link:focus-visible {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 33, 38, 0.09);
  outline: none;
}

.quick-link span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.quick-link strong {
  max-width: 23ch;
  font-size: 1.02rem;
  line-height: 1.3;
}

.services-band,
.experience-band,
.proof-band {
  padding: 5.5rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: calc(var(--header-height) + 1.4rem);
}

.service-list,
.timeline-list {
  display: grid;
  gap: 0.75rem;
}

.service-item,
.timeline-item {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.service-item p,
.timeline-item p,
.project-body p,
.proof-list span,
.bio-copy p,
.principles-grid p,
.writing-card p,
.form-note {
  color: var(--muted);
}

.service-index,
.timeline-item > span {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.row-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.row-heading h2,
.section-heading.compact h2 {
  margin-bottom: 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.metric-card strong {
  color: var(--teal-dark);
  font-size: 2.35rem;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.93rem;
}

.text-link,
.project-body a,
.writing-card a {
  color: var(--teal-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(11, 183, 170, 0.35);
  text-underline-offset: 0.24em;
}

.text-link:hover,
.text-link:focus-visible,
.project-body a:hover,
.project-body a:focus-visible,
.writing-card a:hover,
.writing-card a:focus-visible {
  color: #075e5c;
  text-decoration-color: currentColor;
  outline: none;
}

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

.project-card,
.writing-card,
.principles-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.project-card.detail {
  display: flex;
  flex-direction: column;
}

.project-media {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--wash);
}

.project-media span {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 33, 38, 0.12);
}

.media-ignite {
  background:
    linear-gradient(135deg, rgba(11, 183, 170, 0.24), rgba(39, 100, 216, 0.18)),
    #f8fcfc;
}

.media-ignite span:nth-child(1) {
  left: 10%;
  top: 18%;
  width: 46%;
  height: 28%;
}

.media-ignite span:nth-child(2) {
  right: 10%;
  top: 24%;
  width: 28%;
  height: 44%;
  background: var(--ink);
}

.media-ignite span:nth-child(3) {
  left: 16%;
  bottom: 18%;
  width: 64%;
  height: 18%;
}

.media-ignite span:nth-child(4) {
  left: 20%;
  bottom: 24%;
  width: 38%;
  height: 5px;
  background: var(--teal);
  box-shadow: none;
}

.media-tennis {
  background:
    linear-gradient(135deg, rgba(216, 154, 39, 0.2), rgba(11, 183, 170, 0.16)),
    #fbfdf9;
}

.media-tennis span:nth-child(1) {
  left: 10%;
  top: 18%;
  width: 80%;
  height: 64%;
  border: 2px solid #ffffff;
  background: rgba(11, 183, 170, 0.42);
}

.media-tennis span:nth-child(2) {
  left: 50%;
  top: 18%;
  width: 2px;
  height: 64%;
  background: #ffffff;
  box-shadow: none;
}

.media-tennis span:nth-child(3) {
  left: 18%;
  top: 50%;
  width: 64%;
  height: 2px;
  background: #ffffff;
  box-shadow: none;
}

.media-tennis span:nth-child(4) {
  right: 18%;
  top: 28%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
}

.media-automation {
  background:
    linear-gradient(135deg, rgba(39, 100, 216, 0.18), rgba(206, 95, 123, 0.14)),
    #fbfcff;
}

.media-automation span:nth-child(1),
.media-automation span:nth-child(2),
.media-automation span:nth-child(3) {
  left: 14%;
  width: 72%;
  height: 34px;
}

.media-automation span:nth-child(1) {
  top: 22%;
}

.media-automation span:nth-child(2) {
  top: 44%;
  background: var(--ink);
}

.media-automation span:nth-child(3) {
  top: 66%;
}

.media-automation span:nth-child(4) {
  left: 23%;
  top: 33%;
  width: 54%;
  height: 58px;
  border: 2px solid var(--teal);
  background: transparent;
  box-shadow: none;
}

.media-personal {
  background:
    linear-gradient(135deg, rgba(11, 183, 170, 0.18), rgba(216, 154, 39, 0.18)),
    #fcfdf9;
}

.media-personal span:nth-child(1) {
  left: 12%;
  top: 18%;
  width: 30%;
  height: 56%;
}

.media-personal span:nth-child(2) {
  left: 48%;
  top: 18%;
  width: 38%;
  height: 24%;
  background: var(--ink);
}

.media-personal span:nth-child(3) {
  left: 48%;
  top: 52%;
  width: 38%;
  height: 22%;
}

.media-personal span:nth-child(4) {
  left: 18%;
  top: 28%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: var(--rose);
}

.media-novel {
  background:
    linear-gradient(135deg, rgba(206, 95, 123, 0.16), rgba(39, 100, 216, 0.18)),
    #fcfbff;
}

.media-novel span:nth-child(1) {
  left: 15%;
  top: 18%;
  width: 30%;
  height: 30%;
  background: var(--ink);
}

.media-novel span:nth-child(2) {
  right: 15%;
  top: 18%;
  width: 30%;
  height: 30%;
}

.media-novel span:nth-child(3) {
  left: 15%;
  bottom: 18%;
  width: 30%;
  height: 30%;
}

.media-novel span:nth-child(4) {
  right: 15%;
  bottom: 18%;
  width: 30%;
  height: 30%;
  background: var(--teal);
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0 0.48rem;
  border-radius: 8px;
  color: #285057;
  background: var(--wash);
  font-size: 0.75rem;
  font-weight: 760;
}

.project-body a,
.writing-card a {
  margin-top: auto;
}

.project-meta {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-meta div {
  display: grid;
  gap: 0.1rem;
}

.project-meta dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 3rem;
}

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

.proof-list div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.proof-list strong {
  font-size: 1.04rem;
}

.proof-list span {
  font-size: 0.95rem;
}

.page-hero {
  padding: 5.4rem 0;
}

.hero-narrow {
  max-width: 980px;
}

.hero-narrow h1 {
  max-width: 16ch;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.portrait-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.portrait-panel img {
  width: 7.5rem;
  height: 7.5rem;
}

.portrait-panel span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 780;
  text-transform: uppercase;
}

.portrait-panel strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.bio-copy {
  font-size: 1.08rem;
}

.bio-copy p {
  max-width: 760px;
}

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

.principles-grid article,
.writing-card {
  padding: 1.25rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.filter-button {
  min-height: 2.45rem;
  padding: 0 0.78rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--wash);
  outline: none;
}

.contact-hero {
  padding: 5.4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 3rem;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 720;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form label span {
  color: #2f4d53;
  font-size: 0.86rem;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.78rem 0.82rem;
  color: var(--ink);
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 183, 170, 0.13);
  outline: none;
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  margin-bottom: 0.7rem;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.footer-links a {
  padding: 0.5rem 0.62rem;
  border-radius: 8px;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal-dark);
  background: var(--wash);
  outline: none;
}

@media (max-width: 980px) {
  h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-grid,
  .split-layout,
  .credential-grid,
  .proof-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .quick-grid,
  .metric-grid,
  .project-grid,
  .project-grid.featured,
  .proof-list,
  .principles-grid,
  .writing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: center;
    margin-left: 0;
  }

  .home-hero,
  .quick-access,
  .featured-work,
  .credential-strip,
  .bio-section,
  .principles-section,
  .work-browser,
  .writing-index,
  .services-band,
  .experience-band,
  .proof-band,
  .page-hero,
  .contact-hero {
    padding: 3.25rem 0;
  }

  .home-hero {
    min-height: auto;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-lede,
  .page-hero p,
  .section-heading p {
    font-size: 1rem;
  }

  .signal-panel {
    min-height: 360px;
  }

  .signal-visual {
    min-height: 292px;
    padding: 1rem;
  }

  .signal-topline {
    flex-direction: column;
    gap: 0.2rem;
  }

  .quick-grid,
  .metric-grid,
  .project-grid,
  .project-grid.featured,
  .proof-list,
  .principles-grid,
  .writing-grid {
    grid-template-columns: 1fr;
  }

  .row-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .filter-group {
    justify-content: start;
  }

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

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

@media (max-width: 440px) {
  .hero-actions,
  .inline-actions,
  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .signal-cards {
    margin-left: 2.2rem;
  }

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