/* ─────────── Design Tokens ─────────── */
:root {
  --dark-900: #1a1a1a;
  --dark-800: #242424;
  --dark-700: #2d2d2d;
  
  --accent: #D4A84B;
  --accent-hover: #E4B85B;
  --accent-subtle: rgba(212, 168, 75, 0.15);

  --gray-700: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-100: #f8fafc;
  --white: #ffffff;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: 0.2s ease;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--gray-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

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

/* ─────────── Layout ─────────── */
.container {
  width: min(90%, 960px);
  margin-inline: auto;
}

/* ─────────── Header ─────────── */
.header {
  background: var(--dark-900);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

/* Gold text link for strategy call in header */
.nav-link-accent {
  color: var(--accent);
  font-weight: 500;
}

.nav-link-accent:hover {
  color: var(--accent-hover);
}

/* ─────────── Hero ─────────── */
.hero {
  background: linear-gradient(160deg, var(--dark-900) 0%, var(--dark-700) 100%);
  padding: 5rem 0 4.5rem;
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 600px;
}

.hero-img-portrait {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent);
  object-fit: cover;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-descriptor {
  font-size: 0.9375rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.375rem;
}

.hero-skills {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1.75rem;
}

.hero-skills li {
  font-size: 0.8125rem;
  color: var(--gray-500);
  position: relative;
}

.hero-skills li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.875rem;
  color: var(--gray-500);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-block;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark-900);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 75, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-500);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary {
  background: var(--dark-800);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--dark-700);
  transform: translateY(-2px);
}

/* ─────────── Results Section ─────────── */
.results {
  background: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.results-header {
  margin-bottom: 2rem;
}

.results-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.results-headline {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.results-subhead {
  font-size: 1rem;
  color: var(--gray-500);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.result-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius);
}

.result-item-highlight {
  background: var(--accent-subtle);
}

.result-number {
  order: -1;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.result-item-highlight .result-number {
  color: var(--accent);
}

.result-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  font-weight: 500;
}

.results-testimonial {
  margin: 0 auto 1.25rem;
  max-width: 560px;
}

.results-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto 0.75rem;
  line-height: 1.7;
  border: none;
  padding: 0;
}

.results-cite {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.results-cite cite {
  font-style: normal;
}

.results-link {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
  transition: opacity var(--transition);
}

.results-link:hover {
  opacity: 0.8;
}

/* ─────────── About Section ─────────── */
.about {
  background: var(--gray-100);
  padding: 4.5rem 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--dark-900);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--gray-500);
  max-width: 560px;
  margin: -0.75rem auto 2.5rem;
}

.about-content {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.lead {
  font-size: 1rem;
  margin-bottom: 1.125rem;
  text-align: center;
  line-height: 1.75;
  color: var(--gray-700);
}

.lead:last-child {
  margin-bottom: 0;
}

.services-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.service-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 0.75rem;
}

.service-item p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─────────── Content Section ─────────── */
.content {
  background: var(--white);
  padding: 4.5rem 0;
}

.articles-list {
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.article-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 1.5rem 0;
}

.article-item:first-child {
  padding-top: 0;
}

.article-item:last-child {
  border-bottom: none;
}

.article-item-link {
  display: block;
  transition: all var(--transition);
}

.article-item-link:hover {
  transform: translateX(6px);
}

.article-item-link:hover .article-item-title {
  color: var(--accent);
}

.article-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.375rem;
}

.article-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-900);
  line-height: 1.4;
  margin-bottom: 0.375rem;
  transition: color var(--transition);
}

.article-item-description {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.articles-cta {
  text-align: center;
}

/* ─────────── Contact Section ─────────── */
.contact {
  background: linear-gradient(160deg, var(--dark-900) 0%, var(--dark-700) 100%);
  padding: 4.5rem 0;
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
  margin-bottom: 2.5rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

/* Flexbox layout for equal height cards with buttons at bottom */
.contact-option {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-option h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.contact-price {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.875rem;
  min-height: 1.75rem;
}

.contact-price-placeholder {
  color: transparent;
  min-height: 1.75rem;
  margin-bottom: 0.875rem;
}

.contact-desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.contact-option .btn {
  width: 100%;
  margin-top: auto;
}

.contact-option .btn-outline {
  border-color: var(--gray-500);
  color: var(--gray-300);
}

.contact-option .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─────────── Footer ─────────── */
.footer {
  background: var(--dark-900);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-location {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-400);
  transition: all var(--transition);
}

.footer-links a:hover {
  background: var(--accent);
  color: var(--dark-900);
}

.footer-links svg {
  width: 18px;
  height: 18px;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 768px) {
  .nav-links {
    gap: 1.25rem;
  }
  
  .nav-link:not(.nav-link-accent) {
    display: none;
  }
  
  .hero {
    padding: 3.5rem 0 3rem;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-img-portrait {
    width: 130px;
    height: 130px;
  }
  
  .hero-skills {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  
  .hero-skills li:not(:last-child)::after {
    display: none;
  }
  
  .hero-skills li {
    font-size: 0.75rem;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .result-number {
    font-size: 1.875rem;
  }
  
  .services-simple {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .about,
  .content,
  .contact,
  .results {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .results-headline {
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .nav-link-accent {
    font-size: 0.875rem;
  }
  
  .results-grid {
    gap: 0.75rem;
  }
  
  .result-number {
    font-size: 1.625rem;
  }
  
  .result-item {
    padding: 1rem 0.5rem;
  }
  
  .article-item-link:hover {
    transform: none;
  }
  
  .contact-option {
    padding: 1.5rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}