@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-v15-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-v17-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-v17-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-v17-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mhg-red: #e30620;
  --mhg-black: #111111;
  --mhg-dark-gray: #6c6c6c;
  --mhg-light-gray: #f3f3f3;
  --mhg-border: #d8d8d8;
  --mhg-white: #ffffff;
  --mhg-content: 1440px;
  --mhg-radius: 18px;
  --mhg-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  --mhg-section-space: clamp(4.5rem, 8vw, 8.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mhg-black);
  background: var(--mhg-white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.mhg-skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--mhg-black);
  color: var(--mhg-white);
  transform: translateY(-200%);
}
.mhg-skip-link:focus { transform: translateY(0); }

.mhg-container {
  width: min(calc(100% - 3rem), var(--mhg-content));
  margin-inline: auto;
}

.mhg-topbar {
  color: var(--mhg-white);
  background: #666;
  font-size: .78rem;
}
.mhg-topbar__inner {
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.mhg-topbar p { margin: 0; }
.mhg-topbar__contact { display: flex; gap: 1.25rem; }
.mhg-topbar a { text-decoration: none; }
.mhg-topbar a:hover { text-decoration: underline; }

.mhg-brandbar { background: var(--mhg-white); }
.mhg-brandbar__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.mhg-brandbar__logo img { width: min(330px, 40vw); }
.mhg-brandbar__yamaha img { width: min(145px, 20vw); }
.mhg-menu-toggle { display: none; }

.mhg-mainnav {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid var(--mhg-border);
  background: var(--mhg-white);
}
.mhg-mainnav ul,
.mhg-quicklinks ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mhg-mainnav ul {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
}
.mhg-mainnav a {
  display: block;
  padding-block: 1rem;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: .95rem;
}
.mhg-mainnav a:hover,
.mhg-mainnav a:focus-visible { color: var(--mhg-red); }

.mhg-hero {
  position: relative;
  min-height: clamp(520px, 52vw, 730px);
  overflow: hidden;
}
.mhg-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.mhg-hero__inner {
  position: relative;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.mhg-hero__panel {
  width: min(590px, 54vw);
  padding: clamp(2rem, 4vw, 4rem);

  border-radius: 58px 58px 58px 58px;

  background: rgba(255,255,255,.5);

  backdrop-filter: blur(5px);
}
.mhg-hero h1 {
  margin: 0 0 1rem;
  color: var(--mhg-red);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.0rem, 4.4vw, 4.35rem);
  line-height: .98;
  letter-spacing: -.025em;
}
.mhg-hero p {
  max-width: 18ch;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}

.mhg-quicklinks {
  border-bottom: 1px solid var(--mhg-border);
  background: var(--mhg-white);
}
.mhg-quicklinks ul {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}
.mhg-quicklinks a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  transition: color .2s ease, background .2s ease;
}
.mhg-quicklinks a:hover,
.mhg-quicklinks a:focus-visible {
  color: var(--mhg-red);
  background: #fafafa;
}
.mhg-quicklinks img { width: 125px; height: auto; object-fit: contain; }

.mhg-section { padding-block: var(--mhg-section-space); }
.mhg-section--muted { background: var(--mhg-light-gray); }

.mhg-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem) clamp(2rem, 5vw, 6rem);
}
.mhg-service-card {
  min-height: 235px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(220px, 1.1fr);
  overflow: hidden;
  background: var(--mhg-white);
}
.mhg-service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem 1.25rem 1.15rem 0;
}
.mhg-service-card h2,
.mhg-about h2,
.mhg-reviews h2,
.mhg-eyebrow {
  color: var(--mhg-red);
  font-family: "Outfit", sans-serif;
}
.mhg-service-card h2 {
  margin: 0 0 .9rem;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem);
  line-height: 1.15;
}
.mhg-service-card p { margin: 0 0 1.2rem; }
.mhg-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.mhg-service-card:hover img { transform: scale(1.035); }

