@charset "UTF-8";
/* =====================================
   CSS RESET (Modern + Practical)
   ===================================== */
/* Box sizing */
@import url("https://use.typekit.net/lom1yos.css");
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default margin */
* {
  margin: 0; }

/* Base html/body */
html,
body {
  height: 100%; }

/* Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%; }

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit; }

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word; }

/* Remove list styles (optional ΓÇô keep if you want full control) */
ul,
ol {
  list-style: none;
  padding: 0; }

/* Anchor defaults */
a {
  text-decoration: none;
  color: inherit; }

/* Button reset */
button {
  background: none;
  border: none;
  cursor: pointer; }

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Root stacking context (helps with z-index sanity) */
#root,
#__next {
  isolation: isolate; }

body {
  font-family: "articulat-cf", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5, h6 {
  font-family: "articulat-cf", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em; }

strong, b {
  font-weight: 700; }

body {
  font-family: "articulat-cf", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5, h6 {
  font-family: "articulat-cf", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em; }

strong, b {
  font-weight: 700; }

.jmdc-main-page-content {
  margin-top: 130px; }

.jmdc-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 50px;
  background: #fff; }

.jmdc-site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; }

/* Center logo */
.jmdc-site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); }

.jmdc-site-header__logo img {
  display: block;
  height: 53px;
  width: auto; }
  @media (max-width: 575px) {
    .jmdc-site-header__logo img {
      height: 32px; } }

/* Desktop nav */
.jmdc-site-header__nav .jmdc-header-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0; }

.jmdc-site-header__nav .jmdc-header-menu a {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 18px; }

/* Hamburger button (hidden on desktop) */
.jmdc-nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0; }

.jmdc-nav-toggle__label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 14px; }

/* Hamburger icon: 3 lines, no images */
.jmdc-nav-toggle__icon {
  width: 22px;
  height: 2px;
  position: relative;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: background 180ms ease; }

.jmdc-nav-toggle__icon::before,
.jmdc-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms ease, top 220ms ease, opacity 180ms ease; }

.jmdc-nav-toggle__icon::before {
  top: -7px; }

.jmdc-nav-toggle__icon::after {
  top: 7px; }

/* Open state -> X */
.jmdc-nav-toggle.is-open .jmdc-nav-toggle__icon {
  background: transparent;
  /* hides the middle bar */ }

.jmdc-nav-toggle.is-open .jmdc-nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg); }

.jmdc-nav-toggle.is-open .jmdc-nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .jmdc-site-header__nav {
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    display: block;
    /* keep it in flow for animation */ }

  .jmdc-site-header__nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; } }
/* Tablet/mobile layout */
@media (max-width: 1024px) {
  /* Hide desktop horizontal menu */
  .jmdc-site-header__nav {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    display: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 16px; }

  .jmdc-site-header__nav.is-open {
    display: block; }

  /* Make menu vertical on mobile */
  .jmdc-site-header__nav .jmdc-header-menu {
    display: flex;
    flex-direction: column;
    gap: 14px; }

  /* Show hamburger on tablet/mobile */
  .jmdc-nav-toggle {
    display: inline-flex;
    margin-left: auto; } }
/* Optional: prevent background scroll when menu is open */
body.jmdc-nav-open {
  overflow: hidden; }

.jmdc-footer {
  background: #000;
  color: #fff; }

.jmdc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 48px; }

.jmdc-footer__title {
  margin: 0 0 44px;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase; }

.jmdc-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  font-weight: 500; }

.jmdc-footer__contact-lines {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.45;
  opacity: 0.95; }

.jmdc-footer__link {
  color: inherit;
  text-decoration: none; }

.jmdc-footer__social {
  text-align: right; }

.jmdc-footer__social-nav {
  display: block; }

.jmdc-footer__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px; }

.jmdc-footer__social-item {
  margin: 0; }

.jmdc-footer__social-link,
.jmdc-footer__social-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9; }

.jmdc-footer__social-link:hover,
.jmdc-footer__social-nav a:hover,
.jmdc-footer__social-link:focus-visible,
.jmdc-footer__social-nav a:focus-visible {
  opacity: 1; }

.jmdc-footer__bottom {
  margin-top: 64px; }

.jmdc-footer__brand-lockup {
  display: flex;
  align-items: center; }

.jmdc-footer__brand-lockup-img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 100%; }

@media (max-width: 720px) {
  .jmdc-footer__brand-lockup-img {
    height: 60px; } }
/* Responsive */
@media (max-width: 720px) {
  .jmdc-footer__inner {
    padding: 56px 18px 36px; }

  .jmdc-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px; }

  .jmdc-footer__social {
    text-align: left; }

  .jmdc-footer__brand {
    flex-wrap: wrap;
    gap: 12px; } }
