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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: linear-gradient(135deg, #211E1B 0%, #1a1815 100%);
  color: #C8BCA8;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 400;
}

/* Subtle weathered texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 15%;
  position: relative;
}

.domain-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #E0D8CC;
  margin-bottom: 16px;
  line-height: 1.4;
}

.tagline {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: #A08B6A;
  letter-spacing: 0.02em;
  max-width: 400px;
}

/* Content Sections */
.content-section {
  margin-bottom: 120px;
  margin-top: 120px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.content-section:nth-child(odd) {
  margin-top: 160px;
}

.content-block {
  max-width: 520px;
  margin-left: 15%;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #E0D8CC;
  margin-bottom: 24px;
  text-transform: lowercase;
  border-bottom: 1px solid #8B5A3A;
  padding-bottom: 12px;
}

.body-text {
  margin-bottom: 20px;
  color: #C8BCA8;
  letter-spacing: 0.01em;
}

.body-text.accent {
  font-style: italic;
  color: #A08B6A;
  margin-top: 32px;
  margin-bottom: 32px;
}

/* Kintsugi Section */
.kintsugi-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  margin-right: 15%;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.kintsugi-crack {
  width: 100%;
  max-width: 80px;
  height: 280px;
  margin-bottom: 32px;
}

.crack-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawCrack 3s ease-in-out 0.8s forwards;
}

.crack-branch {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCrack 2.5s ease-in-out 2.5s forwards;
}

@keyframes drawCrack {
  to {
    stroke-dashoffset: 0;
  }
}

.kintsugi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: #C4A040;
  letter-spacing: 0.05em;
  margin-top: 24px;
}

/* Footer */
.footer {
  margin-top: 200px;
  margin-bottom: 80px;
  padding-top: 40px;
  border-top: 1px solid #6A7B5A;
}

.footer-text {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: #8B5A3A;
  max-width: 400px;
  margin-left: 15%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding-left: 20px;
  }

  .domain-title {
    font-size: 18px;
  }

  .content-section {
    flex-direction: column;
    margin-bottom: 80px;
    gap: 40px;
  }

  .content-block {
    margin-left: 0;
  }

  .kintsugi-section {
    margin-right: 0;
    width: 100%;
    height: 300px;
  }

  .section-heading {
    font-size: 24px;
  }

  .footer-text {
    margin-left: 0;
  }
}
