:root {
  --paper: #f7f7f0;
  --ink: #272c25;
  --olive: #46553d;
  --muted: #70736a;
  --line: #dcded3;
  --pale: #eef0e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

.mmd-site {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

button, a, summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.mmd-site h1, .mmd-site h2, .mmd-site h3, .mmd-site p {
  margin: 0;
}

.mmd-site h1, .mmd-site h2, .mmd-site h3 {
  font-weight: 400;
}

::selection {
  color: white;
  background: var(--olive);
}

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 6px;
}

[hidden] {
  display: none !important;
}

.page-container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  z-index: 10;
  top: -60px;
  left: 20px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.brand-symbol {
  width: 40px;
  height: 40px;
}

.brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 3.35px;
  margin-top: 7px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--olive);
  transition: width 180ms;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
  min-height: 51px;
  padding: 13px 23px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: background 180ms, transform 180ms;
}

.button span {
  font-size: 21px;
  line-height: 1;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--olive);
  transform: translateY(-2px);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: #e2e7d5;
  transform: translateY(-2px);
}

.header-cta {
  min-height: 44px;
  padding: 10px 20px;
  gap: 35px;
}

.menu-toggle, .mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding-block: 64px 72px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.5;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 4px #e8ebdf;
  margin-right: 4px;
}

.mmd-site h1 {
  font-size: clamp(62px, 6.25vw, 88px);
  line-height: 1.04;
  letter-spacing: -5px;
  margin-top: 28px;
}

em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--olive);
}

h1 em {
  letter-spacing: -4px;
}

.hero-description {
  margin-top: 27px;
  max-width: 400px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  font-weight: 500;
}

.text-link span {
  font-size: 20px;
  transition: transform 180ms;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.hero-note p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
}

.hero-note strong {
  font-weight: 400;
  color: var(--ink);
}

.small-cross {
  color: var(--olive);
  font-size: 35px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e8e7db;
  aspect-ratio: 1 / 1.1;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-topline {
  position: absolute;
  inset: 25px 28px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.8px;
}

.visual-topline > span:last-child {
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
}

.insight-card {
  position: absolute;
  right: 26px;
  left: 26px;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 21px;
  border: 1px solid #ffffff9e;
  background: #fafbf3eb;
  box-shadow: 0 8px 25px #28312408;
  backdrop-filter: blur(12px);
}

.insight-icon {
  width: 43px;
  height: 43px;
  padding: 10px;
  color: var(--olive);
  background: #e9eddc;
}

.micro-label {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.insight-card p {
  font-size: 15px;
  line-height: 1.4;
  margin-top: 6px;
}

.insight-arrow {
  margin-left: auto;
  align-self: flex-end;
  font-size: 24px;
}

.visual-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 1.7px;
}

.expertise-strip {
  border-block: 1px solid var(--line);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
}

.strip-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.3px;
  line-height: 1.8;
  color: var(--muted);
}

.strip-inner > span:not(.strip-label) {
  font-size: 17px;
  letter-spacing: -.3px;
}

.strip-inner i {
  font-size: 23px;
  color: #8a967e;
  font-style: normal;
}

.section-space {
  padding-block: 100px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 64px;
}

.section-label {
  margin-bottom: 27px;
  color: var(--olive);
}

.label-line {
  display: inline-block;
  width: 21px;
  height: 1px;
  background: var(--olive);
}

.section-index {
  font-size: 10px;
  color: var(--muted);
  margin-top: 105px;
}

.mmd-site h2 {
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.18;
  letter-spacing: -1.8px;
}

h2 em {
  letter-spacing: -1.8px;
}

.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 37px;
  margin-top: 28px;
}

.about-bottom p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

.underlined {
  padding-bottom: 7px;
  border-bottom: 1px solid #b3b9a6;
}

.about-content > .text-link {
  margin-top: 26px;
}

.expertise-section {
  background: var(--pale);
  border-block: 1px solid #e5e7dd;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 43px;
}

.section-heading > p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.service-card {
  min-width: 0;
  padding: 30px 28px 0;
  background: var(--paper);
  border: 1px solid #e1e4d8;
  transition: border-color 180ms;
}

.service-card:hover {
  border-color: #adb99d;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  color: var(--olive);
}

.service-top svg {
  width: 42px;
  height: 42px;
}

.service-top > span {
  font-size: 10px;
  color: #898f80;
  align-self: flex-start;
}

.mmd-site h3 {
  font-size: 25px;
  letter-spacing: -.8px;
  line-height: 1.25;
}

.service-card > p {
  min-height: 106px;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 17px;
}

.service-tags {
  min-height: 52px;
  margin-top: 16px;
  font-size: 9px;
  color: var(--olive);
}

.service-details {
  border-top: 1px solid var(--line);
}

.service-details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 62px;
  font-size: 11px;
  font-weight: 500;
}

