@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Variable.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/IBMPlexSans-Italic-Variable.ttf") format("truetype");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #151515;
  --muted: #626262;
  --paper: #f8f5ef;
  --white: #ffffff;
  --line: #ded8cc;
  --accent: #b8332a;
  --accent-dark: #84231e;
  --gold: #c99b3b;
  --deep: #211d1b;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(33, 29, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(248, 245, 239, 0.94);
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: min(340px, 44vw);
}

.brand-mark {
  display: block;
  width: 34px;
  height: auto;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: block;
  width: min(270px, 34vw);
  height: auto;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: #2a2928;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.62) 0%, rgba(248, 245, 239, 0.52) 52%, rgba(248, 245, 239, 0.76) 100%),
    url("assets/storefront-hero.jpg") center / cover;
  opacity: 1;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(720px, calc(100vh - 76px));
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 132px) clamp(22px, 6vw, 76px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f0c96b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 12vw, 158px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 22px auto 30px;
  color: var(--deep);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 650;
}

.hero-logo {
  width: min(720px, 86vw);
  height: auto;
  margin: 0 auto;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.secondary.light {
  color: var(--ink);
  border-color: var(--line);
}

.dark-button {
  background: var(--deep);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.trust-row div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 4px;
  font-size: 30px;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 76px);
}

.section-label {
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  margin-top: 18px;
}

.intro-copy {
  color: #494746;
  font-size: 19px;
}

.local-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.local-proof span {
  padding: 9px 12px;
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--white);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.content-panel {
  max-width: 720px;
}

.service-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.service-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-list span {
  color: var(--gold);
  font-weight: 900;
}

.service-copy p,
.card p,
.visit-copy p,
.visit-card p {
  color: var(--muted);
}

.service-copy p {
  max-width: 58ch;
  margin-bottom: 0;
}

.repair-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  background: #efe8da;
}

.repair-copy {
  display: grid;
  gap: 24px;
}

.repair-band p {
  margin-bottom: 0;
  color: #46413c;
  font-size: 18px;
}

.repair-photo {
  min-height: clamp(360px, 46vw, 620px);
  overflow: hidden;
}

.repair-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inventory-preview {
  background: var(--deep);
  color: var(--white);
}

.inventory-preview .section-label {
  color: #f0c96b;
}

.inventory-preview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.inventory-preview-grid p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.category-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 850;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--white);
}

.comparison > div:first-child p:not(.eyebrow) {
  max-width: 58ch;
  color: #494746;
  font-size: 18px;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.compare-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-table span {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.compare-table span:nth-child(2) {
  border-left: 1px solid var(--line);
  background: var(--white);
}

.compare-table .compare-head span {
  color: var(--white);
  background: var(--deep);
  font-weight: 900;
}

.compare-table > div:last-child span {
  border-bottom: 0;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  background: var(--deep);
  color: var(--white);
}

.reviews > div {
  grid-column: 1 / -1;
  max-width: 860px;
  margin-bottom: 14px;
}

.reviews .eyebrow {
  color: #f0c96b;
}

blockquote {
  min-height: 220px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.stars {
  margin-bottom: 18px;
  color: #f0c96b;
  font-size: 18px;
  letter-spacing: 0.1em;
}

blockquote p {
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  font-size: 24px;
  line-height: 1.15;
}

blockquote cite {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 700;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 480px);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.96), rgba(248, 245, 239, 0.86)),
    url("assets/store-front.jpg") right center / contain no-repeat;
}

.visit-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

.visit-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: clamp(54px, 7vw, 86px) clamp(20px, 6vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  background: var(--deep);
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(150px, 0.7fr) minmax(260px, 1fr);
  gap: clamp(40px, 7vw, 104px);
  max-width: 1240px;
  margin: 0 auto;
}

.footer-column h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.05;
}

.footer-about h2 {
  color: #f2ded7;
  font-size: clamp(31px, 3vw, 42px);
}

.footer p,
.footer ul,
.footer dl,
.footer dd {
  margin: 0;
}

