/* ============================================================
   SitarBoston — css/style.css
   Persian Isfahan Tilework Palette
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --ink:           #081E1B;
  --ink-soft:      #0D2E29;
  --teal:          #1A8A78;
  --teal-bright:   #2FC4AE;
  --teal-light:    #6FD8CB;
  --saffron:       #E8A820;
  --saffron-lt:    #F2C04A;
  --persian-green: #2D6B4A;
  --green-light:   #5DAF7A;
  --cream:         #FFF8E7;
  --cream-dk:      #D9C9A3;
  --gold:          #C9A84C;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', system-ui, sans-serif;
  --font-persian:  'Amiri', Georgia, serif;

  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:        6px;
  --shadow-soft:   0 4px 24px rgba(0,0,0,0.45);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.55);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ink);
  color: var(--cream-dk);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: var(--teal-bright);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--saffron); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.2;
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

section { position: relative; overflow: hidden; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Persian Geometric Tile SVG Patterns ---------- */
.tile-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%231A8A78' stroke-width='0.6' opacity='0.18'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Cpath d='M40 0 L40 80 M0 40 L80 40'/%3E%3Cpath d='M10 10 L70 70 M70 10 L10 70'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.tile-bg-saffron::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23E8A820' stroke-width='0.5' opacity='0.12'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Cpath d='M40 0 L40 80 M0 40 L80 40'/%3E%3Cpath d='M10 10 L70 70 M70 10 L10 70'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.tile-bg, .tile-bg-saffron { position: relative; }

/* ---------- Section Labels ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* ---------- Ornamental Divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.8rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  max-width: 200px;
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(8, 30, 27, 0.97);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-en {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-fa {
  font-family: var(--font-persian);
  font-size: 0.9rem;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron-lt);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-mobile {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 30, 27, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition), transform 0.25s ease;
  transform: translateY(8px);
  opacity: 0;
  transition: color var(--transition), opacity 0.35s ease, transform 0.35s ease;
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a:hover { color: var(--saffron); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Top cover.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  filter: brightness(0.32);
  z-index: 0;
}

.hero-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%231A8A78' stroke-width='0.6' opacity='0.07'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Cpath d='M40 0 L40 80 M0 40 L80 40'/%3E%3Cpath d='M10 10 L70 70 M70 10 L10 70'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-arch {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-arch svg {
  width: min(560px, 90vw);
  height: auto;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 1.5rem;
}

.hero-persian-sub {
  font-family: var(--font-persian);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--teal-light);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
  line-height: 1.2;
}

.hero-title span { color: var(--saffron); }

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--cream-dk);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.85;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(47,196,174,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--saffron);
  border-color: var(--saffron);
}

.btn-outline:hover {
  background: var(--saffron);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,168,32,0.35);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-dk);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-bright);
  fill: none;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   MISSION BANNER
   ============================================================ */
#mission {
  background-color: var(--ink-soft);
  padding: 7rem 0;
}

#mission .container {
  position: relative;
  z-index: 1;
}

.mission-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mission-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

.mission-headline em {
  font-style: italic;
  color: var(--saffron);
}

.mission-body {
  font-size: 1.03rem;
  color: var(--cream-dk);
  text-align: left;
  line-height: 1.9;
}

.mission-body p { margin-bottom: 1.3rem; }

.mission-body strong { color: var(--teal-bright); }

.mission-cta {
  color: var(--saffron) !important;
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-weight: 700;
  font-style: italic;
}

.pull-quote {
  border-left: 3px solid var(--saffron);
  margin: 2.5rem 0;
  padding: 1.2rem 2rem;
  background: rgba(26, 138, 120, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}

.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--cream);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 7rem 0;
  background-color: var(--ink);
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/Nizamuddin.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  filter: brightness(0.10);
  z-index: 0;
}

#about .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.3rem;
}

.about-sub {
  font-size: 0.8rem;
  color: var(--teal-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 1.6rem;
  font-family: var(--font-body);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream-dk);
}

.about-text strong { color: var(--saffron-lt); }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--teal);
  border-radius: 100px;
  font-size: 0.73rem;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(26,138,120,0.1);
  transition: all var(--transition);
}

.badge:hover {
  background: var(--teal);
  color: var(--ink);
  cursor: default;
}

/* ============================================================
   LUTHIERIE
   ============================================================ */
#luthierie {
  padding: 7rem 0;
  background-color: var(--ink-soft);
}

.luthierie-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Luthiere Cover.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  filter: brightness(0.11);
  z-index: 0;
}

#luthierie .container { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-light);
  display: block;
  margin-top: 0.3rem;
}

.luthierie-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
  font-family: var(--font-persian);
  font-size: 1.15rem;
  color: var(--cream-dk);
  line-height: 1.95;
  font-style: italic;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 4.5rem;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: rgba(13, 46, 41, 0.85);
  border: 1px solid rgba(47, 196, 174, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-bright);
  box-shadow: 0 12px 40px rgba(47, 196, 174, 0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.12rem;
  color: var(--saffron-lt);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--cream-dk);
  line-height: 1.75;
  margin: 0;
}

/* Luthierie Photo Grid */
.luthierie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.lg-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.lg-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.lg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 160px;
  display: block;
}

.lg-item:first-child img { min-height: 340px; }

