:root {
  --ink: #141210;
  --ink-soft: #3f3a34;
  --muted: #7a7369;
  --paper: #f7f6f3;
  --paper-2: #efeee9;
  --surface: #fffefb;
  --line: #e6e2da;
  --gold: #b8954c;
  --gold-deep: #8f6f2e;
  --gold-soft: #d9c49a;
  --dark: #0e0d0c;
  --dark-2: #1a1815;
  --white: #fffefb;
  --danger: #9b2c2c;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --shadow: 0 24px 64px rgba(14, 13, 12, 0.09);
  --shadow-soft: 0 10px 36px rgba(14, 13, 12, 0.06);
  --container: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Vazirmatn", Tahoma, sans-serif;
  --space-section: clamp(3.75rem, 8vw, 6.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 100% -8%, rgba(184, 149, 76, 0.1), transparent 52%),
    radial-gradient(ellipse 55% 40% at -5% 95%, rgba(184, 149, 76, 0.06), transparent 48%),
    linear-gradient(180deg, #faf9f6 0%, var(--paper) 40%, #f2f0eb 100%);
  line-height: 1.85;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

button,
.btn,
select,
summary,
.nav-toggle {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.15rem);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 740px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1rem;
  z-index: 1000;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 0.95rem;
  text-transform: none;
}

.eyebrow.gold {
  color: var(--gold-soft);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 34rem;
  font-weight: 400;
}

.prose {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.prose.light,
.section-dark .prose {
  color: rgba(255, 254, 251, 0.82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(166, 124, 61, 0.35);
  padding-bottom: 1px;
}

.text-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 50px;
  padding: 0.8rem 1.55rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white) !important;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 149, 76, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink);
  box-shadow: none;
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 1.05rem;
  font-size: 0.875rem;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  width: 100%;
  z-index: 80;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
  padding: 0.65rem 0 0;
  background: transparent;
}

.site-header.is-scrolled {
  padding-top: 0.45rem;
}

.page-home .hero {
  min-height: min(100svh, 900px);
  align-items: center;
}

/* Inner pages without page-hero still clear the fixed navbar */
body:not(.page-home) main:not(:has(.page-hero)) {
  padding-top: var(--header-h);
}