.footer-about p {
  max-width: 34ch;
}

.footer-links {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.footer-contact dl {
  display: grid;
  gap: 18px;
}

.footer-contact dt {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.86);
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  transform: translateX(2px);
}

.footer a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.footer-copyright {
  max-width: 1240px;
  margin: clamp(46px, 6vw, 72px) auto 0 !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  text-align: center;
}

.mobile-call {
  display: none;
}

.inventory-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: var(--white);
}

.inventory-hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(58px, 10vw, 132px);
}

.inventory-hero > p {
  max-width: 62ch;
  margin-bottom: 10px;
  color: #494746;
  font-size: clamp(18px, 2.2vw, 23px);
}

.inventory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--white);
  background: var(--accent);
}

.inventory-toolbar div {
  display: grid;
  gap: 4px;
}

.inventory-toolbar strong {
  font-size: 22px;
}

.inventory-toolbar span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.inventory-toolbar .button.primary {
  color: var(--accent);
  background: var(--white);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.inventory-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(33, 29, 27, 0.09);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.inventory-link:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 51, 42, 0.35);
  box-shadow: 0 24px 70px rgba(33, 29, 27, 0.14);
}

.inventory-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.inventory-card div {
  padding: 22px;
}

.inventory-card h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.inventory-card p {
  color: var(--muted);
}

.inventory-card a,
.card-link {
  color: var(--accent);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inventory-category {
  margin-bottom: 4px;
  color: var(--accent) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stock-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 12px;
  font-weight: 850;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: var(--white);
}

.category-hero h1 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(58px, 10vw, 132px);
}

.category-hero > p {
  max-width: 62ch;
  margin-bottom: 10px;
  color: #494746;
  font-size: clamp(18px, 2.1vw, 23px);
}

.category-note {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--white);
  background: var(--accent);
}

.category-note strong,
.category-note span {
  display: block;
}

.category-note strong {
  margin-bottom: 4px;
  font-size: 22px;
}

.category-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.category-note .button.primary {
  color: var(--accent);
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(33, 29, 27, 0.08);
}

.product-image-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  color: rgba(33, 29, 27, 0.45);
  background:
    linear-gradient(135deg, rgba(184, 51, 42, 0.08), rgba(201, 155, 59, 0.12)),
    var(--paper);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-brand {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h2 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.8vw, 32px);
}

.product-card p {
  color: var(--muted);
}

.product-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.product-actions .button {
  width: 100%;
}

.price-note {
  margin: 0;
  color: #7a746c;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 86px;
    padding-bottom: 58px;
  }

  .trust-row,
  .intro-grid,
  .split,
  .repair-band,
  .cards,
  .inventory-preview-grid,
  .comparison,
  .reviews,
  .visit,
  .inventory-hero,
  .inventory-grid,
  .category-hero,
  .category-note,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .inventory-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .compare-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-table .compare-head {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .compare-table > div:not(.compare-head) {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .compare-table > div:not(.compare-head) span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .compare-table > div:not(.compare-head) span::before {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .compare-table > div:not(.compare-head) span:first-child::before {
    content: "Buying Online";
  }

  .compare-table > div:not(.compare-head) span:first-child {
    border-bottom: 1px solid var(--line);
  }

  .compare-table > div:not(.compare-head) span:nth-child(2) {
    border-bottom: 0;
    border-left: 0;
    color: var(--deep);
    font-weight: 800;
  }

  .compare-table > div:not(.compare-head) span:nth-child(2)::before {
    content: "One Music Square";
    color: var(--red);
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .repair-band .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-column h2 {
    margin-bottom: 16px;
  }

  .card,
  .visit-card,
  blockquote {
    padding: 22px;
  }

  .mobile-call {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: var(--white);
    border-radius: var(--radius);
    background: var(--accent);
    box-shadow: 0 18px 45px rgba(33, 29, 27, 0.24);
    font-weight: 900;
  }

  body {
    padding-bottom: 72px;
  }
}
