@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@400;500&display=swap");
:root {
  --ink: #121212;
  --cream: #f2eee6;
  --brass: #b79a63;
  --muted: #b8b3aa;
  --line: #393731;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font:
    16px/1.65 Inter,
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
blockquote,
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}
h1 {
  font-size: 64px;
  max-width: 650px;
  margin: 20px 0 28px;
}
h2 {
  font-size: 42px;
  margin: 12px 0 24px;
}
h3 {
  font-size: 29px;
  margin: 12px 0;
}
p {
  color: var(--muted);
  max-width: 550px;
  margin: 12px 0 24px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
header {
  height: 96px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 25px;
  letter-spacing: 0.04em;
}
.brand small {
  display: block;
  font:
    9px Inter,
    Arial;
  letter-spacing: 0.4em;
  margin-top: 8px;
}
nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
nav a[aria-current="page"] {
  color: var(--brass);
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  background: var(--brass);
  border: 1px solid var(--brass);
  color: #121212;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.button.outline {
  background: transparent;
  color: var(--cream);
  border-color: #777065;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero {
  padding: 100px 6%;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #121212 15%,
    #121212dc 35%,
    transparent 80%
  );
}
.hero > div {
  position: relative;
  z-index: 1;
  max-width: 530px;
}
.hero p {
  max-width: 340px;
}
.section {
  padding: 76px 6%;
  border-bottom: 1px solid var(--line);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tile {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.tile p {
  font-size: 14px;
}
.text-link {
  display: inline-block;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.04em;
  min-height: 44px;
  padding: 10px 0;
}
.photo {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.video {
  position: relative;
  display: block;
}
.video img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #f2eee6;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #12121280;
}
.caption {
  font-size: 13px;
  margin-top: 14px;
}
.review {
  text-align: center;
  max-width: 750px;
  margin: auto;
}
.review blockquote {
  font-size: 34px;
  margin: 20px 0;
}
.review p {
  margin: 18px auto;
}
.review .controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.controls button {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
}
.cta {
  text-align: center;
  background: #1a1917;
}
.cta p {
  margin: auto;
}
.cta .actions {
  justify-content: center;
}
footer {
  padding: 42px 6%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
footer p,
footer a {
  font-size: 12px;
}
footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 440px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
label {
  display: block;
  font-size: 12px;
  color: var(--cream);
}
input,
select,
textarea {
  width: 100%;
  display: block;
  margin-top: 8px;
  background: #1c1b19;
  color: var(--cream);
  border: 1px solid #625d53;
  border-radius: 0;
  padding: 12px;
  min-height: 48px;
  font-size: 16px;
}
textarea {
  min-height: 130px;
}
.full {
  grid-column: 1/-1;
}
.note {
  font-size: 12px;
  color: var(--muted);
}
.error {
  color: #f1ac9d;
  font-size: 13px;
}
.success {
  padding: 24px;
  border: 1px solid var(--brass);
}
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: #121212;
  padding: 28px;
  overflow: auto;
}
.menu-panel[hidden] {
  display: none;
}
.menu-panel .menu-head {
  display: flex;
  justify-content: space-between;
}
.menu-panel button {
  background: none;
  border: 0;
  color: var(--cream);
  min-width: 44px;
  min-height: 44px;
  font-size: 26px;
}
.menu-panel nav {
  display: flex;
  flex-direction: column;
  margin: 55px 0 30px;
  gap: 4px;
}
.menu-panel nav a {
  font:
    34px/1.65 "Cormorant Garamond",
    Georgia;
}
.menu-panel nav span {
  font: 11px Inter;
  color: var(--brass);
  margin-right: 24px;
}
details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  cursor: pointer;
}
.split-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}
.album {
  display: flex;
  gap: 26px;
  align-items: center;
}
.album img {
  width: 180px;
}
.demo-label {
  font: 11px Inter;
  color: var(--brass);
  letter-spacing: 0.1em;
}
.component-title {
  font: 12px Inter;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 28px;
}
.mobile-only {
  display: none;
}
@media (max-width: 600px) {
  header {
    height: 80px;
    padding: 0 24px;
  }
  .brand {
    font-size: 22px;
  }
  header nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    background: none;
    color: var(--cream);
    border: 1px solid var(--line);
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    font-size: 12px;
  }
  h1 {
    font-size: 43px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 27px;
  }
  .hero {
    padding: 310px 24px 48px;
    min-height: 650px;
    align-items: end;
  }
  .hero > img {
    width: 100%;
    height: 360px;
    object-position: 60% center;
  }
  .hero:after {
    background: linear-gradient(0deg, #121212 30%, transparent 75%);
  }
  .hero > div {
    max-width: 100%;
  }
  .hero p {
    max-width: 100%;
  }
  .section {
    padding: 48px 24px;
  }
  .grid,
  .two,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .two .photo {
    aspect-ratio: 1.2;
  }
  .review blockquote {
    font-size: 29px;
  }
  .split-title {
    display: block;
  }
  .actions {
    gap: 10px;
  }
  .button {
    padding: 12px 18px;
  }
  .hero .actions .button {
    flex: 1;
    font-size: 11px;
  }
  .tile {
    padding-top: 20px;
  }
  footer {
    padding: 36px 24px;
    display: block;
  }
  footer .links {
    margin-top: 24px;
  }
  .album {
    display: block;
  }
  .album img {
    width: 100%;
    max-width: 260px;
    margin-bottom: 20px;
  }
  .mobile-only {
    display: block;
  }
}
/* Revision 02: stronger desktop scale, photographic navigation, review rail. */
:root {
  --brass: #19bed2;
}
.review {
  max-width: none;
  text-align: left;
}
.review-section {
  background: #191c1d;
}
.review .split-title {
  margin-bottom: 28px;
}
.review-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.review-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  background: #24292b;
  border: 1px solid #394346;
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.quote-mark {
  font: 56px/0.7 Georgia;
  color: var(--brass);
}
.review-card blockquote {
  font-size: 19px;
  line-height: 1.4;
  margin: 18px 0 28px;
  flex: 1;
}
.review--compact .review-card blockquote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.review--grid .review-track {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: visible;
  scroll-snap-type: none;
}
.review--grid .review-card blockquote {
  font-size: 17px;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .review--grid .review-track {
    grid-template-columns: repeat(2, 1fr);
  }
}
.review-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #465054;
  padding-top: 20px;
}
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #344448;
  color: #75dce8;
  font-size: 17px;
  flex-shrink: 0;
}
.review-person strong {
  display: block;
  font:
    500 15px Inter,
    Arial;
}
.review-person span:not(.avatar) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.review-bottom p {
  margin: 0;
}
.review .controls {
  align-items: center;
  gap: 14px;
}
.review-position {
  font-size: 12px;
  color: var(--muted);
}
.review .review-top-controls {
  display: inline-flex;
  margin-bottom: 24px;
}
.controls button {
  border-color: #637479;
}
.feature-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #222;
}
.feature-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: transform 0.3s;
}
.feature-card:hover > img {
  transform: scale(1.035);
}
.feature-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #080e10 0%, #080e1080 50%, transparent);
}
.feature-card > div {
  position: relative;
  z-index: 1;
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.feature-card h3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.feature-card h3 span {
  font-family: Arial;
  color: var(--brass);
}
.feature-card p {
  margin: 0;
  color: #ddd;
}
.pathways .grid {
  gap: 20px;
}
.listen-section .two {
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.listen-section .two > div:last-child {
  border-left: 3px solid var(--brass);
  padding-left: 32px;
}
.cta {
  background: #173036;
}
@media (min-width: 601px) {
  body {
    font-size: 19px;
  }
  h1 {
    font-size: 76px;
  }
  h2 {
    font-size: 54px;
  }
  h3 {
    font-size: 36px;
  }
  .hero {
    padding-block: 76px;
    min-height: 600px;
  }
  .hero > div {
    max-width: 660px;
  }
  .hero p {
    max-width: 420px;
  }
  .hero > img {
    width: 78%;
  }
  .section {
    padding-block: 56px;
  }
  .eyebrow {
    font-size: 13px;
  }
  .text-link {
    font-size: 15px;
  }
  .button {
    font-size: 15px;
    padding: 14px 24px;
  }
  .tile {
    background: #1b2021;
    border-top: 2px solid #36565c;
    padding: 28px;
  }
  .tile p {
    font-size: 18px;
  }
  .grid {
    gap: 24px;
  }
  nav {
    font-size: 14px;
    gap: 22px;
  }
  .brand {
    font-size: 29px;
  }
  .caption {
    font-size: 16px;
  }
  .listen-section h3 {
    font-size: 55px;
  }
  .note {
    font-size: 13px;
  }
  footer a,
  footer p {
    font-size: 14px;
  }
  label {
    font-size: 15px;
  }
  .feature-card h3 {
    font-size: 39px;
  }
  .feature-card p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .review-card {
    flex-basis: 100%;
    padding: 24px;
  }
  .review-card blockquote {
    font-size: 18px;
  }
  .review-bottom {
    align-items: start;
    flex-direction: column;
  }
  .review-bottom .controls {
    align-self: flex-end;
  }
  .feature-card,
  .feature-card > div {
    min-height: 260px;
  }
  .feature-card h3 {
    font-size: 27px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .listen-section .two {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .listen-section .two > div:last-child {
    padding-left: 22px;
  }
  .review .split-title .text-link {
    margin-bottom: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feature-card > img {
    transition: none;
  }
}
.yelp-concept-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}
.review-person > div {
  min-width: 0;
}
.review-person .yelp-concept-logo {
  align-self: center;
}
@media (max-width: 600px) {
  .yelp-concept-logo {
    width: 56px;
  }
}
/* Production brand and interaction system */
:root {
  --ink: #10161e;
  --cream: #f2eee6;
  --brass: #19bed2;
  --muted: #b7c1cc;
  --line: #303c49;
}
body {
  background: var(--ink);
}
header {
  background: #10161ef5;
  position: relative;
  z-index: 5;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.monogram {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.08em;
}
.brand-name {
  font:
    12px/1.4 Inter,
    Arial,
    sans-serif;
  letter-spacing: 0.16em;
}
.brand small {
  font-size: 10px;
  letter-spacing: 0.25em;
  margin: 5px 0 0 15px;
  color: var(--muted);
}
.hero:after {
  background: linear-gradient(90deg, #10161e 8%, #10161ee6 32%, #10161e22 85%);
}
.hero {
  min-height: 660px;
}
.hero > div {
  max-width: 680px;
}
.hero h1 {
  max-width: 680px;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.social-links a {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #75829266;
  color: #f2eee6;
  font-size: 14px;
}
.social-links a:hover {
  color: #5de4f2;
  border-color: var(--brass);
}
.social-links svg {
  flex-shrink: 0;
}
.button {
  border-radius: 5px;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: #56deeb;
  transform: translateY(-2px);
  box-shadow: 0 7px 28px #19bed224;
}
.button.outline:hover {
  background: #19bed218;
  border-color: var(--brass);
  color: #6be7f2;
}
.button:active {
  transform: translateY(0);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #64e8f5;
  outline-offset: 5px;
}
nav a {
  position: relative;
  font-size: 14px;
  transition: color 0.2s;
}
nav a:hover,
.text-link:hover {
  color: #64e8f5;
}
.feature-card {
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--brass);
}
.feature-card img {
  transition: filter 0.25s;
}
.feature-card:hover img {
  filter: brightness(1.12);
}
.tile,
.cta {
  background: #141e29;
}
.tile {
  border-color: var(--line);
}
.eyebrow {
  font-size: 12px;
}
.note,
label,
.text-link,
footer a {
  font-size: 14px;
}
input,
select,
textarea {
  background: #141e29;
  border-color: #506171;
  border-radius: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--brass);
  border-color: var(--brass);
}
[hidden] {
  display: none !important;
}
.biography {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.biography p {
  max-width: none;
  margin-top: 0;
  margin-bottom: 28px;
}
.biography .photo {
  margin-top: 22px;
  aspect-ratio: 1/1;
}
.copy-inquiry {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--brass);
}
footer {
  flex-wrap: wrap;
}
footer > .social-links {
  width: 100%;
  margin: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--brass);
  color: var(--ink);
  padding: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.menu-panel {
  background: var(--ink);
}
.menu-open {
  overflow: hidden;
}
.review-card {
  background: #141e29 !important;
}
.controls button:hover {
  background: #19bed222;
  border-color: var(--brass);
}
@media (max-width: 1000px) {
  header nav {
    gap: 15px;
  }
  .brand {
    gap: 12px;
  }
  .brand-name {
    font-size: 11px;
  }
  .biography {
    gap: 32px;
  }
  .hero h1 {
    font-size: 64px;
  }
}
@media (max-width: 800px) {
  header nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    background: none;
    color: var(--cream);
    border: 1px solid var(--line);
    padding: 10px 15px;
    min-height: 44px;
  }
  .two,
  .biography {
    grid-template-columns: 1fr;
  }
  .biography .photo {
    max-height: 380px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero {
    min-height: 620px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero {
    padding: 65px 24px;
    min-height: 620px;
  }
  .hero > img {
    width: 100%;
  }
  .hero:after {
    background:
      linear-gradient(90deg, #10161eee, #10161e70),
      linear-gradient(0deg, #10161e, transparent);
  }
  .social-links {
    gap: 8px;
  }
  .social-links a {
    font-size: 12px;
    padding: 10px;
  }
  .brand-name {
    font-size: 11px;
  }
  .monogram {
    font-size: 38px;
  }
  .biography {
    gap: 28px;
  }
  .hero p {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
/* Sandbox revision: photo session hero, open monogram and compact page layouts. */
.brand {
  gap: 22px;
}
.monogram {
  display: inline-flex;
  gap: 5px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0;
  color: #f2eee6;
}
.monogram span {
  display: block;
}
.brand-name {
  font-size: 14px;
  letter-spacing: 0.15em;
}
.brand small {
  font-size: 11px;
  margin-top: 7px;
  letter-spacing: 0.25em;
}
.brand:hover .monogram {
  color: var(--brass);
}
.home-hero {
  min-height: 690px;
}
.home-hero > img {
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  object-position: center;
}
.home-hero:after {
  background: linear-gradient(
    90deg,
    #10161e 0%,
    #10161ef5 24%,
    #10161ec4 42%,
    #10161e16 68%,
    transparent 100%
  );
}
.home-hero > div {
  max-width: 570px;
}
.home-hero h1 {
  font-size: 68px;
  max-width: 570px;
}
.home-hero p {
  max-width: 365px;
}
.site-credit {
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.site-credit a {
  color: var(--cream);
}
.site-credit a:hover {
  color: var(--brass);
}
.review-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.yelp-brand {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 44px;
}
.yelp-brand span {
  font:
    700 28px/1 Arial,
    sans-serif;
  letter-spacing: -1px;
  color: #fff;
}
.yelp-brand img {
  width: 25px;
  height: 30px;
}
.yelp-brand:hover {
  opacity: 0.8;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.contact-intro h1 {
  font-size: 58px;
  line-height: 1.05;
  margin: 18px 0 24px;
}
.contact-intro > p {
  max-width: 440px;
}
.contact-details {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.contact-details .photo {
  height: 200px;
  aspect-ratio: auto;
  object-position: center 55%;
  margin-top: 8px;
}
.contact-layout form {
  padding: 30px;
  background: #141e29;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-layout form .note {
  font-size: 13px;
}
.contact-layout .form-grid {
  gap: 20px;
}
.music-library {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.performance-list {
  display: grid;
  gap: 18px;
}
.performance-list article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.performance-list .caption {
  margin: 0;
  font-size: 15px;
}
.performance-list .play {
  width: 38px;
  height: 38px;
  font-size: 14px;
}
.recording-module {
  padding: 32px;
  border: 1px solid var(--line);
  background: #141e29;
  border-radius: 8px;
}
.recording-module .album {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.recording-module .album img {
  width: 210px;
  max-width: 100%;
  margin: 0;
}
.recording-module h2 {
  font-size: 44px;
  margin-bottom: 12px;
}
.recording-module p {
  font-size: 17px;
}
.music-library h2 {
  margin-top: 12px;
}
@media (max-width: 1000px) {
  .brand {
    gap: 16px;
  }
  .brand-name {
    font-size: 12px;
  }
  .monogram {
    font-size: 42px;
  }
  .home-hero h1 {
    font-size: 58px;
    max-width: 470px;
  }
  .music-library,
  .contact-layout {
    gap: 32px;
  }
  .performance-list article {
    grid-template-columns: 160px 1fr;
    gap: 16px;
  }
  .contact-layout form {
    padding: 22px;
  }
  .contact-intro h1 {
    font-size: 50px;
  }
}
@media (max-width: 800px) {
  .music-library,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-intro h1 {
    max-width: 600px;
  }
  .contact-details .photo {
    height: 230px;
  }
  .recording-module .album {
    flex-direction: row;
    align-items: center;
  }
  .recording-module .album img {
    width: 180px;
  }
  .home-hero h1 {
    font-size: 52px;
    max-width: 430px;
  }
}
@media (max-width: 600px) {
  header .brand {
    gap: 16px;
  }
  .monogram {
    font-size: 36px;
    gap: 4px;
  }
  .brand-name {
    font-size: 11px;
  }
  .brand small {
    font-size: 10px;
    margin-left: 12px;
  }
  .home-hero {
    padding: 340px 24px 44px;
    min-height: 0;
  }
  .home-hero > img {
    width: 100%;
    height: 370px;
    object-position: 48% center;
  }
  .home-hero:after {
    background: linear-gradient(0deg, #10161e 0%, #10161e 40%, transparent 72%);
  }
  .home-hero h1 {
    font-size: 43px;
  }
  .home-hero > div {
    max-width: 100%;
  }
  .home-hero .social-links {
    margin-top: 24px;
  }
  .site-credit {
    margin-top: 24px;
  }
  .contact-intro h1 {
    font-size: 43px;
  }
  .contact-layout form {
    padding: 20px;
  }
  .performance-list article {
    grid-template-columns: 140px 1fr;
    gap: 16px;
  }
  .performance-list .caption {
    font-size: 14px;
  }
  .recording-module {
    padding: 24px;
  }
  .recording-module .album {
    flex-direction: column;
    align-items: start;
  }
  .recording-module .album img {
    width: 180px;
  }
}
/* Sandbox revision: original monogram, blue monochrome hero treatment, aligned recordings. */
.monogram {
  display: block;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.08em;
}
.brand {
  gap: 26px;
}
.brand-name {
  font-size: 14px;
}
.brand small {
  font-size: 11px;
}
.duotone-hero {
  isolation: isolate;
  background: #10161e;
}
.duotone-hero > img {
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: luminosity;
}
.duotone-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #19bed2;
  mix-blend-mode: color;
  opacity: 0.28;
  pointer-events: none;
}
.duotone-hero:after {
  pointer-events: none;
}
.duotone-hero > div {
  z-index: 1;
}
.lessons-hero > img {
  width: 70%;
  height: 100%;
  object-position: 48% center;
}
.lessons-hero:after {
  background: linear-gradient(
    90deg,
    #10161e 1%,
    #10161ef5 24%,
    #10161ec4 38%,
    #10161e16 60%,
    transparent 100%
  );
}
.music-library {
  align-items: stretch;
}
.recording-module {
  padding: 0 0 0 40px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.recording-module h2 {
  font-size: 54px;
  margin: 12px 0 24px;
}
.recording-content {
  padding: 26px;
  background: #141e29;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.recording-content > img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}
.recording-content p {
  margin: 22px 0;
  font-size: 17px;
}
@media (max-width: 1000px) {
  .monogram {
    font-size: 52px;
  }
  .brand {
    gap: 22px;
  }
  .brand-name {
    font-size: 12px;
  }
  .recording-module {
    padding-left: 28px;
  }
}
@media (max-width: 800px) {
  .recording-module {
    padding: 0;
    border: 0;
  }
  .recording-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px 26px;
    align-items: center;
  }
  .recording-content > img {
    grid-row: 1/3;
    width: 180px;
  }
  .recording-content p {
    margin: 0;
  }
  .recording-content .button {
    justify-self: start;
    align-self: start;
  }
}
@media (max-width: 600px) {
  .monogram {
    font-size: 46px;
  }
  .brand,
  header .brand {
    gap: 22px;
  }
  .brand-name {
    font-size: 11px;
  }
  .brand small {
    font-size: 10px;
  }
  .lessons-hero {
    padding: 340px 24px 44px;
    min-height: 0;
  }
  .lessons-hero > img {
    width: 100%;
    height: 370px;
    object-position: 48% center;
  }
  .lessons-hero:after {
    background: linear-gradient(0deg, #10161e 0%, #10161e 40%, transparent 72%);
  }
  .recording-module h2 {
    font-size: 34px;
  }
  .recording-content {
    display: block;
  }
  .recording-content p {
    margin: 22px 0;
  }
  .recording-content > img {
    width: 210px;
  }
}
/* Supplied blue hero artwork with a soft veil and subtle film grain. */
.home-hero > img {
  filter: contrast(0.94) brightness(0.94);
  mix-blend-mode: normal;
}
.home-hero.duotone-hero:before {
  z-index: 1;
  background:
    linear-gradient(#10161e14, #10161e14),
    url("assets/hero-grain.svg") repeat;
  mix-blend-mode: normal;
  opacity: 0.3;
}
.home-hero > img {
  z-index: 0;
}
.home-hero:after {
  z-index: 2;
}
.home-hero > div {
  z-index: 3;
}

/* About hero: preserve the portrait on desktop and use its negative space intentionally. */
.about-hero {
  min-height: 480px;
  padding-block: 48px;
  background: #10161e;
}
.about-hero > img {
  right: 3%;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.72) contrast(1.03) brightness(1.1);
  mix-blend-mode: normal;
  z-index: 0;
}
.about-hero.duotone-hero:before {
  z-index: 1;
  background-image:
    url("assets/hero-grain.svg"), linear-gradient(#19bed20d, #19bed20d);
  background-repeat: repeat, no-repeat;
  background-size:
    180px 180px,
    cover;
  background-blend-mode: soft-light, normal;
  mix-blend-mode: normal;
  opacity: 0.13;
}
.about-hero:after {
  z-index: 2;
  background: linear-gradient(
    90deg,
    #10161e 0%,
    #10161eeb 30%,
    #10161e85 46%,
    #10161e1f 68%,
    transparent 88%
  );
}
.about-hero > div {
  z-index: 3;
}

@media (max-width: 800px) {
  .about-hero > img {
    right: 0;
    width: 60%;
  }
  .about-hero:after {
    background: linear-gradient(
      90deg,
      #10161e 0%,
      #10161ef5 40%,
      #10161e61 78%,
      transparent
    );
  }
}
@media (max-width: 600px) {
  .about-hero {
    padding: 370px 24px 48px;
    min-height: 680px;
    align-items: end;
  }
  .about-hero > img {
    top: 0;
    right: 0;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: 50% 28%;
  }
  .about-hero:after {
    background: linear-gradient(
      0deg,
      #10161e 31%,
      #10161ed1 48%,
      transparent 76%
    );
  }
}

/* Lessons: classroom context with a supporting performance detail. */
.lesson-approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "copy photos" "demo video";
  gap: 28px 70px;
  align-items: start;
  background: #141e29;
}
.approach-copy {
  grid-area: copy;
  min-width: 0;
}
.lesson-photo-story {
  grid-area: photos;
  position: relative;
  min-height: 430px;
  padding: 0 0 54px 54px;
}
.lesson-photo-story:before {
  content: "";
  position: absolute;
  inset: 22px 22px 32px 22px;
  border: 1px solid #19bed24d;
  pointer-events: none;
}
.lesson-photo-story img {
  display: block;
  object-fit: cover;
  filter: grayscale(0.75) saturate(0.65) contrast(1.04);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.lesson-photo-main {
  width: 100%;
  height: 360px;
  object-position: center;
}
.lesson-photo-inset {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 175px;
  object-position: center;
  border: 7px solid #10161e;
  box-shadow: 0 18px 40px #0008;
}
.lesson-photo-story:hover img {
  filter: grayscale(0.35) saturate(0.8) contrast(1.02);
}
.lesson-photo-story:hover .lesson-photo-inset {
  transform: translateY(-3px);
}

.lesson-demo-inline {
  grid-area: demo;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.lesson-demo-inline h3 {
  margin: 8px 0;
  font-size: 30px;
}
.lesson-demo-inline p {
  max-width: 380px;
  margin: 0 0 14px;
  font-size: 15px;
}
.lesson-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  width: min(420px, 100%);
  margin-top: 12px;
  border: 1px solid #3b5961;
  overflow: hidden;
  background: #0b1016;
}
.lesson-approach-section > .lesson-video-thumb {
  grid-area: video;
  width: min(380px, calc(100% - 54px));
  margin: 0 0 0 54px;
  align-self: start;
}
.lesson-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.76) saturate(0.7);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.lesson-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #f2eee6;
  border-radius: 50%;
  background: #10161eb8;
  color: #f2eee6;
  font-size: 20px;
  padding-left: 3px;
}
.lesson-video-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 7px 11px;
  background: #10161ed9;
  border: 1px solid #65747b;
  color: #f2eee6;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lesson-video-thumb:hover img {
  filter: brightness(0.95) saturate(0.9);
  transform: scale(1.02);
}

@media (max-width: 800px) {
  .lesson-approach-section {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "photos" "demo" "video";
    gap: 28px;
  }
  .lesson-photo-story {
    width: 100%;
    max-width: 680px;
    min-height: 430px;
    margin-inline: auto;
  }
  .lesson-approach-section > .lesson-video-thumb {
    width: min(420px, 100%);
    margin: 0;
  }
}
@media (max-width: 600px) {
  .lesson-photo-story {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 0;
  }
  .lesson-photo-story:before {
    display: none;
  }
  .lesson-photo-main,
  .lesson-photo-inset {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: 0;
    box-shadow: none;
  }
  .lesson-photo-story img {
    filter: grayscale(0.6) saturate(0.7);
  }
}

/* Keep the secondary page heroes compact on desktop while preserving mobile crops. */
@media (min-width: 601px) {
  .compact-hero {
    min-height: 480px;
    padding-block: 48px;
  }
  .compact-hero > img {
    height: 100%;
    object-fit: cover;
  }
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-field input {
  width: auto;
  min-height: auto;
  padding: 0;
  margin-top: 3px;
  flex-shrink: 0;
}
.checkbox-field span {
  color: var(--cream);
}

/* Spam-trap field: present for bots, invisible and unreachable for real visitors. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Legal pages: dense, document-style content rather than editorial hero sections. */
.legal-page {
  max-width: 720px;
}
.legal-page h1 {
  font-size: 48px;
  margin: 12px 0 8px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 10px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
}
.legal-page > .note {
  margin-bottom: 28px;
}
@media (min-width: 601px) {
  .legal-page h1 {
    font-size: 52px;
  }
  .legal-page h2 {
    font-size: 24px;
  }
}
