/* ============================================================
   Piano Compass — Independent, accredited piano advisory
   Editorial "source of truth" design system
   Light + dark, warm paper / ink / pine / brass
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light (default) — warm paper */
  --bg:         #f4eee2;
  --surface:    #fbf7ee;
  --surface2:   #ece3d2;
  --ink:        #201d18;
  --ink-soft:   #4a443b;
  --muted:      #7a7264;
  --line:       rgba(32,29,24,.14);
  --line-soft:  rgba(32,29,24,.08);

  --pine:       #204a3d;
  --pine-soft:  #2f6553;
  --brass:      #a6772f;
  --brass-lt:   #c1974b;
  --sky:        #33566a;

  --shadow:     0 24px 60px -30px rgba(32,29,24,.4);
  --shadow-sm:  0 10px 30px -18px rgba(32,29,24,.45);

  /* Aliases so legacy class rules keep resolving */
  --gold:       var(--brass);
  --gold-lt:    var(--brass-lt);
  --gold-dk:    #7c5a24;
  --text:       var(--ink);
  --text-muted: var(--muted);
  --border:     var(--line);

  --serif:  'Fraunces', Georgia, 'Times New Roman', serif;
  --accent: 'Fraunces', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;
  --max:    1280px;
  --ease:   cubic-bezier(.22,.61,.36,1);
}

:root[data-theme="dark"] {
  --bg:         #14130d;
  --surface:    #1c1a13;
  --surface2:   #24211a;
  --ink:        #f1ead9;
  --ink-soft:   #d8cfbd;
  --muted:      #9a9081;
  --line:       rgba(241,234,217,.15);
  --line-soft:  rgba(241,234,217,.08);

  --pine:       #82bda3;
  --pine-soft:  #a9d4c1;
  --brass:      #d6ac63;
  --brass-lt:   #ecca8b;
  --sky:        #8fb6cb;

  --shadow:     0 26px 70px -30px rgba(0,0,0,.7);
  --shadow-sm:  0 12px 34px -20px rgba(0,0,0,.7);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--pine); color: #fff; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .01em; }
p  { color: var(--ink-soft); font-size: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--brass); display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.5; color: var(--ink-soft);
}

