/* ============================================================
   FRANCIS (AKA) — Main Stylesheet
   Design System: Black / Gold / White — Cinematic Premium
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --black:        #0a0a0a;
  --black-mid:    #111111;
  --black-light:  #1a1a1a;
  --gold:         #C9A84C;
  --gold-light:   #e0c06a;
  --gold-dark:    #a8873a;
  --white:        #FFFFFF;
  --grey-light:   #cccccc;
  --grey-mid:     #888888;
  --grey-dark:    #444444;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-height:   72px;
  --section-pad:  clamp(60px, 8vw, 120px);
  --container:    1200px;
  --radius:       4px;
  --radius-card:  8px;

  --transition:   0.3s ease;
  --transition-slow: 0.6s ease;
}

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-pad {
  padding: var(--section-pad) 0;
}

.text-gold    { color: var(--gold); }
.text-grey    { color: var(--grey-light); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.12em; }

.bg-black     { background-color: var(--black); }
.bg-mid       { background-color: var(--black-mid); }
.bg-light     { background-color: var(--black-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--grey-light);
  line-height: 1.75;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--grey-light);
  line-height: 1.7;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.section-title {
  margin-bottom: 0.3em;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-mid);
  margin-bottom: 3rem;
  max-width: 560px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* ── Scroll Fade Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}

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

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 24px clamp(20px, 4vw, 60px) 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile .btn {
  margin-top: 16px;
  width: 100%;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  max-width: 760px;
}

.hero__label {
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 24px;
  color: var(--white);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Sub-page heroes */
.hero-sub {
  min-height: 55vh;
  padding-top: var(--nav-height);
}

.hero-sub .hero__content {
  padding: 80px 0 60px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--black-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 20px 0;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  white-space: nowrap;
}

.trust-bar__item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SHOWREEL
   ============================================================ */
.showreel {
  background: var(--black);
}

.showreel__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--black-mid);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.showreel__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.showreel__caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--grey-mid);
  margin-top: 20px;
  font-style: italic;
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.diff-card {
  background: var(--black-mid);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}

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

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

.diff-card__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.diff-card__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 16px;
  color: var(--white);
}

@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   PACKAGES / OFFERINGS
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pkg-card {
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

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

.pkg-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.pkg-card:hover::after {
  transform: scaleX(1);
}

.pkg-card__icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.pkg-card__title {
  font-size: 1.4rem;
  color: var(--white);
}

.pkg-card__desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.6;
  flex-grow: 1;
}

.pkg-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap var(--transition);
}

.pkg-card__link:hover {
  gap: 10px;
}

.pkg-card__link::after {
  content: '→';
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience {
  position: relative;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25);
}

.experience__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.experience__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.experience__body p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--black-light);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--transition);
}

.testi-card:hover {
  border-color: rgba(201,168,76,0.2);
}

.testi-card__stars {
  display: flex;
  gap: 4px;
}

.testi-card__stars span {
  color: var(--gold);
  font-size: 1rem;
}

.testi-card__quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testi-card__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 4px;
}

.testi-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testi-card__event {
  font-size: 0.8rem;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) and (min-width: 769px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

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

.gallery-item__overlay svg {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--transition), transform var(--transition);
  color: var(--white);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(0,0,0,0.45);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(0,0,0,0.8);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  background: none;
  border: none;
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav:hover {
  background: var(--gold);
  color: var(--black);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ============================================================
   LIVE ALBUM BANNER
   ============================================================ */
.album-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 56px 0;
  text-align: center;
}

.album-banner h2 {
  color: var(--black);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.album-banner p {
  color: rgba(0,0,0,0.7);
  margin-bottom: 28px;
  font-size: 1rem;
}

.album-banner .btn-gold {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.album-banner .btn-gold:hover {
  background: var(--black-light);
  border-color: var(--black-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================================
   BOOKING / ENQUIRY FORM
   ============================================================ */
.enquiry-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

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

.form-grid .form-group--full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-dark);
}

.form__submit {
  margin-top: 8px;
  width: 100%;
}

.form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin-top: 16px;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group--full { grid-column: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.9rem;
  transition: all var(--transition);
  font-weight: 700;
  font-size: 0.75rem;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  font-size: 0.88rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--gold);
}

.footer__contact-item {
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--grey-dark);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--grey-dark);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--grey-mid);
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SUB-PAGE SPECIFIC
   ============================================================ */

/* -- Shared sub-page section styles -- */
.page-section {
  padding: var(--section-pad) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black-mid);
}

.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--grey-light);
}

.feature-list__item::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.stat-card {
  background: var(--black-mid);
  padding: 36px 24px;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

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

/* FAQ / Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accordion__item {
  background: var(--black-mid);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.accordion__header:hover {
  color: var(--gold);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.accordion__item.open .accordion__body {
  padding: 0 24px 20px;
  max-height: 400px;
}

.accordion__body p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* CTA Banner (sub-pages) */
.cta-band {
  background: var(--black-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-band__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   BANDEOKE SPECIFIC
   ============================================================ */
.bdk-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  counter-reset: bdk-step;
}

.bdk-step {
  background: var(--black-mid);
  padding: 36px 24px;
  text-align: center;
  counter-increment: bdk-step;
}

.bdk-step__num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.bdk-step__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

@media (max-width: 768px) {
  .bdk-how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .bdk-how-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline__item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}

.timeline__dot {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.timeline__content {
  padding-top: 8px;
}

.timeline__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline__title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* Team members */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--black-mid);
  margin-bottom: 16px;
}

.team-card__name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-form-wrap {
  background: var(--black-mid);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 48px);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
body {
  animation: pageIn 0.4s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
