@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --color-ink: #111318;
  --color-ink-soft: #44505c;
  --color-ink-muted: #718090;
  --color-paper: #f6f1e8;
  --color-paper-strong: #fffdf8;
  --color-panel: rgba(255, 252, 246, 0.82);
  --color-panel-strong: #ffffff;
  --color-line: rgba(18, 24, 32, 0.1);
  --color-line-strong: rgba(18, 24, 32, 0.18);
  --color-brand: #18354a;
  --color-brand-deep: #0a1824;
  --color-brand-soft: #244f6c;
  --color-accent: #b48a50;
  --color-accent-soft: #e8d3af;
  --color-success: #1f7a4f;
  --color-error: #be4747;
  --color-white: #ffffff;

  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;

  --container: 1240px;
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px rgba(8, 20, 30, 0.08);
  --shadow-panel: 0 24px 70px rgba(9, 23, 33, 0.14);
  --shadow-focus: 0 0 0 4px rgba(180, 138, 80, 0.16);

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 36px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;

  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(180, 138, 80, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(36, 79, 108, 0.12), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, #f6f1e8 50%, #f3ede3 100%);
  min-height: 100vh;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(180, 138, 80, 0.26);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--space-9) 0;
}

.section--soft {
  position: relative;
}

.section--soft::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.section--dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 0% 0%, rgba(180, 138, 80, 0.24), transparent 28%),
    linear-gradient(135deg, #09141e 0%, #11283a 60%, #18354a 100%);
}

.stack > * + * {
  margin-top: var(--space-4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(180, 138, 80, 0.25);
  background: rgba(255, 255, 255, 0.56);
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(180, 138, 80, 0.12);
}

.section-heading {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  position: relative;
  z-index: 1;
}

.section-heading--split {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero-title,
.display-title,
.footer-brand h3,
.page-title {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-title,
.hero-title {
  font-size: clamp(54px, 8vw, 104px);
}

.page-title {
  font-size: clamp(44px, 6vw, 82px);
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 64px);
}

.section-heading p,
.lede,
.hero-copy p,
.surface p,
.project-card p,
.resource-card p,
.leader-card p,
.job-listing p,
.contact-card p,
.detail-card p,
.metric-card p {
  color: var(--color-ink-soft);
}

.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.8;
}

.muted {
  color: var(--color-ink-muted);
}

.surface {
  position: relative;
  z-index: 1;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.surface--strong {
  background: var(--color-panel-strong);
}

.surface--dark {
  background: linear-gradient(180deg, rgba(17, 37, 53, 0.92), rgba(10, 24, 36, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.surface--dark p,
.surface--dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.pill-list,
.tag-list,
.stat-strip,
.footer-meta,
.detail-list,
.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill,
.tag,
.stat-chip,
.resource-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(24, 53, 74, 0.06);
  border: 1px solid rgba(24, 53, 74, 0.08);
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 700;
}

.tag {
  background: rgba(180, 138, 80, 0.14);
  color: #6a4c1f;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), #9d7440);
  box-shadow: 0 18px 36px rgba(180, 138, 80, 0.24);
}

.btn--secondary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-brand-soft), var(--color-brand));
  box-shadow: 0 18px 36px rgba(24, 53, 74, 0.2);
}

.btn--outline {
  border-color: rgba(24, 53, 74, 0.18);
  color: var(--color-brand);
  background: rgba(255, 255, 255, 0.5);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
}

.btn--full-width {
  width: 100%;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180, 138, 80, 0.22), rgba(24, 53, 74, 0.18));
  border: 1px solid rgba(180, 138, 80, 0.24);
  color: var(--color-brand);
  font-size: 24px;
  flex: 0 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header--scrolled {
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(8, 20, 30, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 5px 8px 5px 5px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(17, 19, 24, 0.08);
  box-shadow: 0 16px 34px rgba(9, 23, 33, 0.08);
}

.logo__mark {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(180, 138, 80, 0.28), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f6eee0 100%);
  border: 1px solid rgba(180, 138, 80, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(180, 138, 80, 0.14);
}

.logo__mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 13px;
  border: 1px solid rgba(24, 53, 74, 0.08);
}

.website-logo {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: contrast(1.14) saturate(1.08);
}

.logo__copy {
  display: grid;
  gap: 3px;
}

.logo__title {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 0.92;
  color: var(--color-brand-deep);
}

.logo__meta {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-ink-muted);
  text-transform: uppercase;
}

.logo__meta--accent {
  color: var(--color-accent);
}

