:root {
  --ink: #1f2421;
  --muted: #69716d;
  --paper: #fbf8f1;
  --wash: #f0e9dc;
  --line: rgba(31, 36, 33, 0.14);
  --sumi: #252b27;
  --red: #a43d32;
  --green: #2d6350;
  --gold: #b7894d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 28, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Noto Sans SC",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(rgba(24, 28, 25, 0.66), rgba(24, 28, 25, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(164, 61, 50, 0.82);
  font-family: "Hiragino Mincho ProN", "Noto Serif SC", serif;
  font-size: 23px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.header-action,
.primary-button,
.secondary-button,
.line-button,
.plan a,
.reserve-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 5vw, 74px) 46px;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 22, 19, 0.74) 0%, rgba(18, 22, 19, 0.55) 37%, rgba(18, 22, 19, 0.1) 72%),
    linear-gradient(0deg, rgba(18, 22, 19, 0.32), rgba(18, 22, 19, 0.04) 48%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 100%);
  padding-top: 30px;
}

.hero-content {
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c08f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.03;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.response-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(31, 36, 33, 0.34);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.response-status strong {
  color: #c8f6d8;
}

.response-status small {
  color: rgba(255, 255, 255, 0.62);
}

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

.line-microcopy {
  display: none;
}

.primary-button {
  padding: 0 22px;
  background: var(--red);
  box-shadow: 0 14px 38px rgba(81, 20, 15, 0.3);
}

.primary-button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  font-family: "Hiragino Mincho ProN", serif;
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.line-button {
  padding: 0 22px;
  color: var(--white);
  background: #06c755;
  box-shadow: 0 14px 38px rgba(0, 92, 42, 0.3);
}

.line-button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #06c755;
  background: var(--white);
  font-weight: 900;
}

.line-button.is-emphasized,
.primary-button.is-emphasized {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

body[data-ab-variant="line"] .line-button {
  order: -1;
}

body[data-ab-variant="form"] .primary-button {
  order: -1;
}

.quick-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(560px, 100%);
  margin-top: 22px;
}

.quick-steps div {
  min-height: 74px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.quick-steps span,
.quick-steps strong {
  display: block;
}

.quick-steps span {
  color: #f4c28f;
  font-size: 12px;
  font-weight: 900;
}

.quick-steps strong {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(520px, 100%);
  margin: 54px 0 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.lead-form {
  align-self: center;
  background: rgba(251, 248, 241, 0.94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.lead-form h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 30px;
}

.form-kicker {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-lead,
.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-line-link,
.reserve-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  color: var(--white);
  background: #06c755;
  font-weight: 800;
}

.form-line-link {
  width: 100%;
}

.reserve-line-link {
  margin-top: 24px;
  padding: 0 18px;
}

.reserve-form.lead-form label {
  color: var(--ink);
}

.reserve-form.lead-form input,
.reserve-form.lead-form select {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.reserve-form.lead-form input::placeholder {
  color: #8d918e;
}

.hero-metrics div {
  padding: 16px 18px;
  background: rgba(31, 36, 33, 0.34);
  backdrop-filter: blur(14px);
}

.hero-metrics dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--sumi);
  color: var(--white);
  padding: 30px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.intro-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

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

.signal-list span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  text-align: center;
}

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

.muted {
  background: var(--wash);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 82px);
}

h2 {
  margin: 0;
  max-width: 720px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

h3 {
  margin: 0;
  font-size: 20px;
}

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

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px 22px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
}

.timeline p,
.criteria-grid p,
.plan p,
.reserve-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.criteria-grid,
.worry-grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.criteria-grid article,
.worry-grid article,
.plan {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(50, 40, 24, 0.08);
}

.criteria-grid article {
  padding: 28px;
}

.worry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.worry-grid article {
  padding: 26px;
  background: var(--white);
}

.worry-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
}

.worry-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.criteria-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--green);
  font-family: "Hiragino Mincho ProN", "Noto Serif SC", serif;
  font-size: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-strip div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--green);
  font-size: 18px;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.plans {
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 28px;
}

