/* ═══════════════════════════════════════
   QUINTESSENTIALLY – STYLESHEET
   ═══════════════════════════════════════ */

/* ── FONT RENDERING ─────────────────── */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  text-wrap: pretty;
  font-synthesis: none !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── VARIABLES ──────────────────────── */
:root {
  --black:       #11153b;
  --dark:        #11153b;
  --dark-2:      #1a1f4a;
  --mid:         #2c2c2c;
  --light-mid:   #5a5a5a;
  --light:       #f5f3ef;
  --white:       #ffffff;
  --gold:        #b8960c;
  --gold-light:  #d4af37;
  --gold-pale:   #f0e6b0;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', sans-serif;
  --nav-h:       72px;
  --easing:      cubic-bezier(0.4, 0, 0.2, 1);
  --easing-out:  cubic-bezier(0, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── FEATHER ICONS ──────────────────── */
.feather {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ── TYPOGRAPHY UTILITIES ───────────── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── SCROLL REVEAL ──────────────────── */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
  transition-delay: var(--delay, 0s);
}

/* JS adds .js-loaded to <body> before animating — no JS = always visible */
.js-loaded .reveal-up {
  opacity: 0;
  transform: translateY(32px);
}

.js-loaded .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero content is ALWAYS visible immediately, no animation delay */
.hero-content.reveal-up,
.js-loaded .hero-content.reveal-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ═══════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s var(--easing), border-color 0.4s var(--easing);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: rgba(184, 150, 12, 0.2);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
  margin-right: 32px;
}

.logo svg { color: var(--white); }

.logo-text {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  white-space: nowrap;
}

/* Desktop Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.desktop-nav > li {
  position: static;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: var(--nav-h);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-arrow {
  width: 12px;
  height: 12px;
  stroke-width: 2;
  transition: transform 0.2s;
}

/* CTA area */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-member {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1.5px solid var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-member:hover {
  background: var(--white);
  color: var(--black);
}

.btn-member-sm {
  padding: 8px 18px;
  font-size: 10px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-login:hover { color: var(--white); }
.btn-login .feather { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  margin-left: 12px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── MEGA DROPDOWN ──────────────────── */
.mega-dropdown {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(184, 150, 12, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--easing), transform 0.25s var(--easing), visibility 0.25s;
  z-index: 999;
}

.has-dropdown.open > .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  gap: 0;
}

.mega-col {
  flex: 1;
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.mega-col:first-child {
  border-left: none;
  padding-left: 0;
}

.mega-heading {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 150, 12, 0.25);
}

.mega-col ul { display: flex; flex-direction: column; gap: 4px; }

.mega-col ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: color 0.2s, gap 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mega-col ul a:last-child { border-bottom: none; }

.mega-col ul a:hover { color: var(--white); gap: 14px; }

.mega-col ul a .feather {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s var(--easing);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-close {
  color: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close .feather { width: 22px; height: 22px; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.mobile-item {
  position: relative;
  overflow: hidden;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--gold); }
.mobile-link .feather { width: 16px; height: 16px; }

.mobile-login {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 8px;
}

.mobile-sub {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
  transform: translateX(100%);
  transition: transform 0.3s var(--easing);
  z-index: 10;
  overflow-y: auto;
  min-height: 100vh;
}

.mobile-sub.active {
  transform: translateX(0);
  position: relative;
}

.mobile-back {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-back .feather { width: 14px; height: 14px; }

.mobile-sub-link {
  display: block;
  padding: 15px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-sub-link:hover { color: var(--white); padding-left: 32px; }

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Fallback bg if no video */
.hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #0d1b2a 100%);
  z-index: 0;
}

.hero:has(.hero-video) .hero-fallback { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--easing) 0.2s forwards;
  /* decorative lines either side */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero-title {
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 300;
    line-height: 1.05;
    color: #dcb772;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeInUp 0.9s var(--easing) 0.4s forwards;
    margin-top: -16px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInUp 0.9s var(--easing) 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--easing) 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

.btn-ghost .feather { width: 14px; height: 14px; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--easing) 1.4s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════ */
.intro-section {
  padding: 120px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-title {
  margin-bottom: 24px;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--light-mid);
  margin-bottom: 28px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.2s;
}

.link-arrow:hover { gap: 14px; }
.link-arrow .feather { width: 14px; height: 14px; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-item {
  padding: 40px 32px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--easing);
}

.stat-item:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--light-mid);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  group: true;
}

.service-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--mid);
  transition: transform 0.7s var(--easing);
  position: relative;
}

/* Gradient overlay on image */
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-body {
  padding: 28px 24px;
  background: var(--white);
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}

.service-card:hover .service-body {
  border-top-color: var(--gold);
}

.service-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.service-icon .feather { width: 16px; height: 16px; }

.service-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-body p {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--light-mid);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }
.service-link .feather { width: 12px; height: 12px; }

/* ═══════════════════════════════════════
   MEMBERSHIP BANNER
   ═══════════════════════════════════════ */
.membership-banner {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.membership-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184, 150, 12, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.membership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.membership-text .section-title {
  margin-bottom: 16px;
}

.membership-text p {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════ */
.testimonials-section {
  padding: 120px 0;
  background: var(--light);
}

.testimonials-slider {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.6s var(--easing);
}

.testimonial-slide.active { display: block; }

.testimonial-slide blockquote {
  text-align: center;
  padding: 0 20px;
}

.quote-icon {
  margin: 0 auto 28px;
  color: var(--gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon .feather { width: 28px; height: 28px; }

.testimonial-slide blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 36px;
}

.testimonial-slide blockquote footer cite {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}

.testi-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testi-btn .feather { width: 18px; height: 18px; }

.testi-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--black);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand .logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand .logo-footer span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-links .feather { width: 15px; height: 15px; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 150, 12, 0.25);
}

.footer-col ul { display: flex; flex-direction: column; gap: 2px; }

.footer-col ul li a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════
   RESPONSIVE – TABLET (≤1100px)
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-link { padding: 0 10px; font-size: 9px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE – MOBILE (≤768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 20px; }

  /* Header */
  .desktop-nav, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .logo-text { display: none; }

  /* Hero */
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }

  /* Intro */
  .intro-section { padding: 80px 0; }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intro-stats { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-section { padding: 80px 0; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Membership banner */
  .membership-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  /* Testimonials */
  .testimonials-section { padding: 80px 0; }
  .testimonials-slider { padding: 0 10px; }

  /* Footer */
  .footer-top { padding: 60px 0 40px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal { flex-wrap: wrap; gap: 16px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; max-width: 280px; }

  .intro-stats { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stat-item { padding: 28px 20px; }
}

/* ── Logo image size ── */
.logo-img {
  height: 67px !important;
  width: auto !important;
}

/* ── Hero Logo ── */
.hero-logo {
  display: block;
  margin: 0 auto 36px auto;
  max-height: 160px;
  max-width: 65vw;
  width: auto;
  object-fit: contain;
  opacity: 0;
  animation: fadeInUp 0.9s var(--easing) 0s forwards;
}