.nav__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.nav__link:hover,
.nav__link.active {
  background: rgba(24, 53, 74, 0.08);
  color: var(--color-brand);
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__contact {
  display: grid;
  gap: 2px;
  text-align: right;
}

.header__contact span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.header__contact a {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-brand);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(24, 53, 74, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-brand);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  padding: 26px 0 44px;
}

.hero-shell {
  position: relative;
  padding: var(--space-8);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(180, 138, 80, 0.26), transparent 28%),
    linear-gradient(140deg, rgba(10, 24, 36, 0.98), rgba(24, 53, 74, 0.94) 54%, rgba(36, 79, 108, 0.88));
  color: var(--color-white);
  box-shadow: var(--shadow-panel);
}

.hero-shell::before,
.hero-shell::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shell::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -100px;
  background: rgba(180, 138, 80, 0.18);
  filter: blur(10px);
}

.hero-shell::after {
  width: 460px;
  height: 460px;
  bottom: -250px;
  left: -160px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-7);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: var(--space-5);
}

.hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card,
.spotlight-card,
.feature-card,
.equipment-card,
.project-card,
.resource-card,
.leader-card,
.detail-card,
.contact-card,
.job-listing,
.value-card,
.service-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.metric-card:hover,
.spotlight-card:hover,
.feature-card:hover,
.equipment-card:hover,
.project-card:hover,
.resource-card:hover,
.leader-card:hover,
.detail-card:hover,
.contact-card:hover,
.job-listing:hover,
.value-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(9, 23, 33, 0.14);
  border-color: rgba(180, 138, 80, 0.34);
}

.metric-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.metric-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.media-placeholder {
  position: relative;
  min-height: 280px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px dashed rgba(24, 53, 74, 0.24);
  background:
    linear-gradient(135deg, rgba(24, 53, 74, 0.22), rgba(180, 138, 80, 0.26)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0.16) 14px, transparent 14px, transparent 28px);
}

.media-placeholder--image {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(10, 24, 36, 0.08), rgba(180, 138, 80, 0.14));
}

.media-placeholder--image::before {
  content: '';
  display: none;
}

.media-placeholder--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.media-placeholder--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 36, 0.02), rgba(10, 24, 36, 0.14));
  pointer-events: none;
}

.media-placeholder::before {
  content: attr(data-label);
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(10, 24, 36, 0.68);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-placeholder--hero {
  min-height: 520px;
}

.media-placeholder--hero-wide {
  min-height: 380px;
}

.media-placeholder--hero-wide img {
  object-position: center;
}

.media-placeholder--portrait {
  min-height: 320px;
}

.media-placeholder--wide {
  min-height: 360px;
}

.spotlight-grid,
.feature-grid,
.equipment-grid,
.project-grid,
.resource-grid,
.value-grid,
.service-grid,
.contact-grid,
.metrics-grid,
.why-grid,
.leader-grid {
  display: grid;
  gap: 22px;
}

.spotlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight-card,
.feature-card,
.equipment-card,
.value-card,
.service-card {
  padding: 24px;
}

.spotlight-card h3,
.feature-card h3,
.equipment-card h3,
.project-card h3,
.resource-card h3,
.leader-card h3,
.value-card h3,
.service-card h3,
.job-listing h3,
.detail-card h3 {
  margin: 18px 0 12px;
  font-size: 28px;
  font-family: var(--font-heading);
  line-height: 1;
}

.spotlight-card h3,
.feature-card h3,
.equipment-card h3,
.project-card h3,
.resource-card h3,
.leader-card h3,
.value-card h3,
.service-card h3,
.job-listing h3,
.detail-card h3,
.contact-card h3 {
  color: #101010;
}

.feature-grid,
.value-grid,
.service-grid,
.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-grid,
.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.project-card,
.resource-card,
.leader-card,
.contact-card,
.job-listing,
.detail-card {
  padding: 24px;
  color: #111111;
}

.project-card {
  display: grid;
  gap: 18px;
}

.project-card .media-placeholder {
  min-height: 240px;
}

.project-card:hover {
  text-decoration: none;
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #222222;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-grid,
.contact-grid,
.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.leader-card__top,
.contact-card__top,
.job-listing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.leader-card .role,
.job-listing__location,
.contact-kicker,
.resource-card__type {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(180, 138, 80, 0.16);
  color: #5b4320;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leader-card__quote {
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.leader-card__quote p {
  font-size: 16px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: var(--space-7);
  align-items: center;
}

.split-layout--top {
  align-items: start;
}

.content-panel {
  padding: 32px;
}

.content-panel h2,
.content-panel h3,
.detail-panel h2,
.detail-panel h3 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
  margin: 0 0 16px;
}

.content-panel h3,
.detail-panel h3 {
  font-size: 30px;
}

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

.list-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.list-grid li:last-child {
  border-bottom: 0;
}

.list-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 53, 74, 0.08);
  color: var(--color-brand);
  font-weight: 800;
}