.plan.featured {
  color: var(--white);
  background: var(--sumi);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.plan.featured p,
.plan.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-tag {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan.featured .plan-tag {
  color: #f4c28f;
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.plan li {
  color: var(--muted);
}

.plan li::before {
  content: "・";
  color: var(--red);
  font-weight: 800;
}

.plan a {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.plan.featured a {
  border-color: transparent;
  color: var(--white);
  background: var(--red);
}

.reserve-section {
  padding: clamp(72px, 9vw, 112px) 0;
  color: var(--white);
  background:
    linear-gradient(rgba(31, 36, 33, 0.88), rgba(31, 36, 33, 0.88)),
    url("assets/hero-omiai.jpg") center / cover;
}

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.reserve-copy {
  position: sticky;
  top: 106px;
}

.reserve-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.line-qr-box {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(420px, 100%);
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.line-qr-box img {
  display: block;
  width: 112px;
  height: 112px;
  border: 8px solid var(--white);
  border-radius: 6px;
  background: var(--white);
}

.line-qr-box strong,
.line-qr-box em,
.line-qr-box span {
  display: block;
}

.line-qr-box strong {
  color: var(--white);
  font-size: 18px;
}

.line-qr-box span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.line-qr-box em {
  margin-top: 6px;
  color: #c8f6d8;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-qr-box {
  width: min(470px, 100%);
  margin-top: 18px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 12px;
}

.hero-qr-box img {
  width: 96px;
  height: 96px;
  border-width: 7px;
}

.reserve-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.reserve-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.field-note {
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.reserve-form input,
.reserve-form select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(18, 22, 19, 0.48);
  font: inherit;
}

.consent-field {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.reserve-form .consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.consent-field a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reserve-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.reserve-form option {
  color: var(--ink);
}

.reserve-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  border: 0;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font: inherit;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 82px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(50, 40, 24, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.policy-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--paper);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 82px);
}

.policy-panel {
  display: grid;
  gap: 14px;
}

.policy-panel article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.policy-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sticky-actions {
  position: fixed;
  z-index: 12;
  right: 18px;
  bottom: 18px;
  display: none;
  gap: 10px;
}

.sticky-cta,
.sticky-line {
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(81, 20, 15, 0.28);
  font-weight: 800;
}

.sticky-line {
  display: flex;
  background: #06c755;
  box-shadow: 0 16px 36px rgba(0, 92, 42, 0.24);
}

.sticky-cta {
  display: flex;
  background: var(--red);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #f4c28f;
  font-size: 14px;
}

.lead-form .form-status {
  color: var(--green);
}

.success-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  border-radius: 6px;
  color: var(--white);
  background: #06c755;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: #171a18;
  font-size: 14px;
}

.footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 86px) 0;
}

.legal-shell h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 66px);
}

.legal-shell h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 800;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(31, 36, 33, 0.86), rgba(31, 36, 33, 0.86)),
    url("assets/hero-omiai.jpg") center / cover;
}