.service-details summary::-webkit-details-marker {
  display: none;
}

.service-details summary > span {
  font-size: 22px;
  transition: transform 200ms;
}

.service-details[open] summary > span {
  transform: rotate(90deg);
}

.service-detail-content {
  border-top: 1px solid var(--line);
  padding: 18px 0 23px;
  font-size: 12px;
  color: var(--muted);
}

.service-detail-content a {
  display: flex;
  justify-content: space-between;
  color: var(--olive);
  font-size: 11px;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

.approach-intro > p {
  margin-top: 23px;
  font-size: 13px;
  color: var(--muted);
}

.approach-intro > a {
  margin-top: 27px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  display: flex;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  padding-top: 4px;
  color: #7e8971;
  font-size: 10px;
}

.process-list h3 {
  font-size: 18px;
  letter-spacing: -.4px;
}

.process-list p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.8;
}

.process-mark {
  font-size: 18px;
  margin-left: auto;
}

.review-section {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  background: #34432f;
  color: var(--paper);
  min-height: 400px;
  overflow: hidden;
}

.review-copy {
  padding: 60px 60px 60px 20px;
  position: relative;
}

.review-copy .eyebrow {
  font-size: 9px;
  color: #ced4bd;
}

.review-copy h2 {
  margin-top: 23px;
  font-size: 43px;
}

.review-copy em {
  color: #d3daba;
}

.review-copy p {
  max-width: 370px;
  font-size: 12px;
  line-height: 1.9;
  color: #d2d8cb;
  margin-top: 19px;
}

.review-copy .button {
  margin-top: 26px;
}

.review-corner {
  position: absolute;
  right: 25px;
  top: 17px;
  font-size: 33px;
  color: #bac5a2;
}

.review-art {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid #bcc7a23d;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 215px;
  height: 215px;
}

.orbit-three {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 30% 30%, #87936738, #34432f00 80%);
}

.orbit-one::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 33px;
  width: 10px;
  height: 10px;
  background: #c5d19f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #c5d19f0a;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 77px;
  line-height: 1;
  color: #c5d19f;
  font-weight: 300;
}

.orbit-label {
  position: absolute;
  bottom: 37px;
  width: 100%;
  text-align: center;
  font-size: 8px;
  letter-spacing: 2.5px;
  color: #b7c2a9;
}

.contact-section {
  padding-top: 106px;
}

.contact-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  padding-bottom: 66px;
}

.contact-copy h2 {
  font-size: 44px;
}

.contact-copy > p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 23px;
}

.contact-email {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  font-size: 18px;
  letter-spacing: -.5px;
  margin-top: 27px;
  padding-bottom: 8px;
  border-bottom: 1px solid #c4c9ba;
}

.contact-email span {
  font-size: 23px;
}

.contact-form {
  padding-top: 3px;
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 23px;
}

.contact-form label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 7px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input, .contact-form select, .contact-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fafaf6;
  color: var(--ink);
  padding: 11px 12px;
  font-size: 12px;
  margin-bottom: 17px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 82px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #8a8d82;
}

.contact-form .button {
  width: 100%;
  margin-top: 3px;
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.form-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 11px;
  line-height: 1.7;
}

.form-status {
  padding: 12px;
  margin-top: 14px;
  font-size: 12px;
  background: #e6ecdc;
  color: #33462c;
}

.draft-link {
  margin-top: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 45px;
  border-top: 1px solid var(--line);
  padding-block: 33px 44px;
}

.contact-details .micro-label {
  color: var(--muted);
  margin-bottom: 13px;
}

.contact-details address, .contact-details a, .contact-details p {
  font-size: 12px;
  line-height: 1.85;
  font-style: normal;
}

.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-block: 26px;
}

.footer-brand {
  font-size: 21px;
  gap: 7px;
}

.footer-brand .brand-symbol {
  width: 32px;
  height: 32px;
}

.footer-brand .brand-sub {
  font-size: 7px;
  letter-spacing: 3px;
  margin-top: 5px;
}

.footer-bottom > p, .back-top {
  font-size: 10px;
  color: var(--muted);
}

.back-top span {
  display: inline-block;
  margin-left: 16px;
  font-size: 17px;
  color: var(--ink);
}

@media (min-width: 1500px) {
  .hero {
    gap: 75px;
  }

}