.mhg-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  min-width: 150px;
  margin-top: auto;
  padding: .55rem 1rem;
  border: 1px solid #777;
  color: var(--mhg-white);
  background: #777;
  text-decoration: none;
  font-size: .82rem;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.mhg-button:hover,
.mhg-button:focus-visible {
  border-color: var(--mhg-red);
  background: var(--mhg-red);
  transform: translateY(-2px);
}

.mhg-about__grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.7fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.mhg-about__content { max-width: 520px; }
.mhg-about h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  line-height: 1.12;
}
.mhg-about p { margin: 0 0 1.2rem; }
.mhg-about__image {
  width: 100%;
  border-radius: var(--mhg-radius);
  box-shadow: var(--mhg-shadow);
}

.mhg-featured__nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  color: var(--mhg-red);
  font-size: .78rem;
}
.mhg-featured__nav--bottom { margin: 1.5rem 0 0; }
.mhg-featured__grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}
.mhg-eyebrow {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 700;
}
.mhg-featured h2 {
  margin: 0;
  color: #707070;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}
.mhg-featured__price {
  margin: .2rem 0 1rem;
  color: var(--mhg-red);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.65rem, 2.3vw, 2.4rem);
  font-weight: 700;
}
.mhg-featured__content p { margin-block: .7rem; }
.mhg-specs { width: min(100%, 320px); margin: 1.6rem 0; }
.mhg-specs div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--mhg-border);
}
.mhg-specs div:last-child { border-bottom: 1px solid var(--mhg-border); }
.mhg-specs dt,
.mhg-specs dd { margin: 0; padding: .45rem .6rem; }
.mhg-specs dd { border-left: 1px solid var(--mhg-border); }
.mhg-featured__main-image {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
}
.mhg-featured__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.mhg-featured__thumbs button {
  padding: .3rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mhg-featured__thumbs img { aspect-ratio: 1.55; object-fit: contain; }

.mhg-reviews h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}
.mhg-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
}
.mhg-review-card {
  min-height: 315px;
  padding: 2rem;
  border-radius: var(--mhg-radius);
  background: var(--mhg-white);
  box-shadow: 0 10px 28px rgba(0,0,0,.09);
}
.mhg-review-card__stars {
  margin: 0 0 .2rem;
  color: #f6bd20;
  font-size: 1.5rem;
  letter-spacing: .06em;
}
.mhg-review-card h3 {
  margin: 0 0 1rem;
  color: var(--mhg-red);
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
}
.mhg-review-card p:last-child { margin-bottom: 0; }

.mhg-footer {
  min-height: 390px;
  padding: 2rem 0 4.5rem;
  color: var(--mhg-white);
  background: var(--mhg-black);
}
.mhg-footer a { text-decoration: none; }
.mhg-footer a:hover { color: var(--mhg-red); }
.mhg-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-bottom: 4rem;
  font-size: .78rem;
}
.mhg-footer__content { max-width: 360px; }
.mhg-footer h2 { margin: 0 0 .2rem; font-size: 1rem; }
.mhg-footer p,
.mhg-footer address { margin: 0 0 1rem; font-size: .86rem; font-style: normal; }

:focus-visible { outline: 3px solid var(--mhg-red); outline-offset: 3px; }

@media (max-width: 1199px) {
  .mhg-container { width: min(calc(100% - 2.5rem), var(--mhg-content)); }
  .mhg-service-card { grid-template-columns: minmax(0, 1fr) minmax(190px, .95fr); }
  .mhg-services__grid { gap: 2rem; }
}