.lg-item:hover img { transform: scale(1.06); }

.lg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 30, 27, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lg-overlay svg {
  color: var(--cream);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.lg-item:hover .lg-overlay { background: rgba(8, 30, 27, 0.45); }
.lg-item:hover .lg-overlay svg { opacity: 1; transform: scale(1); }

/* ============================================================
   LESSONS
   ============================================================ */
#lessons {
  padding: 7rem 0;
  background-color: var(--ink);
}

.lessons-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Khusrao.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.12);
  z-index: 0;
}

#lessons .container { position: relative; z-index: 1; }

.lessons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.lessons-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.lessons-images img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.lessons-images img:first-child {
  height: 280px;
  object-position: center 30%;
}

.lessons-images img:last-child {
  height: 210px;
  object-position: center 20%;
}

.lessons-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.lessons-text > p {
  font-size: 1rem;
  color: var(--cream-dk);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.pillar {
  padding: 1.4rem 1.6rem;
  background: rgba(13, 46, 41, 0.82);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), transform var(--transition);
}

.pillar:hover {
  border-color: var(--saffron);
  transform: translateX(4px);
}

.pillar h4 {
  font-size: 1rem;
  color: var(--saffron-lt);
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.91rem;
  color: var(--cream-dk);
  margin: 0;
  line-height: 1.7;
}

.lessons-note {
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--teal-light);
  opacity: 0.85;
  padding: 1.2rem;
  border-top: 1px solid rgba(111, 216, 203, 0.15);
}

/* ============================================================
   CUSTOM SITARS / SHAHID ALI
   ============================================================ */
#sitars {
  padding: 7rem 0;
  background-color: var(--ink-soft);
}

.sitars-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Bio Guru etc/sitar4.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  filter: brightness(0.09);
  z-index: 0;
}

#sitars .container { position: relative; z-index: 1; }

.sitars-intro {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.sitars-intro p {
  font-size: 1.02rem;
  color: var(--cream-dk);
  line-height: 1.9;
}

.sitars-intro strong { color: var(--teal-bright); }

/* Model Cards */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.model-card {
  background: rgba(8, 30, 27, 0.88);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  text-align: center;
}

.model-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.model-card-icon {
  font-size: 2.5rem;
  display: block;
  margin: 0 auto 1rem;
}

.model-card h3 {
  font-size: 1.08rem;
  color: var(--saffron-lt);
  margin-bottom: 0.8rem;
}

.model-card p {
  font-size: 0.89rem;
  color: var(--cream-dk);
  line-height: 1.75;
  margin: 0;
}

/* Build Process */
.build-process {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(13, 46, 41, 0.75);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  border: 1px solid rgba(26,138,120,0.3);
  backdrop-filter: blur(8px);
}

.build-process h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.build-process p {
  font-size: 0.98rem;
  color: var(--cream-dk);
  line-height: 1.88;
  margin: 0;
}

/* Tonewood Callout */
.tonewood-callout {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(45, 107, 74, 0.35), rgba(26, 138, 120, 0.18));
  border: 1px solid var(--persian-green);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-align: center;
}

.tonewood-callout p {
  font-size: 1rem;
  color: var(--cream-dk);
  line-height: 1.85;
  margin: 0;
}

.tonewood-callout strong { color: var(--green-light); }

/* ============================================================
   VIDEOS
   ============================================================ */
#videos {
  padding: 7rem 0;
  background-color: var(--ink);
}

.videos-arch-header {
  text-align: center;
  margin-bottom: 4rem;
}

.videos-arch-header > svg {
  display: block;
  margin: 0 auto 1.5rem;
  opacity: 0.45;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.video-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(47, 196, 174, 0.15);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.video-item:hover {
  border-color: var(--teal-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(47, 196, 174, 0.15);
}

.video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.video-caption {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--cream-dk);
  line-height: 1.5;
  border-top: 1px solid rgba(47, 196, 174, 0.1);
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 7rem 0;
  background-color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 230px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--ink);
}

.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.55s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 30, 27, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay svg {
  opacity: 0;
  color: var(--cream);
  transform: scale(0.6);
  transition: all var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.gallery-item:hover .gallery-overlay { background: rgba(8, 30, 27, 0.45); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 14, 13, 0.97);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

#lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img-wrap {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.lightbox-img-wrap img {
  max-width: 95vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.9);
  transition: opacity 0.2s ease;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  z-index: 2002;
}

.lightbox-close:hover { color: var(--saffron); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 46, 41, 0.85);
  border: 1px solid rgba(47,196,174,0.3);
  border-radius: 50%;
  color: var(--cream);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--teal);
  border-color: var(--teal-bright);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-counter {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--cream-dk);
  letter-spacing: 0.1em;
}

/* ============================================================
   NEWS
   ============================================================ */
