/* Shaman Of Charlotte — main stylesheet
   Theme: black background, earth tones, gold accents, minimal mystical, premium/trustworthy */

:root {
  --bg: #0b0a08;
  --bg-alt: #14120f;
  --bg-card: #191612;
  --gold: #c9a24b;
  --gold-light: #e8c874;
  --earth: #8a6d4b;
  --earth-dark: #5c4a34;
  --text: #f2ede4;
  --text-muted: #b7ac9c;
  --border: rgba(201, 162, 75, 0.22);
  --radius: 10px;
  --max-width: 1140px;
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-light); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-top: 0; }
h3 { font-size: 1.3rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #0b0a08;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
}
.brand:hover { color: var(--gold-light); text-decoration: none; }
.brand svg { width: 28px; height: 28px; }
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px;
  color: var(--gold-light) !important;
}
.nav-cta:hover { background: var(--gold); color: #0b0a08 !important; text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(201,162,75,0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero p.lede {
  max-width: 640px;
  margin: 1.25rem auto 2rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--gold);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0b0a08 !important;
  text-decoration: none;
}
.btn-primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--gold-light) !important;
}
.btn-outline:hover { background: rgba(201,162,75,0.1); text-decoration: none; }

/* Sections */
section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header p { color: var(--text-muted); }

/* Cards / grid */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card h3 { color: var(--gold-light); margin-top: 0; }
.card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

/* Divider */
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  border: none;
}
.divider.left { margin: 1.5rem 0; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item h3 { margin: 0 0 0.6rem; font-size: 1.1rem; color: var(--text); }
.faq-item p { color: var(--text-muted); margin: 0; }

/* Quote / answer box (AEO) */
.answer-box {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
}
.answer-box strong { color: var(--text); }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1rem 0 0;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold-light); }

/* Location grid links */
.loc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.loc-list a {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--text);
}
.loc-list a:hover { border-color: var(--gold); text-decoration: none; background: var(--bg-card); }

/* Testimonial */
blockquote.testimonial {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 0;
}
blockquote.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

/* Contact form */
form.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}
form.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
}
form.contact-form input:focus,
form.contact-form textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 3rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 2rem;
}
.footer-grid h4 { color: var(--text); font-size: 0.95rem; margin: 0 0 0.85rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-grid a { color: var(--text-muted); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.powered-by {
  color: var(--text-muted);
}
.powered-by a { color: var(--gold); font-weight: 600; }

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
