: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: "Segoe UI", Arial, Helvetica, sans-serif;
  --sans: "Segoe UI", 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: 300;
  line-height: 1.02;
}

.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;
  }
}

/* Brand-led homepage, release 2026-08-03 */
.header-main {
  height: 82px;
  grid-template-columns: auto 1fr auto;
}

.site-logo {
  width: 188px;
  grid-column: 1;
  justify-self: start;
}

.header-contact {
  grid-column: 3;
}

.main-nav {
  min-height: 46px;
}

.main-nav a {
  padding-block: 14px 12px;
}

.brand-hero {
  --spotlight-image: url("/assets/images/banners/steinway.jpg");
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #0e0d0c;
  color: #fff;
}

.brand-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .91) 0%, rgba(7, 7, 7, .7) 34%, rgba(7, 7, 7, .12) 76%),
    linear-gradient(0deg, rgba(7, 7, 7, .82) 0%, transparent 44%),
    var(--spotlight-image) center/cover;
  opacity: 1;
  transform: scale(1.01);
  transition: opacity .2s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.brand-hero.switching .brand-hero-image {
  opacity: .32;
  transform: scale(1.025);
}

.brand-hero-content {
  position: relative;
  z-index: 1;
  min-height: 690px;
  padding: 34px 0 30px;
  display: flex;
  flex-direction: column;
}

.brand-hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-hero-copy {
  max-width: 1050px;
  margin-top: auto;
}