.thanks-shell {
  display: grid;
  width: min(620px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  align-content: center;
  padding: 32px 0;
}

.thanks-brand {
  width: fit-content;
  margin-bottom: 24px;
  color: var(--white);
}

.thanks-panel {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.thanks-panel h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(36px, 7vw, 62px);
}

.thanks-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.thanks-status {
  margin: 22px 0;
}

.thanks-line {
  width: 100%;
  min-height: 54px;
}

.thanks-qr {
  margin-top: 18px;
}

.thanks-back {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 96vh;
    padding-top: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 22, 19, 0.78), rgba(18, 22, 19, 0.32)),
      linear-gradient(0deg, rgba(18, 22, 19, 0.48), rgba(18, 22, 19, 0.06));
  }

  .intro-grid,
  .split,
  .hero-layout,
  .faq-layout,
  .policy-grid,
  .reserve-layout {
    grid-template-columns: 1fr;
  }

  .signal-list,
  .criteria-grid,
  .worry-grid,
  .plans {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form {
    width: min(520px, 100%);
  }

  .reserve-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 58px;
    padding: 10px 16px;
    background: linear-gradient(rgba(24, 28, 25, 0.78), rgba(24, 28, 25, 0));
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .header-action {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 74px 14px 24px;
    align-items: start;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 22, 19, 0.86), rgba(18, 22, 19, 0.42)),
      linear-gradient(0deg, rgba(18, 22, 19, 0.54), rgba(18, 22, 19, 0.16));
  }

  .hero-layout {
    gap: 16px;
    padding-top: 0;
  }

  h1 {
    max-width: 11ch;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .response-status {
    display: flex;
    width: 100%;
    margin-top: 12px;
    gap: 5px 8px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .response-status small {
    display: none;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .primary-button,
  .secondary-button,
  .line-button {
    width: 100%;
  }

  .line-button {
    min-height: 52px;
    font-size: 16px;
  }

  .line-microcopy {
    display: block;
    width: 100%;
    margin: -3px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    text-align: center;
  }

  .line-microcopy span {
    color: #c8f6d8;
    font-weight: 800;
  }

  .primary-button {
    min-height: 44px;
    font-size: 14px;
    background: rgba(164, 61, 50, 0.92);
  }

  .secondary-button {
    display: none;
  }

  .quick-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }

  .quick-steps div {
    min-height: 48px;
    padding: 7px 6px;
  }

  .quick-steps span {
    font-size: 10px;
  }

  .quick-steps strong {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero-metrics {
    display: none;
  }

  .signal-list,
  .criteria-grid,
  .worry-grid,
  .proof-strip,
  .plans {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .timeline article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .plan.featured {
    transform: none;
  }

  .reserve-form {
    gap: 12px;
    padding: 18px;
  }

  .lead-form {
    display: none;
  }

  .lead-form h2 {
    font-size: 25px;
  }

  .line-qr-box {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
  }

  .line-qr-box img {
    width: 82px;
    height: 82px;
    border-width: 6px;
  }

  .line-qr-box strong {
    font-size: 15px;
  }

  .line-qr-box span {
    font-size: 11px;
  }

  .line-qr-box em {
    margin-top: 3px;
    font-size: 11px;
  }

  .hero-qr-box {
    grid-template-columns: 1fr;
    margin-top: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.16);
  }

  .hero-qr-box img {
    display: none;
  }

  .hero-qr-box strong {
    display: none;
  }

  .hero-qr-box em {
    margin-top: 0;
    font-size: 12px;
  }

  .hero-qr-box span {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.45;
  }

  .form-line-link {
    min-height: 42px;
  }

  .reserve-form input,
  .reserve-form select {
    height: 46px;
    font-size: 16px;
  }

  .reserve-form button {
    min-height: 50px;
  }

  .consent-field {
    font-size: 11px;
  }

  .privacy-note {
    font-size: 11px;
  }

  .thanks-shell {
    width: min(100% - 28px, 620px);
    padding: 24px 0 calc(86px + env(safe-area-inset-bottom));
  }

  .thanks-brand {
    margin-bottom: 16px;
  }

  .thanks-panel {
    padding: 20px;
  }

  .thanks-panel h1 {
    font-size: 34px;
  }

  .thanks-panel p {
    font-size: 14px;
  }

  .thanks-status {
    margin: 16px 0;
  }

  .thanks-qr {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .thanks-qr img {
    width: 72px;
    height: 72px;
  }

  .section {
    padding: 56px 0;
  }

  .intro-band {
    padding: 22px 0;
  }

  .intro-lead {
    font-size: 16px;
  }

  .signal-list span {
    min-height: 46px;
    font-size: 13px;
  }

  .sticky-actions {
    display: flex;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .sticky-actions a {
    flex: 1;
    min-height: 48px;
    padding: 0 12px;
    font-size: 15px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 68px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 13px;
  }

  .response-status {
    font-size: 10px;
  }

  .line-button {
    min-height: 50px;
  }

  .hero-qr-box {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .hero-qr-box img {
    width: 52px;
    height: 52px;
  }

  .quick-steps strong {
    font-size: 10px;
  }

  .sticky-actions a {
    font-size: 14px;
  }
}
