:root {
  --bg: #f4efe6;
  --bg-2: #eae2d2;
  --bg-dark: #1a1a17;
  --cream: #fbf8f2;
  --ink: #14140f;
  --ink-soft: #3a3a32;
  --muted: #8a8679;
  --line: #dfd6c4;
  --forest: #1f3a2a;
  --moss: #4a6b4f;
  --terracotta: #b35a38;
  --ochre: #c89b3c;
  --accent: var(--forest);
  --radius-sm: 6px;
  --radius: 20px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.serif { font-family: "Shippori Mincho", "Cormorant Garamond", serif; }
.latin { font-family: "Cormorant Garamond", serif; font-style: italic; }
.mono { font-family: "Inter", "Noto Sans JP", sans-serif; letter-spacing: 0.18em; font-weight: 500; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==== PR BAR ==== */
.pr-bar {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 14px 24px;
  position: relative;
}
.pr-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  flex-wrap: wrap;
}
.pr-tag {
  display: inline-flex;
  align-items: center;
  background: var(--ochre);
  color: var(--bg-dark);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.25em;
  padding: 5px 14px;
  border-radius: 4px;
}
.pr-text {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.pr-divider {
  width: 1px;
  height: 18px;
  background: rgba(250,245,232,0.3);
}
@media (max-width: 640px) {
  .pr-bar { padding: 12px 20px; }
  .pr-text { font-size: 13px; }
  .pr-divider { display: none; }
}

/* ==== HEADER ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(20, 20, 15, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.brand .dot { width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; display: inline-block; transform: translateY(-4px); }
.brand small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31, 58, 42, 0.3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-large { padding: 20px 40px; font-size: 14px; }
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .header-inner .btn { padding: 10px 18px; font-size: 12px; }
}

/* ==== HERO ==== */
.hero {
  padding: 40px 0 0;
  position: relative;
}
.hero-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 40px;
  text-transform: uppercase;
}
.hero-top-meta .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 24px;
}
.hero-headline {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
  position: relative;
}
.hero-headline .line1 { display: block; }
.hero-headline .line2 { display: block; text-indent: 2em; }
.hero-headline .line3 { display: block; font-family: "Shippori Mincho", serif; font-weight: 400; color: var(--moss); font-size: 0.32em; margin-top: 0.5em; letter-spacing: 0.08em; line-height: 1.6; }
.hero-headline em {
  font-style: normal;
  color: var(--terracotta);
  position: relative;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.hero-lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 440px;
  line-height: 1.9;
}
.hero-lead .drop {
  float: left;
  font-family: "Shippori Mincho", serif;
  font-size: 54px;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--forest);
  font-weight: 600;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-bottom: 24px;
}
.hero-stats .stat {
  text-align: left;
}
.hero-stats .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  display: block;
}
.hero-stats .num sup { font-size: 16px; color: var(--terracotta); }
.hero-stats .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* Hero visual strip */
.hero-strip {
  margin-top: 60px;
  position: relative;
  height: 520px;
}
.strip-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(20, 20, 15, 0.15);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.strip-card:hover { transform: translateY(-8px) scale(1.02); }
.strip-1 {
  top: 0; left: 0;
  width: 44%; height: 420px;
  background-image: url('../images/hero-1.jpg');
}
.strip-2 {
  top: 80px; left: 48%;
  width: 30%; height: 340px;
  background-image: url('../images/hero-2.jpg');
}
.strip-3 {
  top: 60px; right: 0;
  width: 20%; height: 260px;
  background-image: url('../images/hero-3.jpg');
}
.strip-label {
  position: absolute;
  top: 440px;
  left: 48%;
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.strip-label::before { content: ""; width: 28px; height: 1px; background: var(--ink-soft); }
.strip-badge {
  position: absolute;
  right: 3%;
  bottom: -10px;
  background: var(--bg-dark);
  color: var(--cream);
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  max-height: 220px;
}

@media (max-width: 920px) {
  .hero-headline { font-size: clamp(40px, 12vw, 80px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .hero-right { align-items: flex-start; }
  .hero-stats { gap: 28px; }
  .hero-stats .num { font-size: 36px; }
  .hero-strip { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
  .strip-card { position: static; width: auto !important; height: 220px !important; }
  .strip-3 { grid-column: span 2; height: 180px !important; }
  .strip-label { display: none; }
  .strip-badge { display: none; }
}

/* ==== SECTION UTILS ==== */
section {
  padding: 140px 0;
  position: relative;
}
@media (max-width: 920px) {
  section { padding: 80px 0; }
}

.section-index {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
.section-index .chapter {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section-index .hr {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 140px;
}
.section-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-kicker {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.9;
}

/* ==== TRUST / PHILOSOPHY ==== */
.philosophy { background: var(--cream); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.philosophy-left {
  position: sticky;
  top: 100px;
}
.philosophy-right {
  display: grid;
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.phil-card {
  background: var(--cream);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 30px;
  align-items: center;
  transition: background 0.4s ease;
  position: relative;
}
.phil-card:hover { background: var(--bg); }
.phil-card .idx {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0;
}
.phil-card h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.phil-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.phil-card .svg-deco {
  width: 48px;
  height: 48px;
  color: var(--moss);
  opacity: 0.8;
}

@media (max-width: 920px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-left { position: static; }
  .phil-card { grid-template-columns: 40px 1fr; padding: 28px; gap: 16px; }
  .phil-card .svg-deco { display: none; }
}

/* ==== PROGRAMS ==== */
.programs { background: var(--bg); padding-bottom: 180px; }
.programs-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.programs-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all 0.3s ease;
  font-weight: 500;
}
.tab:hover, .tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  border: 1px solid transparent;
}
.program-card:hover {
  transform: translateY(-10px);
  border-color: var(--ink);
}
.program-card:nth-child(1) .program-media { background-image: url('../images/program-lowfat.jpg'); }
.program-card:nth-child(2) .program-media { background-image: url('../images/program-lowcarb.jpg'); }
.program-card:nth-child(3) .program-media { background-image: url('../images/program-womens.jpg'); }

.program-media {
  aspect-ratio: 5/4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}
.program-card:hover .program-media { transform: scale(1.05); }
.program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 20, 15, 0.4) 100%);
}

.program-num {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.program-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.program-body {
  padding: 36px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.program-body h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.program-body .sub-en {
  font-family: "Shippori Mincho", serif;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid var(--terracotta);
}
.program-meta {
  display: grid;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.program-meta div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  font-size: 13px;
}
.program-meta div span:first-child {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 4px;
}
.program-meta div span:last-child { color: var(--ink-soft); line-height: 1.7; }

.program-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  transition: gap 0.3s ease;
}
.program-cta:hover { gap: 14px; }

@media (max-width: 920px) {
  .programs-header { grid-template-columns: 1fr; gap: 24px; }
  .programs-grid { grid-template-columns: 1fr; }
}

/* ==== HOW ==== */
.how {
  background: var(--bg-dark);
  color: var(--cream);
}
.how .section-index { color: rgba(250,245,232,0.6); }
.how .section-index .hr { background: rgba(250,245,232,0.2); }
.how .section-index .chapter { color: var(--ochre); }
.how .section-title { color: var(--cream); }
.how .section-kicker { color: rgba(250,245,232,0.7); }

.how-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}
.how-timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(250,245,232,0.25) 15%, rgba(250,245,232,0.25) 85%, transparent);
}
.how-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.how-dot {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid rgba(250,245,232,0.25);
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  color: var(--ochre);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.how-step:hover .how-dot {
  background: var(--ochre);
  color: var(--bg-dark);
  transform: scale(1.08);
}
.how-step h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 600;
}
.how-step p {
  font-size: 14px;
  color: rgba(250,245,232,0.7);
  line-height: 1.85;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .how-timeline { grid-template-columns: 1fr; gap: 50px; }
  .how-timeline::before { display: none; }
}

/* ==== BENEFITS - Editorial magazine ==== */
.benefits { background: var(--cream); }
.benefits-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.benefit {
  grid-column: span 6;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, background 0.4s ease;
}
.benefit:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px);
}
.benefit:hover h3, .benefit:hover p, .benefit:hover .benefit-num { color: var(--cream); }
.benefit:hover .benefit-num { opacity: 0.35; }

