@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=Noto+Serif+JP:wght@400;500;700&family=Barlow:wght@400;500;600&display=swap');

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  --paper: #F4EDD8;
  --paper-dk: #EDE0C4;
  --pencil: #2C1F0E;
  --pencil-lt: #5C3D2E;
  --highlight: #FFE566;
  --highlight-dk: #F0D000;
  --ink-red: #BB2222;
  --ink-green: #1A6B3C;
  --ink-blue: #1A3C6B;
  --border: #C8B99A;
  --bg: #F8F3E8;
  --shadow-paper: 2px 4px 12px rgba(44,31,14,0.18);
  --shadow-lift: 4px 8px 24px rgba(44,31,14,0.26);
  --ff-hand: 'Caveat', cursive;
  --ff-body: 'Source Serif 4', 'Noto Serif JP', serif;
  --ff-jp: 'Noto Serif JP', serif;
  --ff-label: 'Barlow', sans-serif;
  --max-w: 860px;
  --radius: 3px;
}

/* ================================================
   RESET
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--pencil);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink-blue); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink-red); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.5rem; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ================================================
   PAPER TEXTURE OVERLAY
   ================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ================================================
   AGE GATE (.seal)
   ================================================ */
.seal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.seal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 27px,
    rgba(44,31,14,0.08) 28px
  );
}
.seal__inner {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--border);
  padding: 2.5rem 3rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lift);
  border-radius: var(--radius);
}
.seal__inner::before {
  content: 'RESEARCH NOTE';
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--pencil-lt);
  display: block;
  margin-bottom: 1rem;
}
.seal__title {
  font-family: var(--ff-hand);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pencil);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.seal__body {
  font-family: var(--ff-jp);
  font-size: 0.88rem;
  color: var(--pencil-lt);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.seal__btns {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.seal__enter {
  background: var(--pencil);
  color: var(--paper);
  font-family: var(--ff-jp);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 3px 3px 0 var(--pencil-lt);
  position: relative;
}
.seal__enter:hover {
  background: var(--ink-green);
  transform: translateY(-1px);
}
.seal__exit {
  font-family: var(--ff-label);
  font-size: 0.8rem;
  color: var(--pencil-lt);
  text-decoration: underline;
  padding: 0.4rem;
  transition: color 0.2s;
}
.seal__exit:hover { color: var(--ink-red); }

/* ================================================
   HEADER / MASTHEAD
   ================================================ */
.mast {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper-dk);
  border-bottom: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mast::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 1px;
  background: var(--pencil-lt);
  opacity: 0.15;
}
.mast__logo {
  font-family: var(--ff-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pencil);
  text-decoration: none;
  line-height: 1.1;
}
.mast__logo span {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--pencil-lt);
  text-transform: uppercase;
}
.mast__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.mast__nav a {
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pencil-lt);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mast__nav a:hover { color: var(--pencil); }
.mast__cta-sm {
  font-family: var(--ff-jp);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--highlight);
  color: var(--pencil);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--highlight-dk);
  transition: transform 0.15s;
}
.mast__cta-sm:hover { transform: translate(-1px,-1px); color: var(--pencil); }
.mast__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
}
.mast__ham span {
  display: block;
  height: 2px;
  background: var(--pencil);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.mast__ham[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mast__ham[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mast__ham[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mast__drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--paper);
  border-bottom: 2px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 8px 24px rgba(44,31,14,0.12);
}
.mast__drawer.open { display: flex; }
.mast__drawer a {
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  color: var(--pencil);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mast__drawer a:last-child { border-bottom: none; }

/* ================================================
   MAIN WRAPPER
   ================================================ */
main { position: relative; z-index: 1; }

/* ================================================
   HERO
   ================================================ */
.hero {
  background: var(--paper);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 31px,
    rgba(200,185,154,0.35) 32px
  );
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero__label {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pencil-lt);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pencil-lt);
}
.hero__heading {
  font-family: var(--ff-hand);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--pencil);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.hero__heading .h-mark {
  position: relative;
  display: inline;
}
.hero__heading .h-mark::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2px; right: -2px;
  height: 0.55em;
  background: var(--highlight);
  z-index: -1;
  animation: highlight-draw 0.8s ease 0.4s both;
}
@keyframes highlight-draw {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
.hero__sub {
  font-family: var(--ff-jp);
  font-size: 1rem;
  color: var(--pencil-lt);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.hero__date {
  font-family: var(--ff-label);
  font-size: 0.75rem;
  color: var(--pencil-lt);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__date::before {
  content: '✏';
  font-size: 0.9rem;
}
.hero__cta {
  display: inline-block;
  background: var(--pencil);
  color: var(--paper);
  font-family: var(--ff-jp);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.4rem;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--pencil-lt);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  position: relative;
}
.hero__cta::after {
  content: ' →';
  font-family: var(--ff-label);
}
.hero__cta:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--pencil-lt);
  color: var(--paper);
}
.hero__margin-note {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-hand);
  font-size: 0.85rem;
  color: var(--ink-red);
  line-height: 1.5;
  max-width: 120px;
  text-align: center;
  opacity: 0.75;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stat-item { text-align: left; }
