/* kaguya.monster — Anti-design, minimal, wabi-sabi */
/* Fonts: "Bebas Neue" (Google Fonts), "Space Mono" (Google Fonts), "DM Sans" (Google Fonts), "Shippori Mincho" (Google Fonts) */

:root {
  --bg: #F5F4F0;
  --text: #2C2C2A;
  --rule: #B8BFB0;
  --ash: #6B7068;
  --moss: #7A8C6E;
  --parchment: #EAE9E3;
}

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

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

/* Content column */
.content {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  position: relative;
  z-index: 1;
}

/* Logo */
.logo {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ash);
  text-transform: lowercase;
  margin-bottom: 64px;
}

/* Domain name display */
.domain-display {
  margin-bottom: 64px;
}

.domain-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 0.95;
  margin-bottom: 24px;
  text-align: left;
}

.domain-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* Character animation spans */
.domain-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-2px);
  animation: charReveal 200ms ease forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section dividers */
hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 64px 0 24px;
}

/* Section structure */
.site-section {
  margin-bottom: 0;
}

.section-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
}

.section-body {
  margin-left: 0;
}

/* Body text */
.body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.body-text:last-child {
  margin-bottom: 0;
}

/* Japanese / poetic accent text */
.accent-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--moss);
  margin-bottom: 16px;
}

/* Icon strip */
.icon-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

/* SVG icons */
.icon-svg {
  display: block;
  flex-shrink: 0;
  transition: transform 180ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.icon-svg:hover {
  transform: rotate3d(0, 1, 0.2, 8deg);
}

/* Contact link */
.contact-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.contact-link:hover {
  color: var(--moss);
  border-bottom-color: var(--moss);
}

/* Mobile: full-bleed */
@media (max-width: 640px) {
  .content {
    max-width: 100%;
    padding: 32px 20px 64px;
  }

  .domain-name {
    font-size: 64px;
  }
}
