:root {
  --navy: #0f1f33;
  --navy-2: #1f3550;
  --ink: #182230;
  --muted: #687386;
  --line: #e3dfd7;
  --cream: #f8f7f2;
  --paper: #fcfbf8;
  --white: #ffffff;
  --orange: #e9822b;
  --gold: #c59a45;
  --yellow: #f2d38b;
  --green: #2c8a5a;
  --red: #ba3f38;
  --shadow: 0 14px 34px rgba(15, 31, 51, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fcfbf8 0%, #ffffff 42%, #f8f7f2 100%);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: var(--orange);
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  color: var(--navy-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 6px 18px rgba(16, 32, 51, 0.16);
}

.button.navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 6px 18px rgba(16, 32, 51, 0.14);
}

.button.secondary {
  border: 1px solid rgba(16, 32, 51, 0.18);
  background: var(--white);
  color: var(--navy);
}

.button.text-link {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 10px 24px rgba(16, 32, 51, 0.2);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
  scroll-margin-top: 86px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 54px;
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.45;
}

.hero-lead {
  max-width: 620px;
  color: #344256;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 600;
}

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

.hero-board {
  display: grid;
  gap: 16px;
}

.hero-showcase {
  align-content: center;
}

.card {
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.status-card {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
}

.status-card h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.45rem;
}

.mini-label {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 16px;
}

.status-card dt {
  color: #c7d0dc;
  font-size: 0.82rem;
}

.status-card dd {
  margin: 0;
  color: var(--yellow);
  font-size: 1.55rem;
  font-weight: 900;
}

.status-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(150px, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 10px;
}

.status-list span {
  color: #c7d0dc;
  font-size: 0.88rem;
  font-weight: 800;
}

.status-list strong {
  color: var(--yellow);
  font-weight: 900;
  line-height: 1.45;
}

.note {
  margin: 0;
  color: #dce4ed;
  font-size: 0.86rem;
}

.hero-delivery-card {
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.availability-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(15, 31, 51, 0.06);
}

.availability-card .mini-label {
  color: var(--gold);
}

.availability-title h2,
.availability-title h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.35;
}

.availability-title h2 {
  font-size: 1.08rem;
}

.availability-title h4 {
  font-size: 1.06rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.availability-item {
  border: 1px solid #eadcc5;
  border-radius: 8px;
  padding: 10px;
  background: #fcfbf8;
}

.availability-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.availability-number {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.availability-number span {
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1;
}

.availability-status {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.availability-note,
.availability-updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.6;
}

.availability-updated {
  color: #7f6a4e;
}

.hero-delivery-card h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.28rem;
}

.delivery-list {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(150px, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 8px;
}

.delivery-list span {
  color: #c7d0dc;
  font-size: 0.84rem;
  font-weight: 650;
}

.delivery-list strong {
  color: var(--yellow);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
}

.tag-cloud {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud span,
.pill {
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--white);
  color: var(--navy-2);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 24px;
  align-items: end;
}

.section-copy {
  color: var(--muted);
  font-weight: 600;
}

.calendar-grid,
.delivery-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 14px;
}

.schedule-card,
.price-card {
  padding: 18px;
}

.calendar-grid {
  grid-template-columns: repeat(5, 1fr);
}

.schedule-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.schedule-date {
  color: var(--navy);
  font-weight: 900;
}

.status-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
}

.status-good { background: var(--green); }
.status-ok { background: #2c6fba; }
.status-later { background: #c68a17; }
.status-stop { background: var(--red); }

.schedule-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  box-shadow: none;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.delivery-grid {
  grid-template-columns: repeat(5, 1fr);
}

.delivery-card {
  min-height: 260px;
  display: grid;
  grid-template-rows: minmax(64px, auto) minmax(48px, auto) 1fr;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: var(--white);
}

.delivery-card h3 {
  min-height: 64px;
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.delivery-card strong {
  display: block;
  min-height: 48px;
  margin: 0;
  color: var(--orange);
  font-size: 1.08rem;
  line-height: 1.45;
}

.delivery-card p {
  margin: 0;
  color: #435066;
  font-weight: 600;
  line-height: 1.75;
}

.pricing-section {
  padding-top: 84px;
}

.pricing-included-card {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
  padding: 30px;
  background: #fcfbf8;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.08);
}

.pricing-included-head {
  max-width: 760px;
}

.pricing-included-head h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.pricing-included-head p {
  margin-bottom: 0;
  color: #435066;
  font-weight: 700;
}

.included-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.included-check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid #eadcc5;
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.check-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #ffe7b5;
  color: #8a4b0f;
  font-size: 0.9rem;
  font-weight: 900;
}

.included-check-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  line-height: 1.35;
}

.included-check-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
}

