/* =============================================
   NightPulseClub.com — Global Stylesheet
   Geo: PL | Lang: PL
   ============================================= */

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

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

:root {
  --navy:   #1c1f3b;
  --gold:   #c9973a;
  --gold-light: #e8c47a;
  --red:    #b33a3a;
  --cream:  #faf7f2;
  --white:  #ffffff;
  --gray-1: #f4f1eb;
  --gray-2: #e2ddd5;
  --gray-3: #9b9490;
  --text:   #222222;
  --text-soft: #5a5550;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(28,31,59,.09);
  --shadow-md: 0 8px 40px rgba(28,31,59,.13);
}

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: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,151,58,.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: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .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,.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,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ─── HEADER ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: 0 2px 12px rgba(28,31,59,.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 {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.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: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: all .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 .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 .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);
}

/* ─── 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,.85) 40%, rgba(28,31,59,.4) 100%);
  z-index: 1;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p  { color: rgba(255,255,255,.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,.2);
  border: 1px solid rgba(201,151,58,.4);
  border-radius: 40px;
  padding: 6px 16px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .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,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1} 50%{opacity:.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: .85rem; color: rgba(255,255,255,.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 .28s ease, box-shadow .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 .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: .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: .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: .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: .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 .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), #2e3370);
  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: .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 {
  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: .9rem; color: var(--navy); }
.author-role { font-size: .8rem; color: var(--gray-3); }
.stars { color: var(--gold); font-size: .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('../images/cta-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
.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,.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,.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,.1);
}
.footer-brand .site-logo { color: var(--white); margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: .9rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.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: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .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,.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: .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('../images/page-hero-bg.jpg') center/cover no-repeat;
  opacity: .15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.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: .82rem; color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .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 .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: .75rem; text-transform: uppercase; letter-spacing: .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: .86rem; margin-bottom: 12px; }
.event-meta-row { display: flex; gap: 12px; flex-wrap: wrap; font-size: .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;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .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 .3s;
}
.gallery-item:hover::after { background: rgba(28,31,59,.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: .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: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .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,.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: .9rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.info-card a:hover { color: var(--gold); }

/* ─── POLICY PAGES ───────────────────────── */
.policy-content {
  max-width: 820px;
  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: .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: .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: .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 .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: .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: .75rem;
  font-weight: 700;
  letter-spacing: .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(.55);
  transition: filter .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: .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 .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: .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; }
}
