/* ============================================================
   Maple-Crete Inc. — Site Styles
   Design system anchored on the logo red (#CE1F2D).
   Edit the variables below to tune the whole site at once.
   ============================================================ */

:root {
  /* Brand */
  --mc-red:        #CE1F2D;   /* sampled from the logo */
  --mc-red-dark:   #A1151F;
  --mc-red-deep:   #7d0f17;
  --mc-black:      #141414;
  --mc-ink:        #1c1c1c;   /* primary text */
  --mc-gray:       #5d5d5d;   /* secondary text */
  --mc-gray-light: #8a8a8a;
  --mc-line:       #e6e6e6;   /* hairlines */
  --mc-bg:         #ffffff;
  --mc-bg-soft:    #f6f6f7;   /* alt sections */
  --mc-bg-dark:    #161616;

  /* Type */
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
  --shadow-md: 0 14px 40px rgba(0,0,0,.12);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--mc-ink);
  background: var(--mc-bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, .eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); text-transform: uppercase; }
p  { color: var(--mc-gray); }
strong { color: var(--mc-ink); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mc-red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--mc-red);
}
.eyebrow.center { justify-content: center; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(44px, 6vw, 80px); }
.section.soft { background: var(--mc-bg-soft); }
.section.dark { background: var(--mc-bg-dark); color: #fff; }
.section.dark p { color: #b9b9b9; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--mc-gray); max-width: 60ch; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  padding: 15px 30px;
  border-radius: 2px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s, box-shadow .25s;
  will-change: transform;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--mc-red); color: #fff; box-shadow: 0 10px 24px rgba(206,31,45,.32); }
.btn-primary:hover { background: var(--mc-red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--mc-ink); border-color: #fff; }
.btn-dark { background: var(--mc-ink); color: #fff; }
.btn-dark:hover { background: var(--mc-red); transform: translateY(-2px); }

/* ============================================================
   Announcement bar (We're Hiring)
   ============================================================ */
.topbar {
  background: var(--mc-red);
  color: #fff;
  font-size: .85rem;
  letter-spacing: .04em;
  position: relative;
  z-index: 60;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 9px;
  text-align: center;
}
.topbar .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.topbar a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { opacity: .85; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
  background: rgba(255,255,255,0);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo img { height: 46px; width: auto; transition: height .35s var(--ease); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .92rem;
  color: #fff;
  position: relative;
  padding-block: 6px;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--mc-red);
  transition: width .28s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }

/* Scrolled / solid state */
.nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,.09);
  height: 64px;
}
.nav.scrolled .nav__logo img { height: 40px; }
.nav.scrolled .nav__links a { color: var(--mc-ink); }
.nav.scrolled .nav__links a:hover { color: var(--mc-red); }

/* Mobile toggle */
.nav__toggle { display: none; width: 42px; height: 42px; position: relative; z-index: 70; }
.nav__toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: #fff; transition: transform .3s var(--ease), opacity .2s, background .3s;
}
.nav.scrolled .nav__toggle span { background: var(--mc-ink); }
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }
body.menu-open .nav__toggle span { background: #fff; }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--nav-h)); /* pull under transparent nav */
  padding-top: var(--nav-h);
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 70%;
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 60%);
}
.hero__inner { max-width: 820px; padding-block: 60px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--mc-red); }
.hero .lead { color: rgba(255,255,255,.9); margin: 22px 0 34px; max-width: 50ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__eyebrow { color: #fff; }
.hero__eyebrow::before { background: var(--mc-red); }

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.scroll-hint .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.7);
  border-radius: 12px; position: relative;
}
.scroll-hint .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: #fff;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} }

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
  background: var(--mc-red);
  color: #fff;
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.stat {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: rgba(255,255,255,.22);
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
}
.stat .label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-top: 10px;
  color: rgba(255,255,255,.88);
}

