:root {
  --orange: #f8ad00;
  --red: #e13333;
  --blue: #3992ff;
  --ink: #222222;
  --text: #333333;
  --muted: #4B5563;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F3F4F6;
  --gradient: linear-gradient(45deg, #f8ad00, #e13333, #3992ff);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 16px 42px rgba(0, 0, 0, 0.09);
  --radius: 12px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
textarea {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.35;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-right: auto;
  margin-left: auto;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.brand-icon,
.quote-icon,
.check-list svg {
  fill: none;
  stroke: var(--orange);
  stroke: url(#icon-gradient);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.brand-icon-small {
  width: 38px;
  height: 38px;
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
  padding-block: 112px;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray-50);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-title::before {
  content: "";
  width: 6px;
  height: 1em;
  flex: 0 0 6px;
  background: var(--red);
  border-radius: 99px;
}

.section-title span {
  display: inline-block;
}

.floating-card {
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-card:hover {
  transform: translateY(-3px);
  -webkit-box-shadow: var(--shadow-hover);
  box-shadow: var(--shadow-hover);
}

.brand-line,
.footer-gradient {
  height: 4px;
  background: #f8ad00;
  background: -webkit-linear-gradient(45deg, #f8ad00, #e13333, #3992ff);
  background: var(--gradient);
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 5px 24px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  flex: 0 1 220px;
  object-fit: contain;
  object-position: left center;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding-block: 10px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 24px rgba(248, 173, 0, 0.24);
  box-shadow: 0 10px 24px rgba(248, 173, 0, 0.24);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus,
.button:focus-visible {
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 30px rgba(248, 173, 0, 0.34);
  box-shadow: 0 14px 30px rgba(248, 173, 0, 0.34);
  filter: brightness(1.02);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
}

.button-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 0;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 3px;
  margin-block: 5px;
  background: var(--ink);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 86px));
  overflow: hidden;
  background-image: url("assets/images/hero-interior-16x9.png");
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  background: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.72) 47%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.96) 28%, rgba(255, 255, 255, 0.72) 47%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 86px));
  padding-block: 96px;
}

.hero-copy {
  width: 100%;
  max-width: 720px;
}

