:root {
  --ink: #17130f;
  --ink-soft: #3c352f;
  --paper: #f7f4ee;
  --paper-deep: #eee8de;
  --white: #fffdf9;
  --gold: #aa8250;
  --gold-light: #d4b47f;
  --line: rgba(23, 19, 15, .16);
  --muted: #756b61;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1380px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--ink);
}

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

.utility {
  min-height: 34px;
  padding: 6px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.utility p {
  margin: 0;
}

.utility div {
  display: flex;
  gap: 12px;
}

.utility a {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 253, 249, .97);
  border-bottom: 1px solid var(--line);
}

.header-main {
  width: var(--shell);
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-logo {
  width: 220px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  justify-self: start;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-contact b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: .3s ease;
}

.header-contact:hover b {
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.main-nav {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  border-top: 1px solid var(--line);
}

.main-nav a {
  position: relative;
  padding: 16px 0 14px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

#app {
  min-height: 60vh;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section.paper-deep {
  background: var(--paper-deep);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--gold-light);
}

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 6.2vw, 92px);
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 8px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform .25s ease;
}

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

.text-link.light {
  color: var(--white);
}

.button {
  min-height: 50px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  transition: .25s ease;
}

.button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button.outline {
  background: transparent;
  color: var(--ink);
}

.button.outline:hover {
  background: var(--ink);
  color: var(--white);
}

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

