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

:root {
  --navy:   #0d1b2a;
  --navy2:  #152336;
  --gold:   #c9a84c;
  --gold2:  #e8c97a;
  --white:  #ffffff;
  --off:    #f7f5f0;
  --text:   #2c2c2c;
  --muted:  #6b7280;
  --border: #e5e0d5;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.dark-bg  { background: var(--navy); color: var(--white); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.45);
  color: var(--white);
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 6px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }

/* ── Section Header ── */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold2); }

.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section-header.center { text-align: center; }
.section-desc { max-width: 600px; color: var(--muted); font-size: 1.05rem; }
.section-header.center .section-desc { margin: 0 auto; }
.dark-bg .section-desc { color: rgba(255,255,255,.6); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
}
.logo-icon { font-size: 1.5rem; }
.logo-text  { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--gold2) !important; color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1520 0%, #152336 50%, #1a2d45 100%);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.07) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  color: var(--white);
}

.hero-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.plus { font-size: 1.6rem; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .04em; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }

/* ── ABOUT ── */
.about { background: var(--off); }
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-placeholder {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: var(--radius);
  height: 440px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  text-align: center;
  gap: 12px;
}
.img-icon { font-size: 4rem; color: var(--gold); }
.about-img-placeholder p { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; }
.img-sub { font-size: .85rem !important; color: var(--gold) !important; font-family: 'Inter', sans-serif !important; font-weight: 400 !important; }

.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.badge-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.lead { font-size: 1.1rem; margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }

.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-weight: 600; color: var(--text); }
.pillar p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── PRACTICE AREAS ── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.practice-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background .2s, border-color .2s, transform .2s;
}
.practice-card:hover {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}
.card-icon { font-size: 2rem; margin-bottom: 18px; }
.practice-card h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 12px; }
.practice-card p  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── COURTS ── */
.courts { background: var(--white); }
.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.court-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.court-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,.12);
  transform: translateY(-3px);
}
.court-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
}
.court-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.court-card p  { font-size: .88rem; color: var(--muted); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-item { text-align: center; }
.why-icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.why-item h4 { font-size: 1.05rem; color: var(--gold); margin-bottom: 10px; }
.why-item p  { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ── TEAM ── */
.team { background: var(--off); }
.team-highlight {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow);
  margin-top: 56px;
}
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.team-bio h3 { font-size: 1.7rem; color: var(--navy); }
.team-role { color: var(--gold); font-weight: 600; font-size: .9rem; margin-bottom: 16px; display: block; }
.team-bio p { color: var(--muted); font-size: .95rem; }
.team-courts-tag {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.team-courts-tag span {
  background: var(--off);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}
.team-note {
  text-align: center;
  background: var(--navy);
  color: rgba(255,255,255,.8);
  border-radius: 12px;
  padding: 24px 32px;
  margin-top: 32px;
  font-size: .95rem;
}
.team-note strong { color: var(--gold); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.contact-info p  { color: var(--muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 600; color: var(--text); }
.contact-item p { font-size: .9rem; color: var(--muted); margin: 0; }

.contact-form-wrap {
  background: var(--off);
  border-radius: 16px;
  padding: 40px;
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 28px; color: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 48px 0 32px; color: rgba(255,255,255,.7); }
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .logo-icon { font-size: 1.6rem; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: .9rem; color: var(--gold); font-style: italic; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.footer-legal p { font-size: .82rem; margin-bottom: 8px; }
.disclaimer { color: rgba(255,255,255,.35) !important; font-size: .75rem !important; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 380px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .courts-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    position: fixed; inset: 70px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .practice-grid { grid-template-columns: 1fr; }
  .courts-grid   { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .team-highlight { flex-direction: column; padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .about-badge { bottom: -16px; right: 0; }
}
