:root {
  --ink: #17120b;
  --muted: #675949;
  --paper: #fffdf8;
  --cream: #f6efe1;
  --wood: #8b6238;
  --wood-deep: #4f321d;
  --brass: #b88936;
  --gold: #d4a449;
  --burgundy: #8b2f24;
  --line: #06c755;
  --sage: #61735a;
  --mist: #e8efe7;
  --shadow: 0 24px 70px rgba(45, 30, 15, 0.14);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  padding-bottom: 110px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 30px rgba(28, 19, 10, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
}

.brand__name,
.brand__sub {
  display: block;
  line-height: 1.15;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.brand__sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.header-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--line);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.26);
}

.line-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.line-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 8px;
  border-radius: 8px;
  background: var(--line);
}

.line-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--line);
  transform: rotate(45deg);
}

.hero {
  min-height: calc(100svh - 48px);
  max-height: 860px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #21160f;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 38%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 13, 8, 0.82), rgba(34, 23, 13, 0.56) 46%, rgba(34, 23, 13, 0.16)),
    linear-gradient(0deg, rgba(21, 14, 8, 0.38), rgba(21, 14, 8, 0));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: 88px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 660px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--wood-deep);
  background: #fff6df;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.hero-badges span {
  color: rgba(79, 50, 29, 0.68);
  font-size: 11px;
  font-weight: 800;
}

.hero-target {
  width: fit-content;
  margin: -2px 0 18px;
  padding: 7px 12px;
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.22);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.eyebrow,
.section-tag {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.9;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__caption {
  width: fit-content;
  margin: 24px 0 0;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(0, 0, 0, 0.18);
  font-size: 11px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.button__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1.15;
}

.button__text small {
  font-size: 11px;
  font-weight: 800;
  opacity: 0.9;
}

.button__text strong {
  font-size: 17px;
  font-weight: 900;
}

.button--line {
  color: #fff;
  background: var(--line);
  box-shadow: 0 20px 34px rgba(6, 199, 85, 0.32), 0 4px 0 rgba(0, 0, 0, 0.16);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--ghost-light {
  border: 1px solid rgba(23, 18, 11, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.button--large {
  min-height: 68px;
  padding-inline: 30px;
  font-size: 18px;
}

.proof-band {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: -42px auto 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(184, 137, 54, 0.2);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item__value {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.proof-item__label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.store-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.68), rgba(246, 239, 225, 0.82)),
    var(--cream);
}

.store-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 220px 1fr;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card > div:not(.store-card__date) {
  padding: clamp(24px, 4vw, 36px);
}

.store-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.store-card h3 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
}

.store-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.store-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.store-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.store-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.store-card--new {
  grid-template-rows: 220px 1fr;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(139, 47, 36, 0.96), rgba(79, 50, 29, 0.98)),
    var(--burgundy);
}

.store-card--new .store-card__label,
.store-card--new h3,
.store-card--new li {
  color: #fff;
}

.store-card--new p {
  color: rgba(255, 255, 255, 0.82);
}

.store-card--new li::before {
  background: var(--gold);
}

.store-card__date {
  display: grid;
  place-content: center;
  min-height: 220px;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 246, 223, 0.96), rgba(212, 164, 73, 0.84)),
    var(--gold);
  color: var(--wood-deep);
}

.store-card__date span,
.store-card__date small {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.store-card__date strong {
  margin: 2px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.95;
}

.line-primer {
  padding: 54px 0 0;
  background: var(--paper);
}

.line-primer__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 18, 11, 0.98), rgba(79, 50, 29, 0.98)),
    var(--ink);
  box-shadow: var(--shadow);
}

.line-primer .section-tag {
  color: var(--gold);
}

.line-primer h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.28;
}

.line-primer p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.line-primer__steps {
  display: grid;
  gap: 10px;
}

.line-primer__steps div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.line-primer__steps span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 900;
}

.line-primer .button {
  grid-column: 1 / -1;
  width: fit-content;
}

.photo-proof {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--paper);
}

.photo-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 14px 34px rgba(45, 30, 15, 0.1);
}

.photo-card--wide {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 18, 11, 0.78);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.28;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.section p {
  color: var(--muted);
  font-size: 16px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
}

.section-heading--split > p {
  margin: 0;
}

.intro {
  background:
    linear-gradient(90deg, rgba(232, 239, 231, 0.8), rgba(255, 253, 248, 0)),
    var(--paper);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.intro__copy {
  padding-top: 10px;
}

.intro__copy p {
  margin: 0 0 18px;
  font-size: 18px;
}

.salary-section {
  background: var(--cream);
}

.salary-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: stretch;
}