@media (max-width: 1100px) {
  .page-container {
    width: calc(100% - 72px);
  }

  .hero {
    gap: 35px;
  }

  .mmd-site h1 {
    font-size: 68px;
    letter-spacing: -4px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .button {
    padding-inline: 17px;
    gap: 20px;
  }

  .hero-actions .text-link {
    font-size: 11px;
    gap: 10px;
  }

  .hero-note {
    margin-top: 30px;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.25;
  }

  .strip-inner > span:not(.strip-label) {
    font-size: 14px;
  }

  .about-section {
    grid-template-columns: 1fr 2.7fr;
    gap: 38px;
  }

  .service-card {
    padding: 25px 21px 0;
  }

  .service-card > p {
    min-height: 130px;
  }

  .service-tags {
    min-height: 60px;
  }

  .approach-section {
    gap: 45px;
  }

  .review-copy {
    padding-right: 40px;
  }

  .review-copy h2 {
    font-size: 38px;
  }

  .contact-top {
    gap: 45px;
  }

  .contact-copy h2 {
    font-size: 37px;
  }

}

@media (max-width: 767px) {
  .page-container {
    width: calc(100% - 40px);
  }

  .header-inner {
    height: 80px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-symbol {
    width: 35px;
    height: 35px;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: 3.2px;
    margin-top: 5px;
  }

  .desktop-nav, .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    padding: 11px;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 6px 20px 20px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 13px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 40px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .mmd-site h1 {
    font-size: clamp(56px, 11vw, 78px);
    letter-spacing: -3.7px;
    margin-top: 24px;
  }

  h1 em {
    letter-spacing: -3px;
  }

  .hero-description {
    max-width: 420px;
    margin-top: 22px;
  }

  .hero-actions {
    gap: 22px;
    margin-top: 24px;
  }

  .hero-actions .button {
    padding-inline: 20px;
  }

  .hero-note {
    margin-top: 25px;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.02;
    max-height: 580px;
  }

  .hero-visual > img {
    object-position: center 43%;
  }

  .visual-topline {
    inset: 22px 22px auto;
  }

  .insight-card {
    inset: auto 20px 57px;
    padding: 16px;
  }

  .visual-caption {
    left: 22px;
    right: 22px;
    bottom: 23px;
    font-size: 6px;
    letter-spacing: 1.2px;
  }

  .strip-inner {
    flex-wrap: wrap;
    gap: 16px 20px;
    padding-block: 24px;
    justify-content: center;
  }

  .strip-label {
    width: 100%;
    text-align: center;
    font-size: 8px;
  }

  .strip-label br {
    display: none;
  }

  .strip-inner > span:not(.strip-label) {
    font-size: 11px;
  }

  .strip-inner i {
    font-size: 13px;
  }

  .strip-inner i:last-of-type {
    display: none;
  }

  .section-space {
    padding-block: 65px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-index {
    display: none;
  }

  .section-label {
    margin-bottom: 22px;
  }

  .mmd-site h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .about-bottom {
    gap: 18px;
    margin-top: 24px;
  }

  .about-bottom p {
    font-size: 12px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .service-card {
    padding: 27px 27px 0;
  }

  .service-top {
    margin-bottom: 25px;
  }

  .service-card > p {
    min-height: 0;
    max-width: 450px;
    font-size: 13px;
  }

  .service-tags {
    min-height: 0;
    margin-block: 19px 22px;
  }

  .section-heading {
    margin-bottom: 30px;
    gap: 20px;
  }

  .desktop-break {
    display: none;
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-list li {
    padding-block: 24px;
  }

  .process-list h3 {
    font-size: 17px;
  }

  .review-section {
    grid-template-columns: 1fr;
  }

  .review-art {
    min-height: 255px;
  }

  .orbit {
    width: 215px;
    height: 215px;
  }

  .orbit-two {
    width: 160px;
    height: 160px;
  }

  .orbit-three {
    width: 105px;
    height: 105px;
  }

  .orbit-center {
    font-size: 58px;
  }

  .orbit-label {
    display: none;
  }

  .review-copy {
    padding: 8px 28px 38px;
  }

  .review-copy h2 {
    font-size: 36px;
  }

  .review-copy p {
    font-size: 13px;
  }

  .review-corner {
    top: 16px;
    right: 18px;
    font-size: 27px;
  }

  .contact-section {
    padding-top: 68px;
  }

  .contact-top {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 43px;
  }

  .contact-copy h2 {
    font-size: 37px;
  }

  .contact-email {
    font-size: 17px;
    gap: 20px;
  }

  .contact-form input, .contact-form select, .contact-form textarea {
    font-size: 16px;
  }

  .contact-form label {
    font-size: 11px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    padding-block: 30px;
  }

  .contact-details > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 23px;
  }

  .footer-bottom > p {
    order: 3;
    width: 100%;
    font-size: 9px;
  }

}

@media (max-width: 380px) {
  .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    padding-inline: 15px;
  }

  .hero-actions .text-link {
    font-size: 10px;
  }

  .about-bottom, .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-bottom {
    gap: 16px;
  }

  .insight-card {
    gap: 10px;
    padding: 13px;
  }

  .insight-card p {
    font-size: 13px;
  }

  .micro-label {
    font-size: 7px;
  }

  .contact-email {
    font-size: 15px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
  }

}
