:root {
  --ink: #081012;
  --ink-soft: #1d3134;
  --muted: #657579;
  --line: #dce5e4;
  --surface: #f4f8f7;
  --white: #ffffff;
  --teal: #0e8f8a;
  --teal-dark: #0b5f5e;
  --cyan: #42d6ce;
  --gold: #c49a45;
  --shadow: 0 20px 60px rgba(4, 16, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.home-header {
  color: var(--ink);
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.inner-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(230px, 20vw, 310px);
  height: auto;
  object-fit: contain;
}

.brand span {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.38rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 7px;
  color: currentColor;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  opacity: 0.78;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a,
.nav-dropdown-trigger {
  text-decoration: none;
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.is-active,
.nav-item.is-open .nav-dropdown-trigger {
  color: var(--cyan);
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-item.is-open .chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1fr);
  width: min(690px, calc(100vw - 40px));
  min-height: 280px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
  transform: translate(0, 10px);
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item.is-open .dropdown-menu-right {
  transform: translate(0, 0);
}

.dropdown-intro {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 38px;
  color: var(--white);
  background: #0b302f;
}

.dropdown-intro strong {
  font-size: 1.65rem;
}

.dropdown-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.dropdown-intro a {
  display: inline-flex;
  width: fit-content;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--white);
  font-weight: 800;
  opacity: 1;
}

.dropdown-links {
  display: grid;
  align-content: center;
  padding: 32px 34px;
  background: #f1f4f3;
}

.dropdown-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  color: var(--ink);
  font-size: 1.06rem;
  opacity: 1;
}

.dropdown-links a:hover {
  color: var(--teal-dark);
}

.dropdown-links b {
  color: var(--teal);
  font-size: 1.55rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  background: #071011;
  overflow: hidden;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: 92vh;
  padding: clamp(132px, 18vh, 184px) clamp(20px, 5vw, 72px) clamp(70px, 9vw, 120px);
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 15%, rgba(66, 214, 206, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 247, 245, 0.94) 48%, rgba(248, 250, 249, 0.98)),
    #f7fbfa;
}

.home-hero-copy {
  max-width: 820px;
}

.home-hero .eyebrow {
  color: var(--teal-dark);
}

.home-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5.3vw, 5rem);
}

.home-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button.secondary.light {
  border-color: rgba(8, 16, 18, 0.28);
  color: var(--ink);
}

.hero-panel {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 16, 17, 0.86), transparent 54%);
}

.hero-panel-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  border-left: 4px solid var(--cyan);
  padding: 18px;
  color: var(--white);
  background: rgba(7, 16, 17, 0.76);
  backdrop-filter: blur(12px);
}

.hero-panel-card span,
.hero-panel-card strong {
  display: block;
}

.hero-panel-card span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-card strong {
  margin-top: 7px;
  font-size: 1.15rem;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-bar div {
  padding: 28px clamp(20px, 3vw, 42px);
  background: var(--white);
}

.proof-bar strong,
.proof-bar span {
  display: block;
}

.proof-bar strong {
  color: var(--teal-dark);
  font-size: 1.3rem;
}

.proof-bar span {
  margin-top: 8px;
  color: var(--muted);
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.home-capability-list {
  display: grid;
  gap: 12px;
}

.home-capability-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 800;
  text-decoration: none;
}

.home-capability-list a:hover {
  border-color: var(--teal);
  background: #eaf7f5;
}

.home-capability-list b {
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 1;
}

.home-services {
  background: var(--surface);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.about-preview p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.logo-showcase {
  padding: clamp(58px, 8vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--white);
  text-align: center;
}

.showcase-heading {
  max-width: 780px;
  margin: 0 auto 28px;
}

.showcase-heading .eyebrow {
  margin-bottom: 10px;
}

.showcase-heading h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
}

.logo-showcase img {
  width: min(100%, 1440px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 13, 15, 0.92) 0%, rgba(5, 16, 18, 0.74) 42%, rgba(5, 16, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 13, 15, 0.72) 0%, rgba(4, 13, 15, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(132px, 20vh, 190px) clamp(20px, 5vw, 72px) 230px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.button.primary {
  color: #041012;
  background: var(--cyan);
}

.button.primary:hover {
  background: #7deae4;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-stats {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  left: clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 22px;
  background: rgba(5, 16, 18, 0.66);
}

.hero-stats strong {
  display: block;
  color: var(--cyan);
  font-size: 1.02rem;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.section,
.band,
.contact,
.needs,
.cta-strip,
.page-hero {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.page-hero {
  padding-top: clamp(142px, 18vw, 190px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(66, 214, 206, 0.1), rgba(196, 154, 69, 0.12)),
    #071011;
}

.page-hero .eyebrow {
  color: var(--cyan);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 6.2vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  background: var(--surface);
}

.intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

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

.service-card {
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #dff4f1;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p,
.timeline p,
.contact-copy p,
.needs-grid p,
.industry-grid p,
.outcome-list p,
.footer-brand p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
}

.needs {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(66, 214, 206, 0.08), rgba(196, 154, 69, 0.08)),
    #071011;
}

.page-needs {
  padding-top: 0;
}

.needs .eyebrow {
  color: var(--cyan);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.16);
}

.needs-grid a {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.needs-grid a:hover {
  background: rgba(66, 214, 206, 0.14);
  transform: translateY(-2px);
}

.needs-grid span {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.22;
}

.needs-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 143, 138, 0.14), rgba(196, 154, 69, 0.11)),
    #091416;
}

.band .eyebrow {
  color: var(--cyan);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.16);
}

