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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f7f6f4;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #c8c4bc;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-wrap img {
  height: 56px;
  width: auto;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3e4a52;
  text-decoration: none;
  margin-left: 36px;
  transition: color 0.2s;
}

nav a:hover { color: #1a1a1a; }

.hero {
  background: #3e4a52;
  color: #ffffff;
  padding: 96px 40px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #3e4a52 0%, #2b353b 100%);
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto;
}

section {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7580;
  margin-bottom: 14px;
}

.section-rule {
  width: 100%;
  height: 1px;
  background: #c8c4bc;
  margin-bottom: 48px;
}

h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 16px;
}

p:last-child { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  background: #c8c4bc;
  border: 1px solid #c8c4bc;
}

.service-card {
  background: #ffffff;
  padding: 36px 32px;
}

.service-icon {
  width: 32px;
  height: 2px;
  background: #6b7580;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'EB Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.75;
  margin: 0;
}

.approach-band {
  background: #ffffff;
  border-top: 1px solid #c8c4bc;
  border-bottom: 1px solid #c8c4bc;
}

.approach-band section {
  padding: 72px 40px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.industry-tag {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #3e4a52;
  border: 1px solid #c8c4bc;
  background: #ffffff;
  padding: 7px 18px;
}

.contact-band {
  background: #3e4a52;
  color: #ffffff;
}

.contact-band section {
  text-align: center;
  padding: 80px 40px;
}

.contact-band h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-band p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 12px;
}

.contact-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.linkedin-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 15px 40px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.linkedin-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

footer {
  background: #2b353b;
  text-align: center;
  padding: 24px 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  header { padding: 20px 24px; }
  header nav { display: none; }
  .hero { padding: 64px 24px; }
  section { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}