:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-accent: #eef3f7;
  --panel: #ffffff;
  --panel-strong: #f9fbfc;
  --line: #dde5ec;
  --text: #102331;
  --muted: #607482;
  --accent: #0d5f84;
  --accent-soft: #e5f3fa;
  --accent-strong: #083b53;
  --shadow: 0 18px 50px rgba(25, 50, 71, 0.08);
  --radius: 28px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 22%, #f4f7fa 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 35, 49, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.brand img {
  width: 58px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
  background: var(--bg-soft);
  border-color: var(--line);
  transform: translateY(-1px);
  outline: none;
}

.site-nav a[aria-current="page"] {
  color: #ffffff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.site-footer a {
  transition: color 180ms ease;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent-strong);
}

.hero {
  position: relative;
  padding: 2rem 0 4.5rem;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 251, 0.9)),
    radial-gradient(circle at top right, rgba(13, 95, 132, 0.09), transparent 24%);
}

.hero-grid,
.contact-grid,
.about-grid,
.equipment-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  min-height: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
}

.hero .hero-headline {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  color: var(--accent-strong);
  line-height: 1.15;
  letter-spacing: 0.01em;
  max-width: 38ch;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}

.hero-text,
.section p,
.service-card p,
.news-card p,
.contact-card p,
.quote-card blockquote,
.support-copy {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-strong);
  color: #ffffff;
}

.btn-secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--accent-strong);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
}

.hero-stats div,
.story-card,
.timeline-card,
.capability-card,
.news-card,
.contact-card,
.cert-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-stats div {
  display: block;
  padding: 1.05rem 1.1rem;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-size: 1.65rem;
  font-family: "Rajdhani", sans-serif;
  color: var(--accent-strong);
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hero-ribbon span {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-keylist {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-key {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  color: var(--accent-strong);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
  min-height: auto;
}

.hero-formal-card-under {
  width: 100%;
}

.hero-media-large {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.hero-media-large img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}

.hero-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 35, 49, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 900;
  color: var(--accent-strong);
  font-size: 0.9rem;
}

.hero-media-right {
  display: grid;
  gap: 1.1rem;
}

.hero-media-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.hero-media-small {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-media-small img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.hero-media-label {
  padding: 0.9rem 1rem;
  font-weight: 950;
  color: var(--accent-strong);
  border-top: 1px solid rgba(16, 35, 49, 0.08);
}

.hero-formal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f2f7fb 100%);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.25rem;
}

.hero-formal-card h2 {
  margin: 0.5rem 0 0.9rem;
  font-family: "Rajdhani", sans-serif;
  color: var(--accent-strong);
  font-size: 2.15rem;
  line-height: 1.05;
}

.hero-formal-card > p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.85;
}

.hero-formal-bullets {
  display: grid;
  gap: 0.75rem;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.bullet-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(13, 95, 132, 0.1);
}

.hero-main-card,
.floating-card,
.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-main-card {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 440px;
}

.floating-card {
  position: relative;
  background: var(--panel-strong);
}

.floating-card-a {
  grid-column: 2;
  grid-row: 1;
}

.floating-card-b {
  grid-column: 2;
  grid-row: 2;
}

.hero-main-card img,
.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: relative;
  grid-column: 1 / span 2;
  grid-row: 3;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fb 100%);
}

.hero-card h2,
.service-card h3,
.capability-card h3,
.news-card h3,
.timeline-card h3,
.story-card h3,
.equipment-copy h3 {
  margin-top: 0;
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
}

/* Hero mosaic (new layout) */
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mosaic-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transform: translateZ(0);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  transform: scale(1.01);
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-main {
  grid-column: 1 / span 8;
  grid-row: 1 / span 5;
}

.mosaic-top-right {
  grid-column: 9 / span 4;
  grid-row: 1 / span 3;
}

.mosaic-bottom-right {
  grid-column: 9 / span 4;
  grid-row: 4 / span 3;
}

.mosaic-strip {
  grid-column: 1 / span 8;
  grid-row: 6 / span 3;
}

.hero-info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f2f7fb 100%);
  box-shadow: var(--shadow);
}

.eyebrow-tight {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.hero-info-card h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.25rem;
  line-height: 1.02;
  color: var(--accent-strong);
}

.hero-info-card > div > p {
  margin-top: 0.75rem;
}

.info-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.info-thumb {
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 240ms ease;
}

.info-thumb:hover img {
  transform: scale(1.07);
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.dark-section,
.accent-section,
.gallery-section {
  background: transparent;
}

.about-grid {
  grid-template-columns: 1.08fr 0.92fr;
  margin-bottom: 1.8rem;
}

.about-story {
  display: grid;
  gap: 1.2rem;
}

.story-card,
.quote-card,
.contact-card,
.timeline-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.quote-card {
  background: linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

.quote-card span,
.contact-card span,
.timeline-card span {
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
  min-height: auto;
}

.collage-large,
.collage-small {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.collage-large {
  grid-column: 1 / span 2;
}

.collage-small.top,
.collage-small.bottom {
  left: auto;
  top: auto;
  bottom: auto;
}

.about-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0 1.8rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fb 100%);
  box-shadow: var(--shadow);
}

.about-band h3 {
  margin: 0;
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.about-band-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about-band-points span {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--accent-strong);
  font-weight: 700;
}

.timeline-grid,
.service-grid,
.capability-grid,
.news-grid,
.cert-grid,
.masonry-grid {
  display: grid;
  gap: 1.4rem;
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  position: relative;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.timeline-card h3 {
  margin-top: 1.4rem;
  font-size: 2rem;
}

.service-grid.expanded {
  grid-template-columns: 1fr;
}

.service-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.service-card:nth-child(even) {
  grid-template-columns: 1fr 340px;
}

.service-card:nth-child(even) img {
  order: 2;
}

.service-card:hover,
.masonry-card:hover,
.cert-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  height: 100%;
  min-height: 230px;
  width: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 1.7rem;
}

.service-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.equipment-grid {
  grid-template-columns: 0.88fr 1.12fr;
  margin-bottom: 1.6rem;
}

.equipment-feature,
.equipment-stack img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.equipment-feature {
  overflow: hidden;
  background: #ffffff;
}

.equipment-feature img {
  height: 100%;
  min-height: 540px;
  width: 100%;
  object-fit: cover;
}

.equipment-copy {
  padding: 1.5rem;
}

.equipment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.equipment-stack img:first-child {
  grid-column: 1 / span 2;
  height: 250px;
}

.equipment-stack img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-slab .capability-card:nth-child(odd) {
  transform: translateY(22px);
}

.capability-card,
.news-card,
.cert-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.capability-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.masonry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  margin-bottom: 1.5rem;
}