#news {
  padding: 7rem 0;
  background-color: var(--ink);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.news-card {
  background: rgba(13, 46, 41, 0.75);
  border: 1px solid rgba(47, 196, 174, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}

.news-card:hover {
  border-color: var(--teal-bright);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(47, 196, 174, 0.12);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.news-date {
  font-size: 0.78rem;
  color: var(--teal-light);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.news-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  background: rgba(232, 168, 32, 0.14);
  color: var(--saffron-lt);
  border: 1px solid rgba(232, 168, 32, 0.25);
}

.news-card h3 {
  font-size: 1.18rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.news-card p {
  font-size: 0.92rem;
  color: var(--cream-dk);
  line-height: 1.75;
  margin: 0;
}

.news-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--teal-bright);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.news-link:hover { color: var(--saffron); }

.news-loading {
  text-align: center;
  color: var(--teal-light);
  font-style: italic;
  padding: 3rem;
  grid-column: 1 / -1;
}

/* ============================================================
   CONNECT
   ============================================================ */
#connect {
  padding: 7rem 0;
  background-color: var(--ink-soft);
}

#connect .container { position: relative; z-index: 1; }

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.connect-grid-single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.connect-info-centered {
  text-align: left;
}

.connect-info-centered h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.connect-info h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.connect-info > p {
  font-size: 0.95rem;
  color: var(--cream-dk);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 138, 120, 0.18);
  border: 1px solid rgba(26, 138, 120, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-bright);
  font-size: 1rem;
}

.contact-item-text { flex: 1; }

.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--cream);
}

.contact-item-value a {
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--saffron); }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #25D366 !important;
  font-weight: 700;
  margin-top: 0.35rem;
  font-size: 0.84rem;
}

.whatsapp-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(8, 30, 27, 0.72);
  border: 1px solid rgba(47, 196, 174, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-light);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(13, 46, 41, 0.8);
  border: 1px solid rgba(47, 196, 174, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%232FC4AE' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--ink-soft);
  color: var(--cream);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(217, 201, 163, 0.32);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(47, 196, 174, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--teal);
  border: none;
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--teal-bright);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(47,196,174,0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--teal-light);
  font-style: italic;
  font-size: 1rem;
}

.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background-color: var(--ink);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(26, 138, 120, 0.2);
  text-align: center;
}

.footer-ornament {
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  opacity: 0.32;
}

.footer-logo-en {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--saffron);
}

.footer-logo-fa {
  font-family: var(--font-persian);
  font-size: 1rem;
  color: var(--teal-light);
  display: block;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--cream-dk);
  font-style: italic;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  margin-bottom: 2.5rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dk);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 700;
}

.footer-nav a:hover { color: var(--teal-bright); }

.footer-copy {
  font-size: 0.76rem;
  color: rgba(217, 201, 163, 0.42);
  border-top: 1px solid rgba(26, 138, 120, 0.1);
  padding-top: 1.5rem;
}

/* ============================================================
   MUSIC PLAYER
   ============================================================ */
#music-player {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(13, 46, 41, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  padding: 0.55rem 1.2rem 0.55rem 0.6rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform var(--transition);
  user-select: none;
}

#music-player:hover { transform: translateY(-2px); }

.music-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 138, 120, 0.28);
  border: 1px solid var(--teal);
  color: var(--teal-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}

.music-btn:hover {
  background: var(--teal);
  color: var(--ink);
}

.music-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Pulsing gold ring when playing */
.music-btn.playing::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse-ring 1.9s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.9; }
  70%  { transform: scale(1.4);  opacity: 0;   }
  100% { transform: scale(1.4);  opacity: 0;   }
}

.music-label {
  font-size: 0.74rem;
  color: var(--cream-dk);
  font-family: var(--font-body);
  white-space: nowrap;
  line-height: 1.3;
}

.music-note {
  color: var(--gold);
  margin-right: 0.25rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.reveal-right.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
  .connect-grid { grid-template-columns: 1fr; gap: 3rem; }

  .luthierie-grid { grid-template-columns: repeat(3, 1fr); }
  .lg-item:first-child { grid-column: span 2; grid-row: span 1; }

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

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Disable parallax on mobile (performance) */
  .hero-bg,
  .about-bg-overlay,
  .luthierie-bg,
  .lessons-bg,
  .sitars-bg {
    background-attachment: scroll;
  }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap img { height: 380px; }
  .about-image-accent { display: none; }

  .lessons-grid { grid-template-columns: 1fr; gap: 2rem; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .gallery-item.wide { grid-column: span 2; }

  .luthierie-grid { grid-template-columns: 1fr 1fr; }
  .lg-item:first-child { grid-column: span 2; }

  .services-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .build-process { padding: 2rem 1.5rem; }

  .hero-btns { flex-direction: column; align-items: center; }

  #music-player { bottom: 1rem; right: 1rem; }

  .connect-grid { gap: 2.5rem; }

  .pull-quote { padding: 1rem 1.2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 1; }

  .video-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .hero-title { font-size: 1.8rem; }

  .luthierie-grid { grid-template-columns: 1fr; }
  .lg-item:first-child { grid-column: span 1; }
}

/* ============================================================
   SHAHID ALI PROFILE BLOCK
   ============================================================ */
.shahidali-profile {
  margin: 2.5rem 0 3rem;
}
.shahidali-photo-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: rgba(26,138,120,0.06);
  border: 1px solid rgba(46,196,174,0.2);
  padding: 2rem;
  border-radius: 2px;
  position: relative;
}
.shahidali-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--saffron), var(--teal));
}
.shahidali-photo-frame {
  position: relative;
}
.shahidali-photo-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid var(--teal);
  filter: brightness(1.05) contrast(1.05);
}
.shahidali-photo-caption {
  background: var(--teal);
  color: var(--ink);
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}
.shahidali-photo-caption span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.1rem;
}
.shahidali-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--cream-dk);
  font-size: 0.9rem;
  line-height: 1.55;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(46,196,174,0.1);
}
.credential-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.cred-icon {
  color: var(--saffron);
  font-size: 0.55rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.shahidali-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--teal-bright);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(47,196,174,0.3);
  padding-bottom: 2px;
}
.shahidali-link:hover {
  color: var(--saffron);
  border-color: var(--saffron);
}
@media (max-width: 768px) {
  .shahidali-photo-wrap {
    grid-template-columns: 1fr;
  }
  .shahidali-photo-frame { max-width: 280px; margin: 0 auto; }
}