/* ============================================================
   About / intro split
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img {
  width: 100%; aspect-ratio: 4/3.2; object-fit: cover; border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.split__media .badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--mc-red); color: #fff;
  padding: 22px 30px; border-radius: 4px; box-shadow: var(--shadow-md);
  font-family: var(--font-head); text-transform: uppercase; line-height: 1.1;
}
.split__media .badge b { display: block; font-size: 2.4rem; }
.split__media .badge span { font-size: .78rem; letter-spacing: .12em; opacity: .9; }
.tagline-quote {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .14em;
  color: var(--mc-red);
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--mc-red);
}

/* ============================================================
   Services (split cards)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.svc-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.svc-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 55%, rgba(10,10,10,.9) 100%);
  transition: background .4s;
}
.svc-card:hover img { transform: scale(1.06); }
.svc-card:hover::after { background: linear-gradient(180deg, rgba(206,31,45,.15) 0%, rgba(0,0,0,.5) 55%, rgba(10,10,10,.92) 100%); }
.svc-card__body { padding: 38px; }
.svc-card .num {
  font-family: var(--font-head); font-size: .85rem; letter-spacing: .2em;
  color: rgba(255,255,255,.95); display: inline-block; margin-bottom: 12px;
  background: var(--mc-red); padding: 5px 12px; border-radius: 2px;
}
.svc-card h3 { color: #fff; margin-bottom: 12px; }
.svc-card p { color: rgba(255,255,255,.86); max-width: 44ch; }
.svc-card .more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  font-size: .9rem; color: #fff;
}
.svc-card .more .arrow { transition: transform .25s var(--ease); }
.svc-card:hover .more .arrow { transform: translateX(6px); }

/* Capabilities list */
.caps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mc-line);
  border: 1px solid var(--mc-line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 30px;
}
.cap {
  background: #fff;
  padding: 26px 22px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .98rem;
  transition: background .25s, color .25s;
}
.cap:hover { background: var(--mc-ink); color: #fff; }
.cap .dot { width: 9px; height: 9px; background: var(--mc-red); border-radius: 50%; flex: none; }

/* ============================================================
   Work gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery figure {
  position: relative; overflow: hidden; border-radius: 4px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure::after {
  content: attr(data-cap);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em;
  font-size: .85rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.gallery figure:hover::after { opacity: 1; transform: translateY(0); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ============================================================
   Winter highlight band
   ============================================================ */
.winter {
  position: relative; color: #fff; overflow: hidden;
}
.winter__media { position: absolute; inset: 0; z-index: -2; }
.winter__media img { width: 100%; height: 100%; object-fit: cover; }
.winter__media::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(15,15,18,.92) 0%, rgba(15,15,18,.7) 45%, rgba(15,15,18,.35) 100%); }
.winter__inner { max-width: 620px; }
.winter h2 { color: #fff; }
.winter p { color: rgba(255,255,255,.86); }
.winter .factrow { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.winter .fact b { font-family: var(--font-head); font-size: 2.4rem; color: #fff; display: block; line-height: 1; }
.winter .fact span { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.75); }

/* ============================================================
   Safety & Awards
   ============================================================ */
.awards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,72px); align-items: start; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.cert-badges .badge2 {
  border: 1px solid var(--mc-line); border-radius: 3px; padding: 12px 18px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em;
  font-size: .88rem; background: #fff; box-shadow: var(--shadow-sm);
}
.cert-badges .badge2 b { color: var(--mc-red); }
.award-list { border-top: 1px solid var(--mc-line); }
.award-list li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--mc-line);
}
.award-list .yr {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--mc-red);
  flex: none; width: 110px;
}
.award-list .txt { font-weight: 500; color: var(--mc-ink); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--mc-red) 0%, var(--mc-red-deep) 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 16px auto 30px; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-white { background: #fff; color: var(--mc-red-dark); }
.cta-band .btn-white:hover { background: var(--mc-ink); color: #fff; transform: translateY(-2px); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #0f0f0f; color: #cfcfcf; padding-block: 50px 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer__logo img { height: 60px; margin-bottom: 18px; }
.footer p { color: #9c9c9c; max-width: 38ch; }
.footer h4 { color: #fff; font-size: 1rem; letter-spacing: .12em; margin-bottom: 18px; }
.footer a { color: #bdbdbd; transition: color .2s; }
.footer a:hover { color: var(--mc-red); }
.footer__links li, .footer__contact li { padding: 6px 0; }
.footer__contact .ic { color: var(--mc-red); display:inline-block; width: 22px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  transition: background .25s, border-color .25s, transform .25s;
}
.footer__social a:hover { background: var(--mc-red); border-color: var(--mc-red); transform: translateY(-3px); }
.footer__bottom {
  margin-top: 50px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .85rem; color: #7e7e7e;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .split, .awards-wrap { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
  .caps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery .wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center;
    gap: 26px;
    background: rgba(18,18,18,.97);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  body.menu-open .nav__links { transform: translateX(0); }
  .nav__links a, .nav.scrolled .nav__links a { color: #fff; font-size: 1.4rem; }
  .nav__cta { margin-top: 6px; }
  .nav__toggle { display: block; }
  .caps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .split__media .badge { left: 0; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Brand logo (image)
   ============================================================ */
.nav__logo { display: flex; align-items: center; }
.nav__logo .mc-logo { height: 62px; width: auto; display: block; transition: height .35s var(--ease); }
.nav.scrolled .nav__logo .mc-logo { height: 52px; }
.footer__logo .mc-logo { height: 64px; width: auto; }

/* ============================================================
   Inner-page banner hero
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  margin-top: calc(-1 * var(--nav-h));
  padding: 0 0 56px;
  color: #fff;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.78) 100%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
.page-hero .eyebrow { color: #fff; }
.page-hero .eyebrow::before { background: var(--mc-red); }
.breadcrumb {
  margin-top: 16px; font-size: .85rem; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  font-family: var(--font-head);
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 8px; color: var(--mc-red); }

/* ============================================================
   Prose / rich text
   ============================================================ */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h3 { margin-top: 1.6em; }
.prose p { font-size: 1.06rem; }

/* Feature list with red checks */
.feature-list { display: grid; gap: 14px; margin-top: 8px; }
.feature-list li {
  position: relative; padding-left: 38px; color: var(--mc-ink); font-weight: 500;
}
.feature-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--mc-red); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.feature-list.two { grid-template-columns: 1fr 1fr; gap: 14px 32px; }

/* ============================================================
   Alternating detail rows
   ============================================================ */
.detail-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px); align-items: center;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.detail-row:last-child { margin-bottom: 0; }
.detail-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-md); }
.detail-row.flip .detail-row__media { order: 2; }
.detail-row .num-tag {
  font-family: var(--font-head); color: var(--mc-red);
  font-size: .9rem; letter-spacing: .2em; display: block; margin-bottom: 10px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); }
.contact-cards { display: grid; gap: 16px; margin-top: 28px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; border: 1px solid var(--mc-line); border-radius: 4px;
  background: #fff; box-shadow: var(--shadow-sm);
}
.contact-card .ic {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(206,31,45,.1); color: var(--mc-red);
  display: grid; place-items: center; font-size: 1.2rem;
}
.contact-card h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; margin-bottom: 3px; }
.contact-card a, .contact-card p { color: var(--mc-gray); }
.contact-card a:hover { color: var(--mc-red); }

.contact-form { display: grid; gap: 16px; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .06em; font-size: .8rem; color: var(--mc-ink); margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem;
  border: 1px solid var(--mc-line); border-radius: 3px; background: #fff; color: var(--mc-ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--mc-red); box-shadow: 0 0 0 3px rgba(206,31,45,.12);
}
.map { width: 100%; height: 360px; border: 0; border-radius: 4px; box-shadow: var(--shadow-sm); margin-top: 14px; filter: grayscale(.2); }

/* ============================================================
   Careers
   ============================================================ */
.job-list { display: grid; gap: 16px; margin-top: 10px; }
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px; border: 1px solid var(--mc-line); border-left: 4px solid var(--mc-red);
  border-radius: 4px; background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.job h3 { text-transform: none; font-size: 1.25rem; margin-bottom: 2px; }
.job .meta { font-size: .85rem; color: var(--mc-gray); letter-spacing: .04em; }
.job .meta .tag { color: var(--mc-red); font-family: var(--font-head); text-transform: uppercase; }

/* Value cards (about / why us) */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 10px; }
.vcard { padding: 32px 28px; border: 1px solid var(--mc-line); border-radius: 5px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vcard .ic {
  width: 52px; height: 52px; border-radius: 10px; margin-bottom: 18px;
  background: rgba(206,31,45,.1); color: var(--mc-red);
  display: grid; place-items: center; font-size: 1.5rem; font-weight: 700;
}
.vcard h3 { font-size: 1.2rem; text-transform: none; margin-bottom: 8px; }

@media (max-width: 980px) {
  .contact-grid, .detail-row, .detail-row.flip .detail-row__media { grid-template-columns: 1fr; }
  .detail-row.flip .detail-row__media { order: -1; }
  .detail-row__media { order: -1; }
  .cards-3 { grid-template-columns: 1fr; }
  .feature-list.two { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .contact-form .row2 { grid-template-columns: 1fr; }
  .job { flex-direction: column; align-items: flex-start; }
}