.post-type-archive-case_study .jmdc-work__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 100px;
  /* big whitespace like your SVG */ }

@media (max-width: 1440.98px) {
  .jmdc-case-study-grid .jmdc-work__inner {
    padding-top: 38px !important; } }

.jmdc-work__title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  color: #06060C;
  font-size: 100px;
  font-weight: 400;
  line-height: 106px;
  letter-spacing: 4px; }

.jmdc-work__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 75px;
  row-gap: 75px; }

/* Card */
.jmdc-work-card__hit {
  display: block;
  text-decoration: none;
  color: inherit; }

/* Thumbnail region */
.jmdc-work-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 650;
  overflow: hidden;
  background: #f3f3f3;
  /* only visible if no image */ }

/* If you want the image area to feel more invisible like the SVG, set bg to transparent:
.jmdc-work-card__thumb { background: transparent; }
*/
.jmdc-work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

/* Hover Gallery: stack images and crossfade */
.jmdc-hover-gallery__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none; }

.jmdc-hover-gallery__img.is-active {
  opacity: 1; }

.jmdc-work-card__meta {
  margin-top: 16px; }

.jmdc-work-card__title {
  margin: 20px 0 2px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase; }

.jmdc-work-card__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase; }

/* Gallery cards shouldn't show pointer cursor */
.jmdc-work-card--gallery .jmdc-work-card__hit {
  cursor: default; }

/* Responsive */
@media (max-width: 900px) {
  .jmdc-work__grid {
    grid-template-columns: 1fr;
    row-gap: 90px;
    column-gap: 0; }

  .jmdc-work__inner {
    padding: 135px 35px 110px; }

  .jmdc-work__grid {
    margin-top: 80px; }

  .jmdc-work__title {
    font-size: 64px;
    line-height: 72px; }

  .jmdc-herotext__description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; } }
/* Reveal on scroll */
.jmdc-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform; }

.jmdc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .jmdc-reveal {
    opacity: 1;
    transform: none;
    transition: none; } }
.jmdc-work__grid > .jmdc-work-card:nth-child(2n) {
  transition-delay: 90ms; }

.post-type-archive-case_study .jmdc-work-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.jmdc-case-study {
  background: #fff; }
  .jmdc-case-study__inner {
    width: 100%; }
  .jmdc-case-study__content {
    margin: 0 auto;
    padding: 120px 0 80px;
    /* EVERYTHING else = full bleed */
    /* ONLY direct children of content wrapper get gutters */ }
    .jmdc-case-study__content > * {
      margin-top: 0;
      margin-bottom: 24px; }
    .jmdc-case-study__content img,
    .jmdc-case-study__content video {
      display: block;
      height: auto; }
    .jmdc-case-study__content video {
      width: 100%; }
    .jmdc-case-study__content figure {
      margin: 0; }
      .jmdc-case-study__content figure.wp-block-image {
        width: 100%; }
    .jmdc-case-study__content .wp-block-image {
      margin: 0; }
      .jmdc-case-study__content .wp-block-image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: auto; }
    .jmdc-case-study__content .wp-block-video {
      margin: 0 0 24px; }
      .jmdc-case-study__content .wp-block-video video {
        display: block;
        width: 100%;
        height: auto; }
    .jmdc-case-study__content > .wp-block-video {
      margin: 0 30px 24px; }
      @media (max-width: 781px) {
        .jmdc-case-study__content > .wp-block-video {
          margin: 0 24px 24px; } }
    .jmdc-case-study__content .wp-block-spacer {
      margin-bottom: 0; }
    .jmdc-case-study__content .wp-block-group {
      margin-bottom: 24px; }
    .jmdc-case-study__content .wp-block-columns {
      display: flex;
      flex-wrap: nowrap;
      gap: 24px;
      margin: 0 0 24px;
      max-width: calc(100vw - 60px);
      margin-left: auto;
      margin-right: auto; }
      @media (max-width: 781px) {
        .jmdc-case-study__content .wp-block-columns {
          max-width: calc(100vw - 48px); } }
      .jmdc-case-study__content .wp-block-columns.is-not-stacked-on-mobile {
        flex-wrap: nowrap; }
      .jmdc-case-study__content .wp-block-columns .wp-block-image figure {
        width: 100%; }
      .jmdc-case-study__content .wp-block-columns .wp-block-image img {
        width: 100%;
        aspect-ratio: 4 / 5;
        height: auto;
        object-fit: cover; }
      .jmdc-case-study__content .wp-block-columns .wp-block-column {
        flex: 1 1 0;
        min-width: 0;
        margin: 0; }
        .jmdc-case-study__content .wp-block-columns .wp-block-column > *:last-child {
          margin-bottom: 0; }
    .jmdc-case-study__content h1,
    .jmdc-case-study__content h2,
    .jmdc-case-study__content h3,
    .jmdc-case-study__content h4,
    .jmdc-case-study__content h5,
    .jmdc-case-study__content h6,
    .jmdc-case-study__content p {
      margin-top: 0; }
    .jmdc-case-study__content h1 {
      text-align: center;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: normal; }
    .jmdc-case-study__content h2 {
      text-align: center;
      font-size: 100px;
      font-style: normal;
      font-weight: 400;
      line-height: 100px;
      /* 100% */
      letter-spacing: 4px; }
    .jmdc-case-study__content h1, .jmdc-case-study__content h2 {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 80px;
      padding-right: 80px;
      box-sizing: content-box; }
    .jmdc-case-study__content p {
      padding-left: 24px;
      padding-right: 24px;
      padding-bottom: 24px;
      max-width: calc(100vw - 60px);
      box-sizing: content-box;
      margin-left: auto;
      margin-right: auto;
      color: #2C2E35;
      text-align: center;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 34px;
      text-transform: uppercase;
      font-family: "articulat-cf", sans-serif;
      max-width: 900px; }
      .jmdc-case-study__content p strong {
        color: #06060C;
        font-size: 26px;
        font-weight: 700; }
        @media (max-width: 781px) {
          .jmdc-case-study__content p strong {
            font-size: 16px;
            line-height: 1.5; } }
    .jmdc-case-study__content p:last-child,
    .jmdc-case-study__content h1:last-child,
    .jmdc-case-study__content h2:last-child,
    .jmdc-case-study__content h3:last-child,
    .jmdc-case-study__content h4:last-child,
    .jmdc-case-study__content h5:last-child,
    .jmdc-case-study__content h6:last-child {
      margin-bottom: 0; }
    .jmdc-case-study__content .wp-block-group > .wp-block-columns:last-child,
    .jmdc-case-study__content .wp-block-group > .wp-block-image:last-child,
    .jmdc-case-study__content .wp-block-group > .wp-block-video:last-child {
      margin-bottom: 0; }
    .jmdc-case-study__content .wp-block-image {
      max-width: 100%;
      margin-left: 0;
      margin-right: 0; }
    .jmdc-case-study__content > .wp-block-image {
      max-width: calc(100% - 48px);
      margin-left: auto;
      margin-right: auto; }