.gold-rule { width: 46px; height: 2px; background: var(--brass); margin: 1.4rem 0 2.2rem; border-radius: 2px; }
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 90%; max-width: var(--max); margin: 0 auto; }
.container--narrow { max-width: 860px; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--tint  { background: var(--surface); }
.section--tint2 { background: var(--surface2); }
.section--pine  { background: var(--pine); color: #f4efe4; }
.section-head { max-width: 720px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head h2 { margin-bottom: .8rem; }
.section-head .lead { margin-top: .4rem; }

/* Legacy aliases */
.section--dark { background: var(--surface); }
.section--darker { background: var(--surface2); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn--gold, .btn--primary {
  background: var(--pine); color: #f6f2e8; border-color: var(--pine);
}
.btn--gold:hover, .btn--primary:hover { background: var(--pine-soft); border-color: var(--pine-soft); box-shadow: var(--shadow-sm); }
.btn--brass { background: var(--brass); color: #1c1509; border-color: var(--brass); }
.btn--brass:hover { background: var(--brass-lt); border-color: var(--brass-lt); box-shadow: var(--shadow-sm); }
.btn--outline {
  border-color: var(--line); color: var(--ink); background: transparent;
}
.btn--outline:hover { border-color: var(--pine); color: var(--pine); }
:root[data-theme="dark"] .btn--gold, :root[data-theme="dark"] .btn--primary { color: #10241d; }

.btn--ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--pine); font-weight: 600; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase; padding: 0;
}
.btn--ghost::after { content: '→'; transition: transform .3s var(--ease); }
.btn--ghost:hover::after { transform: translateX(5px); }
:root[data-theme="dark"] .btn--ghost { color: var(--pine); }

/* ── Reveal ─────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal="left"]  { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Navigation ─────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 5%;
  transition: background .35s, padding .35s, box-shadow .35s, transform .4s;
}
#nav.nav--scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: .7rem 5%; box-shadow: 0 1px 0 var(--line);
}
#nav.nav--hidden { transform: translateY(-102%); }

.nav__logo { display: flex; align-items: center; gap: .7rem; line-height: 1; }
.nav__logo-mark { width: 30px; height: 30px; flex: none; color: var(--pine); }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo b {
  font-family: var(--serif); font-weight: 500; font-size: 1.12rem;
  letter-spacing: .01em; color: var(--ink);
}
.nav__logo span {
  font-family: var(--sans); font-size: .52rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-top: .18rem;
}

.nav__menu { display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; transition: color .25s; white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > .nav__link::before { content: ''; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: 14px; min-width: 230px; padding: .6rem;
  opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s var(--ease);
}
.nav__dropdown-menu::after { content: ''; position: absolute; left: 0; right: 0; top: -1rem; height: 1rem; }
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav__dropdown-menu a {
  display: block; padding: .6rem .8rem; border-radius: 9px;
  font-size: .8rem; letter-spacing: .02em; color: var(--ink-soft); transition: background .2s, color .2s;
}
.nav__dropdown-menu a:hover { background: var(--surface2); color: var(--pine); }

.nav__utils { display: flex; align-items: center; gap: .9rem; }
.nav__lang { display: flex; gap: .1rem; align-items: center; padding-left: 1rem; border-left: 1px solid var(--line); }
.nav__lang button {
  font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); padding: .25rem .3rem; border-radius: 5px; transition: color .2s;
}
.nav__lang button.active, .nav__lang button:hover { color: var(--brass); }

.nav__theme {
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: border-color .2s, color .2s, background .2s;
}
.nav__theme:hover { border-color: var(--pine); color: var(--pine); }
.nav__theme svg { width: 17px; height: 17px; }
.nav__theme .icon-moon { display: none; }
:root[data-theme="dark"] .nav__theme .icon-sun  { display: none; }
:root[data-theme="dark"] .nav__theme .icon-moon { display: block; }

.nav__book {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 1.15rem; border-radius: 999px; background: var(--pine); color: #f6f2e8;
  white-space: nowrap; transition: background .25s, box-shadow .25s;
}
.nav__book:hover { background: var(--pine-soft); box-shadow: var(--shadow-sm); }
:root[data-theme="dark"] .nav__book { color: #10241d; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; padding: 11rem 0 5rem; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, color-mix(in srgb, var(--pine) 16%, transparent) 0%, transparent 55%),
    radial-gradient(90% 80% at -5% 110%, color-mix(in srgb, var(--brass) 14%, transparent) 0%, transparent 50%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1.6rem;
  animation: fadeUp .7s var(--ease) both;
}
.hero__eyebrow b { color: var(--ink); font-weight: 600; }
.hero__eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.hero__title { margin-bottom: 1.5rem; animation: fadeUp .7s .1s var(--ease) both; }
.hero__title em { font-style: italic; color: var(--pine); }
.hero__subtitle {
  font-family: var(--serif); font-weight: 300; font-size: clamp(1.1rem,1.7vw,1.4rem);
  color: var(--ink-soft); max-width: 33ch; margin-bottom: 2.2rem; line-height: 1.5;
  animation: fadeUp .7s .2s var(--ease) both;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s .3s var(--ease) both; }
.hero__trust { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.6rem; animation: fadeUp .7s .4s var(--ease) both; }
.hero__trust-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--muted); }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--pine); flex: none; }

.hero__visual { position: relative; animation: fadeUp .8s .25s var(--ease) both; }
.hero__card {
  position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; border: 1px solid var(--line);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,10,.5), transparent 45%);
}
.hero__badge {
  position: absolute; left: -1.4rem; bottom: 2rem; z-index: 3;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow); max-width: 250px;
}
.hero__badge b { font-family: var(--serif); font-size: 2rem; color: var(--pine); display: block; line-height: 1; }
.hero__badge span { font-size: .74rem; color: var(--muted); }
.hero__quote {
  position: absolute; right: -1rem; top: 1.6rem; z-index: 3;
  background: var(--pine); color: #f4efe4; border-radius: 14px; padding: .8rem 1.1rem;
  font-size: .78rem; box-shadow: var(--shadow-sm); max-width: 180px;
}

/* ── Trust strip ────────────────────────────────────────── */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust__item { padding: 2.2rem 1.6rem; border-left: 1px solid var(--line); }
.trust__item:first-child { border-left: none; }
.trust__item svg { width: 26px; height: 26px; color: var(--pine); margin-bottom: .9rem; }
.trust__item h4 { margin-bottom: .35rem; color: var(--ink); }
.trust__item p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* ── Stats ──────────────────────────────────────────────── */
.stats-row { display: flex; flex-direction: column; gap: 2.2rem; padding-left: 2.6rem; border-left: 2px solid var(--brass); }
.stat__number { display: block; font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,3.4rem); color: var(--pine); line-height: 1; }
.stat__label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }
.brand-intro__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4.5rem; align-items: center; }
.brand-intro__text p { max-width: 46ch; }

/* ── Who we help (audiences) ────────────────────────────── */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.audience__col {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 2.4rem;
}
.audience__col h3 { margin-bottom: .3rem; }
.audience__tag { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); }
.audience__list { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.6rem; }
.audience__list li { display: flex; gap: .8rem; font-size: .92rem; color: var(--ink-soft); align-items: flex-start; }
.audience__list li svg { width: 18px; height: 18px; color: var(--pine); flex: none; margin-top: .18rem; }