.masonry-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry-card.tall {
  grid-row: span 2;
}

.masonry-card.wide {
  grid-column: span 2;
}

.projects-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 1.4rem;
}

.projects-feature {
  position: relative;
  min-height: 620px;
}

.feature-frame,
.projects-copy-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.feature-large {
  inset: 0 15% 0 0;
}

.feature-small {
  right: 0;
  top: 2rem;
  width: 38%;
  height: 36%;
}

.feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-copy-card {
  right: 0;
  bottom: 2rem;
  width: 42%;
  padding: 1.4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f1f7fb 100%);
}

.projects-copy-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
}

.projects-copy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.projects-rail {
  display: grid;
  gap: 1rem;
}

.news-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 18px;
  object-fit: cover;
}

.news-card h3 {
  margin-bottom: 0.35rem;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 210px;
}

.cert-showcase {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

/* Certificates carousel */
.cert-carousel {
  position: relative;
  padding: 0.5rem 0;
  --slides-to-show: 5;
}

.cert-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.cert-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.cert-slide {
  flex: 0 0 calc(100% / var(--slides-to-show));
  padding: 0.25rem 0.15rem 0.5rem;
}

.cert-prev,
.cert-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.cert-prev {
  left: 0.25rem;
}

.cert-next {
  right: 0.25rem;
}

.cert-prev:focus-visible,
.cert-next:focus-visible {
  outline: 3px solid rgba(13, 95, 132, 0.25);
  outline-offset: 2px;
}

.cert-dots {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 0.9rem;
}

.cert-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
}

.cert-dot.is-active {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

@media (max-width: 1100px) {
  .cert-carousel {
    --slides-to-show: 3;
  }
}

@media (max-width: 760px) {
  .cert-carousel {
    --slides-to-show: 1;
  }
}

/* Smaller visuals when many cards are visible. */
.cert-carousel .cert-card img {
  height: 170px;
}

.cert-lead {
  display: grid;
  grid-template-rows: 1fr auto;
}

.cert-stack {
  display: grid;
  gap: 1.4rem;
}

.cert-card {
  background: #ffffff;
}

.cert-card img {
  height: 220px;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 16px;
  object-fit: cover;
}

.logo-wall-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.logo-wall img {
  width: 100%;
  height: 78px;
  padding: 0.75rem;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  object-fit: contain;
}

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.contact-intro {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: #ffffff;
}

.contact-card > div {
  padding: 1rem;
  border-radius: 18px;
  background: var(--bg-soft);
}

.contact-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.contact-image-strip img {
  height: 160px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.35rem 0;
  background: #ffffff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .equipment-grid,
  .contact-grid,
  .split-heading,
  .capability-grid,
  .timeline-grid,
  .projects-layout,
  .cert-showcase,
  .about-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) img {
    order: 0;
  }

  .masonry-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry-card.wide {
    grid-column: span 1;
  }

  .projects-feature {
    min-height: 540px;
  }

  .feature-large {
    inset: 0 10% 0 0;
  }

  .contact-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    position: relative;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    gap: 0.6rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
  }

  .site-nav a[aria-current="page"] {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
    color: #ffffff;
  }

  .site-nav a:active {
    transform: none;
    background: var(--bg-soft);
  }

  .hero {
    padding: 1.25rem 0 3.5rem;
  }

  .hero-actions {
    margin: 1.4rem 0 1.6rem;
  }

  .btn {
    min-height: 48px;
    padding: 0 1.15rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-media-large img {
    min-height: 360px;
  }

  .hero-stats,
  .masonry-grid,
  .compact-grid,
  .logo-wall,
  .contact-image-strip,
  .contact-card,
  .about-band-points {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    grid-template-columns: 1fr;
  }

  .hero-keylist {
    grid-template-columns: 1fr;
  }

  .hero-media-large img {
    min-height: 360px;
  }

  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .collage-large {
    grid-column: auto;
    min-height: 280px;
  }

  .equipment-stack {
    grid-template-columns: 1fr;
  }

  .equipment-stack img:first-child {
    grid-column: auto;
    height: 220px;
  }

  .equipment-stack img,
  .contact-image-strip img {
    height: 200px;
  }

  .projects-feature {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .feature-frame,
  .projects-copy-card {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .feature-large,
  .feature-small {
    min-height: 240px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .capability-slab .capability-card:nth-child(odd) {
    transform: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