@media (min-width: 782px) {
  .mobile-only {
    display: none !important; } }
@media (max-width: 781px) {
  .desktop-only {
    display: none !important; }

  .jmdc-case-study__inner {
    padding: 0; }
  .jmdc-case-study .jmdc-case-study__content .wp-block-columns .wp-block-image img {
    aspect-ratio: 1 / 1; }
  .jmdc-case-study__content .wp-block-columns {
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px auto; }
    .jmdc-case-study__content .wp-block-columns .wp-block-column {
      flex: 0 0 100%; }
    .jmdc-case-study__content .wp-block-columns.is-not-stacked-on-mobile {
      flex-wrap: nowrap; }
      .jmdc-case-study__content .wp-block-columns.is-not-stacked-on-mobile .wp-block-column {
        flex: 1 1 0; }
  .jmdc-case-study__content h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2; }
  .jmdc-case-study__content h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1.5px; }
  .jmdc-case-study__content p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5; } }
.video45 video {
  aspect-ratio: 4 / 5 !important;
  object-fit: cover; }
  @media (max-width: 781px) {
    .video45 video {
      aspect-ratio: 1 / 1 !important; } }

.jmdc-case-study__content .fullwidthcols {
  margin-left: 0;
  margin-right: 0;
  max-width: unset; }

.maxw1280 {
  max-width: calc(1280px - 60px);
  margin-left: auto !important;
  margin-right: auto !important; }
  @media (max-width: 781px) {
    .maxw1280 {
      max-width: calc(1280px - 48px); } }

@media (min-width: 782px) {
  .jmdc-case-study__content .wp-block-columns.unevenimagecontainer .wp-block-image img {
    aspect-ratio: auto;
    height: 100%; }

  .jmdc-case-study__content .wp-block-columns.unevenimagecontainer figure {
    height: 100%; } }
@media (max-width: 781px) {
  .jmdc-case-study__content .wp-block-columns.unevenimagecontainer {
    margin-left: auto;
    margin-right: auto;
    justify-content: center; }

  .jmdc-case-study__content .wp-block-columns.unevenimagecontainer .wp-block-image img {
    aspect-ratio: auto; } }

/*# sourceMappingURL=main.css.map */