.benefit:nth-child(1) { grid-column: span 7; }
.benefit:nth-child(2) { grid-column: span 5; }
.benefit:nth-child(3) { grid-column: span 5; }
.benefit:nth-child(4) { grid-column: span 7; }

.benefit-num {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  opacity: 0.9;
  margin-bottom: 28px;
  display: block;
  transition: all 0.4s ease;
  font-weight: 500;
}
.benefit h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.benefit p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 480px;
  transition: color 0.4s ease;
}

@media (max-width: 920px) {
  .benefit, .benefit:nth-child(n) { grid-column: span 12; padding: 32px 28px; }
  .benefit h3 { font-size: 22px; }
}

/* ==== REVIEWS - horizontal scroll ==== */
.reviews { background: var(--bg); overflow: hidden; }
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
}
.reviews-nav {
  display: flex;
  gap: 10px;
}
.rev-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  color: var(--ink);
}
.rev-btn:hover:not(:disabled) { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.rev-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.reviews-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 420px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 36px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--line);
  position: relative;
}
.review .quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: var(--terracotta);
  line-height: 0.6;
  height: 40px;
  opacity: 0.6;
}
.review blockquote {
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  line-height: 1.85;
  color: var(--ink);
  flex: 1;
  letter-spacing: -0.005em;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.review-author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
}
.review-author small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.review-author strong {
  font-size: 14px;
  font-weight: 500;
}
.review-period {
  font-family: "Shippori Mincho", serif;
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 920px) {
  .review { flex: 0 0 300px; padding: 28px; }
  .review blockquote { font-size: 16px; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}

/* ==== COMPARE ==== */
.compare { background: var(--forest); color: var(--cream); }
.compare .section-index { color: rgba(250,245,232,0.55); }
.compare .section-index .hr { background: rgba(250,245,232,0.15); }
.compare .section-index .chapter { color: var(--ochre); }
.compare .section-title { color: var(--cream); }
.compare .section-kicker { color: rgba(250,245,232,0.75); }

.compare-wrap {
  margin-top: 80px;
  border-top: 1px solid rgba(250,245,232,0.2);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(250,245,232,0.1);
  transition: background 0.3s ease;
}
.compare-row:hover { background: rgba(250,245,232,0.03); }
.compare-row.head {
  border-bottom-color: rgba(250,245,232,0.3);
  background: transparent !important;
}
.compare-row > div {
  padding: 30px 24px;
  font-size: 14px;
  color: rgba(250,245,232,0.9);
  display: flex;
  align-items: center;
}
.compare-row.head > div:first-child { color: rgba(250,245,232,0.55); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.compare-row.head > div:not(:first-child) {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.compare-row.head > div:not(:first-child) small {
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ochre);
  font-weight: 400;
}
.compare-row > div:first-child {
  color: rgba(250,245,232,0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.bar {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.bar-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(250,245,232,0.2);
}
.bar-dot.on { background: var(--ochre); }

@media (max-width: 920px) {
  .compare-row { grid-template-columns: 1fr; gap: 0; padding: 16px 0; border-bottom: 1px solid rgba(250,245,232,0.1); }
  .compare-row > div { padding: 12px 0; }
  .compare-row.head { display: none; }
  .compare-row > div:first-child::after { content: ""; display: block; }
  .compare-row > div:not(:first-child) { padding-top: 6px; font-size: 15px; color: var(--cream); }
  .compare-row > div:not(:first-child)::before {
    content: attr(data-label);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--ochre);
    text-transform: uppercase;
    margin-right: 12px;
    min-width: 80px;
  }
}

/* ==== CTA banner ==== */
.cta-banner {
  padding: 0;
  background: var(--bg);
}
.cta-inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cta-inner::before, .cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.cta-inner::before { width: 400px; height: 400px; background: var(--ochre); top: -200px; left: -100px; opacity: 0.15; }
.cta-inner::after { width: 500px; height: 500px; background: var(--moss); bottom: -250px; right: -150px; opacity: 0.18; }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner .eyebrow {
  font-family: "Shippori Mincho", serif;
  color: var(--terracotta);
  font-size: 15px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-weight: 500;
}
.cta-inner h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.cta-inner p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 15px;
}
@media (max-width: 920px) {
  .cta-inner { padding: 60px 28px; }
}

/* ==== FAQ ==== */
.faq { background: var(--bg); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-count {
  font-family: "Shippori Mincho", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--terracotta);
  margin: 30px 0 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-count small { font-size: 28px; color: var(--muted); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  padding: 32px 0;
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 20px;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-num {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
}
.faq-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink);
  transition: all 0.3s ease;
}
.faq-icon::before { width: 14px; height: 1px; }
.faq-icon::after { width: 1px; height: 14px; }
.faq-item[open] .faq-icon { background: var(--ink); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--cream); }
.faq-item[open] .faq-icon::after { height: 0; }
.faq-item[open] summary { color: var(--forest); }
.faq-answer {
  padding: 0 0 36px 80px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
  max-width: 640px;
}
@media (max-width: 920px) {
  .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .faq-left { position: static; }
  .faq-count { font-size: 70px; }
  .faq-item summary { grid-template-columns: 40px 1fr 32px; font-size: 16px; gap: 14px; padding: 24px 0; }
  .faq-answer { padding-left: 54px; }
}

/* ==== FINAL ==== */
.final {
  padding: 160px 0 140px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final .eyebrow {
  font-family: "Shippori Mincho", serif;
  color: var(--terracotta);
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-weight: 500;
}
.final h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.final p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 52px;
  line-height: 1.9;
}
.final-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: repeating-linear-gradient(90deg, transparent 0 39px, var(--ink) 39px 40px);
}

