:root {
  --bg: #f1e8dc;
  --bg-alt: #faf4eb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --text: #18161b;
  --muted: #5f5960;
  --line: rgba(24, 22, 27, 0.12);
  --brand-purple: #274d63;
  --brand-orange: #d87a33;
  --brand-ink: #102636;
  --brand-sand: #f4d7bc;
  --shadow: 0 30px 80px rgba(24, 18, 23, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --container-wide: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 122, 51, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(39, 77, 99, 0.16), transparent 30%),
    linear-gradient(180deg, #fdf8f0 0%, #f1e8dc 48%, #e8ddce 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  width: 42rem;
  height: 42rem;
  top: -8rem;
  right: -12rem;
  background: linear-gradient(135deg, rgba(216, 122, 51, 0.22), rgba(39, 77, 99, 0.08));
  clip-path: polygon(32% 0, 100% 0, 100% 68%, 68% 100%, 0 100%, 0 32%);
}

.site-shell::after {
  width: 28rem;
  height: 28rem;
  left: -8rem;
  bottom: 12rem;
  border: 1px solid rgba(39, 77, 99, 0.12);
  transform: rotate(18deg);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.container--wide {
  width: min(calc(100% - 2rem), var(--container-wide));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0;
  backdrop-filter: blur(14px);
  background: rgba(248, 242, 233, 0.58);
}

.site-header .container,
.site-footer .container,
.hero-grid,
.split-layout,
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header .container {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(24, 22, 27, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.06), rgba(39, 77, 99, 0.04));
  box-shadow: 0 18px 42px rgba(18, 22, 28, 0.08);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled .container {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(24, 22, 27, 0.12);
  box-shadow: 0 24px 48px rgba(18, 22, 28, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(16, 38, 54, 0.18);
}

.brand span {
  display: grid;
  gap: 0.15rem;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  font-size: 0.75rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(24, 22, 27, 0.06);
}

.site-nav a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--muted);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(16, 38, 54, 0.08);
}

.site-nav .button:hover,
.site-nav .button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-ink), #325a70 62%, var(--brand-orange) 150%);
}

.site-nav .button,
.site-nav .button:hover,
.site-nav .button:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand-ink), #325a70 62%, var(--brand-orange) 150%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(16, 38, 54, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(16, 38, 54, 0.24);
}

.button--ghost {
  border-color: rgba(24, 22, 27, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  box-shadow: none;
}

.button--small {
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
}

.hero {
  position: relative;
  padding: 5.25rem 0 3.5rem;
}

.hero-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.hero-copy {
  position: relative;
  padding: 2rem 0 3rem;
}

.hero-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  margin-bottom: 1rem;
}

.status-pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.09);
  color: var(--brand-ink);
  font-size: 0.83rem;
  font-weight: 600;
}

.status-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 0.35rem rgba(216, 122, 51, 0.16);
}

.notice-pill {
  margin: 1.1rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(39, 77, 99, 0.1);
  border: 1px solid rgba(39, 77, 99, 0.18);
  color: var(--brand-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.notice-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-ink);
  box-shadow: 0 0 0 0.32rem rgba(39, 77, 99, 0.12);
}

.notice-pill--careers {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(24, 22, 27, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--brand-orange);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background: linear-gradient(135deg, var(--brand-orange), #f4a53d);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 10.5ch;
}

.lead,
.section-heading p,
.timeline-item p,
.service-card p,
.work-card p,
.value-list p,
.contact-panel p,
.hero-proof-card p,
.site-footer p,
.trust-band p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.lead {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-specialties span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero-proof-strip {
  padding: 0 0 2.5rem;
}

.hero-proof--wide {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-proof-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 38, 54, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.06), rgba(39, 77, 99, 0.04));
  box-shadow: 0 16px 34px rgba(18, 22, 28, 0.08);
}

.hero-proof-card span,
.panel-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.hero-proof-card p {
  margin: 0;
}

.hero-panel {
  align-self: center;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  overflow: visible;
}

.hero-panel::before {
  content: none;
}

