:root {
  --bg-page: #fafafa;
  --bg-section: #ffffff;
  --bg-soft: #fafafa;
  --text-primary: #0a0a0a;
  --text-secondary: #777777;
  --text-muted: #999999;
  --border: #e5e5e5;
  --footer-border: #282828;
  --accent: #6b2d3c;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

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

.inner {
  margin: 0 auto;
  max-width: 1040px;
  padding: 40px 24px;
}

.site-header {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  min-height: 56px;
  padding-bottom: 0;
  padding-top: 0;
}

.logo {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
}

.section {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.section-soft {
  background: var(--bg-soft);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.hero-name-row {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.hero-avatar {
  --hero-photo-size: min(110px, 30vw);
  border: 2px solid var(--border);
  border-radius: 50%;
  flex: 0 0 auto;
  height: var(--hero-photo-size);
  margin: 0;
  overflow: hidden;
  width: var(--hero-photo-size);
}

.hero-inner > .section-label {
  margin-bottom: 0;
}

.hero-avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.section-label {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 0;
}

.hero-role {
  color: var(--text-secondary);
  font-size: 15px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.body-copy {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.hero-copy {
  max-width: 68ch;
}

.button-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  text-align: center;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-outline {
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}

.stats-grid {
  background: var(--border);
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}

.stat-card {
  background: var(--bg-section);
  padding: 24px 20px;
}

.stat-value {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 4px;
}

.section-title {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.timeline {
  width: 100%;
}

.timeline-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.timeline-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline-date {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-title {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 4px;
}

.timeline-company {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.services-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  padding: 24px;
}

.icon-wrap {
  color: var(--accent);
  display: inline-flex;
  margin-bottom: 12px;
}

.icon-wrap svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  width: 24px;
}

.service-title {
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-section .inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 48px;
  padding-top: 48px;
  text-align: center;
}

.contact-section .section-label {
  margin-bottom: 24px;
}

.contact-section .section-title {
  margin-bottom: 24px;
}

.contact-copy {
  margin-bottom: 24px;
  max-width: 300px;
}

.contact-email {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-button {
  min-width: 160px;
  padding-inline: 32px;
}

.site-footer {
  background: var(--text-primary);
}

.footer-inner {
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 32px;
  padding-top: 32px;
}

.footer-name {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
}

.footer-divider {
  background: var(--footer-border);
  height: 1px;
  width: 100%;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-meta p {
  color: var(--text-secondary);
  font-size: 12px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 11px;
}

@media (min-width: 720px) {
  .inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner {
    gap: 22px;
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .hero-avatar {
    --hero-photo-size: 128px;
  }

  .hero-title {
    font-size: 52px;
  }

  .button-row {
    grid-template-columns: repeat(2, minmax(180px, max-content));
    justify-content: start;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-copy {
    max-width: 520px;
  }
}

@media (min-width: 1024px) {
  .inner {
    max-width: 960px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-name-row {
    align-items: center;
    max-width: 980px;
  }

  .hero-avatar {
    --hero-photo-size: 220px;
  }

  .hero-title {
    font-size: 60px;
  }

  .section-title {
    font-size: 40px;
  }

  .service-title,
  .timeline-title {
    font-size: 24px;
  }
}