.hero__stat-num {
  font-family: var(--ff-hand);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pencil);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  color: var(--pencil-lt);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ================================================
   SECTION BASE
   ================================================ */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}
.section--alt { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark {
  background: var(--pencil);
  color: var(--paper);
  border-top: 2px solid var(--pencil-lt);
}
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section__eyebrow {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pencil-lt);
  margin-bottom: 0.8rem;
}
.section--dark .section__eyebrow { color: rgba(244,237,216,0.55); }
.section__heading {
  font-family: var(--ff-hand);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--pencil);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.section--dark .section__heading { color: var(--paper); }

/* ================================================
   RULED-LINE BACKGROUND UTILITY
   ================================================ */
.ruled-bg {
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 31px,
    rgba(200,185,154,0.4) 32px
  );
  background-color: var(--paper);
}

/* ================================================
   RECOMMEND SECTION (こんな方に)
   ================================================ */
.recommend { }
.recommend__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recommend__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.recommend__item:last-child { border-bottom: none; }
.recommend__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
}
.recommend__text {
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--pencil);
}
.recommend__text strong {
  font-weight: 700;
  position: relative;
}
.recommend__text strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 0.4em;
  background: var(--highlight);
  z-index: -1;
}

/* ================================================
   STATS TABLE
   ================================================ */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.stats-table td {
  padding: 1.2rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: middle;
  font-family: var(--ff-jp);
}
.stats-table tr:last-child td { border-bottom: 1px solid var(--border); }
.stats-table .s-num {
  font-family: var(--ff-hand);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--pencil);
  width: 160px;
  white-space: nowrap;
}
.stats-table .s-label {
  font-size: 0.88rem;
  color: var(--pencil-lt);
  font-family: var(--ff-label);
  letter-spacing: 0.06em;
}
.stats-table .s-note {
  font-size: 0.82rem;
  color: var(--pencil-lt);
  font-style: italic;
  text-align: right;
}

/* ================================================
   FINDINGS SECTION
   ================================================ */
.findings {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}
.finding {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px dashed var(--border);
}
.finding:last-child { border-bottom: none; }
.finding__num {
  font-family: var(--ff-hand);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  margin-top: -0.3rem;
}
.finding__body { flex: 1; }
.finding__label {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: var(--highlight);
  color: var(--pencil);
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.6rem;
}
.finding__title {
  font-family: var(--ff-jp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pencil);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.finding__text {
  font-family: var(--ff-jp);
  font-size: 0.92rem;
  color: var(--pencil-lt);
  line-height: 1.85;
}

/* ================================================
   PAPA-KATSU SECTION (investigative prose)
   ================================================ */
.papa-section { }
.papa-prose {
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  line-height: 2;
  color: var(--pencil);
  max-width: 700px;
}
.papa-prose p { margin-bottom: 1.4rem; }
.papa-prose .inline-mark {
  background: var(--highlight);
  padding: 0.05em 0.25em;
  font-weight: 500;
}
.papa-verdict {
  margin-top: 2rem;
  background: var(--paper-dk);
  border-left: 4px solid var(--pencil);
  padding: 1.5rem 1.8rem;
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  line-height: 1.9;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ================================================
   RATE CARD
   ================================================ */
.rate-card {
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-paper);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.rate-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--paper-dk);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.rate-card__heading {
  font-family: var(--ff-hand);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pencil);
  margin-bottom: 1rem;
}
.rate-card__body {
  font-family: var(--ff-jp);
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--pencil);
}
.rate-card .key-phrase {
  display: inline-block;
  background: var(--highlight);
  font-weight: 700;
  padding: 0.1em 0.4em;
  font-size: 1.05rem;
}

