* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow: #F5C842;
  --yellow-dark: #D4A017;
  --yellow-light: #FDF3C0;
  --yellow-pale: #FFFBEA;
  --dark: #1A1A1A;
  --mid: #444;
  --muted: #777;
  --white: #fff;
  --border: #E8D87A;
  --section-bg: #FFFDF0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: var(--dark);
  z-index: 100;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  color: var(--dark) !important;
}

.nav-cta:hover { background: var(--yellow-dark); color: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

/* PAGE HEADER (for non-home pages) */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 60px 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.page-header h1 span { color: var(--yellow); }

.page-header p {
  color: #aaa;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* HERO (home page only) */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 100px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(245,200,66,0.3));
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.member-counter {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 2.5rem;
}

.counter-text { font-size: 0.95rem; color: #bbb; }
.counter-num { font-size: 1.4rem; font-weight: 800; color: var(--yellow); }
.counter-divider { width: 1px; height: 32px; background: rgba(245,200,66,0.3); }

.progress-bar-wrap {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 8.6%;
  background: var(--yellow);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid rgba(245,200,66,0.5);
  color: var(--yellow);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--yellow); background: rgba(245,200,66,0.08); }

.btn-dark {
  background: var(--dark);
  color: var(--yellow);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.85; }

/* SECTIONS */
section, main { padding: 80px 2rem; }

.container { max-width: 1000px; margin: 0 auto; }

.section-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ABOUT */
.about { background: var(--section-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content p {
  color: var(--mid);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.values-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--mid);
}

.values-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 2px;
}

.about-visual {
  background: var(--dark);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.about-visual img {
  width: 120px;
  margin-bottom: 1.5rem;
}

.about-stat {
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.about-stat-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1.5rem 0;
}

/* POLICIES */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.policy-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: var(--yellow-pale);
  transition: border-color 0.2s, transform 0.2s;
}

.policy-card:hover {
  border-color: var(--yellow-dark);
  transform: translateY(-3px);
}

.policy-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.policy-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.policy-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* JOIN */
.join {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.join .section-title { color: var(--white); }
.join .section-sub { color: #aaa; margin: 0 auto 2.5rem; }

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.join-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.join-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.join-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.join-step p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
}

/* FORMS */
.member-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.member-form h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.member-form p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
}

.form-group input, .form-group select {
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--yellow);
}

.form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--yellow-dark); }

.form-fine {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

/* CONTACT */
.contact { background: var(--section-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.contact-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-form-wrap .form-group { margin-bottom: 1rem; }

.contact-form-wrap textarea {
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  resize: vertical;
  min-height: 120px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-wrap textarea:focus { border-color: var(--yellow); }

.contact-form-wrap input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-wrap input:focus { border-color: var(--yellow); }

/* NEWS */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: var(--yellow-pale);
}

.news-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.news-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--yellow); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1.5rem; gap: 1.25rem; border-top: 1px solid #333; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .join-steps { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  section, main { padding: 60px 1.25rem; }
  .page-header { padding: 50px 1.25rem; }
}
