/* ===========================
   RESET & VARIABLES
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   rgba(201, 168, 76, 0.12);
  --gold-faint: rgba(201, 168, 76, 0.08);
  --white:      #F5F0E8;
  --cream:      #D9CEBA;
  --dark:       #080808;
  --dark2:      #0E0E0E;
  --dark3:      #121212;
  --dark4:      #181818;
  --muted:      #6A6050;
  --muted2:     #8A7F6A;
}

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

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===========================
   TYPOGRAPHY HELPERS
   =========================== */
.serif {
  font-family: 'Cormorant Garamond', serif;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  margin-bottom: 38px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--dark);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, transparent 100%);
  transition: background 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  padding: 14px 64px;
  background: rgba(5, 5, 5, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links li a {
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.72;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links li a:hover {
  opacity: 1;
  color: var(--gold-light);
}
.nav-links li a:hover::after { width: 100%; }

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 600;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s, width 0.35s;
}
.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 26px; }

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

/* ===========================
   MOBILE NAV DRAWER
   =========================== */
.mobile-nav {
  display: none; /* controlled by JS class */
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 4, 0.99);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.75;
  transition: color 0.3s, opacity 0.3s;
}
.mobile-nav a:hover { color: var(--gold-light); opacity: 1; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 42%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 90% 90% at 75% 85%, rgba(30,15,4,0.55) 0%, transparent 60%),
    linear-gradient(180deg, #040404 0%, #09080500 40%, #050505 100%);
}

/* decorative cross silhouette */
.hero-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 340px; height: 340px;
  opacity: 0.04;
  pointer-events: none;
}
.hero-cross::before,
.hero-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.hero-cross::before { width: 20px; height: 100%; left: 50%; transform: translateX(-50%); }
.hero-cross::after  { height: 20px; width: 68%; top: 30%; left: 16%; }

.hero-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.28;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 11vw, 118px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.55s forwards;
}
.hero-name span {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-cta {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-bar {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===========================
   ABOUT
   =========================== */
#about {
  background: var(--dark2);
  padding: 110px 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
/* decorative border offset */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
  z-index: 0;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, #1C1710 0%, #0D0B07 60%, #1A1610 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.about-img-placeholder i {
  font-size: 72px;
  color: rgba(201,168,76,0.1);
}

.about-text p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--cream);
  opacity: 0.72;
  margin-bottom: 20px;
}
.about-text p:first-of-type {
  opacity: 0.9;
  font-size: 15.5px;
}

.about-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ===========================
   MINISTRY
   =========================== */
#ministry {
  background: var(--dark3);
  padding: 110px 64px;
}

.ministry-inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.ministry-card {
  background: var(--dark4);
  padding: 46px 34px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.ministry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.ministry-card:hover::before { transform: scaleX(1); }
.ministry-card:hover { background: #1E1E1E; }

.ministry-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 26px;
  transition: background 0.3s, border-color 0.3s;
}
.ministry-card:hover .ministry-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.ministry-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.ministry-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted2);
}

/* ===========================
   MUSIC
   =========================== */
#music {
  background: var(--dark2);
  padding: 110px 64px;
}

.music-inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.music-card {
  position: relative;
  background: var(--dark4);
  overflow: hidden;
}

.music-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1A1510 0%, #0D0B07 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.55s;
}
.music-card:hover .music-thumb { transform: scale(1.06); }

.music-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.music-card:hover .music-thumb-overlay { opacity: 1; }

.play-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.music-num {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: rgba(201,168,76,0.38);
  z-index: 2;
}

.music-info {
  padding: 18px 18px 22px;
  border-top: 1px solid rgba(201,168,76,0.06);
}
.music-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.music-info span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding-top: 52px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.platform-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(201,168,76,0.18);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.platform-link i { color: var(--gold); font-size: 13px; }
.platform-link:hover { border-color: var(--gold); color: var(--gold-light); }

/* ===========================
   GALLERY
   =========================== */
#gallery {
  background: var(--dark);
  padding: 110px 64px 0;
}

.gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 60px;
}

.g-item {
  background: linear-gradient(140deg, #1A1510 0%, #0D0B07 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.07);
  font-size: 44px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.04);
  opacity: 0;
  transition: opacity 0.35s;
}
.g-item:hover::after { opacity: 1; }