/* ================================================
   WARNING / DEMERIT BOX
   ================================================ */
.warning-section {
  position: relative;
  padding: 2.5rem;
  border: 2px solid var(--ink-red);
  border-radius: var(--radius);
  background: #FFF8F8;
  margin-top: 2rem;
}
.warning-section::before {
  content: '⚠ NOTE';
  position: absolute;
  top: -0.85rem;
  left: 1.5rem;
  background: var(--ink-red);
  color: white;
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
}
.warning__heading {
  font-family: var(--ff-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-red);
  margin-bottom: 1.2rem;
}
.warning__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.warning__item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-family: var(--ff-jp);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--pencil);
}
.warning__item::before {
  content: '✗';
  color: var(--ink-red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ================================================
   AREA SECTION
   ================================================ */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.area-tag {
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pencil-lt);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--paper);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.area-tag::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--pencil-lt);
  opacity: 0;
  transition: opacity 0.2s;
}
.area-tag:hover { background: var(--paper-dk); }
.area-tag:hover::after { opacity: 0.5; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.testi-card {
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-paper);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 25px,
    rgba(200,185,154,0.25) 26px
  );
  border-radius: var(--radius);
  pointer-events: none;
}
.testi-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.testi-card__label {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pencil-lt);
  margin-bottom: 0.8rem;
}
.testi-card__quote-mark {
  font-family: var(--ff-hand);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}
.testi-card__body {
  font-family: var(--ff-jp);
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--pencil);
  position: relative;
}
.testi-card__meta {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.testi-card__name {
  font-family: var(--ff-hand);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pencil);
}
.testi-card__tag {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  color: var(--pencil-lt);
  background: var(--paper-dk);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

/* ================================================
   FAQ / QA PANEL
   ================================================ */
.faq-section { }
.qa-panels {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qa-panel {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.qa-panel:first-child { border-top: 1px solid var(--border); }
.qa-panel__q {
  width: 100%;
  text-align: left;
  padding: 1.3rem 1rem 1.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--ff-jp);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pencil);
  line-height: 1.6;
  transition: color 0.2s;
  position: relative;
}
.qa-panel__q::before {
  content: 'Q';
  font-family: var(--ff-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--highlight-dk);
  flex-shrink: 0;
  line-height: 1.1;
}
.qa-panel__q::after {
  content: '+';
  font-family: var(--ff-label);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--pencil-lt);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1.3;
}
.qa-panel.open .qa-panel__q::after {
  transform: rotate(45deg);
}
.qa-panel.open .qa-panel__q { color: var(--ink-blue); }
.qa-panel__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem 0 2.8rem;
  font-family: var(--ff-jp);
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--pencil-lt);
}
.qa-panel.open .qa-panel__a {
  padding-bottom: 1.4rem;
}
.qa-panel__a p { margin-bottom: 0.8rem; }
.qa-panel__a p:last-child { margin-bottom: 0; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  text-align: center;
  padding: 6rem 1.5rem;
  background: var(--pencil);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 31px,
    rgba(244,237,216,0.05) 32px
  );
  pointer-events: none;
}
.cta-section__eyebrow {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244,237,216,0.5);
  margin-bottom: 1rem;
}
.cta-section__heading {
  font-family: var(--ff-hand);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.cta-section__sub {
  font-family: var(--ff-jp);
  font-size: 0.92rem;
  color: rgba(244,237,216,0.7);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-btn {
  display: inline-block;
  background: var(--highlight);
  color: var(--pencil);
  font-family: var(--ff-jp);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.1rem 3rem;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--highlight-dk);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  position: relative;
}
/* Stamp effect */
.cta-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed var(--highlight-dk);
  border-radius: calc(var(--radius) + 4px);
}
.cta-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 var(--highlight-dk);
  color: var(--pencil);
}
.cta-note {
  margin-top: 1.2rem;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  color: rgba(244,237,216,0.45);
  letter-spacing: 0.05em;
}

