/* ============================================================
   MARINE REPAIR AND SUPPLY PTE. LTD. — offline static site
   Swiss & High-Contrast corporate maritime theme
   ============================================================ */

:root {
  --navy: #0A192F;
  --navy-deep: #0B1120;
  --blue: #0055A4;
  --orange: #FF4500;
  --bg-light: #F8FAFC;
  --text: #0F172A;
  --muted: #64748B;
  --light: #F8FAFC;
  --border: #E2E8F0;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--orange); color: #fff; }

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

h1, h2, h3, h4 {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); }
h2.light-h { color: var(--light); }
h3 { font-size: 1.25rem; color: var(--navy); }

.container { max-width: 76rem; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; }
.section-alt { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--navy-deep); }

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.kicker.light { color: rgba(248, 250, 252, 0.85); }
.kicker.orange-k { color: var(--orange); }

.section-head { max-width: 44rem; margin-bottom: 3.5rem; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-accent { background: var(--orange); color: #fff; }
.btn-accent:hover { background: #e03e00; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn.full { width: 100%; border: none; font-family: inherit; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(10, 25, 47, 0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }

.brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--navy);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.85rem; line-height: 1.15; letter-spacing: -0.01em;
}
.brand em { font-style: normal; font-size: 0.58rem; color: var(--muted); letter-spacing: 0.12em; font-family: system-ui, sans-serif; font-weight: 600; }

.brand-logo {
  width: 70px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 229, 255, 0.35));
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.08) rotate(-3deg); filter: drop-shadow(0 4px 12px rgba(0, 229, 255, 0.55)); }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 0.85rem; font-weight: 600;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--blue); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 0.55rem 1.3rem;
  transition: background-color 0.25s;
}
.nav-cta:hover { background: var(--orange); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2.5px; background: var(--navy); transition: transform 0.3s, opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text); font-weight: 600;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  margin-top: -4.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("assets/images/hero.jpg") center / cover no-repeat;
  animation: heroZoom 18s var(--ease) forwards;
  background-size: cover;
  background-position: center;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10, 25, 47, 0.88) 0%, rgba(10, 25, 47, 0.62) 55%, rgba(10, 25, 47, 0.35) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 7rem; padding-bottom: 4rem; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  margin-bottom: 1.4rem;
}
.hero .accent { color: var(--orange); }
.hero-sub { color: rgba(248, 250, 252, 0.88); max-width: 38rem; font-size: 1.07rem; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 3rem; width: fit-content;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2.3rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(248, 250, 252, 0.7); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.4rem; }

/* hero entrance animation */
.hero-anim { opacity: 0; transform: translateY(28px); animation: heroUp 0.9s var(--ease) forwards; }
.a1 { animation-delay: 0.15s; } .a2 { animation-delay: 0.3s; } .a3 { animation-delay: 0.45s; }
.a4 { animation-delay: 0.6s; } .a5 { animation-delay: 0.8s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75); z-index: 2;
  animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ============================================================
   SPLIT LAYOUTS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-text h2 { margin-bottom: 1.4rem; }
.split-text p { color: var(--muted); margin-bottom: 1.1rem; }

.split-img { position: relative; }
.split-img img {
  width: 100%; height: 100%; min-height: 24rem; object-fit: cover;
  box-shadow: 14px 14px 0 var(--bg-light), 15px 15px 0 var(--border);
}
.img-badge {
  position: absolute; left: -1rem; bottom: 1.6rem;
  background: var(--navy); color: rgba(248, 250, 252, 0.8);
  padding: 1rem 1.4rem; font-size: 0.8rem; line-height: 1.5;
  display: flex; flex-direction: column; max-width: 16rem;
  border-left: 4px solid var(--orange);
}
.img-badge strong {
  color: #fff; font-family: "Arial Black", Arial, sans-serif;
  text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.02em;
}
.img-badge.orange { background: var(--orange); border-left-color: var(--navy); color: rgba(255, 255, 255, 0.9); }

.about-points { list-style: none; margin-top: 1.6rem; }
.about-points li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; padding: 0.45rem 0; }

