/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg-card:   #141414;
  --bg-hover:  #1a1a1a;
  --accent:    #c8a45a;
  --accent-dim:#a88a3a;
  --text:      #e0e0e0;
  --text-muted:#999;
  --border:    #2a2a2a;
  --max-w:     1100px;
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #e0c06a; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: #fff; font-weight: 600; line-height: 1.3; }
h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: .8rem; }
h3 { font-size: 1.3rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex;
  gap: .3rem;
  align-items: center;
}

nav a {
  color: var(--text-muted);
  padding: .5rem .8rem;
  border-radius: var(--radius);
  font-size: .9rem;
  transition: color .2s, background .2s;
}
nav a:hover, nav a.active {
  color: #fff;
  background: var(--bg-hover);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::after { content: ' \25BE'; font-size: .7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: .4rem 0;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .5rem 1rem;
  font-size: .85rem;
  border-radius: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero .subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background .2s, transform .1s;
  border: none;
  cursor: pointer;
  font-size: .95rem;
}
.btn:hover { background: #e0c06a; color: #0a0a0a; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #0a0a0a; }

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 4rem 0; }
section:nth-child(even) { background: var(--bg-card); }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { margin-bottom: .3rem; }
.section-title p { color: var(--text-muted); }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.card h3 { color: var(--accent); margin-bottom: .5rem; }

/* ===== ABOUT / STATS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.stat-list { list-style: none; margin: 1.5rem 0; }
.stat-list li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.stat-list .label { color: var(--text-muted); }
.stat-list .value { color: #fff; font-weight: 500; }

/* ===== PRICING TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.price-table th {
  text-align: left;
  padding: .8rem 1rem;
  background: var(--bg-hover);
  color: var(--accent);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-dim);
}
.price-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border);
}
.price-table tr:hover td { background: var(--bg-hover); }
.price-table .price { color: var(--accent); font-weight: 600; white-space: nowrap; }

/* ===== MEDIA / PRESS ===== */
.press-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.press-item:last-child { border-bottom: none; }
.press-item .source {
  font-size: .85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .3rem;
}
.press-item .date { color: var(--text-muted); font-size: .85rem; }

/* ===== BLOG ===== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.blog-card .meta {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-item h3 { font-size: 1rem; margin-bottom: .3rem; }

/* ===== SOCIAL BAR ===== */
.social-bar {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 2rem 0;
}
.social-bar a {
  color: var(--text-muted);
  font-size: 1rem;
  padding: .5rem;
  transition: color .2s;
}
.social-bar a:hover { color: var(--accent); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
}
footer p { margin-bottom: .3rem; }

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

/* ===== PROFILE CARDS ===== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.profile-card h3 { color: var(--accent); }

/* ===== BLOG POST ===== */
.blog-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-content h2 { margin-top: 2rem; font-size: 1.5rem; }
.blog-content h3 { margin-top: 1.5rem; }
.blog-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===== WORKSHOP STRUCTURE ===== */
.workshop-module {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.workshop-module h3 { color: var(--accent); }
.workshop-module ul {
  list-style: none;
  margin: 1rem 0 0;
}
.workshop-module ul li {
  padding: .3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.workshop-module ul li::before {
  content: '\2022';
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }
  nav ul.open { display: flex; }

  .dropdown-menu {
    position: static;
    border: none;
    padding-left: 1rem;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }

  .hero h1 { font-size: 2rem; }
  .about-grid,
  .contact-grid,
  .profile-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}