.showcase-image-card,
.work-spotlight-media,
.contact-visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.15rem);
  border: 1px solid rgba(24, 22, 27, 0.08);
  box-shadow: 0 22px 50px rgba(18, 22, 28, 0.14);
}

.showcase-image-card::before,
.work-spotlight-media::before,
.contact-visual-card::before {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 1;
  pointer-events: none;
}

.hero-media {
  margin: 0;
  transform: translateY(22px);
}

.hero-media img,
.showcase-image-card img,
.work-spotlight-media img,
.contact-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-spotlight-media img {
  flex: 1;
}

.hero-media img {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.trust-band {
  padding: 1.4rem 0 0.25rem;
}

.trust-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0 1.5rem;
  border-top: 1px solid rgba(24, 22, 27, 0.08);
  border-bottom: 1px solid rgba(24, 22, 27, 0.08);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-tags span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section--services::before,
.section--work::before,
.section--approach::after,
.section--values::before,
.section--specialization::before,
.section--contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.section--services::before,
.section--careers::before {
  top: 4.5rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, rgba(216, 122, 51, 0.12), rgba(39, 77, 99, 0.05));
  transform: rotate(18deg);
}

.section--careers-hero,
.section--service-hero {
  padding: 4.5rem 0 0 0;
}

.section--service-detail {
  padding: 4.5rem 0;
}


.section--work::before {
  top: 3rem;
  left: -6rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 77, 99, 0.08), transparent 68%);
}

.section--approach::after {
  top: 5rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(216, 122, 51, 0.12);
  transform: rotate(16deg);
}

.section--values::before {
  left: -5rem;
  bottom: 1rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 122, 51, 0.12), transparent 68%);
}

.section--specialization::before {
  top: 2rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 3rem;
  background: linear-gradient(135deg, rgba(39, 77, 99, 0.1), rgba(216, 122, 51, 0.08));
  transform: rotate(-8deg);
}

.section--about-hero {
  padding: 4.5rem 0 3rem;
}

.section--about-hero .section-heading {
  max-width: 54rem;
}

.section--about-hero h1 {
  max-width: 15ch;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.about-hero-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 22, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 243, 234, 0.86)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.05), rgba(39, 77, 99, 0.04));
  box-shadow: 0 20px 44px rgba(18, 22, 28, 0.08);
}

.about-hero-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.about-hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section--service-cta {
  padding-top: 0;
}

.service-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(24, 22, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 243, 234, 0.86)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.06), rgba(39, 77, 99, 0.05));
  box-shadow: 0 22px 46px rgba(18, 22, 28, 0.1);
}

.service-cta-card h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.service-cta-card p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.service-cta-card .hero-actions {
  margin-top: 0;
}

.section--contact::after {
  right: -7rem;
  top: 2rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1px solid rgba(39, 77, 99, 0.08);
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.specialization-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 22, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 243, 234, 0.86)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.05), rgba(39, 77, 99, 0.04));
  box-shadow: 0 22px 44px rgba(18, 22, 28, 0.08);
}

.specialization-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specialization-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
}

.specialization-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-showcase,
.work-spotlight {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.section--service-detail .split-layout {
  margin-top: 3.5rem;
}

.section--service-detail .service-grid {
  margin-bottom: 1rem;
}

.section--pricing-hero .section-heading {
  position: static;
  z-index: 2;
  margin-bottom: 3rem;
}

.section--pricing-hero {
  padding: 4.5rem 0 0 0;
}

.section--pricing-hero .service-grid {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.pricing-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.pricing-hero-image {
  max-width: none;
  width: 100%;
  justify-self: center;
  align-self: center;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.pricing-hero-image img {
  height: auto;
  max-height: 760px;
  max-width: 800px;
  margin: 0 auto;
  object-fit: contain;
}

.pricing-hero-image::before {
  content: none;
}

@media (min-width: 1024px) {
  .pricing-hero-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .section--pricing-hero .section-heading {
    margin-bottom: 0;
  }
}

.section-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.section-showcase .showcase-image-card {
  height: 100%;
  align-self: stretch;
  grid-column: span 2;
}

.section-showcase .showcase-copy-card {
  height: auto;
  align-self: start;
  grid-column: span 2;
}

.section-showcase .showcase-image-card img {
  object-fit: cover;
  height: 100%;
}

.showcase-copy-card,
.work-spotlight-copy {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 22, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 243, 234, 0.84)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.06), rgba(39, 77, 99, 0.04));
  box-shadow: 0 20px 44px rgba(18, 22, 28, 0.08);
}

