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

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.7;
  color: #1c1917;
  background: #fafaf9;
}

.max-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header-section {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #e7e5e4;
}

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

.site-name {
  font-size: 26px;
  font-weight: 600;
  color: #57534e;
}

.site-nav {
  display: flex;
  gap: 36px;
}

.site-nav a {
  color: #44403c;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: #57534e;
}

/* Hero */
.hero-segment {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #f5f5f4 0%, #ffffff 100%);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: #fafaf9;
  color: #57534e;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid #e7e5e4;
}

.hero-headline {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1c1917;
  line-height: 1.15;
}

.hero-paragraph {
  font-size: 20px;
  color: #57534e;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-link {
  display: inline-block;
  background: #57534e;
  color: #ffffff;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.hero-link:hover {
  background: #44403c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(68, 64, 60, 0.2);
}

/* Services */
.service-segment {
  padding: 100px 0;
}

.segment-header {
  text-align: center;
  margin-bottom: 60px;
}

.segment-title {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1c1917;
}

.segment-desc {
  font-size: 18px;
  color: #57534e;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.service-col {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  transition: all 0.3s;
}

.service-col:hover {
  border-color: #57534e;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.col-number {
  font-size: 14px;
  color: #78716c;
  margin-bottom: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-col h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1c1917;
}

.service-col p {
  color: #57534e;
  line-height: 1.7;
}

/* Philosophy */
.philosophy-segment {
  padding: 100px 0;
  background: #ffffff;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1c1917;
}

.philosophy-lead {
  font-size: 18px;
  color: #57534e;
  margin-bottom: 40px;
  line-height: 1.8;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.principle-item {
  display: flex;
  gap: 20px;
}

.principle-marker {
  color: #57534e;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.principle-detail h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c1917;
}

.principle-detail p {
  color: #57534e;
  line-height: 1.7;
}

.visual-frame {
  background: #f5f5f4;
  padding: 60px 40px;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  text-align: center;
}

.frame-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame-label {
  font-size: 16px;
  color: #78716c;
}

.frame-value {
  font-size: 40px;
  font-weight: 600;
  color: #57534e;
}

/* Metrics */
.metrics-segment {
  padding: 80px 0;
  background: #f5f5f4;
}

.metrics-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.metric-block {
  text-align: center;
}

.metric-figure {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c1917;
}

.metric-caption {
  font-size: 17px;
  color: #57534e;
}

.metric-separator {
  width: 1px;
  height: 60px;
  background: #d6d3d1;
}

/* Connect */
.connect-segment {
  padding: 100px 0;
}

.connect-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.connect-box h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1c1917;
}

.connect-box p {
  font-size: 19px;
  color: #57534e;
  margin-bottom: 36px;
}

.connect-action {
  background: #57534e;
  color: #ffffff;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Georgia", serif;
}

.connect-action:hover {
  background: #44403c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(68, 64, 60, 0.2);
}

/* Footer */
.footer-segment {
  padding: 40px 0;
  text-align: center;
  background: #1c1917;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 38px;
  }

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .metrics-flex {
    flex-direction: column;
    gap: 36px;
  }

  .metric-separator {
    display: none;
  }

  .header-grid {
    flex-direction: column;
    gap: 16px;
  }
}