.home-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 174px));
  overflow: hidden;
  background: #211911;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(15, 11, 8, .88) 0%, rgba(15, 11, 8, .56) 40%, rgba(15, 11, 8, .08) 72%),
    linear-gradient(0deg, rgba(15, 11, 8, .6) 0%, transparent 40%),
    url("/assets/images/banners/steinway.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: inherit;
  margin: 0 auto;
  padding: 100px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .kicker {
  color: var(--gold-light);
}

.hero-copy h1 {
  margin: 0 0 34px;
  font-size: clamp(58px, 8.4vw, 132px);
  letter-spacing: -.06em;
}

.hero-copy h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-copy > p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .button.outline {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.hero-actions .button.outline:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-counts {
  display: flex;
  gap: 36px;
}

.hero-counts b {
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.intro-editorial {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.intro-editorial h2 {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 98px);
  letter-spacing: -.05em;
}

.intro-copy {
  max-width: 520px;
}

.intro-copy .lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.28;
}

.intro-copy > p:not(.lead) {
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.collection-card {
  position: relative;
  min-height: 560px;
  grid-column: span 6;
  overflow: hidden;
  background: #28221d;
  color: var(--white);
}

.collection-card:nth-child(3),
.collection-card:nth-child(4) {
  min-height: 430px;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.collection-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 9, 7, .8), transparent 65%);
  content: "";
}

.collection-card:hover img {
  transform: scale(1.035);
}

.collection-card .collection-content {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.collection-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.collection-card h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
}

.collection-card b {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  font-family: var(--sans);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px 20px;
}

.product-card {
  min-width: 0;
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / .92;
  overflow: hidden;
  background: #ebe6dd;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.product-card:hover .product-visual img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  background: rgba(255, 253, 249, .9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: .25s ease;
}

.product-card:hover .product-arrow {
  background: var(--gold);
  transform: rotate(45deg);
}

.product-body {
  padding-top: 20px;
}

.product-meta {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-body h3 {
  min-height: 2em;
  margin: 0 0 14px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.05;
}

.product-footer {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.product-footer strong {
  color: var(--ink);
}

.brand-stage {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.brand-row {
  position: relative;
  min-height: 116px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand-row > span {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .16em;
}

.brand-row h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  transition: color .25s ease, transform .25s ease;
}

.brand-row b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 13px;
}

.brand-row:hover h3 {
  color: var(--gold-light);
  transform: translateX(12px);
}

.brand-row:hover b {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
}

.story-image {
  min-height: 720px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: clamp(60px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-deep);
}

.story-copy h2 {
  margin: 0 0 34px;
  font-size: clamp(46px, 5.5vw, 82px);
  letter-spacing: -.045em;
}

.story-copy > p {
  max-width: 520px;
  color: var(--muted);
}

.story-points {
  margin: 38px 0 46px;
  border-top: 1px solid var(--line);
}

.story-points div {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 250px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.service-item:first-child {
  border-left: 1px solid var(--line);
}

.service-item > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
}

.service-item h3 {
  margin: auto 0 14px;
  font-size: 28px;
  line-height: 1.05;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.page-masthead {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-masthead::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 7, .92), rgba(12, 9, 7, .38)),
    var(--masthead-image, url("/assets/images/banners/yamaha.jpg")) center/cover;
  content: "";
}

.page-masthead .shell {
  position: relative;
  z-index: 1;
  min-height: 490px;
  padding: 96px 0 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-masthead h1 {
  max-width: 1000px;
  margin: 0 0 24px;
  font-size: clamp(58px, 8vw, 118px);
  letter-spacing: -.055em;
}

.page-masthead .masthead-bottom {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.page-masthead .masthead-bottom p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.result-count {
  white-space: nowrap;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.catalog-layout {
  width: var(--shell);
  margin: 0 auto;
  padding: 86px 0 130px;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
}

.filter-panel {
  position: sticky;
  top: 24px;
  align-self: start;
}

.filter-panel h2 {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.filter-group {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.filter-group:last-child {
  border-bottom: 1px solid var(--line);
}

.filter-group h3 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filter-option {
  width: 100%;
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.filter-option span:last-child {
  font-size: 10px;
}

.filter-option:hover,
.filter-option.active {
  color: var(--ink);
}

.filter-option.active span:first-child::before {
  margin-right: 8px;
  color: var(--gold);
  content: "●";
  font-size: 7px;
}

.catalog-toolbar {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px;
}

.search-field {
  position: relative;
}

.search-field::before {
  position: absolute;
  top: 50%;
  left: 18px;
  content: "⌕";
  font-size: 25px;
  transform: translateY(-50%);
}

.search-field input,
.catalog-toolbar select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  outline: none;
}

.search-field input {
  padding: 0 18px 0 52px;
}

.catalog-toolbar select {
  min-width: 180px;
  padding: 0 38px 0 16px;
}

.search-field input:focus,
.catalog-toolbar select:focus {
  border-color: var(--gold);
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-empty {
  padding: 90px 30px;
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  text-align: center;
}

.catalog-empty h2 {
  font-size: 42px;
}

.filter-drawer-button {
  display: none;
}

.detail-page {
  padding: 64px 0 130px;
}

.breadcrumbs {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.detail-visual {
  position: sticky;
  top: 24px;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: #ebe6dd;
}

.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-summary {
  padding-top: 28px;
}

.detail-summary h1 {
  margin: 0 0 22px;
  font-size: clamp(55px, 6vw, 94px);
  letter-spacing: -.055em;
}

.detail-description {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
}

.detail-price {
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: 30px;
}

.detail-actions {
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-facts {
  border-top: 1px solid var(--line);
}

.detail-facts div {
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.detail-facts span {
  color: var(--muted);
}

.specification-section {
  margin-top: 110px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.specification-section h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.specification-content {
  color: var(--muted);
  white-space: pre-line;
}

.related-section {
  margin-top: 120px;
}

.related-section .section-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 580px;
  background: var(--ink);
  color: var(--white);
}

.journal-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-feature > div {
  padding: clamp(50px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-feature h2 {
  margin: 0 0 28px;
  font-size: clamp(40px, 5vw, 72px);
}

.journal-feature p {
  color: rgba(255, 255, 255, .7);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 24px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  filter: saturate(.75);
  transition: filter .3s ease, transform .3s ease;
}

.news-card:hover img {
  filter: saturate(1);
}

.news-card .news-date {
  margin: 18px 0 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 18px;
  font-size: 31px;
  line-height: 1.08;
}

.news-card p {
  color: var(--muted);
  font-size: 14px;
}

.article-page {
  padding: 70px 0 130px;
}

.article-header {
  max-width: 1040px;
  margin: 0 auto 64px;
  text-align: center;
}

.article-header h1 {
  margin-bottom: 30px;
  font-size: clamp(50px, 7.5vw, 105px);
  letter-spacing: -.055em;
}

.article-hero {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.article-body {
  max-width: 760px;
  margin: 70px auto 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.85;
}

.article-body p {
  margin-bottom: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 10vw, 160px);
}

.contact-details h2,
.contact-form h2 {
  margin-bottom: 35px;
  font-size: clamp(42px, 5vw, 68px);
}

.contact-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-list div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  display: block;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field span {
  margin-bottom: 8px;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.map-frame {
  width: 100%;
  height: 520px;
  margin-top: 90px;
  border: 0;
  filter: grayscale(.8) contrast(.95);
}

.content-page {
  padding: 110px 0 140px;
}

.content-layout {
  max-width: 900px;
}

.content-layout h1 {
  margin-bottom: 46px;
  font-size: clamp(56px, 8vw, 108px);
  letter-spacing: -.05em;
}

.content-layout h2 {
  margin: 56px 0 20px;
  font-size: 38px;
}

.content-layout p,
.content-layout li {
  color: var(--ink-soft);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.library-card {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(23, 19, 15, .88), rgba(23, 19, 15, .08)),
    var(--library-image) center/cover;
  color: var(--white);
}

.library-card span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.library-card h2 {
  margin: 12px 0 0;
  font-size: 38px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 400;
}

.not-found h1 {
  font-size: 50px;
}

.site-footer {
  padding: 110px max(32px, calc((100vw - 1380px) / 2)) 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
}

.footer-lead {
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "kicker link" "heading link";
  gap: 10px 50px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-lead .kicker {
  grid-area: kicker;
}

.footer-lead h2 {
  grid-area: heading;
  margin: 0;
  color: var(--white);
  font-size: clamp(50px, 7vw, 102px);
  letter-spacing: -.05em;
}

.footer-lead .text-link {
  grid-area: link;
  margin-bottom: 12px;
}

.footer-grid {
  padding: 74px 0 62px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 70px;
}

.footer-grid h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-grid a {
  width: fit-content;
  margin: 7px 0;
  display: block;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand p,
.footer-address p {
  max-width: 330px;
  font-size: 13px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-actions a {
  min-width: 118px;
  height: 44px;
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-actions b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 126px;
  z-index: 89;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --shell: calc(100vw - 48px);
  }

  .main-nav {
    gap: 25px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service-item {
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .utility {
    padding-inline: 18px;
  }

  .utility p {
    display: none;
  }

  .utility {
    justify-content: center;
  }

  .header-main {
    height: 78px;
  }

  .site-logo {
    width: 178px;
  }

  .menu-toggle {
    display: block;
  }

  .header-contact span {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 112px 0 0;
    padding: 34px 24px 90px;
    display: block;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 18px 0;
    display: block;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 400;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading,
  .intro-editorial,
  .story-layout,
  .contact-layout,
  .journal-feature {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .collection-card {
    min-height: 460px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-image {
    min-height: 560px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filter-drawer-button {
    display: inline-flex;
  }

  .filter-panel {
    position: static;
    display: none;
  }

  .filter-panel.open {
    display: block;
    padding: 24px;
    border: 1px solid var(--line);
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-visual {
    position: static;
  }

  .specification-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-feature img {
    max-height: 500px;
  }

  .footer-lead {
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "heading" "link";
  }

  .footer-lead .text-link {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .utility {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .site-logo {
    width: 145px;
  }

  .header-contact b {
    width: 36px;
    height: 36px;
  }

  .home-hero {
    min-height: calc(100svh - 112px);
  }

  .hero-media {
    background-image:
      linear-gradient(90deg, rgba(15, 11, 8, .86), rgba(15, 11, 8, .24)),
      linear-gradient(0deg, rgba(15, 11, 8, .76), transparent 55%),
      url("/assets/images/banners/steinway.jpg");
    background-position: 62% center;
  }

  .hero-content {
    padding: 72px 0 28px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 19vw, 82px);
  }

  .hero-copy > p:not(.kicker) {
    max-width: 92%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-foot {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .intro-editorial h2 {
    font-size: 48px;
  }

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

  .collection-card,
  .collection-card:nth-child(3),
  .collection-card:nth-child(4) {
    min-height: 400px;
    grid-column: auto;
  }

  .collection-card .collection-content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .product-grid,
  .catalog-grid,
  .news-grid,
  .library-grid {
    grid-template-columns: 1fr;
  }

  .product-body h3 {
    min-height: auto;
  }

  .brand-row {
    min-height: 92px;
    grid-template-columns: 38px 1fr auto;
    gap: 12px;
  }

  .brand-row h3 {
    font-size: 32px;
  }

  .story-image {
    min-height: 420px;
  }

  .story-copy {
    padding: 54px 24px;
  }

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

  .service-item,
  .service-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .page-masthead,
  .page-masthead .shell {
    min-height: 430px;
  }

  .page-masthead .shell {
    padding-block: 72px 36px;
  }

  .page-masthead h1 {
    font-size: 58px;
  }

  .page-masthead .masthead-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-layout {
    padding: 50px 0 80px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .detail-page {
    padding: 40px 0 80px;
  }

  .detail-summary h1 {
    font-size: 52px;
  }

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

  .journal-feature > div {
    padding: 44px 24px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-frame {
    height: 390px;
  }

  .site-footer {
    padding: 72px 18px 20px;
  }

  .footer-lead {
    padding-bottom: 70px;
  }

  .footer-lead h2 {
    font-size: 50px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .quick-actions {
    right: 10px;
    bottom: 10px;
  }

  .quick-actions a {
    min-width: 46px;
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .quick-actions a span {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