.brand-eyebrow {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.brand-hero-copy h1 {
  max-width: 1020px;
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .88;
  text-transform: uppercase;
}

.brand-product-line {
  max-width: 920px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  border-top: 1px solid rgba(255, 255, 255, .34);
}

.brand-product-line span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.brand-product-line h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(21px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.brand-product-line p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.65;
}

.brand-product-line .spotlight-price {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.brand-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.glass {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(0, 0, 0, .2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button.glass:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.brand-hero-footer {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 46px;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.brand-hero-footer div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-hero-footer strong {
  font-size: 25px;
  font-weight: 300;
}

.brand-hero-footer span,
.brand-hero-footer a {
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-hero-footer a {
  justify-self: end;
  color: #fff;
}

.brand-selector-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand-selector {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.brand-selector-button {
  position: relative;
  height: 104px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  opacity: .42;
  transition: opacity .2s ease, background .2s ease;
}

.brand-selector-button:first-child {
  border-left: 1px solid var(--line);
}

.brand-selector-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.brand-selector-button:hover,
.brand-selector-button.active {
  background: var(--paper);
  opacity: 1;
}

.brand-selector-button.active::after {
  transform: scaleX(1);
}

.brand-selector-button > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

.brand-selector-button img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.home-intro-v2 {
  padding-block: 108px;
  background: #fff;
}

.intro-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  grid-template-areas: "kicker kicker" "heading body";
  gap: 12px 90px;
  align-items: end;
}

.intro-statement .kicker {
  grid-area: kicker;
}

.intro-statement h2 {
  grid-area: heading;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 90px);
  font-weight: 300;
  letter-spacing: -.055em;
}

.intro-statement > div {
  grid-area: body;
  padding-bottom: 8px;
}

.intro-statement > div p {
  color: var(--muted);
}

.compact-heading h2 {
  font-size: clamp(44px, 5.4vw, 76px);
}

.flagship-section {
  padding-top: 30px;
  background: #fff;
}

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

.flagship-grid .product-card:first-child {
  grid-column: span 2;
}

.flagship-grid .product-card:first-child .product-visual {
  aspect-ratio: 1.55 / 1;
}

.product-visual {
  background: #f2f0eb;
}

.product-visual img {
  padding: 16px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.product-body h3 {
  font-family: var(--sans);
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.product-footer strong {
  font-weight: 600;
}

.collection-card h3 {
  font-family: var(--sans);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -.04em;
}

.preowned-section {
  background: #fff;
}

.story-copy h2,
.footer-lead h2,
.page-masthead h1,
.detail-summary h1,
.article-header h1,
.content-layout h1 {
  font-weight: 300;
  letter-spacing: -.055em;
}

.story-points div,
.service-item h3,
.news-card h2,
.library-card h2 {
  font-family: var(--sans);
}

@media (max-width: 1060px) {
  .brand-selector {
    overflow-x: auto;
    grid-template-columns: repeat(7, 154px);
    scrollbar-width: thin;
  }

  .brand-selector-button {
    height: 92px;
  }

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

@media (max-width: 900px) {
  .header-main {
    grid-template-columns: 46px 1fr 46px;
  }

  .menu-toggle {
    grid-column: 1;
  }

  .site-logo {
    width: 168px;
    grid-column: 2;
    justify-self: center;
  }

  .header-contact {
    grid-column: 3;
  }

  .brand-hero,
  .brand-hero-content {
    min-height: 720px;
  }

  .brand-product-line {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand-product-line > div:last-child {
    max-width: 620px;
  }

  .intro-statement {
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "heading" "body";
    gap: 20px;
  }

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

@media (max-width: 620px) {
  .brand-hero,
  .brand-hero-content {
    min-height: 690px;
  }

  .brand-hero-image {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, .9), rgba(7, 7, 7, .28)),
      linear-gradient(0deg, rgba(7, 7, 7, .92), transparent 62%),
      var(--spotlight-image) 61% center/cover;
  }

  .brand-hero-content {
    padding-block: 26px 22px;
  }

  .brand-hero-copy h1 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: .93;
  }

  .brand-product-line {
    padding-top: 18px;
  }

  .brand-product-line h2 {
    font-size: 23px;
  }

  .brand-product-line > div:last-child p:first-child {
    display: none;
  }

  .brand-hero-actions {
    flex-direction: column;
  }

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

  .brand-hero-footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .brand-hero-footer div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .brand-hero-footer a {
    display: none;
  }

  .brand-selector {
    width: 100%;
    grid-template-columns: repeat(7, 132px);
  }

  .brand-selector-button {
    height: 82px;
    padding: 10px;
  }

  .home-intro-v2 {
    padding-block: 72px;
  }

  .intro-statement h2,
  .compact-heading h2 {
    font-size: 44px;
  }

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

  .flagship-grid .product-card:first-child {
    grid-column: auto;
  }

  .flagship-grid .product-card:first-child .product-visual {
    aspect-ratio: 1 / .92;
  }
}

/* Editorial collection experience, release 2026-08-03c */
.brand-selector-wrap {
  position: relative;
  background: #171410;
  border-color: rgba(255, 255, 255, .1);
}

.brand-selector-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 167, 100, .72), transparent);
  content: "";
}

.brand-selector-button {
  height: 116px;
  border-color: rgba(255, 255, 255, .1);
  background: #171410;
  opacity: .48;
  transition: opacity .3s ease, background .3s ease, transform .3s ease;
}

.brand-selector-button:first-child {
  border-left-color: rgba(255, 255, 255, .1);
}

.brand-selector-button:hover,
.brand-selector-button.active {
  background: #211d18;
  opacity: 1;
}

.brand-selector-button:hover {
  transform: translateY(-3px);
}

.brand-selector-button::after {
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
}

.brand-selector-button > span {
  color: rgba(229, 198, 139, .78);
}

.brand-selector-button img {
  max-height: 50px;
  filter: grayscale(1) brightness(0) invert(1);
  mix-blend-mode: normal;
}

.brand-selector-button.active img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(23%) saturate(727%) hue-rotate(358deg) brightness(91%) contrast(86%);
}

.brand-selector-button:focus-visible {
  z-index: 2;
  outline: 2px solid #d7b778;
  outline-offset: -4px;
}

.home-intro-v2 {
  position: relative;
  overflow: hidden;
  padding-block: 132px 148px;
  background:
    radial-gradient(circle at 82% 18%, rgba(189, 151, 82, .11), transparent 30%),
    #f5f1e9;
}

.home-intro-v2::before {
  position: absolute;
  right: -1.5vw;
  bottom: -7vw;
  color: rgba(95, 73, 40, .035);
  content: "YOSHINE";
  font-size: clamp(118px, 20vw, 330px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .72;
  pointer-events: none;
}

.home-intro-v2 .shell {
  position: relative;
  z-index: 1;
}

.intro-statement {
  gap: 18px clamp(60px, 9vw, 140px);
}

.intro-statement h2 {
  max-width: 930px;
  color: #18140f;
  font-size: clamp(54px, 7vw, 102px);
  line-height: .93;
}

.intro-statement > div {
  max-width: 450px;
  padding: 0 0 5px 34px;
  border-left: 1px solid rgba(145, 112, 58, .42);
}

.intro-statement > div > p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
}

.intro-path {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(36, 30, 23, .16);
  list-style: none;
}

.intro-path li {
  padding: 13px 0;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(36, 30, 23, .16);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.intro-path li span {
  color: var(--gold);
}

.flagship-section {
  padding: 132px 0 150px;
  background: #fff;
}

.flagship-section .compact-heading {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.flagship-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 70px 24px;
}

.flagship-grid .product-card {
  grid-column: span 4;
}

.flagship-grid .product-card:nth-child(1) {
  grid-column: span 8;
}

.flagship-grid .product-card:nth-child(2) {
  grid-column: span 4;
}

.flagship-grid .product-card:nth-child(6),
.flagship-grid .product-card:nth-child(7) {
  grid-column: span 6;
}

.flagship-grid .product-card:nth-child(1) .product-visual {
  aspect-ratio: 1.55 / 1;
}

.flagship-grid .product-card:nth-child(2) .product-visual {
  aspect-ratio: .79 / 1;
}

.flagship-grid .product-card:nth-child(n+3):nth-child(-n+5) .product-visual {
  aspect-ratio: 1 / .94;
}

.flagship-grid .product-card:nth-child(n+6) .product-visual {
  aspect-ratio: 1.38 / 1;
}

.flagship-grid .product-visual {
  border: 1px solid rgba(36, 30, 23, .08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(233, 228, 217, .85));
}

.flagship-grid .product-visual img {
  padding: clamp(20px, 3vw, 44px);
}

.flagship-grid .product-body {
  padding: 24px 4px 0;
}

.product-brand-mark {
  position: absolute;
  top: 19px;
  right: 18px;
  z-index: 1;
  max-width: 46%;
  color: rgba(25, 21, 16, .48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.product-badge {
  border: 1px solid rgba(28, 23, 18, .08);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
}

.product-card .product-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 8px 26px rgba(17, 13, 9, .12);
}

.category-section {
  padding-block: 144px;
  background: #ece6dc;
}

.category-section .section-heading {
  margin-bottom: 72px;
}

.category-section .collection-grid {
  gap: 22px;
}

.category-section .collection-card {
  min-height: 540px;
  grid-column: span 5;
}

.category-section .collection-card:nth-child(1),
.category-section .collection-card:nth-child(4) {
  grid-column: span 7;
}

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

.category-section .collection-card::before {
  position: absolute;
  top: 26px;
  left: 30px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  color: rgba(255, 255, 255, .82);
  content: "01";
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.category-section .collection-card:nth-child(2)::before {
  content: "02";
}

.category-section .collection-card:nth-child(3)::before {
  content: "03";
}

.category-section .collection-card:nth-child(4)::before {
  content: "04";
}

.category-section .collection-card::after {
  background:
    linear-gradient(180deg, rgba(9, 7, 5, .2), transparent 35%),
    linear-gradient(0deg, rgba(9, 7, 5, .86), transparent 68%);
}

.category-section .collection-content {
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .34);
}

.preowned-section {
  padding-block: 148px;
  background:
    radial-gradient(circle at 15% 20%, rgba(178, 139, 75, .13), transparent 25%),
    #171410;
  color: #fff;
}

.preowned-section .section-heading {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.preowned-section .section-heading p {
  color: rgba(255, 255, 255, .58);
}

.preowned-section .section-heading .kicker {
  color: #d7b778;
}

.preowned-section .text-link {
  color: #fff;
}

.preowned-section .product-visual {
  background: linear-gradient(145deg, #f7f4ee, #ddd5c8);
}

.preowned-section .product-body h3,
.preowned-section .product-footer strong {
  color: #fff;
}

.preowned-section .product-footer {
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .5);
}

.preowned-section .product-meta {
  color: #d7b778;
}

.showroom-story-v2 {
  position: relative;
  max-width: 1760px;
  margin: 0 auto;
  background: #201b16;
  color: #fff;
}

.showroom-story-v2 .story-image {
  min-height: 780px;
  padding: 30px 0 30px 30px;
}

.showroom-story-v2 .story-image img {
  filter: saturate(.82) contrast(1.03);
}

.showroom-story-v2 .story-copy {
  position: relative;
  background:
    radial-gradient(circle at 90% 12%, rgba(211, 173, 105, .12), transparent 25%),
    #201b16;
}

.showroom-story-v2 .story-number {
  position: absolute;
  top: 38px;
  right: 46px;
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.showroom-story-v2 .story-copy > p {
  color: rgba(255, 255, 255, .62);
}

.showroom-story-v2 .story-points {
  border-color: rgba(255, 255, 255, .16);
}

.showroom-story-v2 .story-points div {
  border-color: rgba(255, 255, 255, .16);
}

.showroom-story-v2 .story-points div span:last-child {
  color: #d9b878;
}

.showroom-story-v2 .button {
  align-self: flex-start;
  border-color: #fff;
  background: #fff;
  color: #171410;
}

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

.journal-home-section {
  padding-block: 148px;
  background: #faf8f4;
}

.journal-home-section .section-heading {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.journal-home-section .news-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px 24px;
}

.journal-home-section .news-card {
  position: relative;
  grid-column: span 3;
}

.journal-home-section .news-card:first-child {
  grid-column: span 6;
}

.journal-home-section .news-card::before {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 17, 13, .88);
  color: #fff;
  content: "01";
  font-size: 9px;
  font-weight: 700;
}

.journal-home-section .news-card:nth-child(2)::before {
  content: "02";
}

.journal-home-section .news-card:nth-child(3)::before {
  content: "03";
}

.journal-home-section .news-card img {
  aspect-ratio: .92 / 1;
  filter: saturate(.72) contrast(1.02);
}

.journal-home-section .news-card:first-child img {
  aspect-ratio: 1.45 / 1;
}

.journal-home-section .news-card h2 {
  font-size: clamp(23px, 2.2vw, 35px);
}

.services-home-section {
  padding-block: 142px 154px;
  background: #eae4d9;
}

.services-home-section .service-grid {
  gap: 0;
  border-color: rgba(40, 32, 23, .2);
}

.services-home-section .service-item {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-color: rgba(40, 32, 23, .2);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.services-home-section .service-item::after {
  position: absolute;
  top: 17px;
  right: 22px;
  color: rgba(95, 73, 40, .07);
  content: "Y";
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
}

.services-home-section .service-item:hover {
  z-index: 1;
  background: #171410;
  color: #fff;
  transform: translateY(-8px);
}

.services-home-section .service-item:hover p {
  color: rgba(255, 255, 255, .58);
}

.services-home-section .service-item > span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
}

@media (max-width: 1060px) {
  .flagship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flagship-grid .product-card,
  .flagship-grid .product-card:nth-child(1),
  .flagship-grid .product-card:nth-child(2),
  .flagship-grid .product-card:nth-child(6),
  .flagship-grid .product-card:nth-child(7) {
    grid-column: auto;
  }

  .flagship-grid .product-card .product-visual,
  .flagship-grid .product-card:nth-child(1) .product-visual,
  .flagship-grid .product-card:nth-child(2) .product-visual,
  .flagship-grid .product-card:nth-child(n+3):nth-child(-n+5) .product-visual,
  .flagship-grid .product-card:nth-child(n+6) .product-visual {
    aspect-ratio: 1 / .92;
  }

  .category-section .collection-card,
  .category-section .collection-card:nth-child(1),
  .category-section .collection-card:nth-child(4) {
    min-height: 470px;
    grid-column: span 6;
  }

  .journal-home-section .news-card,
  .journal-home-section .news-card:first-child {
    grid-column: span 4;
  }

  .journal-home-section .news-card img,
  .journal-home-section .news-card:first-child img {
    aspect-ratio: 1.15 / 1;
  }
}

@media (max-width: 900px) {
  .home-intro-v2 {
    padding-block: 100px;
  }

  .intro-statement > div {
    max-width: 620px;
    padding-left: 0;
    border-left: 0;
  }

  .showroom-story-v2 .story-image {
    min-height: 560px;
    padding: 24px 24px 0;
  }

  .journal-home-section .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-home-section .news-card,
  .journal-home-section .news-card:first-child {
    grid-column: auto;
  }

  .journal-home-section .news-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .brand-selector-button {
    height: 88px;
  }

  .home-intro-v2 {
    padding-block: 82px 92px;
  }

  .home-intro-v2::before {
    bottom: -3vw;
    font-size: 36vw;
  }

  .intro-statement h2 {
    font-size: 47px;
  }

  .flagship-section,
  .category-section,
  .preowned-section,
  .journal-home-section,
  .services-home-section {
    padding-block: 92px;
  }

  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

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

  .showroom-story-v2 .story-image {
    min-height: 420px;
    padding: 14px 14px 0;
  }

  .showroom-story-v2 .story-copy {
    padding: 70px 24px 76px;
  }

  .showroom-story-v2 .story-number {
    top: 28px;
    right: 24px;
  }

  .journal-home-section .news-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .journal-home-section .news-card,
  .journal-home-section .news-card:first-child {
    grid-column: auto;
  }

  .journal-home-section .news-card img,
  .journal-home-section .news-card:first-child img {
    aspect-ratio: 1.2 / 1;
  }
}

/* Art Case collection, release 2026-08-03d */
@media (min-width: 901px) {
  .main-nav {
    gap: clamp(15px, 2.15vw, 38px);
  }

  .main-nav a {
    font-size: 10px;
  }
}

.art-case-section {
  position: relative;
  overflow: hidden;
  padding: 152px 0 164px;
  background:
    radial-gradient(circle at 14% 12%, rgba(179, 135, 68, .18), transparent 27%),
    radial-gradient(circle at 92% 84%, rgba(117, 79, 39, .14), transparent 24%),
    #100e0c;
  color: #fff;
}

.art-case-section::before {
  position: absolute;
  top: 0;
  right: -5vw;
  color: rgba(255, 255, 255, .018);
  content: "ART CASE";
  font-size: clamp(110px, 18vw, 300px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .82;
  pointer-events: none;
}

.art-case-section .shell {
  position: relative;
  z-index: 1;
}

.art-case-heading {
  margin-bottom: 76px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.art-case-heading h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(50px, 6.3vw, 92px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .94;
}

.art-case-heading > div:last-child {
  padding-bottom: 5px;
}

.art-case-heading > div:last-child p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.8;
}

.art-case-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, .78fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

.art-case-feature {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background: #29231d;
}

.art-case-feature::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, .16), transparent 34%),
    linear-gradient(0deg, rgba(8, 7, 6, .96), rgba(8, 7, 6, .06) 70%);
  content: "";
}

.art-case-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.art-case-feature:hover > img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.art-case-feature-content {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(30px, 4vw, 54px);
  left: clamp(28px, 4vw, 58px);
  z-index: 1;
}

.art-case-feature-content > span,
.art-case-list small {
  color: #d8b77a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.art-case-feature-content h3 {
  max-width: 720px;
  margin: 18px 0 32px;
  font-family: var(--sans);
  font-size: clamp(34px, 4.3vw, 64px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .98;
}

.art-case-feature-content > div {
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 46px;
  gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.art-case-feature-content small {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.art-case-feature-content strong {
  font-size: 13px;
  font-weight: 600;
}

.art-case-feature-content b,
.art-case-list > a > b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 13px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.art-case-feature:hover .art-case-feature-content b,
.art-case-list > a:hover > b {
  border-color: var(--gold);
  background: var(--gold);
  transform: rotate(45deg);
}

.art-case-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.art-case-list > a {
  min-height: 146px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 30px 112px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.art-case-list > a > span {
  align-self: start;
  padding-top: 5px;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  font-weight: 700;
}

.art-case-thumb {
  width: 112px;
  height: 98px;
  overflow: hidden;
  background: #eee8de;
}

.art-case-thumb img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
  transition: transform .4s ease;
}

.art-case-list > a:hover .art-case-thumb img {
  transform: scale(1.05);
}

.art-case-list h3 {
  margin: 7px 0 0;
  font-family: var(--sans);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

@media (max-width: 1060px) {
  .art-case-stage {
    grid-template-columns: 1fr;
  }

  .art-case-feature {
    min-height: 680px;
  }

  .art-case-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-case-list > a {
    padding-right: 22px;
    grid-template-columns: 28px 96px minmax(0, 1fr) 44px;
  }

  .art-case-thumb {
    width: 96px;
    height: 88px;
  }
}

@media (max-width: 900px) {
  .art-case-section {
    padding-block: 110px;
  }

  .art-case-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .art-case-heading > div:last-child {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .art-case-section {
    padding-block: 92px;
  }

  .art-case-heading {
    margin-bottom: 50px;
    padding-bottom: 44px;
  }

  .art-case-heading h2 {
    font-size: 47px;
  }

  .art-case-feature {
    min-height: 560px;
  }

  .art-case-feature-content h3 {
    font-size: 36px;
  }

  .art-case-feature-content > div {
    grid-template-columns: 1fr 44px;
  }

  .art-case-feature-content strong {
    display: none;
  }

  .art-case-list {
    grid-template-columns: 1fr;
  }

  .art-case-list > a {
    min-height: 130px;
    padding-right: 0;
    grid-template-columns: 24px 82px minmax(0, 1fr) 40px;
    gap: 12px;
  }

  .art-case-thumb {
    width: 82px;
    height: 78px;
  }

  .art-case-list > a > b {
    width: 38px;
    height: 38px;
  }
}

/* Refined signature introduction, release 2026-08-03e */
.home-intro-v2 {
  padding-block: 102px 118px;
  background:
    radial-gradient(circle at 92% 10%, rgba(174, 132, 69, .1), transparent 26%),
    linear-gradient(135deg, #f7f3ec 0%, #f1ece3 100%);
}

.home-intro-v2::before {
  display: none;
}

.intro-topline {
  margin-bottom: clamp(62px, 7vw, 98px);
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(36, 30, 23, .18);
}

.intro-topline .kicker {
  margin: 0;
}

.intro-topline > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.intro-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr);
  grid-template-areas: none;
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
}

.intro-statement h2 {
  grid-area: auto;
  grid-column: 1;
  grid-row: 1;
  max-width: 900px;
  color: #17130f;
  font-size: clamp(62px, 7.6vw, 112px);
  letter-spacing: -.065em;
  line-height: .87;
}

.intro-statement h2 span,
.intro-statement h2 em {
  display: inline-block;
}

.intro-statement h2 em {
  color: #a77b43;
  font-style: normal;
  font-weight: 300;
}

.intro-statement > .intro-panel {
  grid-area: auto;
  grid-column: 2;
  grid-row: 1;
  max-width: 510px;
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid rgba(83, 64, 39, .18);
  border-top: 3px solid #b48953;
  background: rgba(255, 253, 249, .72);
  box-shadow: 0 28px 80px rgba(46, 36, 25, .08);
  backdrop-filter: blur(10px);
}

.intro-panel > p,
.intro-statement > .intro-panel > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.intro-panel > .intro-panel-lead,
.intro-statement > .intro-panel > .intro-panel-lead {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.42;
}

.intro-panel .button {
  width: 100%;
  margin-top: 10px;
  justify-content: space-between;
}

.home-intro-v2 .intro-path {
  margin: clamp(72px, 8vw, 112px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(36, 30, 23, .18);
  border-bottom: 1px solid rgba(36, 30, 23, .18);
}

.home-intro-v2 .intro-path li {
  min-height: 108px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-content: center;
  border-right: 1px solid rgba(36, 30, 23, .18);
  border-bottom: 0;
  color: var(--ink);
  transition: background .25s ease, padding-left .25s ease;
}

.home-intro-v2 .intro-path li:last-child {
  border-right: 0;
}

.home-intro-v2 .intro-path li:hover {
  padding-left: 38px;
  background: rgba(255, 253, 249, .6);
}

.home-intro-v2 .intro-path li > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #b48953;
  font-size: 10px;
}

.home-intro-v2 .intro-path strong {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-intro-v2 .intro-path small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
}

@media (max-width: 900px) {
  .home-intro-v2 {
    padding-block: 88px 100px;
  }

  .intro-statement {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-statement > .intro-panel {
    grid-column: 1;
    grid-row: 2;
    max-width: 680px;
  }

  .home-intro-v2 .intro-path li {
    padding-inline: 20px;
  }
}

@media (max-width: 620px) {
  .home-intro-v2 {
    padding-block: 72px 82px;
  }

  .intro-topline {
    margin-bottom: 52px;
  }

  .intro-topline > span {
    display: none;
  }

  .intro-statement h2 {
    font-size: 54px;
    line-height: .91;
  }

  .intro-statement > .intro-panel {
    padding: 32px 24px;
  }

  .home-intro-v2 .intro-path {
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .home-intro-v2 .intro-path li,
  .home-intro-v2 .intro-path li:last-child {
    min-height: 86px;
    padding: 20px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 30, 23, .18);
  }

  .home-intro-v2 .intro-path li:last-child {
    border-bottom: 0;
  }

  .home-intro-v2 .intro-path li:hover {
    padding-left: 18px;
  }
}

/* Refined services — compact, editorial and easy to scan */
.services-home-section {
  padding-block: clamp(98px, 10vw, 148px) clamp(110px, 11vw, 158px);
  background:
    radial-gradient(circle at 88% 8%, rgba(184, 137, 76, .12), transparent 26%),
    #eee9df;
}

.services-home-section .section-heading {
  margin-bottom: clamp(60px, 7vw, 92px);
  align-items: end;
}

.services-home-section .section-heading > p {
  max-width: 460px;
  margin-bottom: 8px;
  color: #71695f;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}

.services-home-section .service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.services-home-section .service-item,
.services-home-section .service-item:first-child {
  position: relative;
  min-height: 350px;
  padding: 26px 25px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(47, 39, 29, .17);
  background: rgba(250, 248, 243, .66);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(54, 43, 29, 0);
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    color .35s ease,
    transform .35s ease;
}

.services-home-section .service-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}

.services-home-section .service-item::after {
  display: none;
}

.services-home-section .service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-home-section .service-top > span {
  color: #a8783f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.services-home-section .service-top b {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 39, 29, .18);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 400;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

.services-home-section .service-copy {
  margin-top: 70px;
}

.services-home-section .service-copy small {
  display: block;
  margin-bottom: 14px;
  color: #98724a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.services-home-section .service-item h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.25vw, 36px);
  line-height: .98;
  letter-spacing: -.035em;
}

.services-home-section .service-item p {
  max-width: 245px;
  margin: 0;
  color: #756d63;
  font-size: 12px;
  line-height: 1.65;
  transition: color .35s ease;
}

.services-home-section .service-item:hover {
  z-index: 1;
  border-color: #1b1712;
  background: #1b1712;
  color: #fff;
  box-shadow: 0 28px 60px rgba(33, 26, 18, .2);
  transform: translateY(-8px);
}

.services-home-section .service-item:hover::before {
  transform: scaleY(1);
}

.services-home-section .service-item:hover .service-top b {
  border-color: #b98a51;
  background: #b98a51;
  color: #17130f;
  transform: rotate(45deg);
}

.services-home-section .service-item:hover .service-copy small {
  color: #d0a36c;
}

.services-home-section .service-item:hover p {
  color: rgba(255, 255, 255, .62);
}

@media (max-width: 900px) {
  .services-home-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-home-section .service-item,
  .services-home-section .service-item:first-child {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .services-home-section .section-heading {
    margin-bottom: 48px;
  }

  .services-home-section .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-home-section .service-item,
  .services-home-section .service-item:first-child {
    min-height: 248px;
    padding: 22px 22px 24px;
  }

  .services-home-section .service-item h3 {
    font-size: 31px;
  }

  .services-home-section .service-copy {
    margin-top: 48px;
  }
}

@media (min-width: 621px) {
  .quick-actions {
    flex-direction: row;
  }
}

/* Brand image previews — release 2026-08-03i */
.brand-selector-button {
  height: 132px;
  padding: 14px 16px;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
}

.brand-selector-button > .brand-selector-number {
  align-self: start;
  padding-top: 9px;
  color: rgba(229, 198, 139, .72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-selector-preview {
  position: relative;
  height: 88px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  background: #29241e;
}

.brand-selector-button .brand-selector-preview img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  filter: saturate(.62) contrast(1.04) brightness(.62);
  mix-blend-mode: normal;
  transform: scale(1.02);
  transition: filter .35s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
}

.brand-selector-preview::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(8, 7, 6, .88));
  content: "";
}

.brand-selector-preview strong {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 8px;
  left: 10px;
  overflow: hidden;
  color: rgba(255, 255, 255, .88);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-selector-button:hover .brand-selector-preview img,
.brand-selector-button.active .brand-selector-preview img {
  filter: saturate(.88) contrast(1.04) brightness(.82);
  transform: scale(1.08);
}

.brand-selector-button.active .brand-selector-preview {
  border-color: rgba(213, 174, 105, .72);
}

@media (max-width: 1060px) {
  .brand-selector {
    grid-template-columns: repeat(7, 170px);
  }

  .brand-selector-button {
    height: 118px;
    padding: 12px;
  }

  .brand-selector-preview {
    height: 78px;
  }
}

@media (max-width: 620px) {
  .brand-selector {
    grid-template-columns: repeat(7, 148px);
  }

  .brand-selector-button {
    height: 108px;
    grid-template-columns: 18px minmax(0, 1fr);
    padding: 10px;
  }

  .brand-selector-preview {
    height: 70px;
  }

  .brand-selector-preview strong {
    right: 7px;
    bottom: 6px;
    left: 7px;
    font-size: 8px;
  }
}