.included-note {
  margin: 0;
  border-radius: 6px;
  padding: 12px 14px;
  background: #f4f3ef;
  color: #62451f;
  font-weight: 800;
}

.base-price-wrap,
.addon-price-wrap,
.set-price-wrap {
  margin-top: 34px;
}

.pricing-block-heading {
  margin-bottom: 14px;
}

.pricing-block-heading h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.pricing-block-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-table-card {
  overflow: hidden;
  background: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid #efe4d2;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: #f4f3ef;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:first-child {
  color: var(--navy);
  font-weight: 800;
}

.price-table strong {
  display: inline-block;
  min-width: 88px;
  color: var(--orange);
  font-size: 1.18rem;
  line-height: 1.25;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 12px;
}

.addon-card {
  min-height: 154px;
  display: grid;
  grid-template-rows: minmax(44px, auto) minmax(32px, auto) 1fr;
  gap: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: none;
}

.addon-card h4,
.set-price-card h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
}

.addon-card strong,
.set-price-card strong {
  color: var(--orange);
  font-size: 1.22rem;
  line-height: 1.25;
}

.addon-card p,
.set-price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.65;
}

.set-price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 12px;
}

.set-price-card {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-rows: minmax(48px, auto) minmax(34px, auto) 1fr;
  gap: 8px;
  padding: 18px;
  background: var(--white);
}

.set-price-card.recommended {
  border-color: rgba(233, 130, 43, 0.28);
  background: #fcfbf8;
}

.recommend-label {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 3px 9px;
  background: #f6e6d8;
  color: #8a4b0f;
  font-size: 0.74rem;
  font-weight: 750;
}

.set-price-card.recommended h4 {
  padding-right: 72px;
}

.pricing-note-card {
  margin-top: 28px;
  padding: 18px 20px;
  background: #f8f7f2;
  box-shadow: none;
}

.pricing-note-card p {
  margin: 0;
  color: #435066;
  font-size: 0.96rem;
  font-weight: 700;
}

.payment-flow-card {
  display: grid;
  gap: 10px;
}

.payment-flow-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid #efe4d2;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #f4f3ef;
  color: var(--navy);
  font-weight: 750;
}

.comparison-table tr.aias-row td {
  border-top: 1px solid rgba(15, 31, 51, 0.12);
  background: #f7f9fb;
  font-weight: 700;
}

.comparison-table tr.aias-row td:first-child {
  box-shadow: inset 4px 0 0 var(--navy);
}

.form-shell {
  padding: 26px;
  background: var(--white);
}

