@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Manrope:wght@300;400;500;600&family=Shippori+Mincho:wght@400;500;600&family=Noto+Serif+JP:wght@400;500;600&display=swap");

:root {
  --ink-900: #1f1a17;
  --ink-700: #3c312a;
  --ink-500: #5a4d44;
  --ink-400: #6e6056;
  --sand-50: #faf6ef;
  --sand-100: #f1e8dc;
  --sakura-200: #e5cdbb;
  --moss-400: #8a9a78;
  --gold-400: #c2a06b;
  --stone-300: #d5cabe;
  --paper: #f7f2ea;
  --shadow-lg: 0 30px 60px rgba(31, 26, 23, 0.12);
  --shadow-md: 0 18px 40px rgba(31, 26, 23, 0.1);
  --shadow-sm: 0 10px 20px rgba(31, 26, 23, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(900px 520px at 8% -10%, rgba(194, 160, 107, 0.25), transparent 70%),
    radial-gradient(820px 460px at 92% 6%, rgba(138, 154, 120, 0.18), transparent 65%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand-100) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(31, 26, 23, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(600px 480px at 30% 20%, rgba(229, 205, 187, 0.22), transparent 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 234, 0.86);
  border-bottom: 1px solid rgba(60, 49, 42, 0.12);
  backdrop-filter: blur(12px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-500);
}

nav a {
  position: relative;
  padding-bottom: 6px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.jp-toggle {
  border: 1px solid rgba(60, 49, 42, 0.2);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-500);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

main {
  position: relative;
}

section {
  padding: clamp(56px, 8vw, 96px) 0;
}

section + section {
  border-top: 1px solid rgba(60, 49, 42, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(60, 49, 42, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
  padding-top: clamp(70px, 10vw, 120px);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-art .crest {
  position: absolute;
  width: min(280px, 70%);
  top: -32px;
  right: 6%;
  opacity: 0.35;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  line-height: 1.05;
  margin: 18px 0 12px;
}

h1 .jp,
h2 .jp,
h3 .jp {
  font-size: 0.62em;
  letter-spacing: 0.06em;
}

.hero p {
  font-size: 1.05rem;
  max-width: 540px;
  color: var(--ink-700);
}

.hero .support {
  margin-top: 8px;
  color: var(--ink-500);
}

.hero .differentiator {
  margin-top: 12px;
  font-weight: 500;
  color: var(--ink-900);
}

.meta {
  margin: 22px 0;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1f1a17 0%, #3c312a 70%, #6e6056 140%);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.btn-primary.cta-strong {
  padding: 16px 26px;
  font-size: 1rem;
  box-shadow: 0 18px 38px rgba(31, 26, 23, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(60, 49, 42, 0.2);
  color: var(--ink-900);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn .jp {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-500);
}

.cta-hint {
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--ink-700);
}

.steps {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(60, 49, 42, 0.1);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--paper);
  background: var(--ink-900);
  font-size: 0.9rem;
}

.reading-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(60, 49, 42, 0.12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.reading-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('water-texture.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.reading-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 205, 187, 0.4), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.reading-card .seal {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px dashed rgba(60, 49, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-500);
  background: rgba(255, 255, 255, 0.5);
}

.reading-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-500);
}

.reading-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0;
  color: var(--ink-700);
}

.reading-card .divider {
  height: 1px;
  background: rgba(60, 49, 42, 0.12);
  margin: 20px 0;
}

.reading-card .blurred {
  filter: blur(6px);
  color: rgba(31, 26, 23, 0.7);
}

.reading-card .overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 14px 16px;
  background: rgba(31, 26, 23, 0.88);
  color: var(--paper);
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.reading-card .overlay .jp {
  color: rgba(247, 242, 234, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 10px;
}

.section-intro {
  color: var(--ink-700);
  max-width: 620px;
}

.grid-3 {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(60, 49, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.card p {
  margin-bottom: 0;
  color: var(--ink-600);
}

.philosophy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.philosophy img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(60, 49, 42, 0.12);
}

.list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.story-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.story-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(60, 49, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.story-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.story-card p {
  color: var(--ink-600);
  margin-bottom: 0;
}

.story-note {
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.list-item {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(60, 49, 42, 0.08);
}

.receive-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.receive-item {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(60, 49, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.price-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(60, 49, 42, 0.12);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
  position: relative;
}

.price-card.featured {
  border-color: rgba(194, 160, 107, 0.5);
  box-shadow: 0 20px 50px rgba(194, 160, 107, 0.15);
}

.price-card h3 {
  margin-top: 0;
}

.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin: 12px 0;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(194, 160, 107, 0.2);
  color: var(--ink-700);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card ul {
  padding-left: 18px;
  margin: 16px 0 24px;
  color: var(--ink-600);
}

.price-card li {
  margin-bottom: 8px;
}

.footer {
  padding: 32px 0 54px;
  font-size: 0.85rem;
  color: var(--ink-500);
}

.footer .legal-links {
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.footer .legal-links a {
  color: var(--moss);
  text-decoration: none;
}

.footer .legal-links a:hover {
  text-decoration: underline;
}

.jp {
  display: none;
  margin-top: 6px;
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  color: var(--ink-500);
  font-size: 0.86rem;
}

.jp.inline {
  display: inline-block;
  margin-left: 8px;
}

:root[data-jp-state="on"] .jp {
  display: block;
}

:root[data-jp-state="on"] .jp.inline {
  display: inline-block;
}

:root[data-jp-state="on"] nav .jp {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(229, 205, 187, 0.15) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

@media (max-width: 720px) {
  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .jp-toggle {
    width: 100%;
  }

  .reading-card .seal {
    position: static;
    margin-bottom: 16px;
  }
  
  .faq-item {
    padding: 24px;
  }
  
  .faq-item h3 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}