.eyebrow,
.card-kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-heading-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.hero-copy > p:not(.eyebrow, .hero-lead) {
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.evidence {
  padding-top: 112px;
}

.evidence-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  background: var(--gray-50);
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.evidence-card:hover,
.evidence-card:focus-visible {
  transform: translateY(-4px);
  -webkit-box-shadow: var(--shadow-hover);
  box-shadow: var(--shadow-hover);
}

.publication-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  place-items: center;
  padding: 48px;
  background: #F3F4F6;
  background:
    -webkit-radial-gradient(18% 24%, circle, rgba(248, 173, 0, 0.10), transparent 32%),
    -webkit-linear-gradient(315deg, #FFFFFF 0%, #F3F4F6 100%);
  background:
    radial-gradient(circle at 18% 24%, rgba(248, 173, 0, 0.10), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #F3F4F6 100%);
}

.publication-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.publication-fallback {
  position: relative;
  z-index: 0;
}

.publication-visual.is-fallback .publication-fallback {
  z-index: 2;
}

.publication-frame {
  display: flex;
  width: min(100%, 420px);
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  color: var(--muted);
  background: var(--white);
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.publication-frame strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.2;
}

.publication-frame span {
  font-size: 13px;
}

.publication-kicker {
  color: var(--red) !important;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.evidence-copy {
  align-self: center;
  padding: 64px;
}

.evidence-copy h3 {
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  font-weight: 800;
}

.evidence-copy p:not(.card-kicker) {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid > *,
.professional-layout > *,
.pricing-grid > *,
.evidence-card > *,
.comparison-grid > * {
  min-width: 0;
}

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

.problem-card {
  padding: 38px;
}

.problem-card h3 {
  margin: 24px 0 12px;
  font-size: 20px;
}

.problem-card p {
  margin-bottom: 0;
}

.solution-line {
  margin: 46px 0 0;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
}

.solution-line strong {
  color: var(--orange);
  font-size: 1.15em;
}

.professional-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.chart-card {
  padding: 36px;
}

.chart-title {
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 800;
}

.chart-row {
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.8fr) minmax(180px, 1.2fr);
  align-items: center;
  gap: 14px;
  margin-block: 17px;
  font-size: 14px;
}

.chart-rank {
  color: var(--red);
  font-weight: 800;
}

.chart-label {
  color: var(--ink);
  font-weight: 700;
}

.chart-track {
  display: block;
  height: 12px;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 999px;
}

.chart-bar {
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
}

.technique-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.technique-card {
  padding: 30px 26px;
}

.technique-card h3 {
  margin: 18px 0 8px;
  font-size: 17px;
}

.technique-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-card {
  overflow: hidden;
}

.feature-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.025);
}

.feature-body {
  padding: 30px;
}

.feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feature-heading span {
  color: var(--orange);
  font-size: 21px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.comparison-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 14px;
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.image-label-before {
  background: var(--muted);
}

.image-label-after {
  background: var(--red);
}

.comparison-arrow svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--orange);
  stroke: url(#icon-gradient);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.filter-pill {
  padding: 11px 22px;
  color: var(--muted);
  background: var(--gray-100);
  border: 0;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.filter-pill:hover,
.filter-pill:focus,
.filter-pill:focus-visible,
.filter-pill.is-active {
  color: var(--white);
  background: var(--orange);
  -webkit-box-shadow: 0 8px 20px rgba(248, 173, 0, 0.25);
  box-shadow: 0 8px 20px rgba(248, 173, 0, 0.25);
  transform: translateY(-1px);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 12%;
  left: 12%;
  height: 4px;
  background: var(--gray-100);
  border-radius: 999px;
}

.timeline li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-node {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  color: var(--red);
  background: var(--white);
  border: 6px solid var(--red);
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  -webkit-box-shadow: 0 8px 22px rgba(225, 51, 51, 0.12);
  box-shadow: 0 8px 22px rgba(225, 51, 51, 0.12);
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.timeline p {
  max-width: 290px;
  margin: 0 auto;
  font-size: 15px;
}

.voices {
  position: relative;
}

.voices::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: min(160px, 25vw);
  height: 3px;
  background: #f8ad00;
  background: -webkit-linear-gradient(45deg, #f8ad00, #e13333, #3992ff);
  background: var(--gradient);
  transform: translateX(50%);
}

.voice-card {
  position: relative;
  padding: 38px;
}

.quote-icon {
  width: 46px;
  height: 46px;
}

.voice-tag {
  margin: 22px 0 16px;
  color: var(--orange);
  font-weight: 800;
}

.voice-card blockquote {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.voice-role {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.provisional-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

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

.price-card,
.options-card {
  padding: clamp(34px, 5vw, 54px);
}

.price-card h3,
.options-card h3 {
  margin-bottom: 22px;
  font-size: 25px;
}

.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
  color: var(--orange);
}

.price strong {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.price .price-suffix {
  margin-left: 8px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.price-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.check-list,
.option-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: 12px;
  font-weight: 600;
}

.check-list svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.option-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-bottom: 1px solid var(--gray-100);
}

.option-list li:last-child {
  border-bottom: 0;
}

.option-list strong {
  color: var(--ink);
  font-size: 15px;
  overflow-wrap: break-word;
}

.option-list span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  overflow-wrap: break-word;
}

.option-tax-note {
  margin: 20px 0 0;
  color: #6B7280;
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.cancellation-rule {
  margin: 30px 0 0;
  padding: 20px 24px;
  color: var(--text);
  background: var(--gray-50);
  border-radius: 10px;
  font-size: 15px;
}

.cancellation-rule strong {
  color: var(--red);
}

.campaign {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  background-image: url("assets/images/campaign-highrise.png");
  background-position: center;
  background-size: cover;
}

.campaign-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.72);
  background: -webkit-linear-gradient(left, rgba(34, 34, 34, 0.9) 0%, rgba(34, 34, 34, 0.77) 38%, rgba(34, 34, 34, 0.18) 76%, rgba(34, 34, 34, 0.05) 100%);
  background: linear-gradient(90deg, rgba(34, 34, 34, 0.9) 0%, rgba(34, 34, 34, 0.77) 38%, rgba(34, 34, 34, 0.18) 76%, rgba(34, 34, 34, 0.05) 100%);
}

.campaign-inner {
  position: relative;
  z-index: 1;
  padding-block: 90px;
}

.campaign-card {
  max-width: 720px;
  color: var(--white);
}

.campaign-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  background: var(--red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.campaign-card h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  white-space: nowrap;
}

.campaign-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-block: 28px;
}

.campaign-price del {
  color: var(--gray-100);
}

.campaign-price strong {
  color: var(--orange);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
}

.campaign-price small {
  font-size: 14px;
}

.campaign-price span {
  display: inline-grid;
  width: 76px;
  height: 76px;
  padding: 8px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.campaign-card ul {
  margin: 0 0 30px;
  padding-left: 1.25em;
}

.booking-intro {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
}

.booking-intro-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.booking-intro h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.booking-intro p {
  margin-bottom: 0;
}

.booking-external-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: #f8ad00;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 24px rgba(248, 173, 0, 0.24);
  box-shadow: 0 10px 24px rgba(248, 173, 0, 0.24);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.booking-external-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-external-link:hover,
.booking-external-link:focus-visible {
  color: var(--white);
  background: #f8ad00;
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 30px rgba(248, 173, 0, 0.34);
  box-shadow: 0 14px 30px rgba(248, 173, 0, 0.34);
  filter: brightness(1.02);
}

.calendar-embed {
  padding: 14px;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 900px;
  height: 900px;
  background: var(--white);
  border-radius: 8px;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: #FFFFFF;
  }
}

@supports not (aspect-ratio: 3 / 2) {
  .feature-image,
  .comparison-image img {
    height: 280px;
  }

  .publication-frame {
    min-height: 250px;
  }
}

.site-footer {
  color: var(--gray-100);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-block: 70px 50px;
}

.footer-brand img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 15px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 8px 0;
  color: var(--gray-100);
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--orange);
}

