/* Sarang Orchestra — mobile-first theme */

:root {
  --color-gold: #c9a227;
  --color-gold-light: #e8c547;
  --color-red: #b91c1c;
  --color-maroon: #4a0e0e;
  --color-maroon-dark: #2d0808;
  --color-cream: #faf6f0;
  --color-ink: #1a1210;
  --color-muted: #6b5b54;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 12px 40px rgba(45, 8, 8, 0.15);
  --header-h: 72px;
  --container: min(1120px, 100% - 2rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-cream);
}

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

a { color: var(--color-red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:not(.btn):hover { color: var(--color-maroon); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-maroon-dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 720px; margin-inline: auto; }
.text-center { text-align: center; }
.lead { font-size: 1.125rem; color: var(--color-muted); }
.muted { color: var(--color-muted); }
.prose p { margin-block: 0 1rem; }
.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}
.prose li { margin-bottom: 0.35rem; }
.prose--intro { font-size: 1.02rem; line-height: 1.75; color: var(--color-ink); }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, color 0.15s, background 0.15s, border-color 0.15s;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-red), var(--color-maroon));
  color: #fff;
  border-color: var(--color-maroon);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #c41f1f, var(--color-maroon-dark));
  border-color: var(--color-maroon-dark);
}
.btn--outline {
  background: transparent;
  color: var(--color-maroon-dark);
  border-color: var(--color-gold);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--color-maroon-dark);
  background: var(--color-gold-light);
  border-color: var(--color-gold);
}
.btn--text {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-red);
  box-shadow: none;
}
.btn--text:hover,
.btn--text:focus-visible {
  color: var(--color-maroon-dark);
  background: none;
  transform: none;
  box-shadow: none;
  text-decoration: underline;
}
.btn--lg { padding: 0.85rem 1.75rem; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.site-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--color-maroon-dark); text-decoration: none;
}
.custom-logo-link img,
.site-logo img,
.custom-logo {
  max-height: 48px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
}
@media (min-width: 900px) {
  .custom-logo-link img,
  .site-logo img,
  .custom-logo {
    max-height: 64px;
    max-width: 280px;
  }
}

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-maroon-dark);
  transition: transform 0.2s;
}
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--color-cream); padding: 1rem; box-shadow: var(--shadow); }
.primary-nav ul { list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: 0.5rem 0; color: var(--color-ink); text-decoration: none; font-weight: 500; }
.header-cta { display: none; gap: 0.5rem; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; box-shadow: none; padding: 0; }
  .primary-nav ul { display: flex; gap: 1.5rem; }
  .primary-nav a { padding: 0; }
  .header-cta { display: flex; }
}

/* Hero */
.hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center; color: #fff;
  overflow: hidden;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide--placeholder {
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 50%, #1a0808 100%);
}
.hero-slide__overlay {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(26, 8, 8, 0.92) 0%, rgba(26, 8, 8, 0.55) 42%, rgba(26, 8, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(45, 8, 8, 0.35) 0%, rgba(26, 8, 8, 0.75) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding-block: 4rem 5rem;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}
.hero__content { min-width: 0; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem;
  color: var(--color-gold-light); margin-bottom: 0.5rem;
}
.hero__logo {
  margin: 0 0 1rem;
  line-height: 0;
}
.hero__logo-img {
  display: block;
  width: auto;
  max-width: min(360px, 90vw);
  max-height: clamp(72px, 14vw, 140px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.45));
}
.hero h1 { color: #fff; margin: 0 0 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 1.2rem; max-width: 36ch; opacity: 0.95; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
/* Hero CTAs on dark background */
.hero .btn--primary:hover,
.hero .btn--primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #d42222, var(--color-maroon-dark));
  border-color: var(--color-gold-light);
}
.hero .btn--book-now {
  color: #fff;
  border-color: var(--color-gold-light);
}
.hero .btn--book-now:hover,
.hero .btn--book-now:focus-visible {
  color: var(--color-maroon-dark);
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* Header Book Now — filled on light background */
.site-header .header-cta .btn--book-now {
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-maroon));
  border-color: var(--color-gold-light);
}
.site-header .header-cta .btn--book-now:hover,
.site-header .header-cta .btn--book-now:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #c41f1f, var(--color-maroon-dark));
  border-color: var(--color-gold-light);
}

