:root {
  --navy: #071f46;
  --navy-2: #12346c;
  --navy-3: #eaf0f8;
  --red: #9f111b;
  --red-dark: #7f0b14;
  --white: #ffffff;
  --ink-soft: #4f5f78;
  --line: #dce5f0;
  --surface: #f6f8fb;
  --shadow-soft: 0 18px 48px rgba(7, 31, 70, 0.1);
  --shadow-strong: 0 28px 70px rgba(7, 31, 70, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 31, 70, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 31, 70, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 560px);
}

@keyframes fadeUp {
  from {
    opacity: 0.72;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScale {
  from {
    opacity: 0.78;
    transform: scale(0.992);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 31, 70, 0.1);
  backdrop-filter: blur(18px);
  animation: fadeUp 320ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand-logo-frame {
  position: relative;
  display: block;
  width: 246px;
  height: 62px;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: -80px;
  width: 244px;
  max-width: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  color: var(--navy);
  background: rgba(246, 248, 251, 0.92);
  border: 1px solid rgba(7, 31, 70, 0.13);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(7, 31, 70, 0.08);
  font-size: 0.93rem;
  font-weight: 800;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--white);
  background: var(--red);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-1px);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.nav-cta:hover {
  box-shadow: 0 20px 42px rgba(159, 17, 27, 0.24);
  transform: translateY(-2px);
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 36px rgba(159, 17, 27, 0.22);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(7, 31, 70, 0.08);
}

.button-secondary:hover {
  border-color: rgba(159, 17, 27, 0.3);
  box-shadow: 0 18px 38px rgba(7, 31, 70, 0.12);
}

.button svg,
.icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(52px, 8vw, 106px) clamp(18px, 5vw, 72px) clamp(42px, 7vw, 86px);
}

.hero-content {
  max-width: 720px;
  animation: fadeUp 360ms ease 40ms both;
}

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

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.1vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  line-height: 1.16;
  letter-spacing: 0;
}

p {
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 31, 70, 0.06);
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.hero-proof span:hover {
  border-color: rgba(159, 17, 27, 0.35);
  box-shadow: 0 16px 34px rgba(7, 31, 70, 0.1);
  transform: translateY(-2px);
}

.hero-showcase {
  position: relative;
  min-height: 660px;
  animation: softScale 380ms ease 70ms both;
}

.hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow-strong);
}

.hero-image img,
.service-card img,
.model-media img,
.culture-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hero-image-main {
  position: absolute;
  inset: 0 0 58px 72px;
  border: 12px solid var(--navy);
}

.hero-image-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 36%;
  border: 10px solid var(--white);
}

.hero-stat-card {
  position: absolute;
  right: 30px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  width: min(310px, 52%);
  padding: 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 26px 54px rgba(7, 31, 70, 0.26);
}

.hero-stat-card strong {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.hero-stat-card span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.hero-stat-card .stat-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 6vw, 78px);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-soft);
  animation: fadeUp 380ms ease 90ms both;
}

.metric-band article {
  position: relative;
  min-height: 250px;
  padding: 32px;
  background: var(--navy);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.metric-band article:hover {
  transform: translateY(-2px);
}

.metric-band article:nth-child(2) {
  background: var(--navy-2);
}

.metric-band h2,
.metric-band p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.metric-band h2 {
  margin-top: 72px;
  font-size: 1.45rem;
}

.metric-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.metric-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(255, 255, 255, 0.13);
  font-size: 5.5rem;
  font-weight: 950;
  line-height: 1;
}

.services-section,
.model-section,
.culture-section,
.contact-section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-bottom: 42px;
}

.section-intro h2 {
  max-width: 870px;
}