/* ============================================================
   HERO — REVISED (turquoise / red accent / gold letters)
   ============================================================ */
.hero-craft-line {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7de8d8;
  margin: 0.4rem 0 0.8rem;
}
.hero-title span {
  color: var(--saffron);
  text-shadow: 0 0 40px rgba(232,168,32,0.5);
}
.hero-divider-ornament {
  font-size: 1.1rem;
  color: var(--saffron);
  margin: 1.1rem 0 0.8rem;
  display: block;
}
.hero-services {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #a8f0e8;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}
/* Red accent stripe in hero via border on arch */
.hero-arch svg path:first-child { stroke: #2FC4AE; }
.hero-arch svg path:nth-child(2) { stroke: rgba(200,60,60,0.45); }
.hero-arch svg path:nth-child(3) { stroke: rgba(60,160,80,0.35); }

/* ============================================================
   TALEEM — TRAINING SECTION
   ============================================================ */
.taleem-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--saffron);
  margin: 0 0 0.3rem;
}
.inline-link {
  color: var(--teal-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover { color: var(--saffron); }

/* Guru Photos */
.guru-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0 0;
}
.guru-photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(46,196,174,0.25);
  display: block;
}
.guru-caption {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--cream-dk);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

/* Homage Subsection */
.homage-section {
  margin-top: 4rem;
  text-align: center;
}
.homage-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--saffron);
  margin: 0.5rem 0 0.3rem;
  letter-spacing: 0.06em;
}
.homage-intro {
  font-size: 0.85rem;
  color: var(--cream-dk);
  font-style: italic;
  margin-bottom: 2rem;
}
.homage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.homage-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(46,196,174,0.2);
  filter: grayscale(20%);
  display: block;
}
.homage-caption {
  font-size: 0.72rem;
  color: var(--cream-dk);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
  line-height: 1.5;
}
.homage-caption span {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .guru-photos { grid-template-columns: 1fr; }
  .homage-grid { grid-template-columns: 1fr; }
  .homage-text { margin-top: 2.5rem; }
}

/* ============================================================
   LUTHIERIE — TRAINING SENTENCE
   ============================================================ */
.luthierie-training {
  font-size: 0.9rem;
  color: var(--cream-dk);
  font-style: italic;
  border-left: 3px solid var(--saffron);
  padding-left: 1.2rem;
  margin: 0 0 3rem;
  max-width: 700px;
}

/* ============================================================
   REPAIR & RESTORATION SUBSECTION
   ============================================================ */
.repair-section {
  margin-top: 5rem;
}
.repair-grid { margin-top: 1.5rem; }

.repair-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.repair-video-item video {
  width: 100%;
  border-radius: 2px;
  background: #000;
  display: block;
}
.repair-video-caption {
  font-size: 0.75rem;
  color: var(--cream-dk);
  margin-top: 0.6rem;
  font-style: italic;
  text-align: center;
}
@media (max-width: 900px) {
  .repair-videos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .repair-videos { grid-template-columns: 1fr; }
}

/* ============================================================
   LESSONS — PEOPLE CROP
   ============================================================ */
.lessons-img-crop-people {
  object-fit: cover;
  object-position: center 20%;
}

/* Lesson Video */
.lesson-video-wrap {
  margin-top: 2.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.lesson-video {
  width: 100%;
  border-radius: 2px;
  background: #000;
  display: block;
}
.lesson-video-caption {
  font-size: 0.78rem;
  color: var(--cream-dk);
  font-style: italic;
  text-align: center;
  margin-top: 0.7rem;
}

/* ============================================================
   SHAHID ALI VIDEOS GRID (4 videos)
   ============================================================ */
.shahidali-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
.sa-video-item video {
  width: 100%;
  background: #000;
  display: block;
  border-radius: 2px;
}
.sa-video-caption {
  font-size: 0.76rem;
  color: var(--cream-dk);
  font-style: italic;
  text-align: center;
  margin-top: 0.6rem;
}
@media (max-width: 700px) {
  .shahidali-videos { grid-template-columns: 1fr; }
}

/* Vintage Callout */
.vintage-callout {
  border: 1px solid rgba(232,168,32,0.35);
  background: rgba(232,168,32,0.06);
  padding: 1.4rem 1.8rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--cream);
  font-style: italic;
  border-radius: 2px;
}

/* ============================================================
   PERSIAN COBALT / VINTAGE OVERRIDES  (loaded last = wins)
   ============================================================ */