/* ── Best-fit Finder ────────────────────────────────────── */
.finder {
  background: var(--pine); color: #eef3ec;
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
}
.finder__inner { padding: clamp(2rem,4vw,3.4rem); }
.finder__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.finder__head h2 { color: #fff; }
.finder .eyebrow { color: var(--brass-lt); }
.finder .eyebrow::before { background: var(--brass-lt); }
.finder__progress { display: flex; gap: .4rem; }
.finder__progress span { width: 30px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.22); transition: background .3s; }
.finder__progress span.on { background: var(--brass-lt); }

.finder__step { display: none; animation: fadeUp .4s var(--ease) both; }
.finder__step.active { display: block; }
.finder__q { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.9rem); color: #fff; margin-bottom: .4rem; }
.finder__hint { color: rgba(238,243,236,.72); font-size: .9rem; margin-bottom: 1.6rem; }
.finder__opts { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: .8rem; }
.finder__opt {
  text-align: left; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 14px; padding: 1.1rem 1.2rem; color: #eef3ec; transition: all .2s var(--ease); cursor: pointer;
}
.finder__opt:hover { background: rgba(255,255,255,.13); border-color: var(--brass-lt); transform: translateY(-2px); }
.finder__opt.selected { background: var(--brass-lt); border-color: var(--brass-lt); color: #22160a; }
.finder__opt b { display: block; font-family: var(--sans); font-weight: 600; font-size: .96rem; margin-bottom: .2rem; }
.finder__opt span { font-size: .8rem; opacity: .82; }
.finder__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.8rem; gap: 1rem; }
.finder__back { color: rgba(238,243,236,.7); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.finder__back:hover { color: #fff; }
.finder__back[hidden] { visibility: hidden; }

.finder__result { display: none; animation: fadeUp .5s var(--ease) both; }
.finder__result.active { display: block; }
.finder__result h3 { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: .6rem; }
.finder__result p { color: rgba(238,243,236,.85); max-width: 60ch; }
.finder__result-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0 1.8rem; }
.finder__result-tags span { font-size: .78rem; padding: .4rem .9rem; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.finder__result .btn--brass { color: #22160a; }

/* Finder results shortlist (issue #4) */
.finder__results {
  display: flex; gap: 1rem; margin: 1.6rem 0 1.4rem;
  overflow-x: auto; padding-bottom: .6rem; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.finder__results::-webkit-scrollbar { height: 8px; }
.finder__results::-webkit-scrollbar-thumb { background: rgba(255,255,255,.25); border-radius: 999px; }
.finder-card {
  flex: 0 0 240px; scroll-snap-align: start; text-align: left; cursor: pointer;
  background: var(--bg); color: var(--ink); border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px; overflow: hidden; padding: 0; display: flex; flex-direction: column;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), outline-color .18s var(--ease);
  outline: 2px solid transparent; outline-offset: 2px; font: inherit;
}
.finder-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.28); }
.finder-card.selected { outline-color: var(--brass); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
.finder-card__img { aspect-ratio: 4 / 3; background: var(--surface); overflow: hidden; }
.finder-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.finder-card__body { padding: .9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.finder-card__badge { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); }
.finder-card__body h4 { font-family: var(--serif); font-size: 1.1rem; margin: 0; color: var(--ink); }
.finder-card__body p { font-size: .82rem; color: var(--muted); max-width: none; margin: 0; }
.finder-card__price { font-size: .8rem; font-weight: 600; color: var(--ink); margin-top: .1rem; }
.finder-card__pick { margin-top: auto; font-size: .78rem; font-weight: 600; color: var(--pine); }
.finder-card.selected .finder-card__pick { color: var(--brass); }
.finder-card.selected .finder-card__pick::after { content: ' ✓'; }
.finder__result-foot { margin-top: .4rem; }
.finder__hintline { color: rgba(238,243,236,.7) !important; font-size: .85rem; }
.finder__chosen { color: rgba(238,243,236,.92) !important; margin-bottom: 1.1rem; }

/* ── Brands ─────────────────────────────────────────────── */
.brand-hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
}
.brand-hero__body { padding: clamp(2rem,4vw,3.2rem); display: flex; flex-direction: column; justify-content: center; }
.brand-hero__tag { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
/* Partner logo on a white chip so it reads in any theme / logo colour */
.brand-hero__logo { height: 30px; width: auto; display: inline-block; margin: 0 0 1rem; background: #fff; padding: .45rem .7rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.brand-hero__media { position: relative; min-height: 320px; }
.brand-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.brands-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.4rem; }
.brand-tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 1.7rem 1.6rem;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; display: flex; flex-direction: column; gap: .5rem;
}
.brand-tile:hover { transform: translateY(-4px); border-color: var(--pine); box-shadow: var(--shadow-sm); }
.brand-tile__name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.brand-tile__origin { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }
.brand-tile p { font-size: .86rem; color: var(--muted); line-height: 1.6; margin-top: .3rem; }
.brand-tile__note { margin-top: auto; padding-top: .8rem; font-size: .74rem; color: var(--pine); font-weight: 600; }
.brand-tile--featured { border-color: var(--pine); background: color-mix(in srgb, var(--pine) 8%, var(--surface)); }

/* ── Vintage feature ────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split__media { border-radius: 20px; overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--reverse { order: -1; }
.checklist { display: flex; flex-direction: column; gap: .85rem; margin: 1.6rem 0 2rem; }
.checklist li { display: flex; gap: .8rem; font-size: .94rem; color: var(--ink-soft); align-items: flex-start; }
.checklist li svg { width: 19px; height: 19px; color: var(--pine); flex: none; margin-top: .16rem; }

/* ── Process ────────────────────────────────────────────── */
.process__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; counter-reset: step; }
.process-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem 1.5rem;
  position: relative; transition: transform .25s var(--ease), border-color .25s;
}
.process-step:hover { transform: translateY(-4px); border-color: var(--brass); }
.process-step__num {
  font-family: var(--serif); font-size: 1rem; color: var(--brass);
  width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.process-step h4 { margin-bottom: .5rem; color: var(--ink); }
.process-step p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* ── Services grid ──────────────────────────────────────── */
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.service-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.service-item:hover { transform: translateY(-4px); border-color: var(--pine); box-shadow: var(--shadow-sm); }
.service-item__icon { color: var(--pine); margin-bottom: 1.1rem; display: block; }
.service-item__icon svg { width: 26px; height: 26px; }
.service-item h4 { color: var(--ink); margin-bottom: .5rem; font-size: 1rem; }
.service-item p { font-size: .88rem; line-height: 1.65; color: var(--muted); }
.services__header, .collection__header, .journey__header { text-align: center; max-width: 720px; margin: 0 auto 3.4rem; }

/* ── Legacy collection cards (Feurich pages) ────────────── */
.collection__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.collection-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--pine); }
.collection-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.collection-card__img::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,17,10,.35), transparent 55%); }
.collection-card__img--luxury      { background: url('../images/luxury-grand-blue.jpeg') center/cover no-repeat; }
.collection-card__img--selfplaying { background: url('../images/self-playing-lifestyle.jpeg') center/cover no-repeat; }
.collection-card__img--grands      { background: url('../images/self-playing-studio.jpeg') center/cover no-repeat; }
.collection-card__img--custom      { background: url('../images/custom-mosaic-upright.jpeg') center/cover no-repeat; }
.collection-card__body { padding: 1.7rem; flex: 1; display: flex; flex-direction: column; }
.collection-card__body h3 { color: var(--ink); margin-bottom: .5rem; }
.collection-card__body p { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.collection-card__cta { margin-top: auto; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pine); display: inline-flex; gap: .5rem; align-items: center; }
.collection-card__cta::after { content: '→'; transition: transform .3s; }
.collection-card:hover .collection-card__cta::after { transform: translateX(4px); }

