/* ─── Tokens ─── */
:root {
  --bg: #faf7f0;
  --bg-alt: #f0ebe1;
  --fg: #1a1a2e;
  --fg-muted: #5c5c6d;
  --accent: #e8a847;
  --accent-dark: #c88a1e;
  --navy: #0f1c2e;
  --navy-light: #1e3252;
  --cream: #faf7f0;
  --border: #ddd8cf;
  --card-bg: #ffffff;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left { border-right: 1px solid rgba(255,255,255,0.15); padding-right: 80px; }
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-years {
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-years-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-right { padding-left: 0; }
.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-grid-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}
.grid-line {
  width: 1px;
  background: rgba(255,255,255,0.04);
  height: 100%;
}

/* ─── STATS ─── */
.stats-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── PHILOSOPHY ─── */
.philosophy { padding: 100px 0; }
.philosophy-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.philosophy-label, .services-label, .portfolio-label, .testimonials-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.philosophy-headline, .services-headline, .portfolio-headline, .testimonials-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.philosophy-headline em, .services-headline em, .portfolio-headline em, .testimonials-headline em {
  font-style: normal; color: var(--accent-dark);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 56px;
}
.philosophy-card {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}
.philosophy-card:nth-child(2n) { border-right: none; }
.philosophy-card:nth-child(3), .philosophy-card:nth-child(4) { border-bottom: none; }
.phil-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.philosophy-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.philosophy-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}
.philosophy-quote cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  color: var(--fg-muted);
  margin-top: 12px;
  font-family: 'Figtree', sans-serif;
}
.quote-mark { font-size: 2.5rem; color: var(--accent); line-height: 0; vertical-align: -0.3em; margin-right: 4px; }

/* ─── SERVICES ─── */
.services { background: var(--navy); padding: 100px 0; color: #fff; }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.services .services-label { color: var(--accent); }
.services-headline { color: #fff; }
.services-headline em { color: var(--accent); }
.services-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}
.service-card {
  background: var(--navy-light);
  padding: 48px 40px;
}
.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.service-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  font-style: italic;
}
.service-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.4;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '— '; color: var(--accent); font-size: 0.75rem; }

/* ─── PORTFOLIO ─── */
.portfolio { padding: 100px 0; background: var(--bg); }
.portfolio-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 32px;
  background: var(--border);
}
.portfolio-card {
  background: var(--card-bg);
  padding: 40px 36px;
}
.portfolio-card--featured { padding-top: 60px; }
.portfolio-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(232, 168, 71, 0.12);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.portfolio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.portfolio-type {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.portfolio-bar {
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 24px;
}
.portfolio-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
}
.portfolio-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: var(--bg-alt); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── CLOSING ─── */
.closing { background: var(--navy); padding: 120px 0; }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.closing-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.closing-headline em { color: var(--accent); font-style: normal; }
.closing-body p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-meta { }
.closing-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── FOOTER ─── */
.footer { background: #08111e; padding: 56px 0 32px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-right { text-align: right; }
.footer-contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-linkedin {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .hero-left { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 40px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; padding: 28px 24px; }
  .stat-item { flex: 1 1 40%; padding: 0; }
  .stat-divider { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-card { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 0 60px; }
  .hero-years { font-size: 4.5rem; }
  .philosophy, .services, .portfolio, .testimonials, .closing { padding: 72px 0; }
  .philosophy-inner, .services-inner, .portfolio-inner, .testimonials-inner, .closing-inner { padding: 0 24px; }
}