/* Dark CTA band + cookie bar */
.section--cta-band .btn--primary:hover,
.section--cta-band .btn--primary:focus-visible,
.cookie-consent .btn--primary:hover,
.cookie-consent .btn--primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #d42222, var(--color-maroon-dark));
  border-color: var(--color-gold-light);
}
.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__media img {
  width: 100%;
  max-width: min(420px, 100%);
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
@media (min-width: 640px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
  }
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    align-items: center;
  }
  .hero__media {
    justify-content: center;
  }
  .hero__media img {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding-inline: clamp(2rem, 6vw, 4rem);
  }
}
.hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff;
  background: transparent; cursor: pointer; padding: 0;
}
.hero-dot.is-active { background: var(--color-gold); border-color: var(--color-gold); }

/* Sections */
.section { padding: 3.5rem 0; }
.section-header { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
/* Homepage About / intro */
.section--intro.about-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fff 0%, var(--color-cream) 55%, #f3ebe0 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.about-home__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(185, 28, 28, 0.06), transparent 55%);
}
.about-home__container {
  position: relative;
  z-index: 1;
}
.about-home__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.about-home__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}
.about-home__title {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.25;
  color: var(--color-maroon-dark);
}
.about-home__divider {
  width: 80px;
  height: 4px;
  margin: 1.25rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red), var(--color-gold));
}
.about-home__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-home__layout {
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: 2.5rem;
  }
  .about-home__layout:not(:has(.about-home__media)) {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-inline: auto;
  }
}
.about-home__panel {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 16px 48px rgba(45, 8, 8, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.about-home__prose > p:first-child {
  margin-top: 0;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, rgba(250, 246, 240, 0.9), #fff);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-maroon-dark);
}
.about-home__prose > p:not(:first-child) {
  color: var(--color-ink);
}
.about-home__prose > ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .about-home__prose > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-home__prose > ul > li {
  margin: 0;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  position: relative;
  background: var(--color-cream);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.2);
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-home__prose > ul > li::before {
  content: "♪";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 700;
}
.about-home__prose > ul > li:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 4px 12px rgba(45, 8, 8, 0.06);
}
.about-home__prose > p:last-child {
  margin-bottom: 0;
  padding-top: 0.5rem;
  font-style: italic;
  color: var(--color-muted);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.about-home__media {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.about-home__figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 8, 8, 0.2);
  border: 3px solid rgba(201, 162, 39, 0.45);
}
.about-home__figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.about-home__media-caption {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-maroon);
}
.about-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .about-home__actions {
    margin-top: 3rem;
  }
}
.section--intro { background: #fff; }
.section--about-extra {
  background: #fff;
  padding-top: 0;
}
.about-page-extra__prose {
  padding: 2rem;
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 8px 28px rgba(45, 8, 8, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.15);
}
.section--artists-showcase { background: #fff; }
.artists-showcase__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.artists-showcase__header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.artists-showcase__subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.artists-showcase__marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.artists-showcase__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  animation: artists-marquee var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
}
.artists-showcase__set {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5rem;
  flex-shrink: 0;
}
.artists-showcase__marquee:hover .artists-showcase__track {
  animation-play-state: paused;
}
@keyframes artists-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--set-width, 0px))); }
}
.artists-showcase__track .artist-showcase-card {
  flex: 0 0 min(260px, 72vw);
  width: min(260px, 72vw);
}
.artist-showcase-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s;
}
.artists-showcase__marquee:hover .artist-showcase-card:hover {
  box-shadow: 0 16px 48px rgba(45, 8, 8, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .artists-showcase__marquee {
    mask-image: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .artists-showcase__track {
    animation: none;
    padding-inline: 1rem;
  }
}
.artist-showcase-card__link {
  display: block;
  padding: 1.25rem 1rem 1.5rem;
  color: inherit;
  text-decoration: none;
}
.artist-showcase-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, var(--color-cream), #ebe3d6);
}
.artist-showcase-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-showcase-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-maroon);
  opacity: 0.35;
}
.artist-showcase-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
}
.artist-showcase-card__role {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
}
.artists-showcase__footer {
  margin: 2.5rem 0 0;
  text-align: center;
}
.section--featured-event { background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%); }
/* Facebook Page Plugin is capped at 500px wide by Meta — see developers.facebook.com/docs/plugins/page-plugin */
.section--facebook__lead {
  margin: -0.5rem 0 1.5rem;
  max-width: 65ch;
}
.section--facebook .facebook-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  width: var(--container);
  margin-inline: auto;
}
.section--facebook .facebook-embed {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  overflow: hidden;
}
.section--facebook .facebook-embed .fb-page,
.section--facebook .facebook-embed .fb-page > span,
.section--facebook .facebook-embed iframe {
  width: 100% !important;
  max-width: 500px !important;
}
.section--facebook .facebook-embed iframe {
  min-height: 500px;
  border: 0;
  display: block;
}
.section--facebook .facebook-layout:has(.facebook-embed):not(:has(.facebook-gallery-panel)) {
  grid-template-columns: 1fr;
}
.facebook-gallery-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.facebook-gallery-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.facebook-gallery-panel__header h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--color-maroon-dark);
}
.facebook-gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .facebook-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.facebook-gallery-panel__empty {
  margin: 0;
}
.facebook-gallery-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  .section--facebook .facebook-layout:has(.facebook-embed):has(.facebook-gallery-panel) {
    grid-template-columns: 500px 1fr;
  }
  .section--facebook .facebook-embed {
    margin-inline: 0;
  }
}
.section--cta-band {
  background: linear-gradient(135deg, var(--color-maroon), var(--color-maroon-dark));
  color: #fff;
}
.section--cta-band h2 { color: var(--color-gold-light); }
.link-arrow { font-weight: 600; }