/* ── Featured / self-playing (legacy two-col) ───────────── */
.featured { background: var(--surface); }
.featured__grid, .self-playing__grid, .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.featured__visual, .self-playing__visual { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.self-playing__visual { aspect-ratio: 4/3; }
.featured__visual img, .self-playing__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured__badge { position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #22160a; background: var(--brass-lt); padding: .4rem .9rem; border-radius: 999px; }
.featured__subtitle { font-family: var(--serif); font-size: 1.05rem; color: var(--brass); margin-bottom: .8rem; }
.featured__text { margin-bottom: 2rem; line-height: 1.8; }
.featured__specs { margin-bottom: 2.2rem; border-top: 1px solid var(--line); }
.featured__spec { display: flex; gap: 1rem; align-items: center; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .88rem; color: var(--ink-soft); }
.featured__spec::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); flex: none; }
.self-playing__features { display: flex; flex-direction: column; gap: .8rem; margin: 1.6rem 0; }
.sp-feature { display: flex; gap: .9rem; align-items: center; font-size: .9rem; color: var(--ink-soft); }
.sp-feature::before { content: ''; width: 20px; height: 2px; background: var(--brass); flex: none; }

/* ── Journey (legacy) ───────────────────────────────────── */
.journey__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.journey-step { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.7rem; }
.journey-step__num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border: 1.5px solid var(--line); border-radius: 50%; font-family: var(--serif); color: var(--brass); margin-bottom: 1.2rem; }
.journey-step h4 { color: var(--ink); margin-bottom: .6rem; }
.journey-step p { font-size: .88rem; color: var(--muted); }