.stat-band {
  padding: 24px;
}

.stat-band .metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-block strong {
  display: block;
  font-size: 40px;
  font-family: var(--font-heading);
  line-height: 1;
  color: #101010;
}

.stat-block span {
  display: block;
  margin-top: 8px;
  color: var(--color-ink-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  position: relative;
  padding: 22px 24px 22px 82px;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: 24px;
  top: 22px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-soft));
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.cta-band {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.jobs-layout,
.contact-layout,
.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-7);
  align-items: start;
}

.jobs-list,
.resource-stack,
.project-stack {
  display: grid;
  gap: 20px;
}

.job-listing__details,
.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222222;
}

.application-panel,
.contact-panel,
.detail-panel {
  padding: 32px;
}

.application-panel h2,
.contact-panel h2,
.detail-panel h2 {
  margin: 0 0 12px;
}

.form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-label {
  color: #101010;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea.form-control {
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  border-color: rgba(180, 138, 80, 0.6);
  box-shadow: var(--shadow-focus);
  background: var(--color-white);
}

.alert {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.alert--success {
  background: rgba(31, 122, 79, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(31, 122, 79, 0.18);
}

.alert--error {
  background: rgba(190, 71, 71, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(190, 71, 71, 0.18);
}

.detail-hero {
  display: grid;
  gap: 18px;
  margin-bottom: var(--space-6);
}

.detail-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.95;
}

.detail-grid {
  display: grid;
  gap: 22px;
}

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

.spec-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.spec-list li:last-child {
  border-bottom: 0;
}

.spec-list strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.contact-note,
.project-note {
  padding: 22px 24px;
}

.contact-note h3,
.project-note h3 {
  margin: 0 0 10px;
  font-size: 30px;
}

.footer {
  margin-top: var(--space-8);
  padding: 0 0 30px;
}

.footer__inner {
  padding: 40px 36px 24px;
  background:
    radial-gradient(circle at top left, rgba(180, 138, 80, 0.18), transparent 28%),
    linear-gradient(145deg, #0a1824 0%, #11283a 60%, #18354a 100%);
  border-radius: 36px;
  color: var(--color-white);
  box-shadow: var(--shadow-panel);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 24px;
}

.footer-brand h3 {
  font-size: clamp(34px, 4vw, 54px);
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-contact p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notification {
  border-radius: 16px;
  box-shadow: var(--shadow-panel);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 0;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-soft));
  color: var(--color-white);
  box-shadow: 0 18px 36px rgba(24, 53, 74, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
}

.text-left {
  text-align: left;
}

.center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
  }

  .header__actions {
    justify-self: end;
  }

  .hero-grid,
  .split-layout,
  .jobs-layout,
  .contact-layout,
  .detail-layout,
  .section-heading--split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .spotlight-grid,
  .feature-grid,
  .value-grid,
  .service-grid,
  .why-grid,
  .project-grid,
  .resource-grid,
  .leader-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

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

@media (max-width: 820px) {
  .header {
    padding: 6px 0;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 10px 14px;
  }

  .header__contact,
  .header__actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 12px;
  }

  .nav__list.active {
    display: flex;
  }

  .nav.is-open {
    display: block;
    grid-column: 1 / -1;
  }

  .hero-shell {
    padding: 28px;
    border-radius: 30px;
  }

  .media-placeholder--hero-wide {
    min-height: 260px;
  }

  .hero-stats,
  .stat-band .metrics-grid,
  .form-row,
  .spotlight-grid,
  .feature-grid,
  .value-grid,
  .service-grid,
  .why-grid,
  .project-grid,
  .resource-grid,
  .equipment-grid,
  .leader-grid,
  .contact-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

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

  .content-panel,
  .application-panel,
  .contact-panel,
  .detail-panel,
  .project-card,
  .resource-card,
  .leader-card,
  .job-listing {
    padding: 24px;
  }

  .logo__title {
    font-size: 26px;
  }

  .logo a {
    gap: 10px;
    padding: 4px 6px 4px 4px;
  }

  .logo__mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .logo__mark::after {
    inset: 4px;
    border-radius: 12px;
  }

  .website-logo {
    width: 38px;
    height: 38px;
  }

  .logo__meta {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