/* Cards */
.card-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid--artists { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(201,162,39,0.2);
}
.card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card__media--portrait img { aspect-ratio: 4/5; }
.card__body { padding: 1.25rem; }
.card__title { margin: 0 0 0.5rem; font-size: 1.35rem; }
.card__title a { color: inherit; text-decoration: none; }
.card__meta { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 0.75rem; }
.card__instrument { color: var(--color-red); font-weight: 600; margin: 0 0 0.5rem; }
.card__highlights { margin: 0.75rem 0; padding-left: 1.2rem; font-size: 0.9rem; }

.badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 0.5rem;
}
.badge--open { background: #dcfce7; color: #166534; }
.badge--limited { background: #fef9c3; color: #854d0e; }
.badge--sold_out { background: #fee2e2; color: #991b1b; }
.badge--free { background: #dbeafe; color: #1e40af; }
.badge--private { background: #f3e8ff; color: #6b21a8; }

/* Tabs */
.tab-nav { display: flex; gap: 0.5rem; margin: 1.5rem 0 2rem; flex-wrap: wrap; }
.tab-nav__link {
  padding: 0.5rem 1rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; color: var(--color-muted);
  border: 1px solid rgba(201,162,39,0.4);
}
.tab-nav__link.is-active { background: var(--color-maroon-dark); color: #fff; border-color: var(--color-maroon-dark); }

/* Artist profile */
.artist-profile { display: grid; gap: 2rem; }
@media (min-width: 768px) {
  .artist-profile { grid-template-columns: 320px 1fr; align-items: start; }
}

/* Gallery */
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; background: rgba(45,8,8,0.4);
}
.gallery-item__trigger { border: none; padding: 0; cursor: pointer; width: 100%; position: relative; }
.gallery-modal {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
}
.gallery-modal[hidden] { display: none; }
.gallery-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.8); }
.gallery-modal__content {
  position: relative; width: min(900px, 92vw); aspect-ratio: 16/9; z-index: 1;
}
.gallery-modal__content iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.gallery-modal__close {
  position: absolute; top: -2.5rem; right: 0; background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
}

/* Image lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 210;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox__backdrop {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.9);
}
.gallery-lightbox__dialog {
  position: relative; z-index: 1;
  width: min(1200px, 96vw);
  max-height: 92vh;
  display: flex; flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.gallery-lightbox__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(92vh - 6rem);
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox__caption {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  text-align: center;
  max-width: 60ch;
}
.gallery-lightbox__caption[hidden] { display: none; }
.gallery-lightbox__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.gallery-lightbox__close {
  position: absolute; top: -2.75rem; right: 0;
  background: none; border: none; color: #fff;
  font-size: 2.25rem; line-height: 1; cursor: pointer;
  padding: 0.25rem;
}
.gallery-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 3rem; height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(45, 8, 8, 0.65);
  color: #fff;
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.gallery-lightbox__nav:hover:not(:disabled),
.gallery-lightbox__nav:focus-visible:not(:disabled) {
  background: var(--color-maroon);
  border-color: var(--color-gold-light);
}
.gallery-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.gallery-lightbox__nav--prev { left: max(0.5rem, 2vw); }
.gallery-lightbox__nav--next { right: max(0.5rem, 2vw); }
@media (max-width: 600px) {
  .gallery-lightbox__nav {
    width: 2.5rem; height: 2.5rem;
    font-size: 1.5rem;
  }
  .gallery-lightbox__close { top: -2.25rem; }
}

/* Contact page */
.section--contact-page {
  background: linear-gradient(165deg, #fff 0%, var(--color-cream) 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.contact-page__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.contact-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
}
.contact-page__header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.contact-page__title-ml {
  margin: 0.5rem 0 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--color-maroon);
  line-height: 1.35;
}
.contact-page__divider {
  width: 72px;
  height: 4px;
  margin: 1.25rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red), var(--color-gold));
}
.contact-page__panel {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 39, 0.28);
  text-align: center;
}
.contact-page__intro {
  margin-bottom: 2rem;
  text-align: left;
}
.contact-page__intro-en {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-ink);
}
.contact-page__intro-ml {
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-maroon-dark);
  background: linear-gradient(135deg, rgba(250, 246, 240, 0.95), #fff);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.contact-page__phone-block {
  margin-bottom: 2rem;
}
.contact-page__phone-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.contact-page__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  color: var(--color-maroon-dark);
  text-decoration: none;
  line-height: 1.2;
}
.contact-page__phone:hover {
  color: var(--color-red);
}
.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.contact-page__map {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(45, 8, 8, 0.08);
}
.contact-page__map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}
.section--contact-page .btn--book-now {
  color: #fff;
  border-color: var(--color-maroon);
}
.section--contact-page .btn--outline {
  color: var(--color-maroon-dark);
  border-color: var(--color-gold);
}
.section--contact-page .btn--outline:hover,
.section--contact-page .btn--outline:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-maroon));
  border-color: var(--color-maroon);
}