.showcase-copy-card::after,
.work-spotlight-copy::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(216, 122, 51, 0.12), rgba(39, 77, 99, 0));
  transform: rotate(18deg);
}

.showcase-copy-card h3,
.work-spotlight-copy h3 {
  position: relative;
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.02;
}

.showcase-copy-card p,
.work-spotlight-copy p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.showcase-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.showcase-tags span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-card,
.work-card,
.timeline-item,
.contact-panel,
.value-banner {
  border: 1px solid rgba(24, 22, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.05), rgba(39, 77, 99, 0.04));
  box-shadow: 0 26px 56px rgba(18, 22, 28, 0.08);
  backdrop-filter: blur(10px);
}

.service-card,
.work-card,
.timeline-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover,
.service-card:focus-within,
.work-card:hover,
.work-card:focus-within,
.timeline-item:hover,
.timeline-item:focus-within {
  transform: translateY(-6px);
  border-color: rgba(216, 122, 51, 0.22);
  box-shadow: 0 30px 62px rgba(18, 22, 28, 0.12);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-ink), var(--brand-orange));
}

.service-card::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, rgba(39, 77, 99, 0.1), rgba(216, 122, 51, 0.14));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-weight: 700;
}

.service-card h3,
.work-card h3,
.timeline-item h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.split-layout {
  align-items: start;
}

.split-layout>* {
  flex: 1;
}

.section--approach .section-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
  flex: 0 0 44%;
}

.section--approach .timeline {
  flex: 0 0 50%;
}

.section--service-detail .section-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
  flex: 0 0 44%;
}

.section--service-detail .timeline {
  flex: 0 0 50%;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 0.35rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 2.1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(16, 38, 54, 0.18), rgba(216, 122, 51, 0.24));
}

.timeline-item {
  position: relative;
  padding-left: 4.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 240, 231, 0.88)),
    linear-gradient(135deg, rgba(39, 77, 99, 0.04), rgba(216, 122, 51, 0.06));
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 1.5rem;
  width: 1.2rem;
  height: 1.2rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-purple));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.work-spotlight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.work-spotlight-media {
  display: flex;
  height: 100%;
}

.work-spotlight>* {
  height: 100%;
  min-height: 320px;
}

.work-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(39, 77, 99, 0.05), rgba(216, 122, 51, 0.1));
}

.work-card::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-ink), var(--brand-orange));
}

.work-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.work-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-ink), var(--brand-orange));
}

@media (max-width: 1180px) {
  .hero-proof--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialization-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .work-spotlight-copy {
    grid-column: 1 / -1;
  }

  .work-spotlight > * {
    min-height: auto;
    height: auto;
  }

  .work-spotlight-media {
    height: auto;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.value-banner,
.contact-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.value-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 122, 51, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(10, 23, 34, 0.98), rgba(32, 42, 50, 0.96));
  color: #fff;
}

.value-banner::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  right: -7rem;
  top: -8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
}

.value-banner .eyebrow {
  color: var(--brand-sand);
}

.value-banner .eyebrow::before {
  background: linear-gradient(135deg, var(--brand-sand), var(--brand-orange));
}

.value-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.value-banner h2 {
  margin: 0;
  max-width: 12ch;
}

.value-lead {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.76);
}

.value-cta {
  justify-self: start;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, #fff, #f4d6bb);
  color: var(--brand-ink);
  box-shadow: none;
}

.value-cta:hover,
.value-cta:focus-visible {
  color: var(--brand-ink);
}

.value-list {
  display: grid;
  gap: 1rem;
}

