/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0e0e0e;
  --dark: #171717;
  --gold: #d4af17;
  --gold-bright: #eec93f;
  --white: #ffffff;
  --gray-light: #f6f5f2;
  --gray: #6b6b6b;
  --gray-border: #e5e3dd;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.eyebrow.center, h2.center { text-align: center; }
.eyebrow.light { color: var(--gold-bright); }

h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 40px; }
h2.light { color: var(--white); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 4px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
  margin-top: 10px;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212,175,23,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { height: 42px; width: 42px; }
.brand-text {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold); }
.nav-cta { padding: 10px 22px; font-size: 0.8rem; }
.nav-cta:hover { color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 76px;
}
.hero-logo {
  height: 96px;
  width: 96px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: #e9e9e9;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.4rem;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}
.about-copy h2 { margin-bottom: 6px; }
.about-copy .role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.bio-text { color: var(--gray); margin-bottom: 18px; font-size: 1.03rem; }

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--black);
  font-weight: 700;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

/* ---------- Philosophy ---------- */
.philosophy { background: var(--gray-light); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-border);
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-6px); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.card p { color: var(--gray); font-size: 0.97rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-contain {
  background: var(--black);
}
.gallery-item-contain img {
  object-fit: contain;
  object-position: center center;
}

/* ---------- Club ---------- */
.club { background: var(--white); }
.club-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.club-copy p { color: var(--gray); margin-bottom: 22px; }
.club-details { margin-bottom: 10px; }
.club-details li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.98rem;
}
.club-details a { color: var(--gold); font-weight: 600; }
.club-media img {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--black);
  color: var(--white);
}
.contact-lead {
  color: #bdbdbd;
  max-width: 560px;
  margin: 0 auto 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--dark);
  border: 1px solid rgba(212,175,23,0.25);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.25s ease;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.contact-icon { display: block; font-size: 1.8rem; margin-bottom: 14px; }
.contact-label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-value { display: block; font-size: 1.05rem; word-break: break-word; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.social-row a {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.25s ease;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { height: 40px; width: 40px; opacity: 0.9; }
.footer-sub { color: #666; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .club-grid { grid-template-columns: 1fr; }
  .club-media { order: -1; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(212,175,23,0.25);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .section { padding: 64px 0; }
  .stat-row { gap: 24px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-logo { height: 72px; width: 72px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stat-row { gap: 18px; }
  .stat-num { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.span-2 { grid-column: span 1; grid-row: span 1; }
  .contact-card { padding: 26px 16px; }
  .brand-text { font-size: 1rem; }
}

@supports (padding: max(0px)) {
  .site-header .header-inner {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
}