/* Root palette shift — cobalt blue + turquoise + amber gold + parchment */
:root {
  --ink:         #0A1628;   /* deep navy-black (was dark teal) */
  --ink-soft:    #101E35;   /* deep cobalt-navy */
  --teal:        #147A6B;
  --teal-bright: #2FC4AE;
  --teal-light:  #5EC8BC;
  --saffron:     #C9962A;   /* richer amber gold */
  --saffron-lt:  #E0B040;
  --gold:        #A8772A;
  --cream:       #F4EAD5;   /* parchment */
  --cream-dk:    #C4A87A;   /* aged paper */
  --cobalt:      #1A3D7C;   /* Persian tile blue */
}

/* Vintage paper overlay on body */
body {
  background-color: var(--ink);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* Tile-bg sections: cobalt wash */
.tile-bg {
  background-color: #0D1830;
}
.tile-bg-saffron {
  background-color: #0E1A10;
}

/* Hero — vintage shadowy portrait treatment */
.hero-bg {
  filter: sepia(0.35) brightness(0.28) contrast(1.15) saturate(0.7);
}

/* Section backgrounds — slightly more visible */
.about-bg-overlay  { filter: brightness(0.12) sepia(0.2); }
.luthierie-bg      { filter: brightness(0.13) sepia(0.15); }
.lessons-bg        { filter: brightness(0.14) sepia(0.25); }
.sitars-bg         { filter: brightness(0.11) sepia(0.2); }

/* All section headings — use cobalt accent */
.section-label {
  color: var(--teal-bright);
  letter-spacing: 0.18em;
}

/* ── VIDEO BORDERS — low-profile matte color contrast ── */
video {
  border: 2px solid rgba(46, 196, 174, 0.28);
  box-shadow: 0 2px 12px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(201,150,42,0.12);
  border-radius: 3px;
  background: #000;
  display: block;
  width: 100%;
}
video:hover {
  border-color: rgba(201, 150, 42, 0.45);
  transition: border-color 0.3s;
}

/* ── MISSION PHOTOS — two side-by-side ── */
.mission-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.mission-photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(46,196,174,0.22);
  filter: sepia(0.15) contrast(1.05);
  display: block;
}
@media (max-width: 600px) {
  .mission-photos { grid-template-columns: 1fr; }
}

/* ── GURU PHOTOS — 3 column ── */
.guru-photos {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .guru-photos { grid-template-columns: 1fr 1fr; }
}

/* ── LESSONS — video on left, text on right ── */
.lessons-grid {
  align-items: start;
}
.lessons-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lesson-video-wrap {
  margin-top: 0;
  max-width: 100%;
}

/* Vintage typographic feel */
h1, h2, h3 {
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}
.pull-quote p {
  font-style: italic;
  color: var(--cream-dk);
  opacity: 0.85;
}

/* Cards — cobalt tint */
.model-card, .service-card, .pillar {
  background: rgba(26, 61, 124, 0.12);
  border: 1px solid rgba(46,196,174,0.15);
}
.model-card:hover, .service-card:hover {
  border-color: rgba(201,150,42,0.35);
  background: rgba(26, 61, 124, 0.22);
}

/* Badges */
.badge {
  background: rgba(26, 61, 124, 0.3);
  border: 1px solid rgba(46,196,174,0.2);
  color: var(--cream-dk);
}

/* Vintage gold rule decorators */
.ornament-icon {
  color: var(--saffron);
}

/* ============================================================
   ROUND 3 — REVERT TO TEAL/GREEN + GOLD DUST
   ============================================================ */

/* Restore original green-teal palette */
:root {
  --ink:          #081E1B;
  --ink-soft:     #0D2E29;
  --teal:         #1A8A78;
  --teal-bright:  #2FC4AE;
  --teal-light:   #6FD8CB;
  --saffron:      #E8A820;
  --saffron-lt:   #F2C04A;
  --persian-green:#2D6B4A;
  --green-light:  #5DAF7A;
  --cream:        #FFF8E7;
  --cream-dk:     #D9C9A3;
  --gold:         #C9A84C;
}

/* Remove cobalt tile-bg overrides */
.tile-bg        { background-color: var(--ink-soft); }
.tile-bg-saffron{ background-color: var(--ink-soft); }

/* Remove paper noise overlay */
body::before { display: none; }

/* Hero — barely-visible afterglow, very faded/dark */
.hero-bg {
  filter: brightness(0.22) saturate(0.6) sepia(0.2);
}

/* Section bg overlays — restore near-black, no sepia */
.about-bg-overlay { filter: brightness(0.10); }
.luthierie-bg     { filter: brightness(0.11); }
.lessons-bg       { filter: brightness(0.10); }
.sitars-bg        { filter: brightness(0.09); }

/* ── GOLD DUST — subtle sparkles throughout ── */

/* Section labels */
.section-label {
  color: var(--saffron-lt);
  text-shadow: 0 0 18px rgba(232,168,32,0.25);
}

/* Ornament icons */
.ornament-icon {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201,164,76,0.6);
  font-size: 1.1rem;
}