/* ================================================
   FOOTER
   ================================================ */
.foot {
  background: var(--paper-dk);
  border-top: 2px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}
.foot__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.foot__logo {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pencil);
  margin-bottom: 0.4rem;
}
.foot__tagline {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  color: var(--pencil-lt);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.foot__links a {
  font-family: var(--ff-label);
  font-size: 0.78rem;
  color: var(--pencil-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.foot__links a:hover { color: var(--pencil); }
.foot__copy {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  color: var(--pencil-lt);
  opacity: 0.6;
}
.foot__disclaimer {
  margin-top: 1rem;
  font-family: var(--ff-jp);
  font-size: 0.72rem;
  color: var(--pencil-lt);
  opacity: 0.7;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ================================================
   HIGHLIGHT ANIM (.highlight-anim)
   ================================================ */
.highlight-anim {
  position: relative;
  display: inline;
}
.highlight-anim::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2px;
  right: -2px;
  height: 0.5em;
  background: var(--highlight);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease 0.2s;
}
.visible .highlight-anim::after,
.highlight-anim.active::after {
  transform: scaleX(1);
}

/* ================================================
   REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  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; }

/* ================================================
   PROSE PAGES (.page-hero .prose)
   ================================================ */
.page-hero {
  background: var(--paper);
  padding: 4rem 1.5rem 3rem;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 31px,
    rgba(200,185,154,0.35) 32px
  );
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.page-hero__label {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pencil-lt);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-family: var(--ff-hand);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--pencil);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.page-hero__meta {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  color: var(--pencil-lt);
  letter-spacing: 0.06em;
}
.prose {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  font-family: var(--ff-jp);
  font-size: 0.97rem;
  line-height: 2;
  color: var(--pencil);
}
.prose h2 {
  font-family: var(--ff-hand);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pencil);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.prose h3 {
  font-family: var(--ff-hand);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pencil);
  margin: 2rem 0 0.8rem;
}
.prose p { margin-bottom: 1.4rem; }
.prose .inline-mark {
  background: var(--highlight);
  padding: 0.05em 0.3em;
  font-weight: 500;
}
.prose blockquote {
  border-left: 4px solid var(--border);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--paper-dk);
  font-style: italic;
  color: var(--pencil-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose ul, .prose ol {
  margin-bottom: 1.4rem;
}
.prose li { margin-bottom: 0.5rem; }

/* ================================================
   PULL QUOTE
   ================================================ */
.pull-quote {
  font-family: var(--ff-hand);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pencil);
  line-height: 1.5;
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--pencil);
  border-bottom: 2px solid var(--pencil);
  margin: 2.5rem 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-size: 4rem;
  line-height: 0;
  color: var(--border);
  position: absolute;
  top: 1.5rem;
  left: 0.5rem;
}

/* ================================================
   INK BLOT REVEAL (page load)
   ================================================ */
@keyframes ink-reveal {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ink-reveal {
  animation: ink-reveal 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

/* ================================================
   RESPONSIVE — 768px
   ================================================ */
@media (max-width: 768px) {
  .mast__nav { display: none; }
  .mast__ham { display: flex; }
  .mast { position: sticky; }

  .hero__stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .hero__margin-note { display: none; }

  .testi-grid {
    grid-template-columns: 1fr;
  }
  .finding {
    flex-direction: column;
    gap: 0.8rem;
  }
  .finding__num {
    font-size: 2.2rem;
    width: auto;
  }
  .stats-table .s-num { font-size: 2rem; width: 120px; }
  .stats-table .s-note { display: none; }

  .seal__inner { padding: 2rem 1.5rem; }
  .hero { padding: 3.5rem 1.2rem 3rem; }
  .section { padding: 3.5rem 1.2rem; }
  .cta-section { padding: 4rem 1.2rem; }

  .rate-card { padding: 1.8rem; }
  .warning-section { padding: 1.8rem; }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 1.9rem; }
  .section__heading { font-size: 1.5rem; }
  .hero__stat-num { font-size: 1.9rem; }
  .stats-table .s-num { font-size: 1.7rem; }
}