.value-list p {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.value-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.section--contact {
  padding-top: 2rem;
}

.contact-panel {
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 122, 51, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 241, 232, 0.88)),
    linear-gradient(135deg, rgba(39, 77, 99, 0.05), rgba(216, 122, 51, 0.08));
  color: var(--text);
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel::before {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 1px solid rgba(39, 77, 99, 0.1);
  pointer-events: none;
}

.contact-copy {
  flex: 1 1 48%;
}

.contact-side {
  flex: 1 1 40%;
  display: grid;
  gap: 1rem;
}


.contact-visual-card img {
  aspect-ratio: 16 / 9;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-lead {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  margin: 0.6rem 0 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 38, 54, 0.08);
  border: 1px solid rgba(16, 38, 54, 0.08);
  color: var(--brand-ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 22, 27, 0.06);
  color: var(--muted);
  line-height: 1.65;
}

.contact-points li::before {
  content: "";
  position: static;
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-ink), var(--brand-orange));
}

.contact-emails {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 22, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.05), rgba(39, 77, 99, 0.04));
  box-shadow: 0 18px 40px rgba(18, 22, 28, 0.08);
}

.contact-card--primary {
  border-color: rgba(39, 77, 99, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 232, 0.92)),
    linear-gradient(135deg, rgba(39, 77, 99, 0.08), rgba(216, 122, 51, 0.12));
  box-shadow: 0 24px 48px rgba(16, 38, 54, 0.14);
}

.contact-card--address {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 235, 224, 0.86)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.06), rgba(39, 77, 99, 0.03));
}

.contact-card-left {
  flex: 1 1 auto;
  min-width: 0;
}

.contact-card-right {
  flex: 0 0 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}

.contact-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-right svg {
  width: 2.8rem;
  height: 2.8rem;
}

.contact-link {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--brand-ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.25;
}

.contact-link--block {
  display: block;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--brand-orange);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-card .button {
  margin-top: 0.85rem;
}

.contact-address {
  margin-bottom: 0.45rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}


.contact-panel .button {
  box-shadow: 0 18px 36px rgba(16, 38, 54, 0.16);
}