/* Nav logo gold — cross-browser gradient text */
.nav-logo-en {
  background: linear-gradient(90deg, var(--teal-bright), var(--saffron-lt), var(--teal-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Firefox fallback — makes gradient visible */
}

/* Subtle gold border-top on cards */
.model-card, .service-card {
  background: rgba(26,138,120,0.07);
  border: 1px solid rgba(201,164,76,0.15);
  border-top: 2px solid rgba(201,164,76,0.3);
}
.model-card:hover, .service-card:hover {
  border-color: rgba(201,164,76,0.4);
  border-top-color: var(--gold);
}

/* Gold shimmer on pull-quotes */
.pull-quote {
  border-left-color: var(--gold);
}
.pull-quote p { color: var(--saffron-lt); opacity: 0.9; }

/* Subtle gold glow on section headings */
#mission h2, #luthierie h2, #sitars h2, #about h2, #lessons h2 {
  text-shadow: 0 0 40px rgba(201,164,76,0.12);
}

/* Gold sparkle on credentials */
.cred-icon { color: var(--gold); text-shadow: 0 0 8px rgba(201,164,76,0.5); }

/* Shahid Ali link gold */
.shahidali-link { border-color: rgba(201,164,76,0.35); }

/* Badge subtle gold */
.badge {
  background: rgba(26,138,120,0.15);
  border: 1px solid rgba(201,164,76,0.2);
}

/* ── ALL VIDEOS: uniform 16:9, matte border ── */
video {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border: 1.5px solid rgba(46,196,174,0.25);
  border-top: 2px solid rgba(201,164,76,0.3);
  box-shadow: 0 3px 16px rgba(0,0,0,0.55);
  border-radius: 2px;
  background: #000;
  display: block;
}
video:hover { border-color: rgba(201,164,76,0.5); transition: border-color 0.3s; }

/* Full-width feature videos (teak + naskar) keep natural sizing */
.teak-video {
  max-height: 380px;
  aspect-ratio: 16 / 9;
}

/* ── UNIFORM GRID BOXES ── */

/* Repair videos: 3 equal columns, fixed row height */
.repair-videos {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
}
.repair-video-item {
  display: flex;
  flex-direction: column;
}
.repair-video-item video { flex: 1; }

/* SA videos: 2 equal columns */
.shahidali-videos {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1.8rem;
}
.sa-video-item {
  display: flex;
  flex-direction: column;
}

/* Luthierie photo grid: uniform square thumbnails */
.luthierie-grid {
  grid-auto-rows: 200px;
}
.lg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── LESSONS: video on left, text on right ── */
.lessons-images { display: none; }   /* hide the two sitar photos */

.lesson-video-left {
  display: contents; /* unwrap — video goes into grid naturally */
}
.lessons-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3rem;
}
.lesson-video-wrap {
  margin: 0;
  max-width: 100%;
}
.lesson-video-wrap video { max-height: 340px; }

/* ── MISSION PHOTOS uniform ── */
.mission-photos { margin-top: 2.5rem; }
.mission-photo-item img {
  aspect-ratio: 3/2;
  object-fit: cover;
  filter: none;
  border: 1px solid rgba(46,196,174,0.2);
  border-top: 2px solid rgba(201,164,76,0.25);
}

/* Homage grid: equal height items (desktop) */
.homage-grid { grid-auto-rows: 280px; }
.homage-item { display: flex; flex-direction: column; }
.homage-item img { height: 260px; width: 100%; object-fit: cover; flex-shrink: 0; }

/* Guru photos 3-col equal height */
.guru-photos {
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 260px;
}
.guru-photo-item img { height: 100%; width: 100%; object-fit: cover; object-position: center top; }

@media(max-width:768px){
  .lessons-grid { grid-template-columns: 1fr; }
  .repair-videos { grid-template-columns: 1fr 1fr; }
  .guru-photos { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .homage-grid { grid-auto-rows: auto; }
  .homage-item img { height: 200px; }
}
@media(max-width:500px){
  .repair-videos { grid-template-columns: 1fr; }
}

/* Lessons section fill image */
.lesson-video-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.lesson-fill-img {
  flex: 1;
  min-height: 0;
  width: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  margin-top: 0.75rem;
  border-radius: 4px;
  border: 1.5px solid rgba(46,196,174,0.2);
  border-top: 2px solid rgba(201,164,76,0.25);
}

/* Homage explanatory text */
.homage-text {
  margin-top: 3.5rem;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--cream-dk);
  max-width: 780px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* ============================================================
   HOMAGE CREDIT LINE
   ============================================================ */
.homage-credit {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dk);
  text-align: center;
  opacity: 0.75;
}

.homage-credit-link {
  color: var(--saffron-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,168,32,0.3);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.homage-credit-link:hover {
  color: var(--saffron);
  border-color: var(--saffron);
}

.subtitle-ig-link {
  color: var(--teal-bright);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid rgba(47,196,174,0.35);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.subtitle-ig-link:hover {
  color: var(--saffron);
  border-color: var(--saffron);
}

/* ============================================================
   GOLD DUST CANVAS
   ============================================================ */
#gold-dust-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
}

/* ============================================================
   SMOOTH SCROLL IMPROVEMENTS
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Remove parallax on ALL viewports — biggest source of scroll jank */
.hero-bg,
.about-bg-overlay,
.luthierie-bg,
.lessons-bg,
.sitars-bg {
  background-attachment: scroll !important;
  will-change: auto;
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--saffron);
  color: var(--saffron);
}