.timeline div {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  color: var(--cyan);
  font-weight: 800;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.industries {
  background: var(--surface);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.industry-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.industry-grid p {
  margin-bottom: 0;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--teal-dark);
}

.cta-strip .eyebrow {
  color: #a7fff8;
}

.cta-strip h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.cta-strip .button.primary {
  flex: 0 0 auto;
  background: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-list p {
  margin: 0;
  border-left: 3px solid var(--teal);
  padding: 15px 0 15px 18px;
  background: linear-gradient(90deg, rgba(66, 214, 206, 0.08), transparent);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.values-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--surface);
}

.values-grid article,
.jobs-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.values-grid span,
.jobs-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.values-grid p,
.jobs-grid p,
.careers-intro > p {
  color: var(--muted);
}

.careers-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
}

.careers-intro > p {
  margin: 0;
  font-size: 1.08rem;
}

.jobs-grid {
  padding-top: 0;
}

.jobs-grid article {
  display: grid;
  align-content: start;
}

.jobs-grid a {
  width: fit-content;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.jobs-grid a:hover {
  color: var(--ink);
}

.job-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--surface);
}

.job-filter-panel {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(4, 16, 18, 0.08);
}

.job-filter-panel label {
  color: var(--ink);
}

.job-filter-panel span {
  display: block;
  color: var(--teal-dark);
  font-weight: 800;
}

.job-filter-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.job-results {
  display: grid;
  gap: 12px;
}

.job-results-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.job-results-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.job-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--white);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.job-row:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 36px rgba(4, 16, 18, 0.1);
  transform: translateY(-2px);
}

.job-title {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}

.job-meta {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

.job-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.no-results {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  color: var(--muted);
  background: var(--white);
}

.job-hero {
  padding: clamp(142px, 18vw, 190px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 15%, rgba(66, 214, 206, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(196, 154, 69, 0.12), transparent 42%),
    #071011;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.job-hero .eyebrow {
  color: var(--cyan);
}

.job-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.job-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.18);
}

.job-summary-grid div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.job-summary-grid span,
.job-summary-grid strong {
  display: block;
}

.job-summary-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-summary-grid strong {
  margin-top: 6px;
  color: var(--white);
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.36fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.job-description {
  display: grid;
  gap: 34px;
}

.job-description h2,
.apply-panel h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
}

.job-description p,
.job-description li,
.apply-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.job-description ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.apply-panel {
  position: sticky;
  top: 106px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(4, 16, 18, 0.08);
}

.contact-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-details div {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8d7;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(66, 214, 206, 0.28);
  border-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(150px, 0.65fr));
  gap: 34px;
  padding: 52px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #071011;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-logo {
  width: 300px;
  height: auto;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.footer-brand p {
  max-width: 460px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 92px);
    overflow: auto;
  }

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

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 16px;
  }

  .dropdown-menu,
  .dropdown-menu-right {
    position: static;
    display: none;
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.is-open .dropdown-menu,
  .nav-item.is-open .dropdown-menu-right {
    display: grid;
    transform: none;
  }

  .dropdown-intro,
  .dropdown-links {
    padding: 20px;
  }

  .dropdown-intro {
    align-content: start;
  }

  .dropdown-links a {
    padding: 13px 0;
  }

  .hero {
    min-height: 980px;
  }

  .home-hero,
  .home-split,
  .about-preview,
  .about-story,
  .careers-intro,
  .job-board,
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-filter-panel,
  .apply-panel {
    position: static;
  }

  .home-hero {
    padding-top: 126px;
  }

  .hero-panel {
    min-height: 420px;
  }

  .hero-content {
    padding-bottom: 390px;
  }

  .proof-bar,
  .hero-stats,
  .job-summary-grid,
  .service-grid,
  .timeline,
  .needs-grid,
  .industry-grid,
  .values-grid,
  .jobs-grid,
  .intro,
  .contact,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    right: 20px;
    left: 20px;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-preview .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 190px;
    height: auto;
  }

  .hero {
    min-height: 1040px;
  }

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

  .home-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

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

  .hero-content {
    padding: 118px 18px 450px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats div,
  .service-card,
  .timeline div {
    padding: 20px;
  }

  .section,
  .band,
  .contact,
  .needs,
  .cta-strip,
  .page-hero,
  .job-hero,
  .home-hero,
  .logo-showcase {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}