.contact-panel .button--ghost {
  color: var(--text);
  border-color: rgba(24, 22, 27, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.contact-faq-heading {
  margin-top: 3rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer .container {
  padding-top: 1rem;
  border-top: 1px solid rgba(32, 26, 29, 0.08);
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 0.35rem;
  max-width: 32rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(216, 122, 51, 0.12);
  color: var(--brand-ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-legal {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-address {
  color: var(--brand-ink);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(32, 26, 29, 0.08);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-left: auto;
}

.footer-contact-links a {
  display: grid;
  gap: 0.15rem;
  min-width: 13rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 22, 27, 0.08);
  background: rgba(255, 255, 255, 0.54);
}

.footer-contact-links strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-links span {
  color: var(--text);
  font-weight: 600;
}

.site-footer a {
  color: var(--brand-ink);
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand-orange);
  transform: translateY(-2px);
}

.floating-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid rgba(24, 22, 27, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(216, 122, 51, 0.08), rgba(39, 77, 99, 0.08));
  color: var(--brand-ink);
  box-shadow: 0 20px 40px rgba(16, 38, 54, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    visibility 180ms ease;
}

.floating-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-top:hover,
.floating-top:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(216, 122, 51, 0.24);
  color: var(--brand-ink);
}

.floating-top svg {
  width: 1.1rem;
  height: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (min-width: 981px) and (max-height: 940px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-grid {
    gap: 2rem;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }

  .hero-copy {
    padding: 0.5rem 0 2rem;
  }

  h1 {
    font-size: clamp(2.9rem, 4.8vw, 4.85rem);
    max-width: 12.5ch;
  }

  .lead {
    margin-top: 1rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }
}

@media (max-width: 980px) {

  .contact-panel,
  .split-layout,
  .trust-band__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header .container {
    position: relative;
    padding: 0.75rem 0.85rem;
    border-radius: 1.4rem;
    flex-direction: row;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 22, 27, 0.08);
    background:
      linear-gradient(180deg, #ffffff, #faf6ef);
    box-shadow: 0 28px 54px rgba(18, 22, 28, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section--services {
    padding: 3.8rem 0;
  }

  .section--service-detail {
    padding: 3.8rem 0;
  }

  .hero-proof-strip {
    padding-bottom: 2rem;
  }

  .section-showcase,
  .work-spotlight,
  .service-grid,
  .work-grid,
  .specialization-grid,
  .about-hero-grid {
    gap: 1rem;
  }

  .section--approach .section-heading,
  .section--approach .timeline {
    flex: 1 1 auto;
  }

  .section--approach .section-heading {
    position: static;
  }

  .section--service-detail .section-heading,
  .section--service-detail .timeline {
    flex: 1 1 auto;
  }

  .section--service-detail .section-heading {
    position: static;
  }

  .contact-copy,
  .contact-side {
    flex: 1 1 auto;
  }

  .hero-grid,
  .service-grid,
  .work-grid,
  .value-banner {
    grid-template-columns: 1fr;
  }

  .section-showcase,
  .work-spotlight,
  .specialization-grid,
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .section-showcase .showcase-image-card,
  .section-showcase .showcase-copy-card {
    grid-column: auto;
  }

  .section-showcase .showcase-image-card {
    height: auto;
  }

  .section-showcase .showcase-image-card img {
    height: auto;
    max-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .work-spotlight-copy {
    grid-column: auto;
  }

  .work-spotlight>* {
    min-height: auto;
    height: auto;
  }

  .work-spotlight-media {
    height: auto;
  }

  .work-spotlight-media img {
    height: auto;
    max-height: 420px;
  }

  .hero-copy {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .pricing-hero-image {
    display: none;
  }

  .section--pricing-hero {
    padding-bottom: 2.5rem;
  }

  .section--pricing-hero .service-grid {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .container--wide {
    width: min(calc(100% - 1.2rem), var(--container-wide));
  }

  .section--service-detail {
    padding: 4.5rem 0;
  }

  .hero-proof--wide {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0.8rem 0;
  }

  .site-header .container {
    gap: 0.75rem;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-contact-links {
    margin-left: 0;
    width: 100%;
  }

  .footer-contact-links a {
    min-width: 0;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta-card {
    align-items: flex-start;
  }

  .floating-top {
    right: 1rem;
    bottom: 1rem;
  }

  .brand img {
    width: 2.8rem;
    height: 2.8rem;
  }

  h1 {
    max-width: none;
    line-height: 1;
  }

  .hero-panel,
  .contact-panel,
  .value-banner {
    padding: 1.2rem;
  }

  .showcase-copy-card,
  .work-spotlight-copy {
    padding: 1.2rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section--services {
    padding: 3.5rem 0;
  }

  .section--service-detail {
    padding: 3.5rem 0;
  }

  .hero-proof-strip {
    padding-bottom: 1.6rem;
  }

  .section-showcase,
  .work-spotlight,
  .service-grid,
  .work-grid,
  .specialization-grid,
  .about-hero-grid {
    gap: 0.9rem;
  }

  .timeline-item {
    padding-left: 3.2rem;
  }

  .timeline::before {
    left: 1.55rem;
  }

  .timeline-item::before {
    left: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-emails {
    grid-template-columns: 1fr;
  }

  .button,
  .button--small {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 980px) {
  :root {
    --section-pad: 3.5rem;
    --section-pad-tight: 3.2rem;
  }

  .section {
    padding: var(--section-pad) 0;
  }

  .section--services,
  .section--service-detail,
  .section--pricing-hero {
    padding: var(--section-pad-tight) 0;
  }
}

@media (max-width: 720px) {
  :root {
    --section-pad: 3.1rem;
    --section-pad-tight: 2.9rem;
  }

  .section {
    padding: var(--section-pad) 0;
  }

  .section--services,
  .section--service-detail,
  .section--pricing-hero {
    padding: var(--section-pad-tight) 0;
  }
}

@media (max-width: 768px) {
  .hero-panel {
    display: none;
  }

  .work-spotlight-media {
    display: none;
  }
}