.header-inner {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.85rem 0.45rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 251, 0.7);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled .header-inner {
  border-color: rgba(230, 226, 218, 0.95);
  background: rgba(255, 254, 251, 0.94);
  box-shadow: 0 12px 40px rgba(14, 13, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  min-width: 0;
  z-index: 2;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(166, 124, 61, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
  margin-inline-start: auto;
}

.nav-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid transparent;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-icon:hover {
  color: var(--ink);
  background: rgba(18, 16, 14, 0.04);
  border-color: var(--line);
}

.header-cta {
  border-radius: 999px;
  padding-inline: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-sheet-head,
.nav-sheet-foot,
.nav-i {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(18, 16, 14, 0.04);
}

.nav-links a.is-active {
  color: var(--ink);
  background: rgba(166, 124, 61, 0.12);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, width 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Desktop: links between brand and actions */
@media (min-width: 1101px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .site-nav {
    justify-content: center;
  }

  .header-actions .header-cta {
    display: inline-flex;
  }

  .header-actions .nav-icon {
    display: grid;
  }
}

/* —— Mobile: full-screen elegant sheet —— */
@media (max-width: 1100px) {
  .site-header {
    padding: 0.55rem 0 0;
  }

  .header-inner {
    border-radius: 18px;
  }

  .header-actions {
    position: relative;
    z-index: 520;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: block;
    width: 100%;
    height: 100%;
    height: 100dvh;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(ellipse 80% 50% at 100% 0%, rgba(184, 149, 76, 0.18), transparent 55%),
      radial-gradient(ellipse 60% 40% at 0% 100%, rgba(184, 149, 76, 0.08), transparent 50%),
      linear-gradient(165deg, #161410 0%, var(--dark) 45%, #12100e 100%);
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .site-nav.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .nav-panel {
    width: min(100% - 2rem, 420px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    padding:
      calc(var(--header-h) + 0.75rem)
      0.25rem
      max(1.5rem, env(safe-area-inset-bottom));
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-sheet-head {
    display: block;
    margin-bottom: 1.75rem;
    padding-inline: 0.35rem;
  }

  .nav-sheet-kicker {
    margin: 0 0 0.35rem;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .nav-sheet-title {
    margin: 0;
    color: #fffefb;
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    flex: 1;
  }

  .nav-i {
    display: inline-block;
    min-width: 1.75rem;
    color: rgba(217, 196, 154, 0.55);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s var(--ease);
  }

  .nav-t {
    display: block;
  }

  .nav-links a {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: rgba(255, 254, 251, 0.88);
    padding: 0.72rem 0.5rem;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateY(12px);
    transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  }

  .site-nav.is-open .nav-links a {
    animation: nav-item-in 0.5s var(--ease) forwards;
  }

  .site-nav.is-open .nav-links a:nth-child(1) { animation-delay: 0.04s; }
  .site-nav.is-open .nav-links a:nth-child(2) { animation-delay: 0.08s; }
  .site-nav.is-open .nav-links a:nth-child(3) { animation-delay: 0.12s; }
  .site-nav.is-open .nav-links a:nth-child(4) { animation-delay: 0.16s; }
  .site-nav.is-open .nav-links a:nth-child(5) { animation-delay: 0.2s; }
  .site-nav.is-open .nav-links a:nth-child(6) { animation-delay: 0.24s; }
  .site-nav.is-open .nav-links a:nth-child(7) { animation-delay: 0.28s; }
  .site-nav.is-open .nav-links a:nth-child(8) { animation-delay: 0.32s; }

  @keyframes nav-item-in {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #fff;
    background: transparent;
  }

  .nav-links a:hover .nav-i,
  .nav-links a.is-active .nav-i {
    color: var(--gold);
  }

  .nav-links a.is-active {
    color: #fff;
    background: transparent;
    font-weight: 700;
    box-shadow: none;
    border-bottom-color: rgba(184, 149, 76, 0.35);
  }

  .nav-links a.is-active .nav-t {
    background: linear-gradient(90deg, rgba(184, 149, 76, 0.2), transparent 70%);
    box-decoration-break: clone;
  }

  .nav-sheet-foot {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    padding-inline: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
  }

  .site-nav.is-open .nav-sheet-foot {
    animation: nav-item-in 0.5s var(--ease) 0.38s forwards;
  }

  .nav-sheet-cta {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    background: var(--gold);
    border-color: var(--gold);
    color: #141210 !important;
    font-weight: 700;
  }

  .nav-sheet-cta:hover {
    background: var(--gold-soft);
    border-color: var(--gold-soft);
  }

  .nav-sheet-meta {
    display: grid;
    gap: 0.2rem;
    text-align: center;
    color: rgba(255, 254, 251, 0.45);
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .nav-sheet-meta a {
    color: rgba(255, 254, 251, 0.72);
    font-weight: 600;
    font-size: 0.92rem;
  }

  .nav-sheet-meta a:hover {
    color: var(--gold-soft);
  }

  .brand-text strong {
    font-size: 0.84rem;
    max-width: 42vw;
  }

  /* Toggle stays readable on dark sheet */
  body.nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  body.nav-open .nav-toggle span:not(.sr-only) {
    background: #fff;
  }

  body.nav-open .header-inner {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  body.nav-open .brand,
  body.nav-open .brand-text small,
  body.nav-open .nav-icon {
    color: rgba(255, 254, 251, 0.9);
  }

  body.nav-open .brand-mark {
    color: var(--gold-soft);
    background: rgba(255, 255, 255, 0.08);
  }

  body.nav-open .mobile-cta,
  body.nav-open .wa-float,
  body.nav-open .nav-icon {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .site-header {
    z-index: 510;
  }
}

@media (max-width: 480px) {
  .brand-text small {
    display: none;
  }

  .header-inner {
    padding-inline: 0.65rem;
    min-height: 58px;
  }

  .nav-panel {
    width: min(100% - 1.5rem, 420px);
    padding-top: calc(var(--header-h) + 0.35rem);
  }

  .nav-links a {
    font-size: 1.28rem;
    padding-block: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav.is-open .nav-links a,
  .site-nav.is-open .nav-sheet-foot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  min-height: min(94vh, 900px);
  min-height: min(94svh, 900px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.hero-fallback {
  background:
    radial-gradient(circle at 72% 18%, rgba(184, 149, 76, 0.32), transparent 42%),
    linear-gradient(155deg, #1c1916 0%, #0e0d0c 55%, #161310 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.05) brightness(0.86);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 7s var(--ease);
  z-index: 0;
}

.hero-slider img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0.45) 0%, rgba(14, 13, 12, 0.55) 42%, rgba(14, 13, 12, 0.82) 100%),
    linear-gradient(90deg, rgba(14, 13, 12, 0.58) 0%, transparent 58%),
    radial-gradient(circle at 88% 12%, rgba(184, 149, 76, 0.18), transparent 40%);
}

.hero-dots {
  position: absolute;
  inset-inline-end: clamp(0.85rem, 2vw, 1.35rem);
  bottom: clamp(1.25rem, 3vw, 1.75rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), height 0.25s var(--ease);
}

.hero-dots button.is-active {
  background: var(--gold-soft);
  height: 22px;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  margin-top: calc(var(--header-h) * -0.15);
  padding:
    calc(var(--header-h) + clamp(0.5rem, 2vw, 1.25rem))
    0
    clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: min(100%, 36rem);
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-soft);
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  letter-spacing: 0.18em;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
}

.hero-copy .eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}

.hero-copy h1 {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(2rem, 6.2vw, 4.1rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  max-width: 14ch;
}

.hero .lead {
  color: rgba(255, 254, 251, 0.78);
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  line-height: 1.75;
  max-width: 28rem;
  margin: 0;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1.35rem, 3vw, 2.1rem);
}

.hero .btn {
  min-height: 52px;
  padding-inline: 1.45rem;
  font-size: 0.95rem;
  animation: hero-rise 0.9s var(--ease) both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero .btn:nth-child(2) {
  animation-delay: 0.08s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero .btn-ghost {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.hero .btn-ghost:hover {
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white);
}

.page-hero {
  padding: calc(var(--header-h) + clamp(2.75rem, 6vw, 4.25rem)) 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(184, 149, 76, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 254, 251, 0.8), transparent);
}

.section {
  padding: var(--space-section) 0;
}

.section-muted {
  background: rgba(255, 254, 251, 0.7);
  border-block: 1px solid var(--line);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 149, 76, 0.16), transparent 36%),
    linear-gradient(165deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2.1rem;
}

.instrument-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.instrument-item {
  background: var(--surface);
  padding: 1.6rem 1.35rem 1.4rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  color: inherit;
}

.instrument-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(184, 149, 76, 0.35);
  color: inherit;
  z-index: 1;
}

.instrument-index {
  font-size: 0.75rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.instrument-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.instrument-meta {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.teacher-grid-lg {
  grid-template-columns: repeat(2, 1fr);
}

.teacher-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
  color: inherit;
}

.teacher-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
}

.teacher-photo {
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.teacher-card:hover .teacher-photo img {
  transform: scale(1.05);
  filter: grayscale(0.05);
}

.teacher-photo.large {
  width: min(100%, 320px);
  aspect-ratio: 4/5;
}

.photo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(166, 124, 61, 0.25), transparent 50%),
    linear-gradient(145deg, #1a1612, #2e2820);
  color: var(--gold-soft);
  font-size: 1.8rem;
  font-weight: 700;
}

.teacher-info h2,
.teacher-info h3 {
  margin-bottom: 0.2rem;
  font-size: 1.12rem;
}

.teacher-info p,
.meta {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

.teacher-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.25rem;
  align-items: end;
}

.reason-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.reason-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reason-list strong {
  font-size: 1.18rem;
  color: var(--gold-soft);
}

.reason-list span {
  color: rgba(255, 254, 251, 0.7);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}

.gallery-thumb,
.gallery-item {
  overflow: hidden;
  background: var(--dark);
  margin: 0;
  border-radius: var(--radius-sm);
}

.gallery-thumb img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: grayscale(0.25);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.gallery-thumb:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item figcaption {
  padding: 0.75rem 0.15rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.course-card {
  display: block;
  padding: 1.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  color: inherit;
}

.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.course-card h2 {
  font-size: 1.32rem;
}

.course-card p {
  color: var(--ink-soft);
}

.course-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.84rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

a.chip:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-bar label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.filter-bar select,
.field-input,
.form-stack input,
.form-stack textarea,
.form-stack select {
  width: 100%;
  min-width: 180px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-stack input:focus,
.form-stack textarea:focus,
.form-stack select:focus,
.filter-bar select:focus,
.field-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 76, 0.18);
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-panel {
  padding: 1.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-stack label {
  display: grid;
  gap: 0.4rem;
}

.form-stack label span {
  font-size: 0.9rem;
  font-weight: 600;
}

.has-error .field-input,
.has-error input,
.has-error textarea {
  border-color: var(--danger);
}

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  font-style: normal;
}

.form-errors {
  padding: 0.75rem 1rem;
  background: #fdecec;
  border: 1px solid #f5c2c2;
  color: var(--danger);
  font-size: 0.9rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.2rem 1.15rem;
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq-item[open] {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 0 1rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-info,
.contact-form {
  padding: 1.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.cta-box,
.section-cta .cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 0% 50%, rgba(184, 149, 76, 0.1), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: 2rem;
  padding: 3.75rem 0 6.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(166, 124, 61, 0.12), transparent 30%),
    var(--dark);
  color: rgba(255, 254, 251, 0.76);
}

.footer-brand {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  color: var(--gold-soft);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.mobile-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  background: rgba(11, 10, 9, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.mobile-cta a {
  text-align: center;
  padding: 0.92rem 0.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.mobile-cta a.primary {
  background: var(--gold);
  color: var(--white);
}

.empty-state {
  text-align: center;
  padding: 3.5rem 1rem;
}

.flash-wrap {
  width: min(100% - 2rem, var(--container));
  margin: 1rem auto 0;
}

body:not(.page-home) main > .flash-wrap:first-child {
  margin-top: calc(var(--header-h) + 0.5rem);
}

.flash {
  background: #eaf6ec;
  border: 1px solid #b7dfbf;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
}

.flash-error {
  background: #fdecec;
  border-color: #f5c2c2;
  color: #9b2c2c;
}

.flash-success {
  background: #eaf6ec;
  border-color: #b7dfbf;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--d, 0) * 45ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .instrument-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .gallery-grid,
  .course-grid,
  .footer-grid,
  .contact-layout,
  .teacher-detail,
  .teacher-grid-lg {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-head,
  .cta-box {
    flex-direction: column;
    align-items: start;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 66px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: center;
  }

  .hero-content {
    width: min(100% - 1.5rem, var(--container));
    margin-top: -1.5rem;
    padding:
      calc(var(--header-h) + 0.25rem)
      0
      calc(3.25rem + env(safe-area-inset-bottom, 0px));
    align-items: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    max-width: 12ch;
  }

  .hero .lead {
    font-size: 1.02rem;
    max-width: 32ch;
  }

  .hero-dots {
    flex-direction: row;
    inset-inline: 0;
    inset-inline-end: auto;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    gap: 0.4rem;
  }

  .hero-dots button.is-active {
    width: 22px;
    height: 8px;
  }

  .hero-scroll {
    display: none;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .teacher-grid,
  .teacher-grid-lg {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .teacher-card,
  .teacher-grid-lg .teacher-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .teacher-photo {
    aspect-ratio: 16 / 11;
    border-radius: 0;
  }

  .teacher-info {
    min-width: 0;
    padding: 1.05rem 1.1rem 1.2rem;
  }

  .teacher-info h2,
  .teacher-info h3 {
    font-size: 1.18rem;
  }

  .teacher-info .meta {
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 0.35rem;
  }

  .teacher-info p:not(.meta) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .instrument-grid,
  .gallery-strip,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .teacher-photo {
    aspect-ratio: 5 / 4;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .hero-copy .eyebrow {
    letter-spacing: 0.14em;
  }

  .hero-copy .eyebrow::before {
    width: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img,
  .hero-media video,
  .hero .btn {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* —— Continuations: breadcrumbs, about, detail, map, lightbox —— */

.breadcrumbs {
  margin-bottom: 1.25rem;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--line);
}

.breadcrumbs a:hover {
  color: var(--gold-deep);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink-soft);
}

.about-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.stat-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-item {
  background: var(--surface);
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 0.25rem;
}

.stat-item strong {
  font-size: 1.45rem;
  color: var(--gold-deep);
}

.stat-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.founder-photo {
  margin: 0;
  overflow: hidden;
  background: #111;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
}

.founder-photo figcaption {
  margin-top: 0.75rem;
  color: rgba(255, 254, 251, 0.72);
  font-size: 0.9rem;
}

.timeline {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.timeline li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.3rem;
}

.timeline strong {
  font-size: 1.1rem;
}

.timeline span {
  color: var(--ink-soft);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.info-panel {
  margin: 1.75rem 0 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
}

.info-panel > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.info-panel > div:last-child {
  border-bottom: 0;
}

.info-panel strong {
  color: var(--muted);
  font-weight: 600;
}

.side-teachers {
  display: grid;
  gap: 0.75rem;
}

.side-teacher {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  transition: border-color 0.2s var(--ease);
}

.side-teacher:hover {
  border-color: var(--gold-soft);
  color: inherit;
}

.side-teacher strong {
  display: block;
  font-size: 0.95rem;
}

.side-teacher span {
  color: var(--muted);
  font-size: 0.82rem;
}

.teacher-photo.mini {
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
}

.map-frame {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.02);
}

.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 7, 6, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(100%, 980px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: var(--radius);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.to-top {
  position: fixed;
  inset-inline-end: 1rem;
  bottom: 5.5rem;
  z-index: 55;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.95);
  color: var(--ink);
  border-radius: var(--radius);
  display: none;
  place-items: center;
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
}

.to-top.is-visible {
  display: grid;
}

@media (min-width: 769px) {
  .to-top {
    bottom: 1.5rem;
  }
}

@media (max-width: 960px) {
  .about-split,
  .founder-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

/* Blog + Search */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.post-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.quote-card {
  margin: 0;
  padding: 1.65rem 1.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-inline-start: 3px solid var(--gold);
}

.event-card {
  display: block;
  padding: 1.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.event-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.post-card a {
  display: block;
  color: inherit;
  height: 100%;
}

.post-card a:hover {
  color: inherit;
}

.post-cover {
  overflow: hidden;
  background: var(--dark);
}

.post-cover img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.post-card:hover .post-cover img {
  transform: scale(1.04);
  filter: grayscale(0);
}

.post-body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.post-body time,
.post-body .meta,
.page-hero .meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.post-body h2,
.post-body h3 {
  font-size: 1.15rem;
  margin: 0.45rem 0 0.55rem;
}

.post-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.post-hero-cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.post-hero-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--muted);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.search-form input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(166, 124, 61, 0.16);
}

.search-block {
  margin-top: 2rem;
}

.search-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.search-list li + li {
  border-top: 1px solid var(--line);
}

.search-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  color: inherit;
}

.search-list a:hover {
  background: rgba(166, 124, 61, 0.06);
  color: inherit;
}

.search-list span {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .post-grid,
  .search-form {
    grid-template-columns: 1fr;
  }
}

/* Testimonials + Events + Enroll steps + WhatsApp */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quote-card p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.quote-card footer {
  display: grid;
  gap: 0.15rem;
}

.quote-card strong {
  font-size: 0.95rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.events-empty-section {
  padding-block: clamp(4rem, 12vh, 8rem);
}

.events-empty {
  text-align: center;
  max-width: 28rem;
  margin-inline: auto;
  padding: 0 1rem;
}

.events-empty-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.events-empty-message {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.9;
}

.event-card time {
  display: block;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.event-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.enroll-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.enroll-steps li {
  background: var(--surface);
  padding: 1.25rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.enroll-steps strong {
  font-size: 1rem;
}

.enroll-steps span {
  color: var(--muted);
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  inset-inline-end: 1.1rem;
  bottom: 1.1rem;
  z-index: 58;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1f8b4d;
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 139, 77, 0.35);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: #187a42;
  color: #fff;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 5.2rem;
  }

  .quote-grid,
  .event-grid,
  .enroll-steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .to-top {
    inset-inline-end: 5rem;
  }
}

.flash-error,
.flash-error {
  background: #fdecec;
  border-color: #f5c2c2;
  color: #9b2c2c;
}

.flash-success {
  background: #eaf6ec;
  border-color: #b7dfbf;
}

.flash-info {
  background: #eef3f8;
  border-color: #c5d5e6;
}

.footer-grid-4 {
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
}

.footer-note {
  color: rgba(255, 254, 251, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.newsletter-form {
  display: grid;
  gap: 0.55rem;
}

.newsletter-form .field-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.newsletter-form .field-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .btn {
  width: 100%;
}

.instrument-picks {
  margin-bottom: 1.25rem;
}

.chip-btn {
  cursor: pointer;
  font-family: inherit;
  background: var(--surface);
}

.chip-btn.is-selected,
.chip-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.access-list {
  margin: 1rem 0 0;
  padding: 0 1.1rem 0 0;
  color: var(--ink-soft);
  display: grid;
  gap: 0.55rem;
}

@media (max-width: 960px) {
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* —— Modern polish (UI UX Pro Max) —— */
.heritage-band {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.heritage-band .prose {
  margin-inline: auto;
}

.heritage-band .text-link {
  margin-top: 0.35rem;
}

.hero-scroll {
  position: absolute;
  inset-inline-start: 50%;
  bottom: 1.35rem;
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transform: translateX(50%);
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

html[dir="rtl"] .hero-scroll {
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  animation: scroll-dot 1.6s var(--ease) infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

.map-frame,
.stat-stack,
.enroll-steps,
.search-list,
.info-panel {
  border-radius: var(--radius);
  overflow: hidden;
}

.side-teacher {
  border-radius: var(--radius-sm);
}

.mobile-cta {
  border-radius: 16px 16px 0 0;
  margin-inline: 0.5rem;
  inset-inline: 0.5rem;
  width: auto;
  overflow: hidden;
}

.wa-float {
  border-radius: 16px;
}

.nav-links a {
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .nav-links a {
    border-radius: 0;
  }
}

.page-home .site-header:not(.is-scrolled) .header-inner {
  background: rgba(14, 13, 12, 0.28);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(1.2);
}

.page-home .site-header:not(.is-scrolled) .brand,
.page-home .site-header:not(.is-scrolled) .brand-text small,
.page-home .site-header:not(.is-scrolled) .nav-icon,
.page-home .site-header:not(.is-scrolled) .nav-toggle {
  color: rgba(255, 254, 251, 0.92);
}

@media (min-width: 1101px) {
  .page-home .site-header:not(.is-scrolled) .nav-links a {
    color: rgba(255, 254, 251, 0.92);
  }

  .page-home .site-header:not(.is-scrolled) .nav-links a:hover,
  .page-home .site-header:not(.is-scrolled) .nav-links a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
}

.page-home .site-header:not(.is-scrolled) .brand-text small {
  color: rgba(255, 254, 251, 0.55);
}

.page-home .site-header:not(.is-scrolled) .brand-mark {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.page-home .site-header:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.page-home .site-header:not(.is-scrolled) .nav-toggle span:not(.sr-only) {
  background: #fff;
}

.page-home .site-header:not(.is-scrolled) .header-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.page-home .site-header:not(.is-scrolled) .header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider img {
    transition: opacity 0.01ms;
    transform: none !important;
  }

  .hero-scroll span {
    animation: none;
  }
}