.ico {
  width: 20px; height: 20px; flex: none;
  stroke: var(--orange); stroke-width: 2.4; fill: none;
  stroke-linecap: round; stroke-linejoin: round; margin-top: 3px;
}

/* ============================================================
   BENTO GRID — DIVISIONS
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.bento-card {
  background: #fff; border: 1px solid var(--border);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(10, 25, 47, 0.1);
  border-color: var(--blue);
}
.bento-card.tall { grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }
.bento-card.dark { background: var(--navy); border-color: var(--navy); }
.bento-card.dark h3 { color: #fff; }
.bento-card.dark p { color: rgba(248, 250, 252, 0.72); }
.bento-card.dark:hover { border-color: var(--orange); }
.bento-card p { color: var(--muted); font-size: 0.92rem; }

.card-icon {
  width: 52px; height: 52px; flex: none;
  background: var(--bg-light); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 0.4rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--blue); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card-icon.orange { background: rgba(255, 69, 0, 0.12); border-color: rgba(255, 69, 0, 0.3); }
.card-icon.orange svg { stroke: var(--orange); }

.mini-list { list-style: none; margin-top: 0.4rem; }
.mini-list li {
  font-size: 0.84rem; color: var(--text);
  padding: 0.42rem 0 0.42rem 1.1rem;
  border-bottom: 1px dashed var(--border);
  position: relative;
}
.mini-list li::before { content: "—"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.mini-list li:last-child { border-bottom: none; }

.card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--blue); font-weight: 700; text-decoration: none;
  font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em;
  transition: gap 0.3s var(--ease), color 0.2s;
}
.card-link:hover { gap: 0.9rem; color: var(--orange); }
.card-link svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card-link.light { color: var(--orange); }
.card-link.light:hover { color: #fff; }

/* ============================================================
   CHECK LISTS
   ============================================================ */
.check-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 1.5rem; margin-top: 1.2rem; }
.check-grid.one-col { grid-template-columns: 1fr 1fr; }
.check-grid li {
  position: relative; padding: 0.42rem 0 0.42rem 1.6rem;
  font-size: 0.9rem; color: var(--text);
}
.check-grid li::before {
  content: ""; position: absolute; left: 0; top: 0.72rem;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

.eng-split { margin-bottom: 3.5rem; align-items: start; }

/* ---------- engine brands ---------- */
.brands { border: 1px solid var(--border); background: var(--bg-light); padding: 2rem 2.2rem; margin-bottom: 3.5rem; }
.brands-title {
  font-family: "Arial Black", Arial, sans-serif; text-transform: uppercase;
  font-size: 0.95rem; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 1.1rem;
}
.brand-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.brand-tags span {
  background: #fff; border: 1px solid var(--border);
  padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 600; color: var(--text);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
  cursor: default;
}
.brand-tags span:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ---------- flying squad ---------- */
.flying-squad {
  background: var(--navy); color: #fff;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem;
  padding: 3rem; position: relative; overflow: hidden;
}
.flying-squad::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 24rem; height: 24rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.25), transparent 70%);
}
.fs-text h3 { color: #fff; font-size: 1.6rem; margin-bottom: 1rem; }
.fs-text p { color: rgba(248, 250, 252, 0.75); font-size: 0.95rem; }
.fs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; align-content: center; position: relative; }
.fs-grid div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.85rem 1rem; font-size: 0.83rem; font-weight: 600;
  transition: border-color 0.25s, background-color 0.25s;
}
.fs-grid div:hover { border-color: var(--orange); background: rgba(255, 69, 0, 0.1); }

/* ============================================================
   COMMERCIAL / MANPOWER TWO-COL
   ============================================================ */
