/* brahma3-com - Home page styles. Rebuild of brahma3.com (Wix) off Wix. */
:root {
  --ink: #4557FF;        /* brand indigo-blue (from live site) */
  --ink-deep: #2f3191;
  --paper: #ffffff;
  --text: #000000;
  --muted: #8f8f8f;
  --line: #e6e6ea;
  --maxw: 1280px;
  --pad: clamp(1.25rem, 6vw, 77px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* smooth cross-page navigation (crossfade) where the browser supports it */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .38s;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #f7f7f8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Bitter", Georgia, serif; font-weight: 400; color: var(--ink); margin: 0 0 .5em; }

.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 9rem) var(--pad); }
.eyebrow { font-family: "Bitter", serif; letter-spacing: .18em; font-size: .8rem; color: var(--ink); text-transform: uppercase; margin: 0 0 1.75rem; }
.eyebrow-q { font-family: "Bitter", serif; font-size: 18px; font-weight: 400; line-height: 25.2px; color: var(--ink); margin: 0 0 1.75rem; }
/* large display heading: live site pairs a small label with a very large statement */
.display {
  font-family: "Bitter", serif; font-weight: 400; color: var(--ink);
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.0;
  margin: 0 0 2rem; max-width: 30ch;
}
/* the What-we-do statement is the one large display on the live page */
.whatwedo .display { font-size: clamp(1.8rem, 3.4vw, 2.63rem); line-height: 1.2; letter-spacing: -0.42px; }
.tagline { color: var(--muted); font-style: italic; margin: 0 0 1.25rem; }
.lead { max-width: 60ch; font-size: 1.05rem; }

/* buttons */
.btn {
  display: inline-block; font-family: "Roboto", sans-serif; font-weight: 400;
  letter-spacing: 1px; font-size: 10px; line-height: 10px; text-transform: none;
  padding: .95rem 2.4rem; border: 1.5px solid var(--ink); color: var(--ink);
  border-radius: 3px; transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn:hover { background: var(--ink); color: #fff; }
.btn.ghost { margin-top: 2rem; }

/* HEADER */
.site-header {
  display: flex; align-items: flex-start;
  padding: 26px clamp(1.25rem, 2vw, 26px) 0 var(--pad); background: transparent;
}
.brand img { height: 70px; width: auto; }
/* nav boxes: exact live spec - unequal widths, left-aligned text,
   1px indigo border, rounded top corners only */
.main-nav { display: flex; flex: 1; margin: 20px 0 0 clamp(1rem, 8vw, 102px); gap: 8px; }
.main-nav a {
  flex: 1 1 auto; text-align: left;
  font-family: "Roboto", sans-serif; text-transform: uppercase; letter-spacing: 1.2px;
  font-size: 12px; font-weight: 400; line-height: 12.72px; color: var(--ink);
  /* live draws top/left/right only - open at the bottom, rounded top corners */
  padding: 7px 12px; border: 1px solid var(--ink); border-bottom: 0;
  border-radius: 4px 5px 0 0;
  transition: background .3s ease, color .3s ease; white-space: nowrap;
}
.main-nav a:hover { background: rgba(69, 87, 255, .06); }
.main-nav a.active { color: #000; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; }

/* HERO */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: .42fr 1fr; gap: clamp(2rem, 11.7vw, 150px);
  align-items: start; padding: clamp(2.5rem, 9.2vw, 118px) var(--pad) clamp(3rem, 7vw, 6.5rem);
}
.hero h1 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.0; font-weight: 400; }
.hero-sub { color: var(--ink); font-size: .75rem; line-height: 1.55; max-width: 42ch; margin: 5.5rem 0 0; }
.hero .btn { display: block; width: 100%; max-width: 289px; text-align: center; margin-top: 3.5rem; }
/* partner banner: live uses a solid blue bar plus a large EE mark */
.partner-banner { background: #f7f7f9; display: flex; align-items: center; gap: clamp(1.5rem, 5vw, 5rem); }
.pb-bar {
  margin: 0; flex: 0 0 50%; background: var(--ink); color: #fff;
  font-size: 16px; font-weight: 400; letter-spacing: -0.16px; line-height: 19.2px;
  padding: 1rem 1.5rem 1rem var(--pad);
}
.pb-logo { margin: 0; text-align: center; }
.pb-logo img { height: 78px; width: auto; }
.pb-logo figcaption { font-family: "Bitter", serif; font-style: italic; color: var(--ink); font-size: .78rem; margin-top: .2rem; }
@media (max-width: 700px) {
  .partner-banner { gap: 1rem; }
  .pb-bar { flex: 1 1 auto; font-size: .72rem; }
  .partner-banner img { height: 56px; }
}
.hero-carousel { position: relative; }
.hero-carousel .slides { position: relative; aspect-ratio: 693 / 390; border: 1px solid var(--ink); border-radius: 5px; background: transparent; }
.hero-carousel .slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity 1s cubic-bezier(.4,0,.2,1); pointer-events: none;
}
.hero-carousel .slide.is-active { opacity: 1; pointer-events: auto; }
/* live darkens the panel on hover with a ~15% black overlay */
.hero-carousel .slides::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(0, 0, 0, 0); transition: background .3s ease;
}
.hero-carousel .slides:hover::after { background: rgba(0, 0, 0, .15); }
.hero-carousel .dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1rem; }
.hero-carousel .dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: #c9cbe8; cursor: pointer; transition: .2s;
}
.hero-carousel .dots button.is-active { background: var(--ink); transform: scale(1.25); }