.salary-main {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(139, 47, 36, 0.96), rgba(79, 50, 29, 0.96)),
    var(--burgundy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.salary-main::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(212, 164, 73, 0.44);
  border-radius: 50%;
}

.salary-main__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--wood-deep);
  background: #fff6df;
  font-size: 12px;
  font-weight: 900;
}

.salary-main__top p,
.salary-main__note,
.commission small {
  color: rgba(255, 255, 255, 0.82);
}

.salary-main__amount {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 10vw, 126px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.salary-main__amount span {
  margin-left: 6px;
  font-family: inherit;
  font-size: 34px;
}

.salary-main__note {
  max-width: 420px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.salary-main__plus {
  margin: 28px 0 18px;
  color: var(--gold);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.commission {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
}

.commission span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.commission strong {
  color: #fff6df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reason-card,
.support-card {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 30, 15, 0.08);
}

.reason-card {
  min-height: 210px;
  padding: 26px;
}

.reason-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 900;
}

.reason-card p,
.support-card p {
  margin: 12px 0 0;
}

.salary-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.salary-options article {
  min-height: 176px;
  padding: 22px 20px;
  border: 1px solid rgba(184, 137, 54, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 10px 26px rgba(45, 30, 15, 0.06);
}

.salary-options span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.salary-options strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.salary-options p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.support-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(232, 239, 231, 0.72)),
    var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-card {
  padding: 26px 24px;
}

.support-card__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 23px;
  font-weight: 900;
}

.day-section {
  background: var(--wood-deep);
  color: #fff;
}

.day-section .section-tag,
.day-section h2,
.day-section h3 {
  color: #fff;
}

.day-section p {
  color: rgba(255, 255, 255, 0.72);
}

.day-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 86px);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-item time {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.timeline-item p {
  margin: 6px 0 0;
}

.team-section {
  background: var(--paper);
}

.team-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(184, 137, 54, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 239, 225, 0.82), rgba(232, 239, 231, 0.76)),
    #fff;
}

.team-panel p {
  max-width: 620px;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.team-stats div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.team-stats strong {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.team-stats span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  background: var(--mist);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 70px);
}

.faq-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-item {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item span:last-child {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(23, 18, 11, 0.22);
  position: relative;
}

.faq-item span:last-child::before,
.faq-item span:last-child::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--ink);
}

.faq-item span:last-child::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item.is-open span:last-child::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--paper);
  transform: translateY(-10px);
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.line-flow-section {
  background: var(--cream);
}

.line-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.line-flow-grid article {
  min-height: 220px;
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(45, 30, 15, 0.08);
}

.line-flow-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brass);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.line-flow-grid p {
  margin: 12px 0 0;
}

.line-flow-button {
  width: fit-content;
  margin-top: 28px;
}

.requirements-section {
  background: var(--paper);
}

.requirements-table {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.requirements-table [role="row"] {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 72px;
  border-bottom: 1px solid rgba(23, 18, 11, 0.08);
}

.requirements-table [role="row"]:last-child {
  border-bottom: 0;
}

.requirements-table [role="rowheader"],
.requirements-table [role="cell"] {
  display: flex;
  align-items: center;
  padding: 18px 24px;
}

.requirements-table [role="rowheader"] {
  color: var(--wood-deep);
  background: rgba(246, 239, 225, 0.78);
  font-weight: 900;
}

.requirements-table [role="cell"] {
  color: var(--muted);
  font-weight: 700;
}

.access-section {
  background:
    linear-gradient(135deg, rgba(97, 115, 90, 0.92), rgba(79, 50, 29, 0.96)),
    var(--sage);
  color: #fff;
}

.access-section .section-tag,
.access-section h2 {
  color: #fff;
}

.access-section p {
  color: rgba(255, 255, 255, 0.78);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.access-line {
  width: fit-content;
  margin-top: 30px;
}

.access-cards {
  display: grid;
  gap: 14px;
}

.access-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.access-card--new {
  background: #fff6df;
}

.access-card__image {
  width: calc(100% + clamp(56px, 8vw, 84px));
  max-width: none;
  height: 220px;
  margin: calc(clamp(28px, 4vw, 42px) * -1) calc(clamp(28px, 4vw, 42px) * -1) 26px;
  object-fit: cover;
  object-position: center;
}

.access-card__label {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.access-card h3 {
  margin: 14px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
}

.access-card p {
  color: var(--burgundy);
  font-weight: 900;
}

.access-card dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.access-card dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
}

.access-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.access-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.final-cta {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream);
}

.final-cta__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.final-cta p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
}

