@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #202646;
  --gold: #b98532;
  --gold-light: #e3bd73;
  --red: #a94742;
  --cream: #f8f3ea;
  --white: #ffffff;
  --gray-1: #f1ede5;
  --gray-2: #d8d1c6;
  --gray-3: #918984;
  --text: #585654;
  --text-soft: #605e59;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(32, 38, 70, 0.1);
  --shadow-md: 0 8px 40px rgba(32, 38, 70, 0.14);
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  color: var(--text-soft);
}

/* ─── LAYOUT UTILITIES ─────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 48px 0;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-navy {
  color: var(--navy);
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 151, 58, 0.1);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b3831f;
  border-color: #b3831f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ─── HEADER ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: 0 2px 12px rgba(28, 31, 59, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-mark {
  display: flex;
  gap: 8px;
  align-items: center;
}
.site-logo .logo-mark img {
  display: block;
  border-radius: 8px;
}
.logo-sub {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: var(--gray-1);
}
.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 10px;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--navy);
}
.text-footer {
  color: var(--gray-3);
}
.value-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 151, 58, 0.14);
  color: var(--gold);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(28, 31, 59, 0.85) 40%,
    rgba(28, 31, 59, 0.4) 100%
  );
  z-index: 1;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(28, 31, 59, 0.88) 0%,
      rgba(28, 31, 59, 0.62) 48%,
      rgba(28, 31, 59, 0.32) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.hero-content h1 {
  position: relative;
  padding-top: 22px;
}

.hero-content h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.hero-content {
  position: relative;
  margin: 0 10%;
  z-index: 2;
  max-width: 1200px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 58, 0.2);
  border: 1px solid rgba(201, 151, 58, 0.4);
  border-radius: 40px;
  padding: 6px 16px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ─── STATS BAR ──────────────────────────── */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  display: block;
}

/* ─── SECTION HEADER ─────────────────────── */
.sec-header {
  margin-bottom: 52px;
}
.sec-header p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 12px auto 0;
}
.sec-header.left p {
  margin-left: 0;
}

/* ─── CARD GRID ──────────────────────────── */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img {
  transform: scale(1.04);
}
.card-body {
  padding: 24px;
}
.card-body h3 {
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.92rem;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-2);
  font-size: 0.82rem;
  color: var(--gray-3);
}

/* ─── FEATURE SPLIT ──────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-split.reverse {
  direction: rtl;
}
.feature-split.reverse > * {
  direction: ltr;
}
.feature-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text .tag {
  margin-bottom: 16px;
}
.feature-text h2 {
  margin-bottom: 18px;
}
.feature-text p {
  margin-bottom: 24px;
  font-size: 1.02rem;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-soft);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ─── GAME FORMAT CARDS ──────────────────── */
.game-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.28s;
  border-bottom: 3px solid transparent;
}
.game-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.game-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), #b0b2c2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.game-card h3 {
  margin-bottom: 10px;
}
.game-card p {
  font-size: 0.9rem;
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-1);
  background: var(--navy);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.author-role {
  font-size: 0.8rem;
  color: var(--gray-3);
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ─── CTA SECTION ────────────────────────── */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/cta-bg.jpg') center/cover no-repeat;
  opacity: 0.6;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 36px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li + li {
  margin-top: 10px;
}
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact strong {
  color: var(--white);
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── COOKIE BANNER ──────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
  padding: 20px 0;
  display: none;
}
.cookie-banner.visible {
  display: block;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.88rem;
  color: var(--text-soft);
  flex: 1;
  min-width: 200px;
}
.cookie-inner p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.6;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin: 14px auto 0;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* ─── EVENTS PAGE ────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.event-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: all 0.28s;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.event-date-block {
  background: var(--navy);
  color: var(--white);
  padding: 20px 18px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 76px;
}
.event-date-block .day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.event-date-block .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.event-info {
  padding: 20px;
  flex: 1;
}
.event-info h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.event-info p {
  font-size: 0.86rem;
  margin-bottom: 12px;
}
.event-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--gray-3);
}
.event-meta-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── GALLERY PAGE ───────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.event-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.event-meta-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.75;
  flex: 0 0 auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--gray-2);
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 59, 0);
  transition: background 0.3s;
}
.gallery-item:hover::after {
  background: rgba(28, 31, 59, 0.25);
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.tall {
  grid-row: span 2;
}

/* ─── CONTACT PAGE ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info-block {
  padding-top: 12px;
}
.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 151, 58, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.info-card p,
.info-card a {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.info-card a:hover {
  color: var(--gold);
}

/* ─── POLICY PAGES ───────────────────────── */
.policy-content {
  max-width: 1220px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 52px 60px;
  box-shadow: var(--shadow);
}
.policy-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
}
.policy-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}
.policy-content p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text-soft);
}
.policy-content ul {
  margin: 10px 0 16px 20px;
  list-style: disc;
}
.policy-content ul li {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.policy-content strong {
  color: var(--text);
  font-weight: 600;
}
.policy-content a {
  color: var(--gold);
  text-decoration: underline;
}
.policy-meta {
  background: var(--gray-1);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ─── THANK YOU PAGE ─────────────────────── */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.thankyou-box {
  background: var(--white);
  border-radius: 20px;
  padding: 64px 56px;
  box-shadow: var(--shadow-md);
  max-width: 580px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.thankyou-box h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.thankyou-box p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 32px;
}

/* ─── MAP PLACEHOLDER ────────────────────── */
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 28px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── ABOUT PAGE ─────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.28s;
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-avatar {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info {
  padding: 22px;
}
.team-info h4 {
  margin-bottom: 4px;
}
.team-info span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

/* ─── PARTNERS STRIP ─────────────────────── */
.partners-strip {
  background: var(--gray-1);
  padding: 40px 0;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}
.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 24px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 36px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s;
}
.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* ─── PROCESS STEPS ──────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-item {
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.step-item h4 {
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.88rem;
}

/* ─── FAQ ─────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-2);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-split.reverse {
    direction: ltr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .cards-grid-3,
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .policy-content {
    padding: 32px 24px;
  }
  .thankyou-box {
    padding: 40px 24px;
  }
  .hero {
    min-height: 70vh;
  }
  .site-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