/* ============================================================
   CLICKABLE PHOTO WRAPPERS (non-gallery sections)
   ============================================================ */
.homage-item,
.guru-photo-item,
.mission-photo-item,
.about-image-wrap,
.shahidali-photo-frame,
.lesson-fill-img-wrap {
  cursor: zoom-in;
}

.homage-item img,
.guru-photo-item img,
.mission-photo-item img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.homage-item:hover img,
.guru-photo-item:hover img,
.mission-photo-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08) grayscale(0%);
}

/* ============================================================
   LIGHT MODE THEME
   ============================================================ */

/* Staggered nav link fade-in when mobile menu opens */
.nav-mobile.open a:nth-child(1) { transition-delay: 0.04s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.08s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.12s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.16s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.20s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.24s; }
.nav-mobile.open a:nth-child(7) { transition-delay: 0.28s; }
.nav-mobile.open a:nth-child(8) { transition-delay: 0.32s; }

/* ============================================================
   COLLAPSIBLE SECTIONS (Videos + Gallery)
   ============================================================ */
.collapsible-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1);
}
.collapsible-content.open {
  max-height: 6000px;
}

.collapse-hint {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dk);
  opacity: 0.55;
  margin: 1.2rem auto 0.3rem;
  text-align: center;
}
.section-collapse-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream-dk);
  margin: 1.2rem auto 0;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.section-collapse-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(232,168,32,0.08);
}
.collapse-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
  display: block;
}
.section-collapse-btn.open .collapse-arrow {
  transform: rotate(180deg);
}

/* ============================================================
   BUG FIXES — Mobile lesson order + Light theme
   ============================================================ */

/* Bug 1: Lesson video/image below text on mobile */
@media (max-width: 768px) {
  .lessons-grid { display: flex; flex-direction: column; }
  .lesson-video-wrap { order: 2; }
  .lessons-text  { order: 1; }
}

/* Bug 3: Light theme — comprehensive readability fix */

/* Section backgrounds — clear alternating contrast */

/* Cards — solid white with shadow so they pop off the parchment */

/* Pull quote */

/* Mission body */

/* About section */

/* Luthierie */

/* Homage */

/* Lessons */

/* Sitars */

/* Connect */

/* Section subtitle, labels, ornaments */

/* Footer */

/* Video borders in light mode */

/* Collapse button in light mode */

/* ============================================================
   MOBILE FAILPROOF — iOS safety, touch targets, layout
   ============================================================ */

/* Hard prevent horizontal scrollbar on all screens */
body { overflow-x: hidden; } /* fallback for older Android / Firefox <81 */
@supports (overflow: clip) {
  body { overflow-x: clip; } /* preferred: doesn't kill position:sticky */
}

/* Word-wrap safety — no content blows out its container */
p, h1, h2, h3, h4, li, .badge, .section-subtitle, .hero-tagline,
.hero-services, .hero-craft-line, .contact-item-value {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* iOS Safari: 100vh includes the address bar. Use dvh when supported. */
@supports (height: 100dvh) {
  #hero { height: 100dvh; }
}

/* Hamburger — expand to 44×44 touch target (Apple HIG minimum) */
.hamburger {
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

/* Theme toggle — match 44px touch target */
.theme-toggle {
  min-width: 44px;
  min-height: 44px;
}

/* Safe-area insets for notched iPhones (X / 11 / 12 / 13 / 14 / 15) */
@supports (padding: env(safe-area-inset-left)) {
  #music-player {
    bottom: max(1rem, calc(0.5rem + env(safe-area-inset-bottom)));
    right:  max(1rem, calc(0.5rem + env(safe-area-inset-right)));
  }
  #navbar .nav-inner {
    padding-left:  max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

/* ── TABLET (≤ 1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Services grid to 2-col (overrides 4-col, already declared above
     but explicitly repeated here for clarity) */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE (≤ 768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Reduce vertical section whitespace — 7rem is too airy on phones */
  #mission, #about, #luthierie, #lessons,
  #sitars, #videos, #gallery, #news, #connect {
    padding: 4rem 0;
  }

  /* Section header bottom margin tighter */
  .section-header { margin-bottom: 2rem; }

  /* Callout / prose boxes */
  .build-process   { padding: 1.5rem 1.2rem; }
  .tonewood-callout,
  .vintage-callout { padding: 1.2rem 1rem; }

  /* Pull-quote – a bit tighter */
  .pull-quote { margin: 1.5rem 0; }

  /* Lightbox arrows — pull away from screen edge */
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-prev,
  .lightbox-next  { width: 40px; height: 40px; }

  /* Guru photo row height at narrow sizes */
  .guru-photos { grid-auto-rows: 180px; }

  /* Video height cap so videos don't dominate the viewport */
  .lesson-video-wrap video,
  .lesson-video { max-height: 260px; }
  .repair-video-item video { max-height: 220px; }

  /* Badge row wraps cleanly */
  .about-badges { gap: 0.5rem; }
  .badge        { font-size: 0.68rem; padding: 0.3rem 0.7rem; }

  /* Services single column on phones */
  .services-grid { grid-template-columns: 1fr; }
}

/* ── SMALL MOBILE (≤ 480px) ────────────────────────────────── */
@media (max-width: 480px) {
  /* Even tighter vertical rhythm */
  #mission, #about, #luthierie, #lessons,
  #sitars, #videos, #gallery, #news, #connect {
    padding: 3rem 0;
  }

  /* Guru photos — single column on narrowest phones */
  .guru-photos {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 220px;
  }

  /* Homage photos — auto rows so captions are never clipped */
  .homage-grid { grid-auto-rows: auto; }
  .homage-item img { height: 240px; }

  /* Music player — icon only so it doesn't crowd the viewport */
  .music-label  { display: none; }
  #music-player { padding: 0.5rem; }

  /* Hero CTA buttons — slightly narrower padding */
  .btn { padding: 0.85rem 1.5rem; }

  /* Nav logo shrinks a touch so hamburger has breathing room */
  .nav-logo-en { font-size: 1.2rem; }
  .nav-logo-fa { font-size: 0.78rem; }

  /* Contact items — tighter icon size */
  .contact-item      { gap: 0.7rem; }
  .contact-item-icon { width: 34px; height: 34px; font-size: 0.85rem; }

  /* Lightbox image — allow it to fill a phone screen */
  .lightbox-img-wrap img {
    max-width: 100vw;
    max-height: 80vh;
    border-radius: 0;
  }
}