.contact-page__team {
  margin-top: 2.5rem;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #1a0a0a 0%, var(--color-maroon-dark) 55%, #2d1212 100%);
  box-shadow: var(--shadow);
}
.contact-page__team-heading {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.contact-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-team__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-team__photo-wrap {
  width: clamp(120px, 22vw, 168px);
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201, 162, 39, 0.65);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: #fff;
}
.contact-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.contact-team__title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}
.contact-team__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.3;
}
@media (max-width: 720px) {
  .contact-team {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Newsletter */
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 0.65rem; border-radius: var(--radius); border: 1px solid #d4c4b0; }

/* Footer */
.site-footer {
  background: var(--color-maroon-dark); color: rgba(255,255,255,0.85);
  padding: 3rem 0 0;
}
.site-footer h2, .site-footer h3 { color: var(--color-gold-light); font-size: 1.1rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--color-gold-light); }
.site-footer__legal {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.92;
}
.site-footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0; font-size: 0.875rem; text-align: center;
}
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}
.social-links__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-links__link:hover,
.social-links__link:focus-visible {
  color: var(--color-maroon-dark);
  background: var(--color-gold);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}
.social-links__link .social-icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: calc(1.25rem + var(--cookie-bar-height, 0px));
  right: 1.25rem;
  z-index: 150;
  transition: bottom 0.25s ease;
  display: flex; align-items: center; gap: 0.5rem;
  background: #25d366; color: #fff; padding: 0.75rem 1rem;
  border-radius: 999px; text-decoration: none; font-weight: 700;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
}

/* Cookie consent */
.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 140;
  background: var(--color-ink); color: #fff;
  padding: 1rem; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }

/* Pagination */
.pagination { margin-top: 2rem; }
.pagination .nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* 404 */
.section--404 { min-height: 50vh; display: flex; align-items: center; }

/* Page header decoration */
.page-header--decorated::before {
  content: ""; display: block; width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red));
  margin-bottom: 1rem; border-radius: 2px;
}

.featured-image { margin: 1.5rem 0; border-radius: var(--radius); overflow: hidden; }
