:root {
    --gold: #C9973A;
    --gold-light: #E8C06A;
    --gold-pale: #F5E4B8;
    --crimson: #8B1A2E;
    --crimson-deep: #5C1020;
    --noir: #0D0A08;
    --ink: #1A1510;
    --charcoal: #2A2420;
    --warm-white: #FBF6EE;
    --cream: #F2E8D5;
    --muted: #8A7A6A;
    --border: rgba(201,151,58,0.25);
    --shadow-gold: 0 20px 80px rgba(201,151,58,0.2);
    --shadow-dark: 0 30px 100px rgba(0,0,0,0.5);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--noir);
    color: var(--warm-white);
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ─── CURTAIN TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.04) 3px,
        rgba(0,0,0,0.04) 4px
      );
    pointer-events: none;
    z-index: 0;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(13,10,8,0.98), rgba(13,10,8,0));
    transition: background 0.4s;
  }

  nav.scrolled {
    background: rgba(13,10,8,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  .nav-brand span {
    font-style: italic;
    font-weight: 300;
    color: var(--warm-white);
  }

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

  .nav-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    opacity: 0.75;
    transition: opacity 0.25s, color 0.25s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    opacity: 1 !important;
    border-radius: 2px;
    letter-spacing: 0.15em;
    transition: background 0.25s, color 0.25s !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--noir) !important;
  }

  .nav-cta::after { display: none !important; }

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

  .hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--noir);
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: sepia(0.3) contrast(1.1);
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 60% 50%, rgba(139,26,46,0.25) 0%, transparent 60%),
      linear-gradient(to right, rgba(13,10,8,0.98) 35%, rgba(13,10,8,0.4) 70%, rgba(13,10,8,0.7) 100%),
      linear-gradient(to top, rgba(13,10,8,1) 0%, transparent 30%);
  }

  /* Theatrical spotlight */
  .spotlight {
    position: absolute;
    top: -200px;
    left: 55%;
    width: 700px;
    height: 900px;
    background: radial-gradient(ellipse at top center, rgba(201,151,58,0.08) 0%, transparent 70%);
    transform: rotate(-8deg);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, 90%);
    margin: auto;
    padding: 120px 0 80px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-tag-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
  }

  .hero-tag-text {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(64px, 8.5vw, 128px);
    line-height: 0.9;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--warm-white);
    max-width: 700px;
  }

  .hero h1 em {
    display: block;
    font-style: italic;
    color: var(--gold);
    font-size: 0.72em;
    line-height: 1.1;
  }

  .hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(38px, 4vw, 58px);
    color: var(--gold-light);
    display: block;
    margin-bottom: 32px;
    line-height: 1;
    opacity: 0.85;
  }

  .hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
    line-height: 1.7;
    color: rgba(251,246,238,0.75);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 72px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--noir);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 1px solid rgba(251,246,238,0.35);
    color: var(--warm-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color 0.25s, color 0.25s;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(251,246,238,0.5);
    display: block;
    margin-top: 6px;
  }

  /* ─── MARQUEE RIBBON ─── */
  .marquee-wrap {
    background: var(--crimson);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    z-index: 2;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(251,246,238,0.9);
    white-space: nowrap;
  }

  .marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    flex-shrink: 0;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── SECTION BASE ─── */
  section {
    position: relative;
    z-index: 1;
  }

  .container {
    width: min(1280px, 90%);
    margin: auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .section-label-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
  }

  .section-label-text {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 300;
    line-height: 1;
    color: var(--warm-white);
    margin-bottom: 24px;
  }

  .section-heading em {
    font-style: italic;
    color: var(--gold);
  }

  /* ─── ABOUT ─── */
  .about {
    padding: 140px 0;
    background: var(--charcoal);
    overflow: hidden;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
  }

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

  .about-img-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }

  .about-img-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: sepia(0.1) contrast(1.05);
    display: block;
  }

  .about-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(42,36,32,0.6) 100%);
  }

  .about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 180px;
    height: 180px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.4;
  }

  .about-img-accent-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border: 1px solid var(--crimson);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.4;
  }

  .about-float-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: var(--crimson-deep);
    border: 1px solid rgba(201,151,58,0.3);
    padding: 24px 28px;
    border-radius: 3px;
    max-width: 220px;
    z-index: 2;
  }

  .about-float-card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    color: var(--gold-pale);
    margin-bottom: 12px;
  }

  .about-float-card-attr {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }

  .about-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(251,246,238,0.75);
    font-weight: 300;
    margin-bottom: 28px;
  }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 40px 0;
  }

  .about-highlight {
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
  }

  .about-highlight::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
  }

  .about-highlight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
  }

  .about-highlight-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(251,246,238,0.5);
  }

  /* ─── PROGRAMS ─── */
  .programs {
    padding: 140px 0;
    background: var(--noir);
    position: relative;
    overflow: hidden;
  }

  .programs::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  .programs-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .program-card {
    position: relative;
    padding: 48px 36px;
    background: var(--charcoal);
    overflow: hidden;
    cursor: default;
    transition: background 0.35s;
  }

  .program-card:hover {
    background: #302820;
  }

  .program-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
  }

  .program-card:hover::before {
    transform: scaleX(1);
  }

  .program-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 300;
    color: rgba(201,151,58,0.08);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
  }

  .program-icon-wrap {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: border-color 0.3s, background 0.3s;
  }

  .program-card:hover .program-icon-wrap {
    border-color: var(--gold);
    background: rgba(201,151,58,0.08);
  }

  .program-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .program-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(251,246,238,0.55);
    font-weight: 300;
    margin-bottom: 24px;
  }

  .program-link {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .program-link::after {
    content: '→';
    font-size: 14px;
  }

  .program-card:hover .program-link {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── GALLERY ─── */
  .gallery {
    padding: 140px 0;
    background: var(--charcoal);
  }

  .gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
  }

  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 260px);
    gap: 4px;
  }

  .gallery-item {
    overflow: hidden;
    border-radius: 2px;
    position: relative;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
    filter: sepia(0.15) contrast(1.05);
  }

  .gallery-item:hover img {
    transform: scale(1.06);
    filter: sepia(0) contrast(1.1);
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139,26,46,0.0);
    transition: background 0.4s;
  }

  .gallery-item:hover::after {
    background: rgba(139,26,46,0.15);
  }

  /* Layout assignments */
  .g1 { grid-column: 1 / 6; grid-row: 1 / 3; }
  .g2 { grid-column: 6 / 9; grid-row: 1; }
  .g3 { grid-column: 9 / 13; grid-row: 1; }
  .g4 { grid-column: 6 / 10; grid-row: 2; }
  .g5 { grid-column: 10 / 13; grid-row: 2; }
  .g6 { grid-column: 1 / 5; grid-row: 3; }
  .g7 { grid-column: 5 / 8; grid-row: 3; }
  .g8 { grid-column: 8 / 13; grid-row: 3; }

  /* ─── QUOTE BREAK ─── */
  .quote-section {
    padding: 120px 0;
    background: var(--crimson-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-section::before {
    content: '"';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 400px;
    color: rgba(201,151,58,0.06);
    line-height: 1;
    pointer-events: none;
    font-style: italic;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--warm-white);
    max-width: 860px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
  }

  .quote-text span {
    color: var(--gold-light);
  }

  .quote-attr {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(251,246,238,0.5);
    font-weight: 600;
    position: relative;
    z-index: 1;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: 140px 0;
    background: var(--noir);
    position: relative;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .testimonial-card {
    padding: 48px 40px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .testimonial-card:hover {
    background: #2e2820;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: rgba(201,151,58,0.1);
    font-style: italic;
    line-height: 1;
    pointer-events: none;
  }

  .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
  }

  .star {
    color: var(--gold);
    font-size: 14px;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(251,246,238,0.8);
    font-weight: 300;
    margin-bottom: 32px;
  }

  .testimonial-divider {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
  }

  .testimonial-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: 4px;
  }

  .testimonial-role {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ─── FEATURED ─── */
  .featured {
    padding: 140px 0;
    background: var(--charcoal);
    overflow: hidden;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .featured-item {
    position: relative;
    height: 480px;
    overflow: hidden;
  }

  .featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: sepia(0.1) contrast(1.1);
  }

  .featured-item:hover img {
    transform: scale(1.04);
  }

  .featured-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,10,8,0.9) 0%, rgba(13,10,8,0.2) 50%, transparent 100%);
  }

  .featured-item-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 40px;
    z-index: 2;
  }

  .featured-item-tag {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .featured-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.1;
  }

  /* ─── CONTACT ─── */
  .contact {
    padding: 140px 0;
    background: var(--noir);
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 50%, rgba(139,26,46,0.12) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 50%, rgba(201,151,58,0.06) 0%, transparent 45%);
    pointer-events: none;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
  }

  .contact-info-item:first-child {
    border-top: 1px solid var(--border);
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--gold);
  }

  .contact-info-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
    font-weight: 600;
  }

  .contact-info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--warm-white);
  }

  .contact-info-value a {
    color: var(--gold);
    transition: color 0.2s;
  }

  .contact-info-value a:hover { color: var(--gold-light); }

  /* Form */
  .contact-form {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 52px 48px;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--warm-white);
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 40px;
    font-weight: 600;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 2px;
    padding: 14px 18px;
    color: var(--warm-white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.25s;
    outline: none;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold);
    background: rgba(201,151,58,0.04);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(251,246,238,0.25);
  }

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

  .form-group select option {
    background: var(--charcoal);
    color: var(--warm-white);
  }

  .form-submit {
    width: 100%;
    padding: 18px 36px;
    background: var(--gold);
    color: var(--noir);
    border: none;
    border-radius: 2px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    border-top: 1px solid var(--border);
    padding: 72px 0 36px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .footer-brand em {
    font-style: italic;
    font-weight: 300;
    color: var(--warm-white);
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: rgba(251,246,238,0.45);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(251,246,238,0.5);
    transition: border-color 0.25s, color 0.25s;
  }

  .footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(251,246,238,0.5);
    font-weight: 300;
    transition: color 0.25s;
  }

  .footer-links a:hover { color: var(--warm-white); }

  .footer-bottom {
    padding-top: 36px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-copy {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(251,246,238,0.3);
  }

  .footer-credit {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(251,246,238,0.3);
    text-align: right;
  }

  /* ─── WHATSAPP ─── */
  .whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px rgba(37,211,102,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    animation: float-up 0.6s 1s both;
  }

  .whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(37,211,102,0.4);
  }

  @keyframes float-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── HERO ENTRANCE ANIMATIONS ─── */
  .hero-tag { animation: fadeUp 0.7s 0.2s both; }
  .hero h1   { animation: fadeUp 0.8s 0.35s both; }
  .hero-script { animation: fadeUp 0.8s 0.5s both; }
  .hero-desc { animation: fadeUp 0.8s 0.6s both; }
  .hero-actions { animation: fadeUp 0.8s 0.75s both; }
  .hero-stats { animation: fadeUp 0.8s 0.9s both; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── MOBILE ─── */
  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-frame img { height: 460px; }
    .about-float-card { left: 10px; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry {
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(5, 220px);
    }
    .g1 { grid-column: 1 / 4; grid-row: 1 / 3; }
    .g2 { grid-column: 4 / 7; grid-row: 1; }
    .g3 { grid-column: 4 / 7; grid-row: 2; }
    .g4 { grid-column: 1 / 4; grid-row: 3; }
    .g5 { grid-column: 4 / 7; grid-row: 3; }
    .g6 { grid-column: 1 / 3; grid-row: 4; }
    .g7 { grid-column: 3 / 5; grid-row: 4; }
    .g8 { grid-column: 5 / 7; grid-row: 4; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-item { height: 360px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 80px; left: 0; right: 0; bottom: 0;
      background: rgba(13,10,8,0.98);
      align-items: center;
      justify-content: center;
      gap: 32px;
      backdrop-filter: blur(16px);
    }
    .nav-links.open a { font-size: 14px; }
    .nav-links.open .nav-cta { padding: 16px 48px; font-size: 13px; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    .programs-grid { grid-template-columns: 1fr; }
    .gallery-masonry { display: flex; flex-direction: column; }
    .gallery-item { height: 260px; }
    .about-highlights { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 36px 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .marquee-wrap { display: none; }
  }

/* ─── BILINGUAL + MOBILE OVERFLOW FIXES ─── */
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
body.lang-mr { font-family: 'Noto Sans Devanagari', 'Josefin Sans', sans-serif; }
body.lang-mr .hero h1,
body.lang-mr .section-heading,
body.lang-mr .about-body,
body.lang-mr .program-desc,
body.lang-mr .testimonial-text,
body.lang-mr .quote-text,
body.lang-mr .footer-links a,
body.lang-mr .contact-info-value,
body.lang-mr .form-title,
body.lang-mr .footer-brand,
body.lang-mr .about-float-card-quote,
body.lang-mr .featured-item-title { font-family: 'Noto Serif Devanagari', 'Cormorant Garamond', serif; }
body.lang-mr .hero-script { font-family: 'Noto Serif Devanagari', serif; font-style: italic; }

.container, .hero-inner { max-width: 1280px; }
.section-label-text, .hero-tag-text, .hero-stat-label, .marquee-item, .testimonial-name, .testimonial-role, .footer-copy, .footer-credit, .nav-links a, .btn-primary, .btn-secondary, .form-submit { overflow-wrap: anywhere; }
.hero h1, .section-heading, .hero-script, .quote-text, .featured-item-title { overflow-wrap: anywhere; word-break: normal; }
.about-body-second { margin-top: -8px; }
.section-label-center { justify-content: center; }
.section-heading-center { text-align: center; margin-top: 12px; }
.section-intro { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: rgba(251,246,238,0.5); max-width: 560px; margin: 0 auto; font-style: italic; font-weight: 300; line-height: 1.7; }
body.lang-mr .section-intro { font-family: 'Noto Serif Devanagari', serif; }
.gallery-heading { margin-top: 12px; }
.gallery-sub { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: rgba(251,246,238,0.5); max-width: 340px; font-style: italic; font-weight: 300; line-height: 1.7; flex-shrink: 0; }
body.lang-mr .gallery-sub { font-family: 'Noto Serif Devanagari', serif; }
.featured-label { margin-bottom: 48px; }
.contact-sub { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: rgba(251,246,238,0.55); line-height: 1.8; font-weight: 300; font-style: italic; margin-bottom: 52px; }
body.lang-mr .contact-sub { font-family: 'Noto Serif Devanagari', serif; }
.lang-switch { border: 1px solid rgba(201,151,58,.45); padding: 8px 12px; color: var(--gold) !important; opacity: 1 !important; }
.lang-switch::after { display:none; }

@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }

@media (max-width: 768px) {
  nav { height: 70px; padding: 0 18px; }
  .nav-brand { font-size: 18px; max-width: calc(100vw - 76px); white-space: normal; line-height: 1.05; }
  .nav-links.open { top: 70px; padding: 28px 18px; overflow-y: auto; }
  .hero { min-height: auto; }
  .hero-inner { width: 100%; padding: 110px 20px 56px; }
  .hero h1 { font-size: clamp(48px, 17vw, 72px); line-height: .95; max-width: 100%; }
  body.lang-mr .hero h1 { font-size: clamp(40px, 13vw, 60px); line-height: 1.08; }
  .hero-script { font-size: clamp(29px, 9vw, 42px); line-height: 1.18; max-width: 100%; }
  body.lang-mr .hero-script { font-size: clamp(24px, 7.6vw, 36px); line-height: 1.35; }
  .hero-desc { font-size: 18px; max-width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; margin-bottom: 44px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 15px 18px; letter-spacing: .14em; text-align:center; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
  .hero-stat-num { font-size: 34px; }
  .hero-stat-label { font-size: 9px; letter-spacing: .14em; }
  .container { width: 100%; padding-left: 20px; padding-right: 20px; }
  .about, .programs, .gallery, .testimonials, .featured, .contact { padding: 82px 0; }
  .section-heading { font-size: clamp(36px, 11vw, 52px); line-height: 1.08; }
  body.lang-mr .section-heading { font-size: clamp(31px, 9vw, 46px); line-height: 1.25; }
  .section-label { max-width: 100%; }
  .section-label-text { letter-spacing: .18em; line-height: 1.5; }
  .about-img-frame img { height: 380px; }
  .about-float-card { position: relative; left: auto; bottom: auto; margin: 18px 0 0; max-width: 100%; }
  .about-body { font-size: 18px; line-height: 1.8; }
  .program-card { padding: 38px 26px; }
  .gallery-header { display: block; margin-bottom: 34px; }
  .gallery-sub { max-width: 100%; margin-top: 16px; }
  .quote-section { padding: 82px 0; }
  .quote-section::before { font-size: 250px; top: -40px; }
  .quote-text { font-size: clamp(27px, 8vw, 38px); }
  body.lang-mr .quote-text { font-size: clamp(24px, 7.2vw, 34px); }
  .testimonial-card { padding: 38px 28px; }
  .contact-info-item { gap: 14px; }
  .contact-form { padding: 32px 22px; }
  .footer-grid { margin-bottom: 42px; }
  .footer-credit { text-align: center; }
  .whatsapp-btn { bottom: max(14px, env(safe-area-inset-bottom)); right: 14px; padding: 0; width: 54px; height: 54px; border-radius: 50%; justify-content: center; letter-spacing: 0; box-shadow: 0 8px 28px rgba(37,211,102,0.35); }
  .whatsapp-btn .wa-label { display: none; }
  .whatsapp-btn .wa-icon { font-size: 22px; line-height: 1; }
}

@media (max-width: 390px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-inner { padding-left: 16px; padding-right: 16px; }
  .hero-stats { grid-template-columns: 1fr; }
  .section-label-line { width: 28px; }
  .program-card { padding: 34px 22px; }
  .contact-form { padding: 28px 18px; }
}