/* ============================================================
   BASANT RAGA LIGHT THEME — warm spring, mustard & green
   ============================================================ */

/* Core palette — all CSS variables for light mode */

/* Base body */

/* ── NAVBAR ── */

/* ── HERO ── */

/* ── SECTION BACKGROUNDS ── */

/* Section bg overlays — keep near-dark so text over them stays readable */

/* ── TYPOGRAPHY — headings & body ── */

/* ── MISSION ── */

/* ── ABOUT / TRAINING ── */

/* ── LUTHIERIE ── */

/* Service cards */

/* Repair captions */

/* ── LESSONS ── */

/* ── CUSTOM SITARS ── */

/* ── VIDEOS ── */

/* ── GALLERY ── */

/* ── NEWS ── */

/* ── CONNECT ── */

/* ── FOOTER ── */

/* ── MUSIC PLAYER ── */

/* ── LIGHTBOX ── */

/* ── COLLAPSE BUTTON ── */

/* ── SHAHIDALI GALLERY SECTION ── */
.shahidali-brand-logo {
  max-width: 520px;
  margin: 0 auto 3rem;
  text-align: center;
}
.shahidali-brand-logo img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
}
.shahidali-brand-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dk);
  opacity: 0.7;
}
.shahidali-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .shahidali-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .shahidali-gallery-grid { grid-template-columns: 1fr; }
}

/* ── GOOGLE REVIEWS SECTION ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.review-stars {
  color: #E8A820;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.review-text {
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--cream-dk);
  flex: 1;
}
.review-author {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saffron-lt);
}
.google-reviews-cta {
  text-align: center;
  margin: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  color: var(--cream-dk);
}
.google-badge-stars {
  color: #E8A820;
  font-size: 1rem;
}
.google-badge svg { width: 22px; height: 22px; }
.google-reviews-cta > p { color: var(--cream-dk); opacity: 0.75; font-size: 0.95rem; }
.google-reviews-btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: linear-gradient(135deg, var(--saffron), var(--teal-bright));
  color: #fff !important;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}
.google-reviews-btn:hover { opacity: 0.88; transform: translateY(-2px); color: #fff !important; }
.google-map-wrap {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.google-map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── KESAR LIGHT THEME VARIABLES ── */

/* ── NAVBAR ── */

/* ── HERO ── */

/* ── SECTION BACKGROUNDS ── */

/* Section bg overlays */

/* ── GLOBAL TEXT ── */

/* ── MISSION ── */

/* ── ABOUT / TRAINING ── */

/* Homage */

/* ── LUTHIERIE ── */

/* Service / model cards */

/* Repair / video captions */

/* ── LESSONS ── */

/* ── CUSTOM SITARS ── */

/* ── SHAHIDALI GALLERY ── */

/* ── VIDEOS ── */

/* ── GALLERY ── */

/* ── NEWS ── */

/* ── REVIEWS ── */

/* ── CONNECT ── */

/* ── FOOTER ── */

/* ── MUSIC PLAYER ── */

/* ── LIGHTBOX ── */

/* ── COLLAPSE BUTTON ── */

/* ── SUBTITLE INSTAGRAM LINK ── */

/* ============================================================
   SHAHIDALI GALLERY — logo badge overlay
   ============================================================ */
.shahidali-workshop-block {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201,168,76,0.18);
}

/* ============================================================
   SHAHIDALI GOOGLE REVIEWS — inline in sitars section
   ============================================================ */
.shahidali-reviews {
  text-align: center;
  margin: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.shahidali-reviews .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-size: 0.95rem;
  color: var(--cream-dk);
}
.shahidali-reviews .google-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.shahidali-reviews .google-badge-stars { color: #E8A820; font-size: 1rem; }
.shahidali-reviews > p { color: var(--cream-dk); opacity: 0.7; font-size: 0.92rem; }
.shahidali-reviews .google-reviews-btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(135deg, var(--saffron), var(--teal-bright));
  color: #fff !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.shahidali-reviews .google-reviews-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.shahidali-reviews .google-map-wrap {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.20);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.shahidali-reviews .google-map-wrap iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}