.request-page {
  background: linear-gradient(180deg, #fcfbf8 0%, #ffffff 48%, #f8f7f2 100%);
}

.request-hero {
  padding-bottom: 40px;
}

.request-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.request-form-layout {
  padding-top: 20px;
}

.request-note {
  margin-bottom: 18px;
  padding: 18px 20px;
  background: #fffaf1;
  box-shadow: none;
}

.request-note p {
  margin: 0;
  color: #435066;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--navy);
  font-weight: 900;
}

.product-price-card span {
  display: grid;
  gap: 3px;
}

.product-category-card span {
  display: grid;
  gap: 4px;
}

.product-price-card strong {
  color: var(--navy);
  line-height: 1.25;
}

.product-price-card small,
.product-category-card small {
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-category-card small {
  color: var(--muted);
  line-height: 1.45;
}

.step-meter {
  margin-bottom: 26px;
}

.estimate-card {
  margin: 0 0 26px;
  padding: 20px;
  background: #fffaf1;
  box-shadow: none;
}

.estimate-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #eadcc5;
  padding-bottom: 14px;
}

.estimate-summary h3 {
  margin-bottom: 0;
}

.estimate-total {
  flex: 0 0 auto;
  text-align: right;
}

.estimate-total span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.estimate-total strong {
  display: block;
  color: var(--orange);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.estimate-lines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.estimate-lines div {
  border: 1px solid #eadcc5;
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
}

.estimate-lines span,
.estimate-breakdown h4,
.estimate-consultation h4 {
  display: block;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.estimate-lines strong {
  color: var(--navy);
  font-weight: 900;
}

.estimate-breakdown {
  margin-top: 14px;
}

.estimate-breakdown ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.estimate-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #efe4d2;
  padding-top: 6px;
  color: #435066;
  font-weight: 700;
}

.estimate-breakdown li strong {
  flex: 0 0 auto;
  color: var(--orange);
}

.estimate-breakdown p,
.estimate-consultation p {
  margin: 0;
  color: #435066;
  font-weight: 700;
}

.estimate-consultation {
  margin-top: 12px;
  border: 1px solid rgba(198, 138, 23, 0.28);
  border-radius: 6px;
  padding: 12px;
  background: #f8f7f2;
}

.estimate-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.step-meter-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e4d0;
}

.step-meter-line span {
  display: block;
  height: 100%;
  width: 14.28%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 0.25s ease;
}

.step-meter ol {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.step-meter li {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.step-meter li.active {
  color: var(--navy);
}

.step-num,
.step-label {
  display: block;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.required-label,
.required-dot,
.required-badge {
  display: inline-flex;
  margin: 0 0 12px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #ffe7b5;
  color: #8a4b0f;
  font-size: 0.78rem;
  font-weight: 900;
}

.required-badge {
  margin: 0 0 0 6px;
  vertical-align: middle;
}

.choice-grid,
.material-grid,
.input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

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

.choice-card,
.material-card {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 9px;
  border: 1px solid #eadcc5;
  border-radius: 6px;
  padding: 12px;
  background: #fffaf1;
  cursor: pointer;
  font-weight: 800;
}

.choice-card input,
.material-card input {
  accent-color: var(--orange);
}

.choice-card:has(input:checked),
.material-card:has(input:checked) {
  border-color: rgba(240, 138, 36, 0.7);
  background: #fff0cc;
}

.spec-panel {
  display: grid;
  gap: 18px;
}

.empty-spec {
  margin: 0;
  border: 1px dashed #d4b98e;
  border-radius: 6px;
  padding: 18px;
  background: #fffaf1;
  color: var(--muted);
  font-weight: 800;
}

.spec-group {
  border: 1px solid #eadcc5;
  border-radius: 6px;
  padding: 16px;
  background: #fffaf1;
}

.spec-group .field-label {
  margin-top: 0;
}

.spec-note-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.conditional-field textarea {
  min-height: 118px;
}

.field-label {
  display: block;
  margin: 24px 0 10px;
  color: var(--navy);
  font-weight: 900;
}

.field-label span {
  color: var(--muted);
  font-size: 0.85rem;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"] {
  width: 100%;
  border: 1px solid #dfd1bb;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fffdf8;
  color: var(--ink);
}

textarea:focus,
input:focus {
  outline: 3px solid rgba(240, 138, 36, 0.18);
  border-color: var(--orange);
}

.fake-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  border: 1px dashed #d4b98e;
  border-radius: 6px;
  padding: 18px;
  background: #fffaf1;
  color: var(--muted);
  font-weight: 800;
}

.fake-upload button {
  border: 1px solid #d8c5a8;
  border-radius: 6px;
  padding: 10px 14px;
  background: #f5ead8;
  color: #77644d;
  font-weight: 800;
}

.voice-input-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 6px;
  padding: 11px 16px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.voice-input-button::before {
  content: "";
  width: 12px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.voice-input-button.listening {
  border-color: rgba(240, 138, 36, 0.6);
  background: var(--orange);
  color: #241407;
  box-shadow: 0 10px 22px rgba(240, 138, 36, 0.22);
}

.voice-input-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  box-shadow: none;
}

.voice-input-note,
.voice-input-message {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.voice-input-message {
  min-height: 1.4em;
  color: #8a5817;
}

.input-assist-guide {
  margin-top: 14px;
  border: 1px solid #eadcc5;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffaf1;
  color: #344256;
}

.input-assist-guide-title {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.input-assist-guide-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.35em;
  color: #435066;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.65;
}

.input-assist-guide-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
}

.input-assist-compact {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 12px;
}

.input-assist-compact .input-assist-guide-title {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.polish-tools,
.field-assist,
.file-upload-area {
  margin-top: 16px;
  border: 1px solid #eadcc5;
  border-radius: 8px;
  padding: 16px;
  background: #fffaf1;
}

.field-assist {
  margin-top: 12px;
  padding: 12px;
  background: var(--white);
}

.assist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.polish-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.voice-input-button.compact,
.polish-button.compact {
  min-height: 38px;
  margin-top: 0;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.polish-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.polish-message,
.file-warning {
  margin: 8px 0 0;
  color: #8a5817;
  font-size: 0.9rem;
  font-weight: 800;
}

.polish-result {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid #eadcc5;
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.polish-result.compact {
  padding: 12px;
}

.polish-result h4 {
  margin: 0;
  color: var(--navy);
}

.polish-result pre {
  margin: 0;
  white-space: pre-wrap;
  color: #344256;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.7;
}

.polish-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-upload-area .field-label {
  margin-top: 0;
}

.file-upload-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.file-input {
  width: 100%;
  border: 1px dashed #d4b98e;
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.selected-file-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.selected-file-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #eadcc5;
  border-radius: 6px;
  padding: 9px 10px;
  background: var(--white);
  color: #344256;
  font-weight: 800;
}

.selected-file-list small {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 900;
}

.input-grid label {
  color: var(--navy);
  font-weight: 900;
}

.input-grid .deadline-field {
  color: var(--navy);
  font-weight: 900;
}

.deadline-availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  align-items: start;
  margin-top: 4px;
}

.deadline-availability-layout .deadline-field {
  min-width: 0;
}

.request-availability-card {
  margin-top: 24px;
  padding: 16px;
  box-shadow: none;
}

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

.request-availability-card .availability-item {
  padding: 10px 11px;
}

.request-availability-card .availability-number span {
  font-size: 1.45rem;
}

.input-grid .wide {
  grid-column: 1 / -1;
}

.deadline-detail,
.deadline-detail-field {
  display: block;
  margin-top: 14px;
}

.deadline-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.confirm-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
}

.confirm-list input {
  accent-color: var(--orange);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.form-actions.first-step {
  justify-content: flex-end;
}

.form-actions.last-step {
  justify-content: space-between;
}

.hidden {
  display: none !important;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 800;
}

.form-message.success {
  border: 1px solid rgba(44, 138, 90, 0.24);
  border-radius: 6px;
  padding: 12px 14px;
  background: #eff9f3;
  color: var(--green);
}

.preview {
  margin-top: 22px;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
}

.preview h3 {
  color: var(--white);
}

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

.preview-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.preview-item dt {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.preview-item dd {
  margin: 4px 0 0;
  color: var(--white);
}

.preview-confirm {
  margin-top: 18px;
  border: 1px solid rgba(247, 200, 95, 0.34);
  border-radius: 6px;
  padding: 18px;
  background: #fffaf1;
  color: var(--ink);
}

.preview-confirm p {
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 800;
}

.preview-confirm .confirm-list {
  margin-top: 0;
}

.preview-confirm .confirm-list label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid #eadcc5;
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--white);
}

.preview-submit-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.preview-message {
  margin: 14px 0 0;
  color: #ffd1c9;
  font-weight: 800;
}

.preview-message.success {
  border: 1px solid rgba(44, 138, 90, 0.24);
  border-radius: 6px;
  padding: 12px 14px;
  background: #eff9f3;
  color: var(--green);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 18px 20px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #435066;
  font-weight: 600;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
  border-radius: var(--radius);
  padding: 44px;
  background: var(--navy);
  color: var(--white);
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta p {
  margin-bottom: 0;
  color: #e8edf3;
  font-weight: 700;
}

.final-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.mobile-cta {
  display: none;
}

.samples-page {
  background: linear-gradient(180deg, #fcfbf8 0%, #ffffff 48%, #f8f7f2 100%);
}

.nav-links a.active {
  color: var(--orange);
}

.samples-hero {
  padding-top: 54px;
  padding-bottom: 44px;
}

.samples-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.samples-helper-text {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.samples-gallery-section {
  padding-top: 28px;
}

.samples-guide {
  margin-bottom: 18px;
  padding: 16px 18px;
  background: #f8f7f2;
  box-shadow: none;
}

.samples-guide p {
  margin: 0;
  color: #435066;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}

.samples-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  border: 1px solid rgba(16, 32, 51, 0.13);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 750;
}

.filter-button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}

.sample-gallery-card {
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-rows: 320px minmax(0, 1fr);
  background: var(--white);
}

.sample-media {
  height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #f6f4ef;
}

.sample-media-button {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.sample-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(15, 31, 51, 0.82);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.sample-media-button:hover .sample-zoom-hint {
  background: rgba(15, 31, 51, 0.94);
}

.sample-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  background: var(--white);
}

.sample-media-inner {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.13);
}

.mock-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.sample-media-inner strong {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.22;
}

.sample-media-inner em {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--orange);
  color: #241407;
  font-style: normal;
  font-weight: 750;
}

.mock-frame {
  display: grid;
  gap: 7px;
}

.mock-frame i {
  display: block;
  min-height: 8px;
  border-radius: 999px;
  background: #eadcc5;
}

.mock-frame i:first-child {
  min-height: 56px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f08a24, #f7c85f);
}

.mock-frame i:nth-child(2) {
  width: 82%;
}

.mock-frame i:nth-child(3) {
  width: 58%;
}

.sample-mock-sns,
.sample-mock-food {
  aspect-ratio: 1 / 1;
  max-width: 198px;
  max-height: 198px;
}

.sample-mock-food {
  background:
    radial-gradient(circle at 82% 20%, #f7c85f 0 15%, transparent 16%),
    linear-gradient(135deg, #fff9eb, #fff1d2);
}

.sample-mock-flyer,
.sample-mock-beauty,
.sample-mock-care,
.sample-mock-menu {
  width: min(72%, 166px);
  max-height: 206px;
}

.sample-mock-pop {
  max-width: 250px;
  max-height: 166px;
  border: 4px solid var(--orange);
  text-align: center;
}

.sample-mock-menu .mock-frame {
  grid-template-columns: 1fr auto;
}

.sample-mock-menu .mock-frame i {
  min-height: 7px;
}

.sample-mock-menu .mock-frame i:first-child {
  grid-column: 1 / -1;
  min-height: 42px;
  background: #f5ead8;
}

.sample-mock-banner {
  max-width: 100%;
  max-height: 140px;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 12px;
}

.sample-mock-banner .mock-frame {
  align-self: stretch;
}

.sample-mock-care {
  background: linear-gradient(135deg, #fffffb, #f0f6ed);
}

.sample-mock-beauty {
  background: linear-gradient(135deg, #fffaf8, #f7eadf);
}

.sample-info {
  display: grid;
  grid-template-rows:
    auto
    minmax(54px, auto)
    minmax(120px, auto)
    minmax(68px, 1fr)
    auto;
  align-content: stretch;
  gap: 10px;
  padding: 18px;
}

.sample-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.sample-reference-label {
  width: fit-content;
  border: 1px solid #e3dfd7;
  border-radius: 999px;
  padding: 4px 9px;
  background: #f8f7f2;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.sample-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: #f6e6d8;
  color: #8a4b0f;
  font-size: 0.78rem;
  font-weight: 700;
}

.sample-info h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.45;
}

.sample-meta {
  display: grid;
  align-content: start;
  grid-template-rows: repeat(3, minmax(36px, auto));
  margin: 0;
}

.sample-meta div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  border-top: 1px solid #f0e4d0;
  padding: 7px 0;
}

.sample-meta dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.sample-meta dd {
  margin: 0;
  text-align: left;
  font-weight: 800;
  line-height: 1.45;
}

.sample-note {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sample-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #f0e4d0;
  padding-top: 9px;
}

.sample-price span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.sample-price strong {
  color: var(--orange);
  font-size: 1.28rem;
  line-height: 1.2;
}

.sample-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 14, 22, 0.78);
}

.sample-lightbox.hidden {
  display: none;
}

.sample-lightbox-inner {
  display: grid;
  max-width: min(94vw, 1120px);
  max-height: 92vh;
  gap: 12px;
  place-items: center;
}

.sample-lightbox-inner img {
  max-width: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.sample-lightbox-inner p {
  margin: 0;
  color: var(--white);
  font-weight: 750;
  text-align: center;
}

.sample-lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.sample-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
  border-radius: var(--radius);
  padding: 40px;
  background: var(--navy);
  color: var(--white);
}

.sample-cta-section h2,
.sample-cta-section .eyebrow {
  color: var(--white);
}

.sample-cta-section p {
  margin-bottom: 0;
  color: #e8edf3;
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav {
    width: min(100% - 28px, 1120px);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-board,
  .section-heading.split,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid,
  .delivery-grid,
  .price-grid,
  .addon-grid,
  .set-price-grid,
  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-grid,
  .choice-grid.compact,
  .material-grid,
  .input-grid,
  .category-choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 58px 0;
  }

  .site-header {
    position: static;
  }

  .nav {
    height: 60px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 42px;
  }

  .hero {
    gap: 32px;
    padding-top: 34px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .form-actions,
  .fake-upload,
  .final-cta,
  .sample-cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .estimate-summary,
  .estimate-breakdown li {
    align-items: stretch;
    flex-direction: column;
  }

  .estimate-total {
    text-align: left;
  }

  .status-card dl,
  .status-list li,
  .delivery-list li,
  .availability-grid,
  .deadline-availability-layout,
  .pricing-included-card,
  .calendar-grid,
  .delivery-grid,
  .price-grid,
  .addon-grid,
  .set-price-grid,
  .samples-grid,
  .choice-grid,
  .choice-grid.compact,
  .material-grid,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .estimate-lines {
    grid-template-columns: 1fr;
  }

  .request-hero {
    padding-top: 34px;
  }

  .form-shell {
    padding: 12px;
  }

  .step-meter ol {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-meter li {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .step-label {
    display: none;
  }

  .choice-card,
  .material-card {
    min-height: 68px;
    padding: 16px 14px;
  }

  .pricing-included-card {
    padding: 22px;
  }

  .included-check-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    border-bottom: 1px solid #efe4d2;
    padding: 14px 16px;
  }

  .price-table tr:last-child {
    border-bottom: 0;
  }

  .price-table td {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    border-bottom: 0;
    padding: 5px 0;
  }

  .price-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .price-table strong {
    min-width: 0;
  }

  .addon-card,
  .set-price-card {
    min-height: auto;
    grid-template-rows: auto auto auto;
  }

  .production-card {
    grid-template-rows: 168px auto;
  }

  .production-body {
    grid-template-rows: auto auto auto auto;
    gap: 8px;
  }

  .hero-delivery-card {
    padding: 20px;
  }

  .delivery-card {
    min-height: auto;
    grid-template-rows: auto auto auto;
  }

  .delivery-card h3,
  .delivery-card strong {
    min-height: auto;
  }

  .request-availability-card {
    margin-top: 8px;
  }

  .comparison-wrap {
    margin-right: -14px;
  }

  .final-cta {
    padding: 28px 20px;
  }

  .samples-hero {
    padding-top: 34px;
  }

  .samples-helper-text,
  .samples-guide p {
    font-size: 0.9rem;
  }

  .samples-filter {
    flex-wrap: nowrap;
    margin-right: -14px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .sample-gallery-card {
    grid-template-rows: 250px minmax(0, auto);
  }

  .sample-media {
    height: 250px;
  }

  .sample-zoom-hint {
    right: 8px;
    bottom: 8px;
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .sample-info {
    grid-template-rows:
      auto
      minmax(0, auto)
      minmax(0, auto)
      minmax(0, auto)
      auto;
    padding: 16px;
  }

  .sample-meta dd {
    text-align: left;
  }

  .sample-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .sample-lightbox {
    padding: 18px;
  }

  .sample-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .sample-cta-section {
    padding: 28px 20px;
  }

  .final-cta-actions {
    justify-content: stretch;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid rgba(16, 32, 51, 0.12);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(252, 251, 248, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 6px;
    border: 1px solid rgba(15, 31, 51, 0.14);
    background: var(--white);
    color: var(--navy);
    font-weight: 750;
  }

  .mobile-cta a:last-child {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
  }
}