/* ── About / expert ─────────────────────────────────────── */
.about__visual { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.about__img { width: 100%; height: 100%; background: url('../images/custom-grand-mosaic.jpeg') center/cover no-repeat; }
.about__img-frame { position: absolute; inset: -12px 12px 12px -12px; border: 2px solid var(--brass); border-radius: 18px; pointer-events: none; opacity: .5; }
.about__content p { margin-bottom: 1.2rem; line-height: 1.8; }
.expert-quote { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.4; color: var(--ink); }
.expert-quote cite { display: block; margin-top: 1.2rem; font-family: var(--sans); font-style: normal; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); }

/* ── Testimonials ───────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.8rem; }
.quote-card__stars { color: var(--brass); letter-spacing: .1em; margin-bottom: 1rem; font-size: .9rem; }
.quote-card p { font-size: .94rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.2rem; }
.quote-card cite { font-style: normal; font-size: .8rem; font-weight: 600; color: var(--muted); }

/* ── Contact CTA ────────────────────────────────────────── */
.contact-cta { text-align: center; padding: clamp(4.5rem,9vw,8rem) 0; background: var(--pine); color: #f2efe6; }
.contact-cta .eyebrow { color: var(--brass-lt); }
.contact-cta .eyebrow::before { background: var(--brass-lt); }
.contact-cta h2 { color: #fff; margin-bottom: 1rem; }
.contact-cta p { color: rgba(242,239,230,.85); max-width: 48ch; margin: 0 auto 2.4rem; }

/* ── Contact page ───────────────────────────────────────── */
.contact-page { padding-top: 130px; }
.contact-page__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--surface); border: 1.5px solid var(--line); color: var(--ink);
  padding: .85rem 1.1rem; font-family: var(--sans); font-size: .92rem; border-radius: 10px; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: .7; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--pine); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { display: flex; align-items: center; gap: 1.4rem; margin-top: .4rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info__label { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: .5rem; }
.contact-info__value { font-size: .95rem; white-space: pre-line; color: var(--ink-soft); }
.about-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; max-width: 760px; margin: 2.4rem auto 0; }
.about-contact-grid .contact-info__label { margin-bottom: .4rem; }
@media (max-width: 640px) { .about-contact-grid { grid-template-columns: 1fr; gap: 1.4rem; } }