/* CLIENTS */
.clients {
  background: #fff; display: flex; align-items: center; gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(3rem, 5.5vw, 4.5rem) 0 clamp(3rem, 5.5vw, 4.5rem) clamp(1.25rem, 4vw, 4rem); overflow: hidden;
}
.clients-label {
  flex: 0 0 auto; margin: 0; font-family: "Bitter", serif; font-size: 12px;
  font-weight: 400; letter-spacing: normal; line-height: 14.4px; color: #000; white-space: nowrap;
}
/* continuous logo marquee, as on the live site */
.clients-marquee { overflow: hidden; padding: 2.5rem 0; flex: 1 1 auto; min-width: 0; }
.clients-track {
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: 0; width: max-content;
  animation: marquee-rtl 35s linear infinite; /* live drifts ~50px/s */
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
/* live gives each logo a fixed 146px slot, mark ~26px tall */
.clients-track img { height: 26px; width: 146px; object-fit: contain; flex: 0 0 auto; }
/* track holds the logo set twice, so a 50% shift loops seamlessly */
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; transform: none; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; width: auto; }
  .clients-marquee { overflow: visible; }
}

/* WHATWEDO - live puts the heading left and the copy in a right column */
.whatwedo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; padding-top: clamp(3rem, 5vw, 5rem); padding-bottom: clamp(3rem, 5vw, 5rem); }
.ww-left { max-width: 520px; }
.ww-right { padding-top: .5rem; }
.ww-right p { color: var(--ink); font-size: .82rem; line-height: 1.7; margin: 0 0 1rem; max-width: 46ch; }
.whatwedo .display { max-width: 14ch; }
@media (max-width: 900px) { .whatwedo { grid-template-columns: 1fr; } }

/* CAPABILITIES */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.cap { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.cap .num { font-family: "Bitter", serif; color: var(--ink); font-size: .9rem; letter-spacing: .1em; }
.cap h3 { font-size: 1.25rem; margin: .35rem 0 .6rem; }
.cap p { color: var(--text); margin: 0; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: center; }
.stats-grid img { height: 140px; object-fit: contain; }

/* WORK - live shows a 3-up slider with a next arrow and solid tag badges */
.display.wide { max-width: 620px; }
.services .display { max-width: 470px; }
.work-slider { position: relative; }
.work-viewport { overflow: hidden; }
.work-track { display: flex; gap: 1.5rem; transition: transform .5s ease; }
.work-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  transition: .25s; background: transparent;
}
.work-card:hover { box-shadow: 0 14px 34px rgba(69,87,255,.12); }
.work-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; display: block; }
/* indigo wash over the lower part of the image, as on live */
.work-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%;
  aspect-ratio: 4 / 3; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, rgba(69,87,255,.55), rgba(69,87,255,0) 55%); }
