:root {
  --bg-color: #fafaf7;
  --text-dark: #2a2c26;
  --text-muted: #6a6e64;
  --moss-green: #4f5a43;
  --moss-light: #e5eadc;
  --border-color: #e5e5e0;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

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

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  background-color: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.brand {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--moss-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--moss-green);
}

/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  background-image: linear-gradient(to right, rgba(250, 250, 247, 0.95) 45%, rgba(250, 250, 247, 0.5)), url('https://images.unsplash.com/photo-1576092768241-dec231879fc3?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: right center;
}

.hero-left {
  max-width: 550px;
}

.jp-sub {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  color: var(--moss-green);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  border-radius: 2px;
}

.btn-moss {
  background-color: var(--moss-green);
  color: #fff;
}

.btn-moss:hover {
  background-color: #3b4332;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--moss-green);
  color: var(--moss-green);
}

.btn-outline:hover {
  background-color: var(--moss-green);
  color: #fff;
}

/* Sections General */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--moss-green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Philosophy */
.phil-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.phil-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

/* Leaf Menu */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.menu-item {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 20px;
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.item-header h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

.price {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--moss-green);
}

.menu-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Ceremony */
.booking-section {
  background-color: var(--moss-light);
  border: none;
}

.booking-section h2 {
  font-size: 2.5rem;
  color: var(--moss-green);
}

.ceremony-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}
