:root {
  --navy: #0a0e1a;
  --navy-mid: #111827;
  --navy-light: #1a2540;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --gold-pale: #f5e9c8;
  --cream: #faf7f0;
  --text-light: #e8e2d4;
  --text-muted: #9a9080;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--text-light);
  font-weight: 300;
  overflow-x: hidden;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.92) 0%,
    rgba(10, 14, 26, 0.6) 60%,
    rgba(26, 37, 64, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--text-muted);
  margin: 20px auto 44px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  padding: 16px 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  padding: 16px 44px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232, 226, 212, 0.4);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.scroll-hint i {
  color: var(--gold);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px 0;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.stat-block {
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.25);
}

/* ── SECTION BASE ── */
.section {
  padding: 65px 0;
}

.containerss {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 70px;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: fill;
  display: block;
  max-height: 360px;
  min-height: 200px;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: -1;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto auto -16px -16px;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -43px;
  right: -24px;
  width: 90px;
  height: 90px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-badge .num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ── EVENTS ── */
.events-section {
  background: var(--navy-mid);
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.55) saturate(0.8);
}

.event-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.4) saturate(0.9);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 26, 0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.event-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.event-card:hover .event-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.event-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 340px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.event-card:hover .event-desc {
  opacity: 1;
  transform: translateY(0);
}

.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-top: 12px;
  width: fit-content;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 70px;
}

.service-card {
  background: var(--navy-light);
  padding: 44px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  background: #1f2d4a;
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s;
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
}

.service-icon-wrap i {
  color: var(--gold);
  font-size: 1.2rem;
  transition: color 0.4s;
}

.service-card:hover .service-icon-wrap i {
  color: var(--navy);
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.service-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 14px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-strip p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: rgba(10, 14, 26, 0.7);
  margin-bottom: 36px;
}

.btn-navy {
  padding: 16px 48px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  nav {
    padding: 18px 32px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  nav.scrolled {
    padding: 10px 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-badge {
    right: 0;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    gap: 32px;
  }

  .containerss {
    padding: 0 24px;
  }

  .section {
    padding: 35px 0;
  }

  .scroll-hint {
    bottom: 8px;
  }

  .event-title {
    margin-bottom: -76px;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-image-wrap img {
    max-height: 500px;
    min-height: 100px;
  }
}

@media (max-width: 425px) {
  .about-image-wrap img {
    max-height: 300px;
    min-height: 100px;
  }

  .about-badge {
    bottom: -49px;
    width: 81px;
    height: 73px;
  }
}

.ad-container {
  background: linear-gradient(145deg, #0f1320 0%, #0a0e1a 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 2rem 0;
  margin: 0;
}

.ad-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ad-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
  display: inline-block;
}

.google-ad-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: block;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

/* responsive ad container ensures adsense layout respects design */
.adsbygoogle {
  display: block;
  margin: 0 auto;
}

.ad-note {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 1px;
}

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--navy, #0a1628);
}
.why-section .section-title {
  color: #fff;
}
.why-section .section-desc {
  color: rgba(255, 255, 255, 0.55) !important;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.why-card:hover {
  border-color: #c9a84c;
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.why-num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
}
.why-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: 0.3s;
}
.why-card:hover .why-icon {
  background: #c9a84c;
  color: #0a1628;
}
.why-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}
.why-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ── BLOG ── */
.blog-section {
  background: #f8f5ef;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-card.featured .blog-thumb {
  aspect-ratio: 16/10;
}
.blog-meta {
  padding: 22px;
}
.blog-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
  display: block;
}
.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #0a1628;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-card.featured .blog-title {
  font-size: 1.35rem;
}
.blog-excerpt {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #aaa;
  border-top: 1px solid #f0ebe1;
  padding-top: 12px;
}
.blog-foot i {
  color: #c9a84c;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c9a84c;
  text-decoration: none;
  transition: 0.2s;
}
.blog-read-more:hover {
  gap: 10px;
}

.blog-card img {
  width: 100%;
  height: 300px;
}

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-top: 44px;
  align-items: start;
}
@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}
.faq-item {
  border-bottom: 1px solid #e8e3d8;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: #c9a84c;
}
.faq-arrow {
  min-width: 28px;
  height: 28px;
  border: 1px solid #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 0.7rem;
  transition: 0.35s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  background: #c9a84c;
  color: #0a1628;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  font-size: 0.83rem;
  color: #777;
  line-height: 1.8;
  padding-bottom: 18px;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
