/* Refined from the uploaded MUT Consultancy site. Keeps original image-led navy/teal design. */
:root {
  color-scheme: light;
  --ink: #14212b;
  --muted: #5f6d77;
  --paper: #f6f8f8;
  --white: #ffffff;
  --line: #d7e0e4;
  --navy: #0a2030;
  --navy-2: #102b3b;
  --teal: #069c9d;
  --teal-dark: #047a7e;
  --gold: #d79a43;
  --shadow: 0 18px 50px rgba(15, 36, 48, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--white);
  padding: .75rem 1rem;
  border-radius: 6px;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(10, 32, 48, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 6px;
  background: rgba(255,255,255,.12);
}
.nav { display: flex; gap: clamp(1rem, 3vw, 2rem); font-size: .95rem; }
.nav a { text-decoration: none; opacity: .92; }
.nav a:hover { opacity: 1; color: #83f5f1; }
.nav-toggle {
  display: none;
  min-height: 40px;
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 24, 36, .94) 0%, rgba(7, 24, 36, .80) 36%, rgba(7, 24, 36, .28) 70%, rgba(7, 24, 36, .18) 100%);
}
.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 5rem;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--teal);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #83f5f1; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  line-height: .98;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0;
}
h3 { line-height: 1.2; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: .86rem;
  text-decoration: none;
  letter-spacing: .08em;
  cursor: pointer;
  font-family: inherit;
}
.button-primary { background: var(--teal); color: var(--white); }
.button-primary:hover { background: var(--teal-dark); }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.38); }
.button-ghost:hover { border-color: rgba(255,255,255,.75); }
.capabilities-strip {
  background: var(--navy);
  color: var(--white);
  padding: 1rem clamp(1rem, 4vw, 4rem);
}
.capability-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.capability-inner span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .55rem .85rem;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: .9rem;
}
.section { padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem); }
.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.section-heading-left { margin-left: 0; text-align: left; }
.about-section { background: var(--white); }
.about-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-card div { padding: 1.35rem; }
.feature-card h3 { font-size: 1.35rem; margin-bottom: .75rem; }
.feature-card p { color: var(--muted); }
.services-section {
  background: linear-gradient(180deg, #eef4f4 0%, #f8faf9 100%);
}
.service-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-block {
  min-height: 300px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 36, 48, 0.07);
}
.service-block-accent {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.service-number {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-weight: 800;
}
.service-block h3 { font-size: 1.2rem; }
.service-block p, .service-block li { color: var(--muted); }
.service-block-accent p, .service-block-accent li { color: rgba(255,255,255,.82); }
ul { padding-left: 1.1rem; }
li + li { margin-top: .4rem; }
.deliverables-section { background: #102b3b; color: var(--white); }
.deliverables-section .eyebrow { color: #83f5f1; }
.deliverables-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.deliverable-panel {
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.deliverable-panel h3 { color: #b9f7f3; }
.deliverable-panel li { color: rgba(255,255,255,.82); }
.contact-section { background: var(--white); }
.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-note { color: var(--muted); font-weight: 700; }
.hours-card {
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
}
.hours-card dl { margin: 0; }
.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.hours-card div:last-child { border-bottom: 0; }
dt { font-weight: 800; }
dd { margin: 0; color: var(--muted); }
.contact-form {
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
  box-shadow: var(--shadow);
}
.contact-form label { display: block; margin-bottom: .4rem; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 48px;
  margin-bottom: 1rem;
  padding: .8rem .9rem;
  border: 1px solid #bdcbd0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.form-status { min-height: 1.5rem; margin: .85rem 0 0; color: var(--teal-dark); font-weight: 700; }
.recaptcha-note { margin: 1rem 0 0; color: var(--muted); font-size: .85rem; }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 4rem);
  background: #071824;
  color: rgba(255,255,255,.75);
}
.site-footer a { color: var(--white); font-weight: 800; text-decoration: none; }
.cookie-banner {
  position: fixed;
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  bottom: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(7, 24, 36, .96);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.1rem; margin-bottom: .35rem; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.78); }
.cookie-actions { display: flex; gap: .7rem; flex-shrink: 0; }
.privacy-page { min-height: 70vh; padding-top: 7rem; background: var(--white); }
.privacy-content { width: min(850px, calc(100% - 2rem)); margin: 0 auto; padding: 4rem 0; }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: .2rem;
    padding: .8rem;
    background: rgba(10, 32, 48, .98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .75rem; }
  .about-grid, .service-grid, .deliverables-grid, .contact-layout { grid-template-columns: 1fr 1fr; }
  .contact-layout { align-items: stretch; }
}
@media (max-width: 700px) {
  .site-header { padding: .85rem 1rem; }
  .brand span:last-child { display: none; }
  .hero { min-height: 86vh; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7, 24, 36, .93) 0%, rgba(7, 24, 36, .86) 58%, rgba(7, 24, 36, .52) 100%); }
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-grid, .service-grid, .deliverables-grid, .contact-layout { grid-template-columns: 1fr; }
  .service-block { min-height: auto; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .button { flex: 1; }
}
