/* ── EQ HOUSE OF AFRICA — Shared Styles ─────────────────────────────────────── */

:root {
  --dark: #0B0F15;
  --dark2: #131820;
  --dark3: #1C2430;
  --copper: #B87333;
  --copper-light: #D4956A;
  --copper-pale: #F5EDE4;
  --off-white: #FAF8F4;
  --text: #1A1F28;
  --text-mid: #4A5568;
  --text-light: #8892A4;
  --border: rgba(184,115,51,0.15);
  --border-dark: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; gap: 14px; }

.nav-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
}

.nav-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: #fff; }
.nav-sub { font-size: 10px; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-links a {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
}

.nav-cta {
  background: var(--copper);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
}

.nav-cta:hover { background: var(--copper-light); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--copper-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--copper); color: var(--copper-light); }

.btn-dark {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-dark:hover { background: var(--dark3); }

/* ── PAGE HERO (for non-home pages) ── */
.page-hero {
  background: var(--dark);
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.06);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: italic; color: var(--copper-light); }

.page-hero-p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
}

/* ── SECTIONS ── */
section { padding: 80px 48px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--copper);
}

.section-h {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 48px 32px;
  border-top: 1px solid var(--border-dark);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.foot-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.foot-brand-sub { font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.foot-brand-p { font-size: 12px; color: #4A5568; line-height: 1.7; }
.foot-col-title { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.foot-link { display: block; font-size: 13px; color: #4A5568; margin-bottom: 10px; cursor: pointer; transition: color 0.2s; }
.foot-link:hover { color: var(--copper-light); }
.foot-bottom { border-top: 1px solid var(--border-dark); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; max-width: 1100px; margin: 0 auto; }
.foot-copy { font-size: 11px; color: #2D3748; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section, .page-hero { padding: 60px 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 20px 24px; }
}
