/* ─── COLOR SYSTEM ───────────────────────────────────────── */
:root {
  --bg: #040404;
  --bg-alt: #0a0a0a;
  --bg-dark: #030303;
  --text: #f5f4f2;
  --text-muted: rgba(245, 244, 242, 0.65);
  --gold: #d8b25f;
  --gold-dim: rgba(216, 178, 95, 0.12);
  --gold-border: rgba(216, 178, 95, 0.22);
  --card-bg: rgba(14, 14, 14, 0.9);
  --transition: 0.4s ease;
  --radius: 16px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

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

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

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.6em;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
}

section {
  padding: 64px 20px;
}

/* ─── SECTION BASE ───────────────────────────────────────── */
.section {
  position: relative;
  background: var(--bg);
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
}

.section--leadership {
  background: var(--bg-dark);
}

.section--vision {
  background: var(--bg-alt);
}

.section--why {
  background: var(--bg-dark);
}

.section__intro {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ─── PRINT RUNNING HEADER (screen: hidden) ──────────────── */
.print-header {
  display: none;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 20px 60px;
  background:
    /* Dark overlay so text stays readable */
    linear-gradient(160deg, rgba(4,3,2,0.88) 0%, rgba(4,3,2,0.65) 50%, rgba(4,3,2,0.82) 100%),
    /* Venue interior photo */
    url("../images/hero.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,4,4,0.6) 0%, rgba(4,4,4,0.1) 60%, rgba(4,4,4,0.7) 100%);
  pointer-events: none;
}

/* Thin gold top border on cover */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.hero__logo {
  max-width: 130px;
  margin: 0 auto 24px;
  filter: brightness(1.1);
}

.hero__doc-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(216, 178, 95, 0.55);
  border: 1px solid rgba(216, 178, 95, 0.2);
  border-radius: 40px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero__lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.hero__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(216, 178, 95, 0.6);
  letter-spacing: 0.08em;
}


/* ─── TIMELINE ───────────────────────────────────────────── */
.timeline {
  display: grid;
  gap: 20px;
}

.timeline__item {
  background: var(--card-bg);
  padding: 26px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.timeline__year {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ─── LEADER CARD ────────────────────────────────────────── */
.leader-card {
  background: linear-gradient(150deg, rgba(14,14,14,0.95), rgba(8,8,8,0.9));
  border-radius: var(--radius);
  padding: 36px 30px 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(6px);
}

.leader-card__content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 22px;
}

.leader-card__content p {
  margin-bottom: 20px;
}

.leader-card__content ul {
  margin: 4px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.leader-card__content li {
  margin-bottom: 10px;
}

.leader-card__content strong {
  color: var(--gold);
  font-weight: 600;
}

/* ─── SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid;
  gap: 20px;
}

.service-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition);
}

.service-item:hover {
  border-color: var(--gold-border);
}

.service-item__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold);
}

.service-item__icon svg {
  width: 100%;
  height: 100%;
}

.service-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── VENUE CARDS ────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}

.card__media {
  position: relative;
  padding-top: 58%;
  background-size: cover;
  background-position: center;
  background-color: #0c0c0c;
  filter: saturate(1.15);
}

.card__body {
  padding: 26px 24px 28px;
}

.card__body ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.card__body li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── BRAND PILLARS ──────────────────────────────────────── */
.pillars {
  display: grid;
  gap: 24px;
}

.pillar {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.pillar h3 {
  margin-bottom: 12px;
}

.pillar p {
  color: var(--text-muted);
  margin: 0;
}

/* ─── WHY PARTNER LIST ───────────────────────────────────── */
.why-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-item:last-child {
  border-bottom: none;
}

.why-item__num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  padding-top: 4px;
}

.why-item__body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.why-item__body p {
  color: var(--text-muted);
  margin: 0;
}

/* ─── VISION POINTS ──────────────────────────────────────── */
.vision-points {
  display: grid;
  gap: 24px;
}

.vision-point {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.vision-point h3 {
  margin-bottom: 12px;
}

.vision-point p {
  color: var(--text-muted);
  margin: 0;
}

/* ─── PARTNER PROPERTIES ─────────────────────────────────── */
.partner-properties {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.partner-property {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
}

.partner-property__name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--text);
}

.partner-property__role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── METRICS ────────────────────────────────────────────── */
.metrics {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.metric {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(12, 12, 12, 0.95), rgba(14, 14, 14, 0.75));
  min-width: 200px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric__value {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.metric__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-section .section__intro {
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  background: linear-gradient(150deg, rgba(14,14,14,0.95), rgba(8,8,8,0.9));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
  transition: background var(--transition);
  cursor: pointer;
}

.contact-item:hover {
  background: rgba(216, 178, 95, 0.05);
}

.contact-item__icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 100%;
  height: 100%;
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

.contact-item__value {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--text);
}

.contact-divider {
  height: 1px;
  background: var(--gold-border);
  margin: 0 32px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #020202;
  padding: 48px 20px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-bottom: 24px;
}

.footer__brand img {
  max-width: 80px;
  opacity: 0.85;
}

.footer__brand p {
  max-width: 440px;
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.footer__legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE: 600px ──────────────────────────────────── */
@media (min-width: 600px) {
  .hero__content {
    text-align: left;
    max-width: 560px;
    margin: 0;
  }

  .hero__meta {
    justify-content: flex-start;
  }

  .section__intro {
    text-align: left;
    margin-left: 0;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .pillars {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .vision-points {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

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

  .metrics {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .contact-card {
    flex-direction: row;
    align-items: stretch;
  }

  .contact-item {
    flex: 1;
  }

  .contact-divider {
    width: 1px;
    height: auto;
    margin: 24px 0;
  }
}

/* ─── RESPONSIVE: 960px ──────────────────────────────────── */
@media (min-width: 960px) {
  section {
    padding: 80px 7vw;
  }

  .hero {
    padding: 140px 7vw 100px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4vw, 3.2rem);
  }

  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    text-align: left;
    display: grid;
    gap: 24px;
    align-items: center;
    grid-template-columns: 1fr;
  }

  .footer__brand {
    justify-items: flex-start;
    margin-bottom: 0;
  }

  .footer__legal {
    grid-column: 1;
    text-align: left;
  }
}

/* ─── PRINT / PDF ────────────────────────────────────────── */
@media print {
  @page {
    size: A4;
    margin: 18mm 18mm 16mm;

    @bottom-center {
      content: counter(page) " / " counter(pages);
      font-family: "Poppins", sans-serif;
      font-size: 7pt;
      color: rgba(216, 178, 95, 0.5);
      letter-spacing: 0.12em;
    }
  }

  /* Force dark luxury colors to render in PDF */
  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Running header: show on every page */
  .print-header {
    display: flex !important;
    align-items: center;
    gap: 10px;
    position: running(header);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(216, 178, 95, 0.25);
    margin-bottom: 0;
  }

  .print-header img {
    height: 22px;
    width: auto;
  }

  .print-header span {
    font-family: "Poppins", sans-serif;
    font-size: 7pt;
    color: rgba(216, 178, 95, 0.55);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  @page {
    @top-right {
      content: element(header);
    }
  }

  /* Page breaks */
  .page-break-after {
    page-break-after: always;
    break-after: page;
  }

  /* No breaks inside key elements */
  .timeline__item,
  .card,
  .pillar,
  .vision-point,
  .service-item,
  .why-item,
  .metric,
  .leader-card,
  .partner-property,
  .contact-item {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* Tighten sections for A4 */
  section {
    padding: 32px 0;
  }

  /* Hero cover */
  .hero {
    min-height: 100vh;
    padding: 55mm 0 40mm;
    background:
      linear-gradient(160deg, rgba(4,3,2,0.90) 0%, rgba(4,3,2,0.70) 50%, rgba(4,3,2,0.88) 100%),
      url("../images/hero.jpg") center / cover no-repeat;
  }

  /* Grids for A4 */
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .card__media {
    padding-top: 44%;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .pillars,
  .vision-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .contact-card {
    flex-direction: row;
  }

  .footer {
    page-break-before: avoid;
    break-before: avoid;
    padding: 20px 0 12px;
  }
}
