*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #faf8f5;
  --color-dark: #1c1917;
  --color-warm: #44403c;
  --color-mid: #78716c;
  --color-light: #d6d3d1;
  --color-cream: #f5f0eb;
  --color-accent: #92400e;
  --color-accent-light: #b45309;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #faf8f5;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: #a8a29e;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #faf8f5;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-dark);
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(146, 64, 14, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 50%, rgba(120, 113, 108, 0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-pretitle {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-hook {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: #d6d3d1;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--color-accent-light);
  color: var(--color-bg);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--color-accent-light);
  color: white;
}

/* === PAGE HERO (shorter, for subpages) === */
.page-hero {
  min-height: auto;
  padding: 8rem 1.5rem 4rem;
}

.page-hero .hero-content {
  max-width: 700px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero .hero-hook {
  margin-bottom: 0;
}

/* === SECTIONS === */
section {
  padding: 5rem 1.5rem;
}

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

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-warm);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border: 1px solid #e7e5e4;
  transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-warm);
  line-height: 1.7;
}

/* === REFERRAL SECTION === */
.dark-section {
  background: var(--color-dark);
  color: var(--color-bg);
}

.dark-section .section-label {
  color: var(--color-accent-light);
}

.dark-section .section-intro {
  color: #a8a29e;
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.referral-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.referral-arrow {
  color: var(--color-accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.referral-item p {
  font-size: 0.9rem;
  color: #d6d3d1;
  line-height: 1.6;
}

/* === AI CONSULTING === */
.ai-intro {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-warm);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--color-accent);
}

.ai-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ai-service {
  padding: 1.5rem;
  border: 1px solid #e7e5e4;
  background: white;
}

.ai-service h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ai-service p {
  font-size: 0.85rem;
  color: var(--color-warm);
  line-height: 1.7;
}

.proof-block {
  background: var(--color-cream);
  border-left: 3px solid var(--color-accent);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.proof-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.proof-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-warm);
  line-height: 1.8;
}

.ai-cta {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid #e7e5e4;
}

.ai-cta p {
  font-size: 1rem;
  color: var(--color-warm);
  margin-bottom: 0.3rem;
}

.ai-cta strong {
  color: var(--color-dark);
}

.ai-cta .small {
  font-size: 0.85rem;
  color: var(--color-mid);
  font-style: italic;
}

/* === HUB CARDS (home page) === */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.hub-card {
  background: white;
  padding: 2.5rem 2rem;
  border: 1px solid #e7e5e4;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.2s;
}

.hub-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.hub-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hub-card p {
  font-size: 0.9rem;
  color: var(--color-warm);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hub-card-link {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1.5px solid var(--color-accent-light);
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.hub-card-link:hover {
  background: var(--color-accent-light);
  color: white;
}

/* === SECTION WITH CREAM BG === */
.cream-section {
  background: var(--color-cream);
}

/* === CONTACT / FOOTER === */
footer {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand .tagline {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #a8a29e;
  line-height: 1.7;
}

.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #d6d3d1;
}

.contact-line .label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-mid);
  width: 55px;
  flex-shrink: 0;
}

.contact-line a {
  color: #d6d3d1;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-line a:hover {
  color: var(--color-accent-light);
}

.footer-ebay {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #a8a29e;
}

.footer-ebay a {
  color: #d6d3d1;
  text-decoration: none;
}

.footer-bottom {
  max-width: 860px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-mid);
}

.footer-bottom a {
  color: var(--color-mid);
  text-decoration: none;
}

/* === DIVIDER === */
.section-divider {
  max-width: 860px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--color-light);
}

/* === RESPONSIVE === */
@media (max-width: 700px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .services-grid,
  .referral-grid,
  .ai-services,
  .footer-inner,
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-hook {
    font-size: 1.05rem;
  }
}
