/* TENMO business foundation candidate 20260711-managed-inquiry-foundation-01 */
:root {
  --ink: #090909;
  --black: #050505;
  --dark: #101010;
  --paper: #f5f2eb;
  --paper-2: #fffdfa;
  --white: #ffffff;
  --line: #e8e1d6;
  --muted: #6b6258;
  --gold: #b59a63;
  --gold-dark: #8d784d;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

* { box-sizing: border-box; min-width: 0; letter-spacing: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; background: #f4f2ed; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #f4f2ed;
  font-family: var(--sans);
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 74px; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: var(--gold);
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(28px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
}

.brand {
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-copy {
  margin: 0;
  color: #f0ede5;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #d8d2c8;
  font-size: 12px;
  font-weight: 800;
}
.header-nav a { text-decoration: none; }

.header-cta {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-button span { display: block; width: 22px; height: 1px; margin-left: auto; background: currentColor; }
.mobile-menu {
  position: sticky;
  top: 70px;
  z-index: 95;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 10px clamp(28px, 4vw, 56px) 14px;
  color: #fff;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 30px rgba(0,0,0,.12);
}
.mobile-menu.is-open { display: grid; }
.mobile-menu a {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 14px;
  color: #f8f4ee;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 900;
}
.mobile-menu a:last-child { border-right: 0; }

.hero-section {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #f4f0e8;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.42), rgba(235,226,211,.18) 48%, rgba(255,255,255,0));
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 34%;
  display: block;
  width: 66%;
  height: 100%;
  overflow: hidden;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; filter: saturate(.96) contrast(1.02); }
.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,244,236,.96) 0%, rgba(247,244,236,.94) 34%, rgba(247,244,236,.70) 48%, rgba(247,244,236,.08) 64%, rgba(247,244,236,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(242,237,228,.24));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, 54vw);
  padding: 68px 0 62px clamp(52px, 5.5vw, 72px);
}
.kicker { margin: 0 0 30px; color: #25221e; font-size: 15px; font-weight: 800; }
.hero-content h1 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 3.85vw, 58px); font-weight: 600; line-height: 1.36; }
.hero-content h1 .nowrap { white-space: nowrap; }
.hero-content h1::after { content: ""; display: block; width: 78px; height: 2px; margin-top: 8px; background: var(--gold); }
.hero-content p:not(.kicker) { margin: 28px 0 0; color: #24211e; font-size: 15px; font-weight: 600; line-height: 1.95; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 36px;
  border: 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.button:hover, .header-cta:hover, .price-card:hover, .voice-grid article:hover { transform: translateY(-3px); }
.button-dark { color: var(--white); background: var(--black); box-shadow: 0 16px 42px rgba(0,0,0,.18); }
.button-gold { color: var(--white); background: var(--gold); box-shadow: 0 18px 45px rgba(181,154,99,.2); }
.button-outline { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.button-light { color: var(--ink); background: #fffaf2; box-shadow: 0 16px 42px rgba(0,0,0,.22); }
.hero-content .button { margin-top: 30px; min-width: 235px; }

.price-seal {
  position: absolute;
  z-index: 3;
  --mx: 0px;
  --my: 0px;
  left: 40%;
  bottom: 58px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--ink);
  text-align: center;
  background: rgba(239, 230, 207, .88);
  border: 1px solid rgba(137, 116, 78, .32);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.34), 0 24px 60px rgba(0,0,0,.16);
  will-change: transform;
}
.price-seal span { font-size: 13px; font-family: var(--serif); }
.price-seal strong { margin-top: 2px; font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1; }
.price-seal small { margin-top: 8px; color: #443a2b; font-size: 10px; font-weight: 800; line-height: 1.5; }

.industry-strip {
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 0 clamp(42px, 5vw, 72px);
  background: #fffdfa;
  border-bottom: 1px solid var(--line);
}
.industry-strip p { margin: 0; color: #2c2824; font-size: 14px; font-weight: 800; line-height: 1.8; }
.industry-strip ul { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; }
.industry-strip li { display: grid; justify-items: center; gap: 8px; color: #3c352d; font-size: 12px; font-weight: 700; }
.line-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--gold-dark); border: 1px solid rgba(181,154,99,.45); border-radius: 50%; font-family: var(--serif); font-size: 20px; }

.problem-section {
  position: relative;
  display: grid;
  grid-template-columns: 350px 1fr;
  column-gap: 42px;
  row-gap: 24px;
  padding: 56px clamp(42px, 5vw, 72px) 42px;
  color: var(--white);
  background: var(--black);
}
.problem-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 2.5vw, 34px); font-weight: 500; line-height: 1.55; }
.gold-line { display: block; width: 58px; height: 1px; margin: 26px 0; background: var(--gold); }
.problem-copy p { margin: 0; color: #d9d2c8; font-size: 12px; line-height: 2.05; }
.problem-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-self: start; }
.problem-photo { position: relative; width: 100%; aspect-ratio: 1.08 / 1; overflow: hidden; background-color: #111; background-image: url("assets/generated/photo-camp-problems.png"); background-repeat: no-repeat; background-size: 300% 100%; border: 1px solid rgba(255,255,255,.1); filter: grayscale(1) contrast(1.04); }
.problem-photo::before, .problem-photo::after { display: none; }
.problem-photo-1 { background-position: left center; }
.problem-photo-2 { background-position: center center; }
.problem-photo-3 { background-position: right center; }
.problem-card h3 { position: relative; margin: 20px 0 0; padding-left: 25px; color: var(--white); font-size: 15px; font-weight: 900; }
.problem-card h3::before { content: "□"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 13px; }
.problem-card p { margin: 8px 0 0 25px; color: #bfb8ae; font-size: 12px; }
.problem-solution { grid-column: 1 / -1; margin: 12px 0 0; text-align: center; color: #eee8dd; font-family: var(--serif); font-size: 18px; }
.down-mark { grid-column: 1 / -1; justify-self: center; color: #ddd1bd; font-size: 24px; line-height: 1; }

.section-heading { max-width: 980px; margin: 0 auto 42px; text-align: center; }
.section-heading p { margin: 0 0 8px; color: var(--gold-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 2.7vw, 40px); font-weight: 500; line-height: 1.5; text-wrap: balance; }
.center-line { display: block; width: 56px; height: 1px; margin: 22px auto 42px; background: var(--gold); }

.plan-section { padding: 58px clamp(42px, 5vw, 72px) 66px; background: #fffdfa; }
.plan-section > h2 { margin: 0; text-align: center; font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 500; line-height: 1.55; }
.plan-layout { display: grid; grid-template-columns: 210px minmax(320px, 1fr) 320px; gap: 34px; align-items: start; }
.side-title { margin: 0 0 24px; color: #2c2721; font-size: 14px; font-weight: 900; }
.flow-list ol { list-style: none; display: grid; gap: 21px; margin: 0; padding: 0; }
.flow-list li { display: grid; grid-template-columns: 36px 1fr; column-gap: 13px; }
.flow-list li span { grid-row: 1 / span 2; color: var(--gold); font-family: var(--serif); font-size: 19px; }
.flow-list strong { font-size: 13px; line-height: 1.7; }
.flow-list small { color: var(--muted); font-size: 11px; line-height: 1.7; }
.device-mock { position: relative; min-height: 330px; overflow: hidden; background: #f1ece3 url("assets/templates/kasane-interior-hero-v1.webp") center / cover no-repeat; border: 1px solid var(--line); box-shadow: 0 22px 58px rgba(48,38,27,.08); }
.device-mock::before, .device-mock::after, .device-mock span { display: none; }
.plan-cards { display: grid; gap: 16px; }
.price-card { padding: 28px 26px 24px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 58px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; }
.price-card-secondary { background: #fbf7ee; box-shadow: none; }
.price-card > p { margin: 0 0 14px; text-align: center; font-size: 13px; font-weight: 900; }
.price-card h3 { margin: 0; text-align: center; font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.2; }
.price-card h3 strong { font-size: 56px; font-weight: 500; }
.price-card h3 small { font-size: 12px; }
.price-card ul { list-style: none; display: grid; gap: 8px; margin: 22px 0 18px; padding: 0; }
.price-card li { position: relative; padding-left: 22px; color: #443e36; font-size: 12px; font-weight: 700; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); }
.price-scope-note { margin: -4px 0 16px; color: var(--muted); font-size: 10px; line-height: 1.75; }
.price-card b { display: block; margin-bottom: 18px; text-align: center; font-size: 12px; }
.price-card .button { width: 100%; min-height: 48px; padding: 0 18px; font-size: 12px; }
@media (min-width: 1121px) {
  .plan-cards { display: contents; }
  .plan-cards > .price-card:first-child { grid-column: 3; grid-row: 1; }
  .price-card-secondary {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 240px;
    gap: 8px 32px;
    align-items: center;
    padding: 24px 28px;
  }
  .price-card-secondary > p { grid-column: 1; grid-row: 1; margin: 0; text-align: left; }
  .price-card-secondary h3 { grid-column: 1; grid-row: 2 / 4; text-align: left; white-space: nowrap; }
  .price-card-secondary h3 strong { font-size: 48px; }
  .price-card-secondary ul { grid-column: 2; grid-row: 1 / 4; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 22px; margin: 0; }
  .price-card-secondary .price-scope-note { grid-column: 3; grid-row: 1; margin: 0; }
  .price-card-secondary b { grid-column: 3; grid-row: 2; margin: 0; text-align: left; }
  .price-card-secondary .button { grid-column: 3; grid-row: 3; }
}

.scope-section, .designs-section, .faq-section, .contact-section { padding: 64px clamp(42px, 5vw, 72px); }
.scope-section { background: #f6f1e9; border-top: 1px solid var(--line); }
.scope-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.scope-grid article { padding: 28px; background: rgba(255,255,255,.68); border: 1px solid var(--line); }
.scope-grid h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.scope-grid ul { list-style: none; display: grid; gap: 9px; margin: 0; padding: 0; }
.scope-grid li { position: relative; padding-left: 18px; color: #494139; font-size: 13px; }
.scope-grid li::before { content: ""; position: absolute; left: 0; top: .85em; width: 6px; height: 1px; background: var(--gold); }

.designs-section { position: relative; padding: 76px clamp(42px, 5vw, 72px) 82px; background: #f3eee5; }
.anchor-alias { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
.design-selection-head { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr); gap: clamp(40px, 7vw, 110px); align-items: end; margin-bottom: 38px; }
.design-selection-head .section-heading { margin: 0; text-align: left; }
.selection-lead { max-width: 680px; margin: 0 0 4px; color: #4b443d; font-size: 14px; line-height: 2.05; }
.design-options { border-top: 1px solid #d7cebf; }
.design-option { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr); min-height: 520px; overflow: hidden; border: 1px solid #d7cebf; border-top: 0; background: #fffdfa; }
.design-preview { position: relative; display: block; min-height: 520px; overflow: hidden; background-color: #e9e0d2; background-position: center; background-repeat: no-repeat; background-size: cover; isolation: isolate; }
.design-preview::before { content: ""; position: absolute; z-index: 2; inset: 20px; border: 1px solid rgba(255,255,255,.54); pointer-events: none; }
.design-preview::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04) 35%, rgba(0,0,0,.46) 100%); pointer-events: none; }
.design-index { position: absolute; z-index: 3; top: 34px; left: 36px; color: rgba(255,255,255,.94); font-family: var(--serif); font-size: 15px; letter-spacing: .12em; text-shadow: 0 2px 18px rgba(0,0,0,.34); }
.design-preview-label { position: absolute; z-index: 3; right: 36px; bottom: 34px; display: inline-flex; align-items: center; gap: 32px; min-height: 46px; padding: 0 18px; color: #fff; background: rgba(8,8,8,.86); font-size: 12px; font-weight: 900; }
.design-preview-label b { font-size: 16px; font-weight: 400; transition: transform .25s ease; }
.design-preview:hover .design-preview-label b { transform: translateX(4px); }
.design-copy { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: clamp(38px, 4.2vw, 66px); }
.design-code { margin: 0 0 7px; color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.design-category { margin: 0 0 22px; color: #554d44; font-size: 12px; font-weight: 800; }
.design-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 2.7vw, 39px); font-weight: 500; line-height: 1.5; }
.design-summary { margin: 20px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.95; }
.design-fit { display: grid; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.design-fit div { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 18px; padding: 11px 0; }
.design-fit div + div { border-top: 1px solid var(--line); }
.design-fit dt { color: var(--gold-dark); font-size: 10px; font-weight: 900; }
.design-fit dd { margin: 0; color: #3f3933; font-size: 11px; font-weight: 700; line-height: 1.65; }
.design-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 24px; padding: 0; list-style: none; }
.design-tags li { padding: 5px 9px; color: #423a33; border: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.design-actions { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; }
.design-actions .button { min-height: 50px; padding: 0 24px; gap: 28px; font-size: 12px; }
.design-consult-link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 4px; color: inherit; font-size: 11px; font-weight: 900; text-underline-offset: 5px; text-decoration-color: var(--gold); }
.design-option:nth-child(even) .design-preview { order: 2; }
.design-option:nth-child(even) .design-copy { order: 1; }
.design-option-premium .design-preview { background-image: url("assets/templates/kasane-interior-hero-v1.webp"); }
.design-option-beauty { background: #fbf5ed; }
.design-option-beauty .design-preview { background-image: url("assets/templates/sen-beauty-hero-v1.webp"); background-position: 62% center; }
.design-option-consulting { color: #f8f4ee; background: #0d0d0d; border-color: #2b2720; }
.design-option-consulting .design-preview { background-image: url("assets/templates/kirihara-advisory-hero-v1.webp"); background-position: 58% center; }
.design-option-consulting .design-category, .design-option-consulting .design-summary { color: #cfc6bb; }
.design-option-consulting .design-fit { border-color: rgba(255,255,255,.16); }
.design-option-consulting .design-fit div + div { border-color: rgba(255,255,255,.16); }
.design-option-consulting .design-fit dd { color: #eee7dd; }
.design-option-consulting .design-tags li { color: #f8f4ee; border-color: rgba(255,255,255,.2); }
.design-option-consulting .design-code, .design-option-consulting .design-fit dt { color: #d0b06d; }

.voice-section { display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: center; padding: 36px clamp(42px, 5vw, 72px); background: #f4f0e8; border-top: 1px solid var(--line); }
.voice-lead p { margin: 0 0 20px; font-size: 13px; font-weight: 900; }
.voice-lead h2 { margin: 0; font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.65; }
.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.voice-grid article { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 15px; min-height: 118px; padding: 18px; overflow: hidden; background: rgba(255,255,255,.72); border: 1px solid rgba(232,225,214,.9); transition: transform .25s ease; }
.avatar { position: relative; width: 66px; height: 66px; overflow: hidden; border-radius: 50%; background: radial-gradient(circle at 36% 28%, rgba(255,255,255,.9), rgba(255,255,255,0) 32%), linear-gradient(135deg, #f7efe3, #cdb987); box-shadow: inset 0 0 0 1px rgba(141,120,77,.28), 0 10px 28px rgba(80,64,40,.12); }
.avatar::before { content: ""; position: absolute; inset: 16px; border-radius: 50%; border: 1px solid rgba(141,120,77,.28); background: rgba(255,255,255,.18); }
.avatar::after { content: ""; position: absolute; left: 50%; bottom: 13px; width: 34px; height: 1px; transform: translateX(-50%); background: rgba(141,120,77,.46); }
.avatar-1 { background-color: #eadcc8; }
.avatar-2 { background: radial-gradient(circle at 36% 28%, rgba(255,255,255,.78), rgba(255,255,255,0) 32%), linear-gradient(135deg, #ece6dc, #b6a68e); }
.avatar-3 { background: radial-gradient(circle at 36% 28%, rgba(255,255,255,.84), rgba(255,255,255,0) 32%), linear-gradient(135deg, #f7efe3, #d0b06d); }
.voice-grid article > div { min-width: 0; }
.voice-grid small { display: block; color: var(--gold-dark); font-size: 10px; font-weight: 800; }
.voice-grid strong { display: block; margin-top: 6px; font-size: 12px; font-weight: 900; line-height: 1.6; overflow-wrap: anywhere; }
.voice-grid p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.75; overflow-wrap: anywhere; }

.faq-section { background: var(--paper-2); border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
details { padding: 22px 24px; background: #fff; border: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 900; }
details p { margin: 14px 0 0; color: var(--muted); font-size: 13px; }

.contact-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; color: #fffaf2; background: var(--black); }
.contact-lead p { margin: 0 0 10px; color: #d0b06d; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.contact-lead h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; line-height: 1.55; }
.contact-lead span { color: #d8d1c6; font-size: 13px; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: #e7dfd3; font-size: 12px; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: 12px 13px; color: #111; background: #fffaf2; border: 1px solid rgba(255,255,255,.16); border-radius: 0; font: inherit; }
.contact-form textarea { resize: vertical; }
.contact-form .full, .form-note, .contact-form button { grid-column: 1 / -1; }
.form-note { margin: 4px 0 2px; color: #cfc6bb; font-size: 11px; }
.contact-form button { width: 100%; }

.design-section { padding: 42px clamp(42px, 5vw, 72px) 44px; color: var(--white); background: var(--black); border-top: 1px solid rgba(255,255,255,.08); }
.design-section h2 { margin: 0 0 28px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.design-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; border-left: 1px solid rgba(255,255,255,.12); }
.design-grid article { min-height: 120px; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.12); }
.design-grid span { display: inline-block; margin-right: 8px; color: var(--gold); font-family: var(--serif); font-size: 16px; }
.design-grid h3 { display: inline; margin: 0; font-size: 14px; }
.design-grid p { margin: 14px 0 0; color: #cfc7bc; font-size: 12px; line-height: 1.9; }
.final-cta-section { display: grid; justify-items: center; gap: 18px; padding: 54px 24px 58px; text-align: center; color: var(--white); background: #090909; border-top: 1px solid rgba(255,255,255,.1); }
.final-cta-section p { margin: 0; color: #d0b06d; font-size: 12px; font-weight: 900; }
.final-cta-section h2 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; line-height: 1.55; }
.final-cta-section .button { min-width: 260px; }
.site-footer { padding: 18px; text-align: center; color: #766f66; background: var(--paper); font-size: 11px; }

[data-reveal] { opacity: 1; transform: none; transition: transform .45s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-float].is-visible { transform: translate3d(var(--mx), var(--my), 0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .price-seal { transform: none !important; }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto 1fr auto; }
  .header-nav { display: none; }
  .plan-layout { grid-template-columns: 1fr; }
  .flow-list { max-width: 720px; }
  .device-mock { max-width: 720px; }
  .plan-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .page-shell { width: 100%; }
  .site-header { height: 64px; grid-template-columns: auto 1fr auto; padding: 0 18px; }
  .header-copy, .header-cta { display: none; }
  .brand { font-size: 15px; }
  .mobile-menu { position: sticky; top: 64px; z-index: 95; display: none; grid-template-columns: 1fr; padding: 10px 18px 18px; color: #fff; background: #080808; border-top: 1px solid rgba(255,255,255,.08); }
  .mobile-menu.is-open { display: grid; }
  .mobile-menu a { padding: 12px 0; color: #f8f4ee; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; font-weight: 900; }

  .hero-section { display: flex; flex-direction: column; min-height: auto; padding-bottom: 0; }
  .hero-section::before { display: none; }
  .hero-bg { position: relative; inset: auto; order: 2; display: block; width: 100%; height: 255px; margin-top: 0; }
  .hero-bg img { object-position: 68% center; }
  .hero-overlay { display: none; }
  .hero-content { order: 1; width: 100%; padding: 34px 20px 28px; background: rgba(246, 242, 234, .98); }
  .kicker { margin-bottom: 20px; font-size: 12px; }
  .hero-content h1 { font-size: clamp(29px, 8.3vw, 36px); line-height: 1.5; }
  .hero-content p:not(.kicker) { margin-top: 22px; font-size: 13px; line-height: 2; }
  .hero-content .button { width: 100%; min-height: 54px; margin-top: 22px; }
  .price-seal { left: 48px; bottom: 22px; width: 118px; height: 118px; display: grid; }
  .price-seal strong { font-size: 32px; }
  .price-seal small { font-size: 8px; }

  .industry-strip { grid-template-columns: 1fr; gap: 18px; padding: 26px 34px 28px; }
  .industry-strip p { display: none; }
  .industry-strip ul { grid-template-columns: 1fr; gap: 16px; }
  .industry-strip li { grid-template-columns: 38px 1fr; justify-items: start; align-items: center; font-size: 13px; }

  .problem-section { grid-template-columns: 1fr; gap: 24px; padding: 46px 20px 36px; }
  .problem-copy h2 { font-size: 27px; line-height: 1.65; }
  .problem-grid { grid-template-columns: 1fr; gap: 10px; }
  .problem-photo { display: none; }
  .problem-card { padding: 18px 18px 16px; background: #151515; border: 1px solid rgba(255,255,255,.06); }
  .problem-card h3 { margin: 0; padding-left: 36px; font-size: 14px; }
  .problem-card h3::before { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(181,154,99,.5); border-radius: 4px; font-size: 12px; }
  .problem-card p { margin-left: 36px; }
  .problem-solution { text-align: left; font-size: 13px; line-height: 1.9; }
  .down-mark { display: none; }

  .plan-section, .scope-section, .designs-section, .faq-section, .contact-section { padding: 42px 20px; }
  .plan-section > h2 { font-size: 28px; }
  .plan-cards, .scope-grid, .faq-grid, .contact-section, .contact-form { grid-template-columns: 1fr; }
  .flow-list, .device-mock { display: none; }
  .section-heading { margin-bottom: 26px; text-align: left; }
  .design-selection-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .selection-lead { font-size: 13px; line-height: 1.9; }
  .design-option { grid-template-columns: 1fr; min-height: 0; }
  .design-option .design-preview, .design-option:nth-child(even) .design-preview { order: 1; min-height: 270px; }
  .design-option .design-copy, .design-option:nth-child(even) .design-copy { order: 2; padding: 30px 22px 34px; }
  .design-actions { display: grid; gap: 15px; }
  .design-actions .button { width: 100%; }
  .design-consult-link { justify-self: start; }
  .final-cta-section { padding: 44px 20px 48px; }
  .final-cta-section .button { width: 100%; min-width: 0; }

  .voice-section { grid-template-columns: 1fr; gap: 20px; padding: 32px 20px; }
  .voice-lead { text-align: center; }
  .voice-lead h2 { display: none; }
  .voice-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .voice-grid article { display: grid; justify-items: center; min-height: 0; padding: 0; overflow: visible; background: transparent; border: 0; }
  .avatar { width: 68px; height: 68px; }
  .voice-grid article > div { display: none; }

  .design-section { padding: 36px 20px; }
  .design-grid { grid-template-columns: 1fr; border-left: 0; }
  .design-grid article { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 430px) {
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; }
  .scope-grid article { padding: 22px 18px; }
  .design-fit div { grid-template-columns: 88px minmax(0, 1fr); gap: 12px; }
  .design-preview-label { right: 18px; bottom: 18px; }
  .design-index { top: 24px; left: 24px; }
}

/* First-view visibility guard for screenshot review */
.site-header[data-reveal],
.hero-content[data-reveal],
.price-seal[data-reveal],
.industry-strip[data-reveal],
.problem-section [data-reveal] {
  opacity: 1;
  transform: none;
}

.managed-form-shell { min-width: 0; }
.managed-form-shell.is-connected { position: relative; min-height: 520px; align-self: stretch; background: #fffaf2; }
.managed-form-frame { display: block; width: 100%; min-height: 760px; border: 0; background: #fffaf2; }
.managed-form-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
  background: #fffaf2;
}
.managed-form-fallback[hidden] { display: none; }
.managed-form-fallback p { margin: 0; color: #514c45; }
.managed-form-fallback .button { min-width: min(100%, 240px); }
.contact-form-preview :disabled { cursor: not-allowed; }
.contact-form-preview input:disabled,
.contact-form-preview select:disabled,
.contact-form-preview textarea:disabled { color: #514c45; opacity: .82; }
.contact-form-preview button:disabled { opacity: .56; }
.form-consent { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; font-weight: 500 !important; line-height: 1.8; }
.form-consent input { flex: 0 0 auto; width: 18px !important; min-height: 18px !important; margin-top: 3px; padding: 0 !important; accent-color: #a88a53; }
.form-consent a, .site-footer a { color: inherit; text-underline-offset: 3px; }
.site-footer a { margin-left: 8px; }

@media (max-width: 640px) {
  .managed-form-shell.is-connected { min-height: 460px; }
  .managed-form-frame { min-height: 900px; }
  .form-consent { font-size: 12px !important; }
}

/* Expanded commercial catalog: eight genuinely different design systems. */
.design-option-hospitality{color:#f7f4ee;background:#182127;border-color:#303b40}
.design-option-hospitality .design-preview{background-image:url("assets/templates/nagi-hospitality-hero-v1.webp");background-position:62% center}
.design-option-education{background:#f3d84b}
.design-option-education .design-preview{background-image:url("assets/templates/aoi-education-hero-v1.webp");background-position:34% center}
.design-option-product{color:#fff8ef;background:#971f18;border-color:#7a1712}
.design-option-product .design-preview{background-image:url("assets/templates/kinu-product-hero-v1.webp");background-position:66% center}
.design-option-wellness{background:#dfe7de}
.design-option-wellness .design-preview{background-image:url("assets/templates/sui-wellness-hero-v1.webp");background-position:62% center}
.design-option-event{color:#f7f4ef;background:#0b0b0f;border-color:#292932}
.design-option-event .design-preview{background-image:url("assets/templates/nokori-event-hero-v1.webp");background-position:66% center}
.design-option-hospitality .design-category,.design-option-hospitality .design-summary,.design-option-product .design-category,.design-option-product .design-summary,.design-option-event .design-category,.design-option-event .design-summary{color:rgba(255,255,255,.72)}
.design-option-hospitality .design-fit,.design-option-product .design-fit,.design-option-event .design-fit{border-color:rgba(255,255,255,.2)}
.design-option-hospitality .design-fit div+div,.design-option-product .design-fit div+div,.design-option-event .design-fit div+div{border-color:rgba(255,255,255,.2)}
.design-option-hospitality .design-fit dd,.design-option-product .design-fit dd,.design-option-event .design-fit dd{color:#fff8ef}
.design-option-hospitality .design-tags li,.design-option-product .design-tags li,.design-option-event .design-tags li{color:#fff8ef;border-color:rgba(255,255,255,.26)}
.design-option-hospitality .design-code,.design-option-hospitality .design-fit dt{color:#d8a67c}
.design-option-product .design-code,.design-option-product .design-fit dt{color:#ffd0b8}
.design-option-event .design-code,.design-option-event .design-fit dt{color:#6e8dff}
.design-option-education .design-code,.design-option-education .design-fit dt{color:#173b9a}
.design-option-wellness .design-code,.design-option-wellness .design-fit dt{color:#5c7567}