:root {
  --ink: #17211f;
  --muted: #5d6d69;
  --paper: #f7f8f6;
  --white: #ffffff;
  --teal: #0f5e5b;
  --teal-dark: #093f3d;
  --green: #8fae5b;
  --gold: #c49745;
  --line: rgba(23, 33, 31, 0.13);
  --shadow: 0 22px 60px rgba(13, 42, 39, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 32px rgba(15, 94, 91, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(10, 35, 33, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.12;
  font-size: 12px;
}

.brand-text strong {
  font-size: 13px;
  letter-spacing: 0;
}

.brand-text span {
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: var(--teal);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 64px) 92px;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("assets/hero-operations.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 30, 29, 0.91) 0%, rgba(5, 30, 29, 0.7) 34%, rgba(5, 30, 29, 0.2) 66%, rgba(5, 30, 29, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 32, 30, 0.45), rgba(8, 32, 30, 0));
}

.hero-content {
  width: min(650px, 100%);
  margin-top: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(4, 52, 49, 0.23);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.button.wide {
  width: 100%;
}

.section {
  padding: 92px clamp(20px, 5vw, 64px);
}

.section-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

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

.section-heading.compact {
  width: min(var(--max), 100%);
  margin: 0 auto 36px;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro {
  background: var(--white);
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p + p {
  margin-top: 16px;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.value-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: #f0f4ef;
  font-size: 13px;
  font-weight: 800;
}

.vision-mission {
  background: #10201e;
  color: var(--white);
}

.vision-mission .section-heading h2 {
  color: var(--white);
}

.vm-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  margin: 0 auto;
}

.vision-card,
.mission-card {
  min-height: 320px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.vision-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(15, 94, 91, 0.88), rgba(143, 174, 91, 0.42)),
    rgba(255, 255, 255, 0.08);
}

.vm-label {
  width: fit-content;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vision-card h3 {
  margin: 34px 0 0;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.mission-card ul {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.mission-card li {
  position: relative;
  padding: 0 0 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.mission-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mission-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(196, 151, 69, 0.14);
}

.services {
  background: #eef3f1;
}

.service-list {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.service-card {
  min-height: 420px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(15, 94, 91, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(16, 50, 47, 0.08);
}

.service-code {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
  font-size: 28px;
  font-weight: 900;
}

.service-body h3,
.strength-item h3,
.process-step h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.service-body p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-body ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 18px;
  color: #34423f;
}

.service-body li::before {
  content: "";
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.strength {
  background: var(--white);
}

.strength-grid {
  display: grid;
  gap: 16px;
}

.strength-item {
  min-height: 172px;
  padding: 24px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #f6f8f5;
}

.strength-item span,
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(196, 151, 69, 0.22);
  font-size: 13px;
  font-weight: 900;
}

.strength-item span {
  margin-bottom: 16px;
}

.process-number {
  margin-bottom: 0;
}

.strength-item p,
.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
}

.team {
  background: #eef3f1;
}

.team-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.team-member {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(15, 94, 91, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(16, 50, 47, 0.08);
}

.team-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dfe6e3;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-member:nth-child(1) .team-photo img {
  object-position: center 35%;
}

.team-member:nth-child(2) .team-photo img {
  object-position: 54% center;
}

.team-member:nth-child(3) .team-photo img {
  object-position: center 33%;
}

.team-info {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.team-info span {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(196, 151, 69, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-info h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.team-info .team-role {
  margin: -4px 0 0;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.team-info p {
  margin: 0;
  color: var(--muted);
}

.process {
  background: #f7f1e7;
}

.process .section-heading.compact {
  margin-bottom: 42px;
}

.process-steps {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  min-height: 272px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(105, 75, 32, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 34px rgba(88, 64, 30, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.process-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 14px 28px rgba(15, 94, 91, 0.22);
}

.process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(88, 64, 30, 0.13);
}

.career {
  background: var(--white);
}

.career-layout {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin: 0 auto;
}

.career-intro {
  position: sticky;
  top: 104px;
}

.career-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.career-intro p {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.career-requirements {
  display: grid;
  gap: 18px;
}

.career-card {
  padding: 28px;
  border: 1px solid rgba(15, 94, 91, 0.12);
  border-radius: var(--radius);
  background: #f6f8f5;
  box-shadow: 0 18px 40px rgba(16, 50, 47, 0.08);
}

.career-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.career-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.career-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

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

.career-list li {
  position: relative;
  padding-left: 20px;
  color: #34423f;
}

.career-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.contact {
  background: linear-gradient(135deg, #103f3d, #1f5b4c 62%, #8a6a32);
}

.contact-panel {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 31, 29, 0.28);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.15);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(16, 32, 30, 0.96), rgba(9, 63, 61, 0.94)),
    #10201e;
}

.footer-main {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(170px, 0.75fr) minmax(220px, 0.9fr) minmax(150px, 0.55fr);
  gap: clamp(26px, 4vw, 54px);
  margin: 0 auto;
  padding: 58px 0 42px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.footer-logo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand h2,
.footer-column h3 {
  margin: 0;
  color: var(--white);
  letter-spacing: 0;
}

.footer-brand h2 {
  max-width: 16ch;
  font-size: 22px;
  line-height: 1.12;
}

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

.footer-column h3 {
  margin-bottom: 16px;
  font-size: 15px;
}

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

.footer-contact li,
.footer-address {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
}

.footer-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.footer-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin-bottom: 6px;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-button {
  min-width: 112px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(9, 31, 29, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.floating-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-button.call {
  background: var(--teal);
}

.floating-button.whatsapp {
  background: #1f9f62;
}

.floating-button:hover,
.floating-button:focus-visible {
  transform: translateX(-2px);
  box-shadow: 0 18px 38px rgba(9, 31, 29, 0.28);
  outline: none;
}

.floating-button.call:hover,
.floating-button.call:focus-visible {
  background: var(--teal-dark);
}

.floating-button.whatsapp:hover,
.floating-button.whatsapp:focus-visible {
  background: #15794a;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 46px;
  }

  .section-grid,
  .vm-grid,
  .career-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .career-intro {
    position: static;
  }

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

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

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

  .service-card {
    min-height: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 58px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 30, 29, 0.94) 0%, rgba(5, 30, 29, 0.73) 50%, rgba(5, 30, 29, 0.26) 100%),
      linear-gradient(90deg, rgba(5, 30, 29, 0.7), rgba(5, 30, 29, 0.15));
  }

  h1 {
    max-width: 10ch;
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .service-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .service-code {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .contact-panel {
    padding: 24px;
  }

  .career-card {
    padding: 22px;
  }

  .career-card-head {
    align-items: flex-start;
  }

  .vision-card,
  .mission-card {
    min-height: 0;
  }

  .footer-main,
  .footer-bottom {
    width: min(100% - 40px, var(--max));
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    right: 14px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .floating-button {
    min-width: 52px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 9px;
  }

  .brand-text strong {
    max-width: 150px;
    display: block;
    font-size: 11px;
  }

  .brand-text span {
    font-size: 11px;
  }

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

  .footer-logo {
    width: 78px;
    height: 78px;
  }

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

  h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: 29px;
  }
}
