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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #2c3e50;
  background: #ffffff;
  line-height: 1.8;
  overflow-x: hidden;
}

:root {
  --primary: #8B4513;
  --primary-dark: #654321;
  --primary-light: #A0522D;
  --accent: #DC143C;
  --accent-light: #FF6347;
  --gold: #D4AF37;
  --dark: #2c3e50;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #ffffff;
  --bg-light: #fafafa;
  --bg-cream: #FFF8E7;
  --border: #e8e8e8;
  --shadow: rgba(0, 0, 0, 0.08);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 100;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: var(--primary);
  color: var(--bg);
}

/* Hero Minimal */
.hero-minimal {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF8E7 0%, #ffffff 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, var(--primary) 0px, var(--primary) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, var(--primary) 0px, var(--primary) 1px, transparent 1px, transparent 20px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1.125rem 2.25rem;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg);
}

/* Crafts Section */
.crafts-section {
  padding: 6rem 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--bg-cream);
  color: var(--primary);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.crafts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.craft-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craft-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow);
}

.craft-image {
  width: 100%;
  height: 280px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.craft-1 {
  background: linear-gradient(135deg, #D4AF37 0%, #8B4513 100%);
}

.craft-2 {
  background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
}

.craft-3 {
  background: linear-gradient(135deg, #654321 0%, #2F1B14 100%);
}

.craft-4 {
  background: linear-gradient(135deg, #CD853F 0%, #A0522D 100%);
}

.craft-info {
  padding: 2rem;
}

.craft-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.craft-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.craft-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.craft-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.craft-link:hover {
  color: var(--primary-dark);
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  font-size: 4rem;
  font-weight: 300;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Workshops Section */
.workshops-section {
  padding: 6rem 0;
  background: var(--bg);
}

.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workshop-item {
  display: flex;
  gap: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px var(--shadow);
}

.workshop-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 4px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.workshop-content {
  flex: 1;
}

.workshop-content h3 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.workshop-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.workshop-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.workshop-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.workshop-link:hover {
  color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--bg);
  letter-spacing: 0.05em;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.btn-cta {
  display: inline-block;
  padding: 1.125rem 2.25rem;
  background: var(--bg);
  color: var(--primary);
  border: 2px solid var(--bg);
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn-cta:hover {
  background: transparent;
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--bg);
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col-main h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-col-main p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-col h5 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Mobile Menu */
.nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  flex-direction: column;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 6px var(--shadow);
}

.nav.open .nav-link {
  padding: 0.75rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-minimal {
    min-height: 70vh;
    padding: 4rem 0;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .workshop-item {
    flex-direction: column;
    gap: 1.5rem;
  }

  .workshop-date {
    width: 100%;
    height: 80px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Text wrapping */
h1, h2, h3, h4, h5, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

