/* GowLife — Base: Variables, Reset, Typography, Utilities */

/* ========== VARIABLES ========== */
:root {
  --bg: #050505;
  --bg-elevated: #0c0c0d;
  --card-bg: #121212;
  --ink: #f5f5f5;

  --brand: #5BA8A0;
  --brand-glow: rgba(91, 168, 160, 0.3);
  --accent: #E8984B;
  --accent-glow: rgba(232, 152, 75, 0.2);
  --gold: #F0C05A;
  --rust: #C45A3C;

  --muted: #a3a3a3;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.5);

  --font-main: 'Inter', system-ui, sans-serif;
  --font-title: 'Space Grotesk', system-ui, sans-serif;

  --header-h: 72px;
  --container: 1100px;
}

/* ========== LIGHT THEME OVERRIDES ========== */
:root.light {
  --bg: #ffffff;
  --bg-elevated: #f8fafc;
  --card-bg: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ========== LAYOUT ========== */
.container { width: min(var(--container), 92vw); margin: 0 auto; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-elevated); }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #5BA8A0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

:root.light h1 {
  background: linear-gradient(135deg, #0f172a 0%, #5BA8A0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.kicker {
  font-family: var(--font-title);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 55ch;
  line-height: 1.7;
}

.small { font-size: 0.9rem; color: var(--muted); }
.tiny { font-size: 0.8rem; color: var(--muted); }
.text-center { text-align: center; }
.text-brand { color: var(--brand); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }

/* ========== GRIDS ========== */
.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ========== VISIBILITY ========== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