/* ── Sub-hero (legacy inner pages) ──────────────────────── */
.sub-hero { position: relative; padding: 150px 0 4rem; overflow: hidden; border-bottom: 1px solid var(--line); }
.sub-hero__bg { position: absolute; inset: 0; opacity: .16; z-index: 0; }
.sub-hero--luxury .sub-hero__bg      { background: url('../images/luxury-grand-blue.jpeg') center/cover; }
.sub-hero--selfplaying .sub-hero__bg { background: url('../images/self-playing-sunburst.jpeg') center/cover; }
.sub-hero--grands .sub-hero__bg      { background: url('../images/self-playing-studio.jpeg') center/cover; }
.sub-hero--custom .sub-hero__bg      { background: url('https://res.cloudinary.com/m4t0vj8h/image/upload/f_auto,q_auto,w_1600/v1789970597/Feurich_V123_laser_cut_backlit_in_villa_against_wall.jpg') center/cover; }
.sub-hero__content { position: relative; z-index: 2; }
.page-header { padding-top: 140px; padding-bottom: 2.6rem; border-bottom: 1px solid var(--line); margin-bottom: 3.4rem; }
.about-page, .services-page { padding-top: 130px; }
.about-page__text { max-width: 700px; margin: 0 auto; }
.about-page__text p { margin-bottom: 1.4rem; line-height: 1.95; }