/* ==== FOOTER ==== */
footer {
  background: var(--bg-dark);
  color: rgba(250,245,232,0.75);
  padding: 100px 0 30px;
  font-size: 14px;
  position: relative;
}
.footer-display {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(50px, 14vw, 200px);
  font-weight: 600;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 70px;
  opacity: 0.95;
}
.footer-display .italic {
  color: var(--ochre);
  font-weight: 500;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(250,245,232,0.12);
  border-bottom: 1px solid rgba(250,245,232,0.12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand .brand { color: var(--cream); font-size: 32px; }
.footer-brand .brand small { color: rgba(250,245,232,0.5); }
.footer-brand p {
  color: rgba(250,245,232,0.5);
  font-size: 13px;
  line-height: 1.9;
  max-width: 320px;
}
.footer-info h4 {
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.info-table {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px 30px;
  font-size: 13px;
  line-height: 1.7;
}
.info-table dt {
  color: rgba(250,245,232,0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.info-table dd { color: rgba(250,245,232,0.9); }
.info-table dd a { color: var(--ochre); border-bottom: 1px solid rgba(200,155,60,0.35); padding-bottom: 1px; transition: color 0.3s ease; }
.info-table dd a:hover { color: var(--cream); border-color: var(--cream); }

.footer-bottom {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 12px;
}
.policy-links a {
  color: rgba(250,245,232,0.55);
  transition: color 0.2s ease;
}
.policy-links a:hover { color: var(--cream); }
.copyright {
  color: rgba(250,245,232,0.35);
  font-size: 11px;
  letter-spacing: 0.15em;
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
  .info-table { grid-template-columns: 110px 1fr; gap: 10px 20px; }
}

/* ==== COMPANY / CONTACT PAGE ==== */
.company {
  background: var(--bg);
  padding-top: 120px;
  padding-bottom: 160px;
  min-height: 70vh;
}
.company-head {
  max-width: 760px;
  margin-bottom: 70px;
}
.company-head .section-title {
  margin-bottom: 28px;
}
.company-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -60px rgba(20,20,15,0.25);
}
.company-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 4px;
  background: var(--terracotta);
}
.company-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.company-card-head .mono {
  color: var(--muted);
  font-size: 12px;
}
.company-card-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 48px;
  color: var(--terracotta);
  line-height: 1;
  font-weight: 500;
}
.company-table {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px 40px;
  font-size: 15px;
  line-height: 1.8;
}
.company-table dt {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 4px;
}
.company-table dd {
  color: var(--ink);
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.company-table dt {
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.company-table > *:nth-last-child(-n+2) {
  padding-bottom: 0;
  border-bottom: none;
}
.company-table dd a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(179,90,56,0.35);
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.company-table dd a:hover {
  color: var(--forest);
  border-color: var(--forest);
}
.company-back {
  margin-top: 60px;
}

@media (max-width: 920px) {
  .company { padding-top: 70px; padding-bottom: 100px; }
  .company-head { margin-bottom: 50px; }
  .company-card { padding: 40px 28px; border-radius: var(--radius); }
  .company-card-num { font-size: 36px; }
  .company-table {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }
  .company-table dt {
    padding-top: 0;
    padding-bottom: 4px;
    border-bottom: none;
  }
  .company-table dd {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .company-table > *:nth-last-child(-n+2) {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* ==== SCROLL REVEAL ==== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0, 0.3, 1), transform 1s cubic-bezier(0.2, 0, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