@media (max-width: 1024px) {
  .mhg-topbar__contact a:last-child { display: none; }
  .mhg-brandbar__inner { min-height: 70px; grid-template-columns: 1fr auto auto; }
  .mhg-brandbar__logo img { width: min(285px, 52vw); }
  .mhg-brandbar__yamaha img { width: 120px; }
  .mhg-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
  }
  .mhg-menu-toggle__icon,
  .mhg-menu-toggle__icon::before,
  .mhg-menu-toggle__icon::after {
    width: 26px;
    height: 2px;
    display: block;
    background: var(--mhg-black);
    transition: transform .2s ease, opacity .2s ease;
  }
  .mhg-menu-toggle__icon { position: relative; }
  .mhg-menu-toggle__icon::before,
  .mhg-menu-toggle__icon::after { content: ""; position: absolute; left: 0; }
  .mhg-menu-toggle__icon::before { top: -8px; }
  .mhg-menu-toggle__icon::after { top: 8px; }
  .mhg-menu-toggle[aria-expanded="true"] .mhg-menu-toggle__icon { background: transparent; }
  .mhg-menu-toggle[aria-expanded="true"] .mhg-menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
  .mhg-menu-toggle[aria-expanded="true"] .mhg-menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

  .mhg-mainnav { display: none; }
  .mhg-mainnav.is-open { display: block; }
  .mhg-mainnav ul { min-height: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .mhg-mainnav li { border-bottom: 1px solid #eee; }
  .mhg-mainnav a { padding: .9rem 1rem; }

  .mhg-hero { min-height: 560px; }
  .mhg-hero__panel { width: min(560px, 72vw); }
  .mhg-quicklinks ul { overflow-x: auto; grid-template-columns: repeat(5, minmax(150px, 1fr)); }

  .mhg-services__grid { grid-template-columns: 1fr; }
  .mhg-service-card { min-height: 240px; grid-template-columns: minmax(0, 1fr) minmax(300px, 1.1fr); }

  .mhg-about__grid,
  .mhg-featured__grid { grid-template-columns: 1fr; }
  .mhg-about__content { max-width: 760px; }
  .mhg-about__image { order: -1; }
  .mhg-featured__visual { order: -1; }
  .mhg-featured__content { max-width: 680px; }
  .mhg-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .mhg-review-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --mhg-section-space: 4.5rem; }
  body { font-size: .97rem; }
  .mhg-container { width: min(calc(100% - 2rem), var(--mhg-content)); }
  .mhg-topbar__inner { justify-content: center; }
  .mhg-topbar p { display: none; }
  .mhg-topbar__contact { width: 100%; justify-content: space-between; }
  .mhg-topbar__contact a:last-child { display: inline; }
  .mhg-brandbar__yamaha { display: none; }
  .mhg-brandbar__inner { grid-template-columns: 1fr auto; }
  .mhg-brandbar__logo img { width: min(245px, 64vw); }
  .mhg-menu-toggle__label { display: none; }
  .mhg-mainnav ul { grid-template-columns: 1fr; }

  .mhg-hero { min-height: 510px; }
  .mhg-hero__image { object-position: 44% center; }
  .mhg-hero__inner { align-items: flex-end; width: 100%; }
  .mhg-hero__panel {
    width: calc(100% - 1.25rem);
    margin: 0 1.25rem 1.25rem 0;
    padding: 1.8rem 1.5rem;
    border-radius: 0 34px 34px 0;
  }
  .mhg-hero h1 { font-size: clamp(2.55rem, 13vw, 4.1rem); }
  .mhg-hero p { max-width: 20ch; font-size: 1.3rem; }

  .mhg-quicklinks ul { min-height: 76px; grid-template-columns: repeat(5, minmax(118px, 1fr)); }
  .mhg-quicklinks a { gap: .45rem; padding: .75rem .55rem; font-size: .85rem; }
  .mhg-quicklinks img { width: 40px; height: 34px; }

  .mhg-service-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
  }
  .mhg-service-card__content { order: 2; min-height: 220px; padding: 1.35rem; }
  .mhg-service-card img { aspect-ratio: 16 / 9; }

  .mhg-about__grid { gap: 2rem; }
  .mhg-about__image { border-radius: 12px; }
  .mhg-featured__nav { font-size: .7rem; }
  .mhg-featured__main-image { max-height: 390px; }
  .mhg-featured__thumbs { gap: .35rem; }
  .mhg-specs { width: 100%; }
  .mhg-reviews__grid { grid-template-columns: 1fr; }
  .mhg-review-card,
  .mhg-review-card:last-child { grid-column: auto; min-height: 0; }
  .mhg-footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); padding-bottom: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