/* Galleries / models / feature blocks (legacy) */
.collection-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.4rem; }
.collection-gallery figure { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 14px; border: 1px solid var(--line); }
.collection-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.collection-gallery figure:hover img { transform: scale(1.05); }
.collection-gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem 1.1rem .8rem; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: linear-gradient(to top, rgba(20,17,10,.85), transparent); }
.models-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.model-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .25s var(--ease), border-color .25s; }
.model-card:hover { transform: translateY(-4px); border-color: var(--pine); }
.model-card__media { aspect-ratio: 4/3; overflow: hidden; }
.model-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.model-card:hover .model-card__media img { transform: scale(1.05); }
.model-card__type { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin: 1.5rem 1.6rem .8rem; }
.model-card h3 { color: var(--ink); margin: 0 1.6rem .5rem; }
.model-card p { font-size: .86rem; color: var(--muted); margin: 0 1.6rem 1.6rem; }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-block--reverse .feature-block__visual { order: -1; }
.feature-block__visual { aspect-ratio: 4/3; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm); }
.feature-block__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-block__visual:hover img { transform: scale(1.04); }
.feature-block__content h3 { margin-bottom: 1rem; }
.feature-block__content p { margin-bottom: 1.6rem; line-height: 1.8; }
.custom-list { display: flex; flex-direction: column; gap: .8rem; margin: 1.4rem 0 2rem; }
.custom-list li { display: flex; gap: .8rem; align-items: center; font-size: .9rem; color: var(--ink-soft); }
.custom-list li::before { content: ''; width: 20px; height: 2px; background: var(--brass); flex: none; }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.footer__brand-logo svg { width: 26px; height: 26px; color: var(--pine); }
.footer__brand-logo b { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.footer__brand-sub { font-size: .58rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.footer__tagline { font-family: var(--serif); font-size: 1rem; color: var(--ink-soft); max-width: 34ch; }
.footer__col-title { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.1rem; }
.footer__links { display: flex; flex-direction: column; gap: .7rem; }
.footer__links a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--pine); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 1rem; }
.footer__copyright { font-size: .78rem; color: var(--muted); }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { font-size: .76rem; color: var(--muted); transition: color .2s; }
.footer__legal a:hover { color: var(--pine); }
.footer__disclaimer { font-size: .72rem; color: var(--muted); max-width: 70ch; margin-top: 1.4rem; line-height: 1.6; opacity: .85; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Lightbox ───────────────────────────────────────────── */
body.lightbox-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 5vmin; background: rgba(15,13,9,.9); backdrop-filter: blur(10px); }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.8rem; font-size: 2.2rem; line-height: 1; color: #f4efe4; opacity: .85; }
.lightbox__close:hover { opacity: 1; }
.lightbox__caption { position: absolute; bottom: 1.6rem; left: 0; right: 0; text-align: center; color: rgba(244,239,228,.8); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 460px; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: none; }
  .trust__item { border-top: 1px solid var(--line); }
  .trust__item:nth-child(-n+2) { border-top: none; }
  .brand-intro__grid, .featured__grid, .self-playing__grid, .about__grid,
  .split, .contact-page__grid, .feature-block, .brand-hero { grid-template-columns: 1fr; gap: 2.6rem; }
  .split__media--reverse { order: 0; }
  .feature-block--reverse .feature-block__visual { order: 0; }
  .process__grid, .brands-grid, .services__grid, .journey__steps, .quotes, .collection-gallery, .models-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-direction: row; flex-wrap: wrap; gap: 1.6rem 2.4rem; padding-left: 1.6rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: var(--bg); padding: 6.5rem 2rem 3rem; gap: 0; align-items: flex-start; z-index: 999; overflow-y: auto;
  }
  .nav__menu.open .nav__link { font-size: 1.05rem; padding: 1rem 0; border-bottom: 1px solid var(--line); width: 100%; color: var(--ink); }
  .nav__menu.open .nav__dropdown-menu { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; border: none; padding: 0 0 .6rem 1rem; background: transparent; }
  .nav__menu.open .nav__utils { margin-top: 1.6rem; flex-wrap: wrap; }
  .nav__menu.open .nav__lang { border: none; padding: 0; }
  .nav__toggle { display: flex; z-index: 1000; }
  .audience, .process__grid, .brands-grid, .services__grid, .journey__steps, .quotes, .collection__grid, .collection-gallery, .models-grid { grid-template-columns: 1fr; }
  .finder__head { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__badge { left: 0; }
  .hero__quote { right: 0; }
}

/* ============================================================
   Dynamic content sections (Insights, Instruments, Videos,
   Piano of the Week) + social icons
   ============================================================ */