.copyright {
  margin: 0;
  padding: 18px 24px 24px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1024px) {
  .header-inner {
    gap: 18px;
  }

  .global-nav {
    gap: 18px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
    padding-block: 96px;
  }

  .evidence-copy {
    padding: 42px;
  }

  .professional-layout {
    gap: 38px;
  }

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

  .feature-body {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 180px;
    height: auto;
    flex-basis: 180px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 10px 4px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero {
    background-position: 62% center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.78);
    background: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0.97) 44%, rgba(255, 255, 255, 0.62) 76%, rgba(255, 255, 255, 0.25) 100%);
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.97) 44%, rgba(255, 255, 255, 0.62) 76%, rgba(255, 255, 255, 0.25) 100%);
  }

  .hero-copy {
    max-width: 620px;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .evidence-card,
  .professional-layout,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .publication-visual {
    min-height: 320px;
  }

  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .comparison-arrow {
    display: grid;
    place-items: center;
  }

  .comparison-arrow svg {
    transform: rotate(90deg);
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .timeline::before {
    top: 30px;
    bottom: 30px;
    left: 29px;
    width: 4px;
    height: auto;
  }

  .timeline li {
    min-height: 90px;
    padding-left: 90px;
    text-align: left;
  }

  .timeline-node {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .timeline p {
    max-width: none;
    margin: 0;
  }

  .campaign-overlay {
    background: rgba(34, 34, 34, 0.76);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
    padding-block: 78px;
  }

  .section-title {
    align-items: flex-start;
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .section-title::before {
    margin-top: 0.12em;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero {
    background-position: 64% center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.88);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0.52) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0.52) 100%);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 74px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.4vw, 3.4rem);
  }

  .hero .button {
    width: 100%;
  }

  .publication-visual {
    min-height: 250px;
    padding: 26px;
  }

  .evidence-copy {
    padding: 30px 26px 36px;
  }

  .problem-card,
  .voice-card {
    padding: 30px;
  }

  .professional-layout {
    gap: 30px;
  }

  .chart-card {
    padding: 26px 20px;
  }

  .chart-row {
    grid-template-columns: 36px 1fr;
    gap: 8px 10px;
  }

  .chart-track {
    grid-column: 1 / -1;
  }

  .technique-grid,
  .feature-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    gap: 16px;
  }

  .filter-pills {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-pill {
    width: 100%;
  }

  .price-card,
  .options-card {
    padding: 30px 24px;
  }

  .price strong {
    font-size: 3.2rem;
  }

  .price .price-suffix {
    font-size: 1.65rem;
  }

  .option-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .option-list span {
    text-align: left;
  }

  .campaign {
    min-height: 720px;
  }

  .campaign-inner {
    padding-block: 72px;
  }

  .campaign-price span {
    width: 64px;
    height: 64px;
  }

  .campaign-card h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.4rem);
  }

  .booking-intro {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px;
  }

  .booking-intro-copy {
    flex: 1 1 calc(100% - 76px);
  }

  .booking-external-link {
    width: 100%;
  }

  .calendar-embed {
    margin-inline: -8px;
    padding: 6px;
  }

  .calendar-embed iframe {
    min-height: 900px;
    height: 900px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
