/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body, Inter, sans-serif); color: #2D3748; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #E2E8F0; }
.site-header__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.site-header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #81B4B1; color: #fff; font-family: "DM Serif Display", Georgia, serif; font-size: 1.125rem; border-radius: 6px; }
.logo-text { font-family: "DM Serif Display", Georgia, serif; font-size: 1.25rem; color: #1A202C; }
.site-header__nav ul { display: flex; gap: 28px; align-items: center; }
.site-header__nav a { font-family: Inter, sans-serif; font-size: 0.875rem; font-weight: 500; color: #4A5568; text-decoration: none; transition: color 0.15s; }
.site-header__nav a:hover, .site-header__nav .active a { color: #81B4B1; }
.site-header__toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.site-header__toggle span { display: block; width: 100%; height: 2px; background: #2D3748; position: absolute; left: 0; transition: 0.2s; }
.site-header__toggle span:nth-child(1) { top: 0; }
.site-header__toggle span:nth-child(2) { top: 9px; }
.site-header__toggle span:nth-child(3) { top: 18px; }

/* === MOBILE NAV === */
@media (max-width: 768px) {
  .site-header__toggle { display: block; }
  .site-header__nav { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: #fff; padding: 32px 24px; }
  .site-header__nav ul { flex-direction: column; gap: 24px; }
  .site-header__nav a { font-size: 1.125rem; }
  .nav-open .site-header__nav { display: block; }
  .nav-open .site-header__toggle span:nth-child(1) { top: 9px; transform: rotate(45deg); }
  .nav-open .site-header__toggle span:nth-child(2) { opacity: 0; }
  .nav-open .site-header__toggle span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
}

/* === CONTENT === */
.content-wrap { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.page-content h1, .single-content h1 { font-family: "DM Serif Display", Georgia, serif; font-size: 2.25rem; color: #1A202C; margin-bottom: 24px; line-height: 1.2; }
.post-meta { font-size: 0.875rem; color: #718096; margin-bottom: 32px; }

/* === FOOTER === */
.site-footer { background: #1A202C; color: rgba(255,255,255,0.75); padding: 60px 24px 24px; }
.site-footer__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.site-footer__brand .logo-mark { background: rgba(129,180,177,0.2); }
.site-footer__brand .logo-text { color: #fff; }
.site-footer__tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 8px; }
.site-footer h4 { font-family: Inter, sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #81B4B1; margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { font-size: 0.8125rem; text-decoration: none; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.site-footer a:hover { color: #81B4B1; }
.site-footer__bottom { max-width: 960px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* === HOMEPAGE SECTIONS === */
.clube-section { padding: 60px 24px; }
.clube-section__inner { max-width: 960px; margin: 0 auto; }
.clube-section__header { text-align: center; margin-bottom: 36px; }
.clube-section__title { font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.75rem, 3.5vw, 2.25rem); color: #1A202C; margin-bottom: 12px; line-height: 1.2; }
.clube-section__subtitle { font-size: 1rem; color: #4A5568; max-width: 600px; margin: 0 auto; line-height: 1.6; }