.two-col-divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.division-block { border: 1px solid var(--border); background: #fff; padding-bottom: 2rem; transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.division-block:hover { box-shadow: 0 18px 40px rgba(10, 25, 47, 0.09); transform: translateY(-4px); }
.division-img { width: 100%; height: 38%; object-fit: cover; margin-bottom: 1.8rem; }
.division-block .kicker, .division-block h3, .division-block .check-grid { padding-left: 2rem; padding-right: 2rem; }
.division-block .check-grid { grid-template-columns: 1fr; }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1); }
.loc {
  background: var(--navy-deep); padding: 2rem 1.6rem;
  transition: background-color 0.3s;
}
.loc:hover { background: #11203a; }
.loc-num { font-size: 0.75rem; color: var(--orange); font-weight: 700; letter-spacing: 0.2em; }
.loc h4 { color: #fff; font-size: 1.02rem; margin: 0.7rem 0 0.3rem; }
.loc p { color: rgba(248, 250, 252, 0.55); font-size: 0.82rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-card {
  border: 1px solid var(--border); padding: 1.7rem;
  background: #fff; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 4px; height: 100%; background: var(--orange);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10, 25, 47, 0.08); }
.why-card:hover::before { transform: scaleY(1); }
.why-card h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.83rem; color: var(--muted); }

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  position: relative; padding: 8rem 0;
  background: url("assets/images/port.jpg") center / cover fixed no-repeat;
}
.mission-overlay { position: absolute; inset: 0; background: rgba(10, 25, 47, 0.88); }
.mission-content { position: relative; max-width: 52rem; }
.mission-content h2 { margin-bottom: 1.4rem; }
.mission-content p { color: rgba(248, 250, 252, 0.82); font-size: 1.05rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-split { align-items: start; }
.contact-list { list-style: none; margin-top: 2rem; }
.contact-list li { display: flex; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.contact-list strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); }
.contact-list span { color: var(--muted); font-size: 0.92rem; }
.contact-list em { font-size: 0.78rem; color: #94A3B8; }

.contact-form {
  background: var(--bg-light); border: 1px solid var(--border);
  padding: 2.4rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.contact-form h3 { margin-bottom: 0.4rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy);
}
.contact-form input, .contact-form select, .contact-form textarea {
  border: 1px solid var(--border); background: #fff;
  padding: 0.8rem 1rem; font-size: 0.95rem; font-family: inherit;
  color: var(--text); outline: none; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.12);
}

/* ============================================================
   NETWORK HUBS
   ============================================================ */
.network-hubs { margin-top: 4rem; padding-top: 3.5rem; border-top: 1px solid var(--border); }
.hubs-title {
  font-family: "Arial Black", Arial, sans-serif; font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 2rem;
}
.hubs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.hub {
  position: relative;
  background: #fff; border: 1px solid var(--border);
  padding: 1.6rem 1.4rem 1.4rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.hub::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--orange));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.hub:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 14px 32px rgba(0, 85, 164, 0.12); }
.hub:hover::before { transform: scaleY(1); }
.hub-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); background: rgba(255, 69, 0, 0.08);
  padding: 0.3rem 0.6rem; border-radius: 2px; margin-bottom: 0.8rem;
}
.hub h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem; font-weight: 800; }
.hub p { color: var(--muted); font-size: 0.84rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); padding: 4rem 0 2.5rem; }
.footer-inner { text-align: left; }
.footer-brand-row { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.5rem; }
.footer-logo {
  width: 96px; height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 229, 255, 0.45));
}
.footer-brand {
  font-family: "Arial Black", Arial, sans-serif; font-weight: 900;
  color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -0.03em; text-transform: uppercase; line-height: 1.05;
}
.footer-brand span { color: var(--orange); display: block; font-size: 0.45em; letter-spacing: 0.1em; }
.footer-tag { color: rgba(248, 250, 252, 0.6); margin: 0.3rem 0 1.5rem; font-size: 0.9rem; }
.footer-brand-row + .footer-links { margin-top: 1.5rem; }
.footer-brand { margin: 0; }
.footer-brand-row p.footer-tag { margin: 0.4rem 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-links a { color: rgba(248, 250, 252, 0.75); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.copyright { color: rgba(248, 250, 252, 0.45); font-size: 0.78rem; margin-top: 1.6rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .locations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .split, .two-col-divisions, .flying-squad { grid-template-columns: 1fr; }
  .split { gap: 2.5rem; }
  .split-img { order: -1; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid, .check-grid.one-col { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .mission { background-attachment: scroll; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .why-grid, .locations { grid-template-columns: 1fr; }
  .img-badge { left: 0.8rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