.g1 { grid-column: 1; grid-row: 1; aspect-ratio: 4/5; }
.g2 { grid-column: 2; grid-row: 1; aspect-ratio: 4/5; }
.g3 { grid-column: 3; grid-row: 1; aspect-ratio: 4/5; }
.g4 { grid-column: 1; grid-row: 2; aspect-ratio: 3/2; }
.g5 { grid-column: 2; grid-row: 2; aspect-ratio: 3/2; }
.g6 { grid-column: 3; grid-row: 2; aspect-ratio: 3/2; }

/* ===========================
   BOOKING
   =========================== */
#booking {
  background: var(--dark3);
  padding: 110px 64px;
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,168,76,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.booking-inner .section-label {
  justify-content: center;
}
.booking-inner .section-label::before {
  content: '';
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.booking-inner .divider {
  margin: 0 auto 28px;
}

.booking-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted2);
  margin-bottom: 52px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.form-col2 { grid-column: span 2; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,168,76,0.14);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.48);
  background: rgba(255,255,255,0.04);
}
.form-group textarea {
  resize: vertical;
  min-height: 118px;
}
.form-group select { color: var(--muted); }
.form-group select option { background: var(--dark3); color: var(--white); }

.form-submit {
  grid-column: span 2;
  margin-top: 6px;
}
.form-submit button {
  width: 100%;
  padding: 16px 24px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s;
}
.form-submit button:hover { background: var(--gold-light); }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #040404;
  padding: 68px 64px 30px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.footer-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted2);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--muted);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.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; }

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.12); }
}

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  #navbar,
  #navbar.scrolled { padding-left: 36px; padding-right: 36px; }

  #about,
  #ministry,
  #music,
  #gallery,
  #booking { padding-left: 36px; padding-right: 36px; }

  footer { padding-left: 36px; padding-right: 36px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-img-wrap {
    max-width: 420px;
  }
  .about-img-wrap::before {
    top: -14px; left: -14px;
    right: 14px; bottom: 14px;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .g1 { grid-column: span 2; aspect-ratio: 16/7; }
  .g2 { grid-column: 1; grid-row: 2; aspect-ratio: 1; }
  .g3 { grid-column: 2; grid-row: 2; aspect-ratio: 1; }
  .g4 { grid-column: 1; grid-row: 3; aspect-ratio: 1; }
  .g5 { grid-column: 2; grid-row: 3; aspect-ratio: 1; }
  .g6 { grid-column: span 2; grid-row: 4; aspect-ratio: 16/7; }
}

/* ===========================
   RESPONSIVE — PHONE (≤768px)
   =========================== */
@media (max-width: 768px) {
  /* hide desktop nav links, show hamburger */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  #navbar { padding: 18px 24px; }
  #navbar.scrolled { padding: 13px 24px; }

  #about,
  #ministry,
  #music,
  #gallery,
  #booking { padding: 80px 24px; }

  footer { padding: 52px 24px 24px; }

  .hero-name { font-size: clamp(50px, 15vw, 82px); }
  .hero-tagline { font-size: 10px; letter-spacing: 4px; }
  .hero-cta { gap: 12px; }

  .about-grid { gap: 40px; }
  .about-stats { gap: 28px; }

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

  .music-header { flex-direction: column; align-items: flex-start; }
  .music-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .g1 { grid-column: span 2; aspect-ratio: 16/8; }
  .g2 { grid-column: 1; grid-row: 2; }
  .g3 { grid-column: 2; grid-row: 2; }
  .g4 { grid-column: 1; grid-row: 3; }
  .g5 { grid-column: 2; grid-row: 3; }
  .g6 { grid-column: span 2; grid-row: 4; aspect-ratio: 16/8; }
  .g2, .g3, .g4, .g5 { aspect-ratio: 1; }

  .booking-form { grid-template-columns: 1fr; }
  .form-col2, .form-submit { grid-column: span 1; }

  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }

  .platforms { flex-direction: column; align-items: flex-start; }
  .platform-label { margin-bottom: 4px; }
}

/* ===========================
   RESPONSIVE — SMALL PHONE (≤480px)
   =========================== */
@media (max-width: 480px) {
  .music-grid { grid-template-columns: 1fr; }

  .btn-primary,
  .btn-ghost { padding: 13px 28px; font-size: 9px; }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .g1, .g2, .g3, .g4, .g5, .g6 {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .about-stats { flex-direction: column; gap: 20px; }
}