/* Template 19 - Japanese Zen / Wabi-Sabi Minimal */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

:root {
  --washi: #f8f5f0;
  --ink: #2c2c2c;
  --ink-light: #4a4a4a;
  --stone: #8b8680;
  --bamboo: #7a8b6e;
  --sakura: #d4a5a5;
  --matcha: #8fbc8f;
  --sumi: #363636;
  --gold-accent: #c4a35a;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.9;
  color: var(--ink);
  background: var(--washi);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Header - Minimal with vertical text option */
.site-header {
  background: transparent;
  padding: 2.5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(44,44,44,0.1);
}

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

.site-logo a {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.15em;
  position: relative;
}

.site-logo a::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--sakura);
  border-radius: 50%;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.site-nav a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.4s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section - Asymmetric with breathing space */
.section.head {
  padding: 8rem 0;
  position: relative;
}

.section.head::before {
  content: '';
  position: absolute;
  right: 10%;
  top: 30%;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--stone), transparent);
}

.section.head h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.3;
  max-width: 800px;
  letter-spacing: 0.05em;
}

.section.head p {
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 500px;
  position: relative;
  padding-left: 2rem;
}

.section.head p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border: 1px solid var(--bamboo);
  border-radius: 50%;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section header {
  margin-bottom: 4rem;
  position: relative;
}

.section header::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1rem;
  width: 40px;
  height: 1px;
  background: var(--gold-accent);
}

.section header h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.section header p {
  font-size: 1rem;
  color: var(--stone);
}

/* Footer - Clean horizontal with subtle details */
.footer {
  background: var(--sumi);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  font-weight: 300;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--sakura);
}

.footer-bottom {
  text-align: left;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright,
.copyright a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Animations */
@keyframes gentleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: gentleFade 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 0.05em;
}