.qr-card {
  padding: 18px 18px 16px;
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.site-footer {
  padding: 28px 18px 140px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  text-align: center;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.floating-line {
  position: fixed;
  left: auto;
  right: 28px;
  bottom: 18px;
  z-index: 60;
  transform: none;
  width: 370px;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--line);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 42px rgba(6, 199, 85, 0.34), 0 4px 0 rgba(0, 0, 0, 0.16);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-line.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-line__eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.floating-line__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.policy-page {
  padding-bottom: 0;
  background: var(--paper);
}

.policy-header {
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--ink);
}

.policy-brand {
  width: fit-content;
}

.policy-main {
  padding: 24px 0 84px;
}

.policy-document {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.policy-document h1 {
  margin: 0 0 26px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.2;
}

.policy-document section {
  margin-top: 34px;
}

.policy-document h2 {
  margin: 0 0 10px;
  color: var(--wood-deep);
  font-size: 21px;
}

.policy-document p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-company {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.policy-company div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 18, 11, 0.08);
}

.policy-company dt {
  color: var(--wood-deep);
  font-weight: 900;
}

.policy-company dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-updated {
  margin-top: 34px !important;
  font-size: 13px;
}

.policy-back {
  width: fit-content;
  margin-top: 28px;
}

@media (max-width: 680px) {
  .policy-header {
    padding: 18px 14px;
  }

  .policy-document {
    width: calc(100% - 28px);
    padding: 28px 20px;
  }

  .policy-document h2 {
    font-size: 18px;
  }

  .policy-document p,
  .policy-company dd {
    font-size: 14px;
    line-height: 1.8;
  }

  .policy-company div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .policy-back {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .proof-grid,
  .support-grid,
  .salary-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(184, 137, 54, 0.2);
  }

  .salary-layout,
  .day-layout,
  .team-panel,
  .faq-layout,
  .access-layout,
  .final-cta__inner,
  .line-primer__inner,
  .section-heading--split,
  .intro__grid,
  .store-cards {
    grid-template-columns: 1fr;
  }

  .line-flow-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 20px;
  }

  .final-cta__inner {
    align-items: start;
  }

  .qr-card {
    width: min(280px, 100%);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 104px;
    background: #fffdf8;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .brand__name {
    font-size: 16px;
  }

  .brand__sub {
    font-size: 8px;
    letter-spacing: 0.22em;
  }

  .header-line {
    min-width: 94px;
    min-height: 40px;
    justify-content: center;
    padding: 0 12px;
    font-size: 12px;
    flex: 0 0 auto;
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.32);
  }

  .header-line span:last-child {
    display: inline;
  }

  .header-line .line-icon {
    width: 18px;
    height: 18px;
  }

  .hero {
    min-height: 790px;
    max-height: none;
    align-items: end;
  }

  .hero__image {
    object-position: 42% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(19, 13, 8, 0.66), rgba(19, 13, 8, 0.34)),
      linear-gradient(0deg, rgba(21, 14, 8, 0.88), rgba(21, 14, 8, 0.08) 62%);
  }

  .hero__content {
    width: min(100% - 28px, var(--max));
    padding: 104px 0 86px;
    text-align: center;
  }

  .eyebrow,
  .section-tag {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 7px;
    width: min(328px, 100%);
    margin: 0 auto 24px;
  }

  .hero-target {
    margin: -2px auto 18px;
    font-size: 13px;
  }

  .hero-badges li {
    min-height: 31px;
    justify-content: center;
    padding: 0 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero-badges span {
    font-size: 10px;
  }

  .hero h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(38px, 11.2vw, 46px);
    line-height: 1.24;
  }

  .hero__lead {
    max-width: 350px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 800;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    width: min(328px, 100%);
    max-width: 328px;
    margin: 24px auto 0;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
    border-radius: 999px;
    font-size: 14px;
  }

  .button--line {
    min-height: 70px;
    box-shadow: 0 16px 32px rgba(6, 199, 85, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.42);
  }

  .button__text {
    align-items: center;
  }

  .button__text small {
    font-size: 11px;
  }

  .button__text strong {
    font-size: 15px;
  }

  .hero__caption {
    max-width: 350px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    line-height: 1.6;
  }

  .proof-band {
    width: calc(100% - 28px);
    margin-top: -36px;
  }

  .proof-grid,
  .support-grid,
  .team-stats,
  .salary-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-item {
    min-height: 86px;
    padding: 15px 12px;
    border-right: 1px solid rgba(184, 137, 54, 0.18);
    border-bottom: 1px solid rgba(184, 137, 54, 0.2);
    text-align: center;
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-item__value {
    font-size: clamp(19px, 5.8vw, 23px);
    white-space: nowrap;
  }

  .proof-item__label {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.35;
  }

  .line-primer {
    padding: 28px 0 0;
  }

  .line-primer__inner {
    width: calc(100% - 28px);
    gap: 22px;
    padding: 26px 20px 22px;
  }

  .line-primer h2 {
    font-size: clamp(27px, 7.6vw, 34px);
    line-height: 1.34;
  }

  .line-primer p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }

  .line-primer__steps {
    gap: 8px;
  }

  .line-primer__steps div {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .line-primer .button {
    width: 100%;
  }

  .store-cards {
    gap: 12px;
  }

  .store-card {
    min-height: auto;
    grid-template-rows: 176px 1fr;
  }

  .store-card > div:not(.store-card__date) {
    padding: 22px 18px;
  }

  .store-card__date {
    min-height: 176px;
  }

  .store-card__date span,
  .store-card__date small {
    font-size: 13px;
  }

  .store-card__date strong {
    font-size: 58px;
  }

  .store-card p,
  .store-card li {
    font-size: 14px;
    line-height: 1.75;
  }

  .section {
    padding: 58px 0;
  }

  .photo-proof {
    padding: 58px 0;
  }

  .section__inner,
  .final-cta__inner {
    width: calc(100% - 28px);
  }

  .photo-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .photo-card,
  .photo-card--wide {
    grid-column: auto;
    min-height: 190px;
  }

  .photo-card--wide {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .photo-card figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 32px;
    max-width: calc(100% - 20px);
    padding: 0 10px;
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading p:last-child {
    margin-top: 14px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 1.38;
  }

  .section h3 {
    font-size: 18px;
    line-height: 1.45;
  }

  .section p {
    font-size: 14px;
    line-height: 1.8;
  }

  .intro__copy p {
    font-size: 15px;
  }

  .salary-main {
    padding: 28px 22px;
  }

  .salary-main__amount {
    font-size: 68px;
  }

  .salary-main__amount span {
    font-size: 26px;
  }

  .salary-main__note {
    margin-top: 16px;
    font-size: 12px;
  }

  .commission strong {
    font-size: 42px;
  }

  .reason-card,
  .support-card,
  .salary-options article {
    padding: 22px 20px;
  }

  .reason-card {
    min-height: auto;
  }

  .salary-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .salary-options article {
    min-height: auto;
  }

  .salary-options strong {
    font-size: 17px;
  }

  .reason-card span {
    margin-bottom: 16px;
  }

  .support-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    font-size: 19px;
  }

  .timeline-item {
    grid-template-columns: 62px 1fr;
    gap: 13px;
    padding: 18px 0;
  }

  .timeline-item time {
    font-size: 20px;
  }

  .team-panel {
    padding: 26px 18px;
  }

  .team-stats div {
    min-height: 104px;
    padding: 16px 12px;
  }

  .team-stats strong {
    font-size: 40px;
  }

  .faq-item {
    min-height: 64px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .line-flow-grid {
    gap: 10px;
  }

  .line-flow-grid article {
    min-height: auto;
    padding: 22px 20px;
  }

  .line-flow-grid span {
    margin-bottom: 14px;
  }

  .line-flow-button {
    width: 100%;
    margin-top: 18px;
  }

  .requirements-table [role="row"] {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .requirements-table [role="rowheader"] {
    padding: 15px 18px 4px;
    font-size: 13px;
  }

  .requirements-table [role="cell"] {
    padding: 4px 18px 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .access-actions {
    display: grid;
  }

  .access-line {
    width: 100%;
    margin-top: 22px;
  }

  .access-card {
    padding: 24px 20px;
  }

  .access-card__image {
    height: 170px;
    width: calc(100% + 40px);
    margin: -24px -20px 22px;
  }

  .access-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .qr-card {
    display: none;
  }

  .final-cta {
    padding: 62px 0;
  }

  .site-footer {
    padding-bottom: 128px;
  }

  .floating-line {
    left: 50%;
    right: auto;
    bottom: 10px;
    width: calc(100vw - 20px);
    min-height: 64px;
    transform: translateX(-50%);
    align-items: center;
    padding: 0;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.58);
  }

  .floating-line__eyebrow {
    font-size: 10px;
  }

  .floating-line__label {
    font-size: 16px;
  }
}