.section-intro p:not(.eyebrow) {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(250px, 0.92fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 31, 70, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card:hover,
.service-detail-grid article:hover,
.process-list article:hover,
.contact-methods article:hover {
  border-color: rgba(159, 17, 27, 0.26);
  box-shadow: 0 24px 58px rgba(7, 31, 70, 0.13);
  transform: translateY(-3px);
}

.service-card:hover img,
.model-media:hover img,
.culture-panel:hover img,
.page-hero img:hover {
  transform: scale(1.025);
}

.service-card img {
  height: 245px;
}

.service-card-featured {
  background: var(--navy);
}

.service-card-featured img {
  height: 330px;
}

.service-card-body {
  padding: 28px;
}

.service-card-featured h3,
.service-card-featured p {
  color: var(--white);
}

.service-card-featured .card-label,
.card-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-featured .card-label {
  color: rgba(255, 255, 255, 0.72);
}

.service-card-featured .service-card-body > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.icon-box {
  display: inline-grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
}

.model-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.model-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  border: 12px solid var(--white);
  box-shadow: var(--shadow-strong);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.model-media:hover {
  box-shadow: 0 34px 78px rgba(7, 31, 70, 0.22);
  transform: translateY(-2px);
}

.model-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: var(--white);
  background: rgba(7, 31, 70, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.model-badge strong {
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
}

.model-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.model-content {
  max-width: 740px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.process-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(7, 31, 70, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.process-list span {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 950;
}

.process-list p {
  margin-bottom: 0;
}

.culture-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.culture-copy {
  max-width: 720px;
}

.culture-panel {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.culture-panel:hover {
  box-shadow: 0 34px 78px rgba(7, 31, 70, 0.22);
  transform: translateY(-2px);
}

.culture-panel img {
  min-height: 430px;
}

.culture-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.culture-panel h3,
.culture-panel p {
  color: var(--white);
}

.culture-panel p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(74px, 8vw, 110px);
  padding: clamp(38px, 6vw, 64px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  animation: fadeUp 380ms ease 70ms both;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.page-hero > div {
  max-width: 760px;
  animation: fadeUp 360ms ease 40ms both;
}

.page-hero h1 {
  max-width: 830px;
  font-size: clamp(3.2rem, 6.4vw, 6.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.page-hero img {
  width: 100%;
  height: min(560px, 64vh);
  min-height: 420px;
  object-fit: cover;
  border: 12px solid var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  animation: softScale 380ms ease 70ms both;
  transition:
    box-shadow 220ms ease,
    transform 420ms ease;
}

.page-hero img:hover {
  box-shadow: 0 34px 78px rgba(7, 31, 70, 0.22);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(48px, 7vw, 90px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 380ms ease 90ms both;
}

.feature-band article {
  position: relative;
  min-height: 230px;
  padding: 30px;
  background: var(--navy);
  transition: transform 220ms ease;
}

.feature-band article:hover {
  transform: translateY(-2px);
}

.feature-band article:nth-child(2) {
  background: var(--navy-2);
}

.feature-band h2,
.feature-band p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.feature-band h2 {
  margin-top: 66px;
  font-size: 1.35rem;
}

.feature-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.story-copy {
  max-width: 790px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  font-weight: 850;
}

.story-card {
  display: grid;
  gap: 6px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.story-card strong {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
}

.story-card span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.page-culture {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 8vw, 110px);
}

.service-detail-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 31, 70, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-detail-grid article:nth-child(1),
.service-detail-grid article:nth-child(4) {
  color: var(--white);
  background: var(--navy);
}

.service-detail-grid article:nth-child(1) h2,
.service-detail-grid article:nth-child(1) p,
.service-detail-grid article:nth-child(4) h2,
.service-detail-grid article:nth-child(4) p {
  color: var(--white);
}

.service-detail-grid article:nth-child(1) p:not(.card-label),
.service-detail-grid article:nth-child(4) p:not(.card-label) {
  color: rgba(255, 255, 255, 0.76);
}

.service-detail-grid h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
}

.service-model {
  margin-top: 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: 0 clamp(18px, 5vw, 72px) clamp(70px, 8vw, 112px);
}

.contact-info-panel {
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.contact-info-panel h2,
.contact-info-panel h3,
.contact-info-panel p,
.contact-info-panel a {
  color: var(--white);
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-methods article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.contact-methods article:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-methods .icon-box {
  margin-bottom: 0;
}

.contact-methods p,
.contact-methods a {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 380ms ease 90ms both;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: rgba(159, 17, 27, 0.42);
  box-shadow: 0 0 0 4px rgba(159, 17, 27, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-section h2,
.contact-section p,
.contact-section a {
  color: var(--white);
}

.contact-section h2 {
  max-width: 820px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-card p,
.contact-card a:not(.button) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.contact-card .button {
  margin-top: 10px;
}

.site-footer {
  padding: clamp(46px, 6vw, 72px) clamp(18px, 5vw, 72px) 28px;
  color: var(--white);
  background: var(--navy);
  animation: fadeUp 380ms ease both;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(170px, 0.7fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-brand-block p,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  font-weight: 760;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(2px);
}

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

.social-links a {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 950;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(159, 17, 27, 0.22);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-cta {
  display: inline-flex !important;
  margin-top: 10px;
  padding: 10px 14px;
  color: var(--white) !important;
  background: var(--red);
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero,
  .model-section,
  .culture-section,
  .section-intro,
  .contact-section,
  .page-hero,
  .story-section,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 560px;
  }

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

  .service-card-featured img,
  .service-card img {
    height: 300px;
  }

  .culture-panel {
    grid-template-columns: minmax(260px, 0.8fr) 1fr;
  }

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

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .metric-band {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .metric-band article {
    min-height: 210px;
  }

  .hero-image-main {
    inset: 0 0 56px 0;
  }

  .hero-image-small {
    width: 54%;
  }

  .culture-panel {
    grid-template-columns: 1fr;
  }

  .culture-panel img {
    min-height: 330px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
  }

  .brand-logo {
    top: -60px;
    width: 182px;
  }

  .brand-logo-frame {
    width: 184px;
    height: 46px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .page-hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-showcase {
    min-height: 440px;
  }

  .hero-image-main {
    border-width: 8px;
  }

  .hero-image-small {
    display: none;
  }

  .hero-stat-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 20px;
  }

  .metric-band article,
  .service-card-body,
  .process-list article,
  .contact-card {
    padding: 22px;
  }

  .model-media {
    min-height: 420px;
    border-width: 8px;
  }

  .page-hero img {
    height: 340px;
    min-height: 340px;
    border-width: 8px;
  }

  .model-badge {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-section {
    margin-inline: 18px;
  }

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

  .contact-methods article {
    grid-template-columns: 1fr;
  }
}

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