/* grey band below the image: tag pill on top, white title under it (no excerpt) */
.work-meta { background: rgb(103,112,114); padding: 1.5rem 1.6rem 2rem;
  display: flex; flex-direction: column; flex: 1 1 auto; }
.work-meta .tag {
  order: -1; align-self: flex-start; display: inline-block;
  background: var(--ink); color: #f8f8f8; border: none; border-radius: 2px;
  font-family: "Roboto", sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: normal; text-transform: none; line-height: 1.4;
  padding: 6px 12px; margin: 0 0 1.1rem;
}
.work-meta h3 { font-size: 22px; line-height: 1.4; margin: 0; padding: 0; font-weight: 400; color: #fff; font-family: "Roboto", sans-serif; }
.work-meta .excerpt { display: none; }
.work-prev, .work-next {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 30px; height: 30px; border: 1px solid var(--line); background: #fff;
  color: var(--ink); font-size: 1.1rem; line-height: 1; cursor: pointer; transition: .2s;
}
.work-prev { left: -14px; }
.work-next { right: -14px; }
.work-prev:hover, .work-next:hover { border-color: var(--ink); }
.work-prev[disabled], .work-next[disabled] { opacity: .3; cursor: default; }
@media (max-width: 900px) { .work-card { flex: 0 0 100%; } }

/* CTA BAND */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: clamp(3rem, 6vw, 5rem) var(--pad); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.cta-band p { margin: 0 0 1.75rem; opacity: .9; }
.cta-band .btn { border-color: #fff; color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--ink); }

/* SERVICES */
/* SERVICES - live uses bordered boxes: big number, title, note pinned at the bottom */
.services { padding-bottom: clamp(6rem, 13vw, 13rem); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 1rem; }
.svc {
  border: 1px solid #cdd0ef; padding: 1.5rem 1.25rem 1.4rem;
  display: flex; flex-direction: column; min-height: 200px; background: transparent;
  margin-left: -1px;
}
.svc .num { font-family: "Bitter", serif; color: var(--ink); font-size: 28px; line-height: 28px; font-weight: 400; display: block; margin-bottom: .9rem; }
.svc h3 { font-size: 18px; line-height: 21.6px; margin: 0; font-weight: 400; }
.svc p { color: var(--ink); margin: auto 0 0; font-family: "Roboto", sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 1px; line-height: 20px; padding-top: 1.5rem; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* WHY */
.milestone { margin: 2.5rem 0 0; max-width: 520px; }
.milestone img { border-radius: 10px; }
.milestone figcaption { color: var(--muted); font-style: italic; margin-top: .75rem; }

/* FOOTER */
.site-footer { padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; background: #f7f7f8; }
.foot-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr .6fr; gap: 2rem; align-items: start; }
.foot-brand img { height: 44px; width: auto; margin-bottom: 1.75rem; }
.foot-col h4 { font-size: .95rem; letter-spacing: .04em; }
.foot-col p { color: #2b2b2b; font-size: .72rem; line-height: 1.7; margin: 0 0 1.1rem; }
.foot-col a { color: #2b2b2b; }
.foot-nav { display: flex; flex-direction: column; gap: .55rem; }
.foot-nav a { color: #2b2b2b; font-size: .72rem; }
.foot-iso { justify-self: end; }
.foot-iso img { height: 66px; width: auto; }
.copy { max-width: var(--maxw); margin: 3rem auto 0; color: #000; font-size: 14px; font-weight: 400; }
.copy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-iso { justify-self: start; } }

/* REVEAL animation - only hides when JS is running, so content is never lost */
.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity 1.05s cubic-bezier(.16,1,.3,1), transform 1.05s cubic-bezier(.16,1,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
/* gentle stagger so grouped items ease in one after another, not all at once */
.js .svc.reveal:nth-child(2) { transition-delay: .08s; }
.js .svc.reveal:nth-child(3) { transition-delay: .16s; }
.js .svc.reveal:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* LEGAL / PROSE PAGE */
.legal { max-width: 780px; margin: 0 auto; padding: clamp(2.5rem,5vw,4rem) var(--pad); }
.legal h1 { font-size: clamp(1.9rem,3.6vw,2.6rem); }
.legal .updated { color: var(--muted); font-size: .9rem; margin: 0 0 2rem; }
.legal h2 { font-size: 1.25rem; color: var(--ink); margin: 2rem 0 .6rem; }
.legal p, .legal li { font-size: 1.02rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin: .3rem 0; }
.legal a { color: var(--ink); }

/* FORM PAGES (Careers, Contact) */
/* dark serif title, as on live */
.form-title { font-family: "Bitter", serif; font-weight: 400; color: #2b2b2b;
  font-size: clamp(1.6rem, 2.6vw, 2rem); line-height: 1.25; margin: 0 0 1.25rem; }

/* Careers: intro full width on top, form block below */
.form-stacked { display: block; }
.form-stacked .form-intro { max-width: 760px; margin: 0 0 3rem; }
.form-stacked .form-intro .lead { font-size: .95rem; color: #2b2b2b; margin-top: 1rem; }
.form-stacked .b3-form { max-width: 640px; }

/* Contact: form on the left (white), full-bleed grey graphic panel on the right —
   matches live, where the right half is a solid grey panel with the flower centred. */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 620px; }
.contact-left { box-sizing: border-box; padding: clamp(3rem,7vw,6rem) clamp(2rem,4vw,3rem) clamp(3rem,7vw,6rem) var(--pad); }
.contact-talk { color: #2b2b2b; font-size: 1rem; margin: 0 0 2rem; }
/* Force the two-line wrap the live title has: "The start of something / great!" */
.contact-left .form-title { max-width: 360px; }
.contact-media { background: rgb(198, 206, 210); display: flex; align-items: center; justify-content: center; padding: 2rem clamp(1.5rem,4vw,3rem); }
.contact-media img { width: 100%; max-width: 493px; height: auto; display: block; }
/* The source clip is a white-on-black ASCII flower. Invert it to black-on-white,
   then multiply it onto the grey panel so it animates as a dark flower on grey —
   the live look, but auto-looping instead of behind a play button. */
.contact-media video { width: 100%; max-width: 493px; aspect-ratio: 1 / 1; height: auto;
  object-fit: cover; object-position: center bottom; display: block;
  filter: invert(1); mix-blend-mode: multiply; }
@media (max-width: 900px) { .contact-page { grid-template-columns: 1fr; min-height: 0; } .contact-media { display: none; } .contact-left { padding: clamp(2.5rem,8vw,4rem) var(--pad); } }

.b3-form { display: grid; gap: 1.1rem; }
.b3-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.b3-form label { display: block; font-size: .72rem; letter-spacing: .04em; color: #545454; margin-bottom: .4rem; text-transform: uppercase; }
.b3-form input, .b3-form select, .b3-form textarea {
  width: 100%; padding: .7rem .75rem; border: 1px solid #b9b9c4; border-radius: 2px;
  font: inherit; font-size: .9rem; color: var(--text); background: #fff;
}
.b3-form input:focus, .b3-form select:focus, .b3-form textarea:focus { outline: none; border-color: var(--ink); }
.b3-form textarea { min-height: 120px; resize: vertical; }
.b3-form .req::after { content: " *"; color: #545454; }
/* full-width dark submit bar, as on live */
.form-submit {
  width: 100%; margin-top: .6rem; padding: .95rem 1rem; border: 0; cursor: pointer;
  background: #2b2b2b; color: #fff; font-family: "Roboto", sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; transition: .2s;
}
.form-submit:hover { background: var(--ink); }
.form-note { color: var(--muted); font-size: .82rem; margin-top: .25rem; }
.form-status { font-size: .9rem; color: var(--ink); }
/* honeypot: off-screen, never shown to real users */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
@media (max-width: 900px){ .form-page { grid-template-columns: 1fr; } }

/* POST (case study) PAGE - live: white article card on a dark band */
.post-stage { background: #0e0e10; padding: clamp(2rem, 5vw, 4rem) var(--pad); }
.post-stage article { max-width: 940px; margin: 0 auto; background: #fff; padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); }
.post-hero { max-width: 720px; margin: 0 auto; padding: 0; }
.post-hero h1 { font-family: "Bitter", serif; font-weight: 400; color: #111; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.2; margin: 0 0 .8rem; }
.post-sub { color: #2b2b2b; font-size: 1rem; line-height: 1.55; margin: 0 0 2rem; }
.post-cover { max-width: 720px; margin: 0 auto 2.5rem; padding: 0; }
.post-cover img { width: 100%; height: auto; display: block; }
.post-body { max-width: 720px; margin: 0 auto; padding: 0; }
.post-body section { margin-bottom: 1.9rem; }
.post-body h2 { font-family: "Bitter", serif; font-weight: 400; font-size: 1.05rem; color: #111; margin: 0 0 .35rem; }
.post-body p { margin: 0; font-size: .95rem; line-height: 1.7; color: #2b2b2b; }
.post-body .impact { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.post-body .impact li { border-top: 2px solid var(--ink); padding-top: .6rem; font-size: .95rem; }
/* PDF download card */
.pdf-card { display: flex; align-items: center; gap: .9rem; max-width: 720px; margin: 2.5rem auto 0;
  border: 1px solid #d9d9e0; border-radius: 4px; padding: .8rem 1rem; transition: .2s; color: #111; }
.pdf-card:hover { border-color: var(--ink); }
.pdf-ico { font: 700 11px/1 "Roboto",sans-serif; letter-spacing: .05em; color: #fff; background: var(--ink); padding: .5rem .5rem; border-radius: 3px; }
.pdf-meta { display: flex; flex-direction: column; }
.pdf-meta strong { font-size: .85rem; font-weight: 500; }
.pdf-meta small { color: var(--muted); font-size: .72rem; }
.post-back { display: inline-block; margin-top: 2.5rem; color: var(--ink); font-family: "Bitter", serif; }
@media (max-width: 700px){ .post-body .impact { grid-template-columns: 1fr; } }

/* WORK LISTING PAGE - live: two columns, image + grey band (tag pill over white title) */
.work-grid.grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.work-grid.grid-5 .work-card { flex: none; }
@media (max-width: 900px) { .work-grid.grid-5 { grid-template-columns: 1fr; } }

/* ABOUT */
.about-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; }
.about-hero .lead { margin-top: 1.5rem; }
.partner-with { display: flex; align-items: center; gap: 1.25rem; margin-top: 2.5rem; }
.partner-with span { color: var(--muted); font-size: .85rem; letter-spacing: .04em; }
.partner-with img { height: 40px; width: auto; filter: grayscale(1); opacity: .8; }

.timeline h2, .leadership h2, .milestones h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 2rem; }
.tl { display: grid; gap: 1.75rem; }
.tl-item { display: grid; grid-template-columns: 200px 1fr; gap: 1.75rem; align-items: center; border-top: 1px solid var(--line); padding-top: 1.75rem; }
.tl-item img { width: 200px; height: 150px; object-fit: cover; border-radius: 8px; }
.tl-item .year { font-family: "Bitter", serif; color: var(--ink); font-size: 1.4rem; font-weight: 600; display: block; margin-bottom: .4rem; }
.tl-item p { margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.team-card { margin: 0; }
.team-card img { width: 100%; max-width: 320px; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.team-card h3 { margin: 1rem 0 .1rem; font-size: 1.3rem; }
.team-card .role { color: var(--ink); font-weight: 500; margin: 0 0 .6rem; }
.team-card figcaption p { color: var(--text); }

.ms-list { list-style: none; padding: 0; margin: 0; max-width: 760px; }
.ms-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--text); }
.ms-list .year { font-family: "Bitter", serif; color: var(--ink); font-weight: 600; margin-right: 1rem; display: inline-block; min-width: 90px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .tl-item { grid-template-columns: 1fr; }
  .tl-item img { width: 100%; height: 200px; }
  .team-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; background: #fff; padding: 1rem var(--pad); border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}