/* ── Social icons ──────────────────────────────────────── */
.social-icons { display: inline-flex; align-items: center; gap: .5rem; }
.social-icons__link {
  width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.social-icons__link svg { width: 17px; height: 17px; }
.social-icons__link:hover { color: var(--pine); border-color: var(--pine); transform: translateY(-2px); }
.social-icons--nav { margin-right: .2rem; }
.social-icons--nav .social-icons__link { width: 30px; height: 30px; }
.social-icons--nav .social-icons__link svg { width: 15px; height: 15px; }
.social-icons--footer { margin-top: 1.2rem; }
.social-icons--big .social-icons__link { width: 44px; height: 44px; }
.social-icons--big .social-icons__link svg { width: 22px; height: 22px; }

.muted-note { color: var(--muted); font-size: .95rem; }
.muted-note a { color: var(--pine); }

/* ── Card grids ────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card-grid--instruments { grid-template-columns: repeat(3, 1fr); }
.card-grid--videos { grid-template-columns: repeat(3, 1fr); }

/* ── Post (insight) card ───────────────────────────────── */
.post-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--pine); }
.post-card__img { aspect-ratio: 16/10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); margin-bottom: .6rem; }
.post-card__body h3 { color: var(--ink); margin-bottom: .5rem; }
.post-card__body p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.post-card__cta { margin-top: auto; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pine); }
.post-card__cta::after { content: ' →'; }

/* ── Instrument card ───────────────────────────────────── */
.instrument-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.instrument-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--pine); }
.instrument-card__img { aspect-ratio: 4/3; overflow: hidden; }
.instrument-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.instrument-card:hover .instrument-card__img img { transform: scale(1.05); }
.instrument-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.instrument-card__badge { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: .5rem; }
.instrument-card__body h3 { color: var(--ink); margin-bottom: .3rem; }
.instrument-card__specs { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; }
.instrument-card__body p { font-size: .9rem; color: var(--muted); }
.instrument-card__foot { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.instrument-card__price { font-family: var(--serif); font-size: 1.2rem; color: var(--pine); }

/* ── Video card ────────────────────────────────────────── */
.video-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--pine); }
.video-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface2); }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .82rem; text-align: center; padding: 1rem; }
.video-card__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(20,17,10,.66); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; padding-left: 3px; transition: background .2s, transform .2s; }
.video-card:hover .video-card__play { background: var(--pine); transform: translate(-50%,-50%) scale(1.08); }
.video-card__body { padding: 1.4rem 1.5rem; }
.video-card__body h3 { color: var(--ink); font-size: 1.1rem; margin-bottom: .4rem; }
.video-card__body p { font-size: .86rem; color: var(--muted); margin-bottom: .6rem; }
.video-card__meta { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); }

/* ── Piano of the week ─────────────────────────────────── */
.potw { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.potw__media { min-height: 320px; }
.potw__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.potw__body { padding: clamp(1.6rem,3vw,2.6rem); }
.potw__body h3 { color: var(--ink); font-size: clamp(1.5rem,2.6vw,2.1rem); margin-bottom: .3rem; }
.potw__specs { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.potw__foot { margin-top: 1.6rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }

/* ── Article (single insight) ──────────────────────────── */
.article { padding-top: 130px; }
.article__back { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--pine); margin-bottom: 1.4rem; }
.article__meta { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); margin-bottom: .8rem; }
.article h1 { margin-bottom: 1rem; }
.article__excerpt { margin-bottom: 1.6rem; }
.article__hero { border-radius: 18px; overflow: hidden; margin: 1.6rem 0 2.4rem; border: 1px solid var(--line); }
.article__hero img { width: 100%; display: block; }
.article__cta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }

/* ── Prose (article body) ──────────────────────────────── */
.prose { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); color: var(--ink); margin-top: 2.4rem; }
.prose h3 { font-size: 1.25rem; color: var(--ink); margin-top: 1.8rem; }
.prose a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .4rem; }
.prose img { border-radius: 12px; margin: 1.6rem 0; }
.prose blockquote { border-left: 3px solid var(--brass); padding-left: 1.2rem; color: var(--muted); font-style: italic; }

@media (max-width: 900px) {
  .card-grid, .card-grid--instruments, .card-grid--videos { grid-template-columns: 1fr 1fr; }
  .potw { grid-template-columns: 1fr; }
  .potw__media, .potw__media img { min-height: 240px; }
}
@media (max-width: 640px) {
  .card-grid, .card-grid--instruments, .card-grid--videos { grid-template-columns: 1fr; }
}

/* Inline MP4 player inside a video card */
.video-card__video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

/* Vimeo iframe inside a video card */
.video-card__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
