:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #65625b;
  --line: #ded8ca;
  --soft: #f4f1ea;
  --paper: #fffdf7;
  --accent: #146b5b;
  --accent-dark: #0d4e43;
  --warm: #c56d2d;
  --warn: #a85219;
  --charcoal: #1d1d1b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.service-page {
  background: #fffaf0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(29, 29, 27, 0.12);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 950;
  letter-spacing: 0;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.service-hero,
.service-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 40px 0;
}

.service-hero-copy {
  display: grid;
  gap: 22px;
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  padding: 0 18px;
}

.primary-link {
  background: var(--charcoal);
  color: #fffaf0;
}

.secondary-link {
  border: 1px solid rgba(29, 29, 27, 0.2);
  color: var(--charcoal);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 0;
}

.hero-metrics div {
  border: 1px solid rgba(29, 29, 27, 0.12);
  border-radius: 8px;
  padding: 13px;
  background: #fffdf7;
}

.hero-metrics dt {
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(29, 29, 27, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(29, 29, 27, 0.18);
}

.service-section {
  padding: 80px 0;
  border-top: 1px solid rgba(29, 29, 27, 0.12);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2,
.offer-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.scene-grid,
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.scene-grid article,
.role-grid article,
.process-rail div {
  border: 1px solid rgba(29, 29, 27, 0.13);
  border-radius: 8px;
  background: #fffdf7;
  padding: 22px;
}

.scene-grid span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
}

.scene-grid h3,
.role-grid h3 {
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.scene-grid p,
.role-grid p,
.process-rail p,
.offer-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.process-section {
  background: #f2eadb;
  box-shadow: 50vw 0 0 #f2eadb, -50vw 0 0 #f2eadb;
}

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

.process-rail strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

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

.role-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 96px;
}

.offer-section div {
  display: grid;
  gap: 16px;
}

.workspace,
.output-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
  margin-bottom: 16px;
}

.generator-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
  padding: 28px 0 8px;
}

.generator-hero h1 {
  max-width: 920px;
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.generator-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.generator-steps {
  display: grid;
  gap: 8px;
}

.generator-steps span {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(29, 29, 27, 0.14);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.input-panel h1,
.input-panel h2 {
  max-width: 760px;
  margin: 6px 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.eyebrow,
.panel-head,
label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
}

.url-form {
  display: grid;
  gap: 8px;
}

.generator-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  border: 1px solid rgba(20, 107, 91, 0.18);
  border-radius: 8px;
  background: #edf7f3;
  padding: 12px;
}

.generator-note strong {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 950;
}

.generator-note p {
  margin: 0;
  color: #31564e;
  line-height: 1.55;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input,
textarea {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

button {
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
}

button:hover {
  background: var(--accent-dark);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

button.ghost {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 7px 10px;
}

.status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
}

.status.error {
  color: #a12b2b;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.button-row,
.recent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.recent-actions {
  justify-content: flex-end;
  min-width: 360px;
}

.recent-actions .preview-cta,
.recent-actions .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  white-space: nowrap;
}

.recent-actions .preview-cta {
  min-width: 132px;
}

.recent-actions .ghost {
  min-width: 106px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.panel-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

#score {
  color: var(--accent);
  font-size: 22px;
}

.diagnosis,
.stack {
  display: grid;
  gap: 10px;
}

.empty {
  color: var(--muted);
}

.signal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.signal:last-child {
  border-bottom: 0;
}

.brief-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.brief-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.brief-line strong {
  line-height: 1.45;
}

.quality-card,
.quality-gate {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(20, 107, 91, 0.2);
  border-radius: 8px;
  background: #edf7f3;
  padding: 14px;
}

.quality-card > div,
.quality-gate > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.quality-card span {
  color: #31564e;
  font-size: 13px;
  font-weight: 900;
}

.quality-card strong,
.quality-gate strong {
  color: var(--accent-dark);
  font-size: 18px;
}

.quality-card dl,
.quality-gate dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.quality-card dl div,
.quality-gate dl div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(20, 107, 91, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.65);
  padding: 8px;
}

.quality-card dt,
.quality-gate dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.quality-card dd,
.quality-gate dd {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
}

.quality-card ul,
.quality-gate ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #6e4e33;
  line-height: 1.55;
}

.intelligence-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(44, 72, 109, 0.18);
  border-radius: 8px;
  background: #f2f5fb;
  padding: 14px;
}

.intelligence-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.intelligence-card span,
.mini-list span {
  color: #415b84;
  font-size: 13px;
  font-weight: 950;
}

.intelligence-card strong {
  color: #243d63;
  font-size: 18px;
}

.intelligence-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.intelligence-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.intelligence-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
}

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

.intelligence-card dd {
  margin: 0;
  line-height: 1.5;
}

.mini-list {
  display: grid;
  gap: 6px;
}

.mini-list ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.mini-list.warn span {
  color: var(--warn);
}

.quality-gate {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding: 16px 28px;
}

.mini-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  padding: 0 7px;
}

.trusted {
  color: #11604f;
}

.review,
.weak,
.missing {
  color: var(--warn);
}

.mini-status.trusted {
  background: #dff3ec;
}

.mini-status.review,
.mini-status.weak,
.mini-status.missing {
  background: #fff2df;
}

.badge {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 3px 8px;
  color: #ffffff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.badge.missing {
  background: var(--warn);
}

.item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.item p,
.item ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.item ul {
  padding-left: 1.2rem;
}

.brief-prompt {
  overflow: auto;
  max-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
  font: inherit;
  line-height: 1.6;
  margin: 10px 0 0;
  padding: 12px;
  white-space: pre-wrap;
}

.source-thumb {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.thumb-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eee8dc;
}

.preview-panel {
  padding: 0;
  overflow: hidden;
}

.preview-panel .panel-head {
  padding: 18px 18px 0;
}

.lp-preview {
  background: #ffffff;
}

.lp-preview.empty {
  padding: 22px 18px;
}

.lp-artboard {
  background: #fffaf0;
  color: var(--charcoal);
  overflow: hidden;
}

.lp-artboard p,
.lp-artboard ul,
.lp-artboard ol {
  margin: 0;
}

.lp-nav {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf7;
}

.lp-nav strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-nav span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lp-nav a {
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 30px;
  padding: 56px 34px;
  background: var(--charcoal);
  color: #fffaf0;
}

.lp-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.lp-hero h2,
.lp-final h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lp-hero p,
.lp-final p {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.75;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lp-actions span {
  color: rgba(255, 250, 240, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--warm);
  color: #ffffff;
  font-weight: 900;
  padding: 0 18px;
  text-decoration: none;
}

.lp-proof-card {
  align-self: center;
  display: grid;
  gap: 12px;
  min-height: 280px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  padding: 22px;
  background: #2b2b27;
}

.lp-proof-card span,
.preview-kicker {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-proof-card strong {
  font-size: 30px;
  line-height: 1.08;
}

.lp-band,
.lp-split,
.lp-grid,
.lp-faq,
.lp-final,
.design-notes {
  padding: 42px 34px;
  border-top: 1px solid var(--line);
}

.lp-band {
  background: #f2eadb;
}

.lp-band h3,
.lp-split h3,
.lp-tile h3,
.lp-faq h3,
.design-notes h3 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.lp-band p,
.lp-split p,
.lp-tile p,
.lp-faq p,
.design-notes p,
.design-notes li {
  color: var(--muted);
  line-height: 1.7;
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 28px;
  background: #fffdf7;
}

.lp-split ol {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.lp-split li {
  counter-increment: steps;
  border-left: 3px solid var(--accent);
  background: #f6f1e8;
  padding: 14px 16px;
  font-weight: 850;
  line-height: 1.4;
}

.lp-split li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: #fffaf0;
}

.lp-tile {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fffdf7;
}

.lp-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #f2eadb;
}

.lp-final {
  display: grid;
  gap: 16px;
  background: var(--charcoal);
  color: #fffaf0;
}

.design-notes {
  background: #fffdf7;
}

.design-notes ul {
  margin-top: 14px;
  padding-left: 1.1rem;
}

/* ================================================================
   Customer Site
   デザイン調整は site-theme.css を優先してください
   ================================================================ */

.corp-site {
  background: #fffdf7;
  color: var(--charcoal);
}

.fit-warning {
  display: grid;
  gap: 4px;
  border-top: 1px solid #ead1b4;
  border-bottom: 1px solid #ead1b4;
  background: #fff2df;
  padding: 14px 28px;
}

.fit-warning.compact {
  border: 1px solid #ead1b4;
  border-radius: 8px;
  padding: 12px;
}

.fit-warning strong {
  color: var(--warn);
  font-size: 13px;
  font-weight: 950;
}

.fit-warning p {
  margin: 0;
  color: #6e4e33;
  line-height: 1.55;
}

.generated-full {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  background: #fbfcfb;
  color: #17211d;
  font-family: var(--site-font, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: var(--site-body-size, 15px);
  line-height: var(--site-body-leading, 1.85);
}

.generated-full .corp-hero,
.generated-full .corp-section,
.generated-full .corp-final {
  padding-left: max(var(--site-gap, 34px), calc((100vw - var(--site-content-max, 1180px)) / 2));
  padding-right: max(var(--site-gap, 34px), calc((100vw - var(--site-content-max, 1180px)) / 2));
}

.generated-full .corp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 0;
  border-bottom-color: rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 252, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(23, 33, 29, 0.06);
}

.generated-full .corp-nav nav {
  color: #4b5d54;
}

.generated-full .corp-nav nav a:last-child {
  border-radius: 999px;
  background: #17382f;
  color: #ffffff;
  padding: 9px 13px;
}

.generated-full .corp-hero {
  position: relative;
  min-height: calc(100vh - 69px);
  overflow: hidden;
  isolation: isolate;
  background-color: #17211d;
}

.generated-full .corp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 33, 29, 0), rgba(23, 33, 29, 0.74));
}

.generated-full .corp-hero h1 {
  max-width: 1120px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  text-wrap: balance;
}

.generated-full .corp-hero p {
  max-width: 680px;
  font-size: 17px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  max-width: 880px;
  margin-top: 8px;
}

.hero-facts span {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 240, 0.88);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  padding: 0 0 0 14px;
}

.hero-facts span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e27a45;
}

.generated-full .preview-kicker {
  color: #e27a45;
}

.generated-full .preview-cta {
  width: fit-content;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: #c85f32;
  box-shadow: 0 16px 34px rgba(200, 95, 50, 0.24);
}

.generated-full .corp-section {
  background: #fcfcf8;
  padding-top: 82px;
  padding-bottom: 82px;
}

.generated-full .corp-section h2,
.generated-full .corp-section h3,
.generated-full .corp-final h2 {
  font-weight: var(--site-heading-weight, 800);
  text-wrap: balance;
}

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

.experience-service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(23, 56, 47, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(23, 33, 29, 0.09);
}

.experience-service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-service-card > div {
  display: grid;
  align-content: start;
  gap: 10px;
  grid-template-rows: auto auto minmax(6.4em, auto) auto 1fr;
  position: relative;
  padding: 22px;
}

.experience-service-card h2,
.experience-service-card h3 {
  margin: 0;
  color: #17382f;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.experience-service-card p {
  color: #4b5d54;
  line-height: 1.68;
  margin: 0;
}

.experience-service-card > div > p:not(.service-number) {
  min-height: 6.4em;
}

.section-heading-row {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.section-heading-row h2 {
  margin: 0;
}

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

.experience-flow-list article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  border: 1px solid rgba(86, 56, 39, 0.14);
  border-top: 4px solid #c96a3a;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(86, 56, 39, 0.08);
}

.experience-flow-list span {
  color: #c96a3a;
  font-size: 13px;
  font-weight: 950;
}

.experience-flow-list h3,
.experience-flow-list strong {
  margin: 0;
  color: #563827;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.experience-flow-list p {
  margin: 0;
  color: #6b5848;
  line-height: 1.75;
}

.craft-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  background: #fff8ec;
  overflow: hidden;
}

.craft-story-copy {
  display: grid;
  gap: 14px;
  max-width: 590px;
}

.craft-story-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.03;
  max-width: 8.5em;
  overflow-wrap: anywhere;
}

.craft-story-copy h2 span {
  display: inline-block;
}

.craft-story-copy p:not(.preview-kicker) {
  color: #6b5848;
  font-size: 17px;
  line-height: 1.85;
}

.craft-story-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.craft-story-photos img {
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(86, 56, 39, 0.16);
}

.craft-story-photos img:first-child {
  grid-row: span 2;
  min-height: 460px;
}

.craft-story-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(14px, 2.2vw, 28px);
}

.craft-story-steps article {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(86, 56, 39, 0.14);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 18px 46px rgba(86, 56, 39, 0.08);
}

.craft-story-steps span {
  color: #c96a3a;
  font-size: 13px;
  font-weight: 950;
}

.craft-story-steps h3 {
  margin: 0;
  color: #563827;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.craft-story-steps p {
  margin: 0;
  color: #6b5848;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .experience-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .craft-story-section {
    grid-template-columns: 1fr;
  }

  .craft-story-copy {
    position: static;
    max-width: 760px;
  }

  .craft-story-copy h2 {
    font-size: clamp(34px, 7vw, 52px);
  }

  .craft-story-photos {
    grid-template-columns: 1fr 1fr;
  }

  .craft-story-photos img:first-child {
    grid-row: auto;
    min-height: 260px;
  }

  .craft-story-steps {
    grid-template-columns: 1fr;
  }

  .craft-story-steps article {
    min-height: 0;
  }
}

.service-number {
  color: #c85f32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 300;
  line-height: 0.9;
}

.experience-service-card .text-link {
  align-self: end;
  margin-top: 10px;
}

.card-number,
.branch-number,
.circle-number {
  color: #c85f32;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.card-number,
.branch-number {
  font-size: 13px;
  font-weight: 950;
}

.generated-full .old-issues-section {
  background: #fff5e8;
}

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

.issue-list article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(225, 102, 63, 0.22);
  border-radius: 8px;
  background: #fffdf7;
  padding: 16px;
}

.issue-list span {
  color: #e1663f;
  font-size: 12px;
  font-weight: 950;
}

.issue-list p,
.proof-assets-section p {
  color: #4b5d54;
  line-height: 1.7;
  margin: 0;
}

.proof-assets-section {
  display: grid;
  gap: 24px;
}

.prebooking-section {
  background: #f7fbf7;
}

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

.prebooking-grid article {
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.prebooking-grid h3 {
  margin: 0 0 8px;
}

.prebooking-grid p {
  color: #4b5d54;
  line-height: 1.7;
  margin: 0;
}

.notices-section {
  background: #fffdf7;
}

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

.notice-list article {
  border-top: 1px solid rgba(23, 33, 29, 0.12);
  padding: 16px 0 4px;
}

.notice-list time {
  color: #cf6f27;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

.notice-list h3 {
  margin: 0 0 6px;
}

.notice-list p {
  color: #4b5d54;
  line-height: 1.7;
  margin: 0;
}

.service-detail-section {
  background: #fffdf7;
}

.course-section {
  background: #edf4ef;
}

.course-comparison {
  display: grid;
  gap: 20px;
}

.course-comparison article {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(23, 33, 29, 0.09);
}

.course-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 0;
  background: #17382f;
  color: #fffaf0;
  padding: 18px 20px;
}

.course-group-head h3 {
  color: #fffaf0;
  margin: 0;
}

.course-group-head .text-link {
  color: #f3bd7a;
  margin-top: 0;
}

.course-table {
  display: grid;
  overflow-x: auto;
}

.course-row {
  display: grid;
  grid-template-columns: 1.1fr 1.45fr 1.1fr 1.5fr;
  gap: 14px;
  align-items: start;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.course-row:last-child {
  border-bottom: 0;
}

.course-row-head {
  background: #e7efe9;
  color: #315c4a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.course-row strong {
  color: #17211d;
  font-size: 15px;
}

.course-row span {
  color: #4b5d54;
  line-height: 1.55;
}

.course-row .course-price {
  border-left: 4px solid #c96a3a;
  background: #fff1da;
  color: #17211d;
  font-weight: 900;
  padding: 10px 12px;
}

.course-comparison.compact .course-row {
  grid-template-columns: 1fr 1.35fr 1fr 1.35fr;
}

.branch-section {
  background: #fcfcf8;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.branch-grid a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid rgba(23, 56, 47, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(23, 33, 29, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.branch-grid a:hover {
  border-color: rgba(200, 95, 50, 0.34);
  box-shadow: 0 22px 50px rgba(23, 33, 29, 0.1);
  transform: translateY(-2px);
}

.branch-grid strong {
  color: #17211d;
  font-size: 16px;
}

.branch-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 33, 29, 0.14);
  border-radius: 999px;
  background: #fff8ec;
}

.branch-grid span {
  color: #4b5d54;
  font-size: 13px;
  line-height: 1.45;
}

.source-images-section {
  background: #fffdf7;
}

.source-images-section > p:not(.preview-kicker) {
  color: #4b5d54;
  line-height: 1.7;
  max-width: 760px;
}

.source-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.source-image-grid figure {
  margin: 0;
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.source-image-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.source-image-grid figcaption {
  color: #4b5d54;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 8px;
}

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

.material-image-grid figure {
  padding: 10px;
}

.material-image-grid img {
  max-height: 150px;
  object-fit: contain;
  background: #fffaf0;
}

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

.gallery-page-grid figure {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(68, 46, 31, 0.08);
}

.gallery-page-grid img {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
}

.gallery-page-grid figcaption {
  color: #4b5d54;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px 14px;
}

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

.source-info-list article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-left: 4px solid #cf6f27;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(23, 33, 29, 0.06);
}

.source-info-list p {
  color: #28342f;
  line-height: 1.75;
  margin: 0;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  border-radius: 8px;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #17211d;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary strong {
  color: #cf6f27;
  margin-right: 8px;
}

.faq-item > p {
  padding: 0 20px 18px;
  margin: 0;
  color: #4b5d54;
  line-height: 1.75;
  border-top: 1px solid rgba(23, 33, 29, 0.06);
  padding-top: 14px;
}

.faq-item > p strong {
  color: #3a7d5c;
  margin-right: 8px;
}

.voices-list {
  display: grid;
  gap: 16px;
}

.voice-card {
  background: #ffffff;
  border: 1px solid rgba(23, 33, 29, 0.10);
  border-radius: 8px;
  padding: 20px 24px;
}

.voice-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.voice-card blockquote p {
  color: #28342f;
  line-height: 1.75;
  margin: 0;
  font-style: normal;
}

.voice-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 32px;
  color: #cf6f27;
  line-height: 1;
  margin-bottom: 4px;
}

.voice-attribution {
  color: #8a9990;
  font-size: 13px;
  margin: 10px 0 0;
}

.access-map-section {
  background: #edf4ef;
}

.access-overview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  background: #fffaf0;
}

.access-overview-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.access-overview-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.02;
}

.access-overview-copy > p:not(.preview-kicker) {
  max-width: 620px;
  margin: 0;
  color: #4b5d54;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.85;
}

.access-overview-copy dl {
  display: grid;
  gap: 0;
  max-width: 620px;
  margin: 10px 0 0;
  border-top: 1px solid rgba(23, 33, 29, 0.14);
}

.access-overview-copy dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.14);
}

.access-overview-copy dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7d8d83;
  font-size: 13px;
  font-weight: 950;
}

.contact-icon-list dt span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #17382f;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 900;
}

.access-overview-copy dd {
  margin: 0;
  color: #17382f;
  font-weight: 850;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.access-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 6px;
}

.access-map-section > p:not(.preview-kicker) {
  color: #4b5d54;
  line-height: 1.7;
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 33, 29, 0.08);
  height: clamp(320px, 34vw, 420px);
  line-height: 0;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  vertical-align: top;
}

.reservation-action-panel {
  background: #edf4ef;
}

.reservation-info-section,
.reservation-course-section,
.firing-fee-section,
.price-example-section {
  background: #fcfcf8;
}

.price-example-section > p:not(.preview-kicker) {
  color: #4b5d54;
  line-height: 1.7;
  max-width: 760px;
}

.price-example-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(23, 56, 47, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(23, 33, 29, 0.08);
}

.price-example-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr .8fr .8fr .8fr;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  padding: 14px 18px;
}

.price-example-row:last-child {
  border-bottom: 0;
}

.price-example-head {
  background: #17382f;
  color: #fffaf0;
  font-size: 12px;
  font-weight: 950;
}

.price-example-row strong {
  color: #17211d;
}

.price-example-row span {
  color: #4b5d54;
  line-height: 1.55;
}

.price-example-head span {
  color: #fffaf0;
}

.reservation-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reservation-action-grid article,
.reservation-fact-list article,
.fee-note-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.reservation-action-grid .card-number,
.reservation-fact-list .card-number,
.fee-note-grid .card-number,
.source-info-list .card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff1da;
  color: #c85f32;
}

.reservation-fact-list,
.fee-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reservation-board {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1120px;
}

.reservation-board-main {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  border-radius: 8px;
  background: #563827;
  color: #fff8ec;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(86, 56, 39, 0.16);
}

.reservation-board-main span {
  color: #f1bb75;
  font-size: 13px;
  font-weight: 950;
}

.reservation-board-main strong {
  color: inherit;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.reservation-board-main p {
  margin: 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: 17px;
}

.reservation-board-main .preview-cta {
  margin-top: 8px;
}

.reservation-board-main .text-link {
  color: #f1bb75;
  margin-top: 0;
}

.reservation-fact-list article {
  min-height: 144px;
  border-left: 0;
  min-width: 0;
}

.reservation-board .reservation-fact-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.reservation-board .reservation-fact-list article {
  min-height: 0;
  grid-template-columns: 150px 1fr;
  align-items: center;
  padding: 22px 30px;
}

.reservation-action-grid strong,
.reservation-fact-list strong,
.fee-note-grid strong {
  color: #17211d;
  font-size: 16px;
}

.reservation-action-grid p,
.reservation-fact-list p,
.fee-note-grid p {
  color: #4b5d54;
  line-height: 1.7;
  margin: 0;
}

.reservation-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.preview-cta.secondary {
  background: #17211d;
}

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

.detail-list article {
  border-left: 4px solid #cf6f27;
  background: #ffffff;
  padding: 14px 16px;
}

.detail-list p {
  color: #28342f;
  line-height: 1.75;
  margin: 0;
}

.generated-full .corp-card-grid {
  gap: 16px;
}

.generated-full .corp-card-grid article {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-color: rgba(23, 56, 47, 0.1);
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(23, 33, 29, 0.08);
}

.generated-full .corp-card-grid article::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: #c85f32;
  margin-bottom: 14px;
}

.generated-full .corp-card-grid h3,
.generated-full .corp-card-grid h4 {
  color: #17211d;
}

.service-facts {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
}

.service-facts li {
  list-style: none;
  border-left: 3px solid #c85f32;
  background: #fff2df;
  color: #28342f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  min-height: 46px;
  padding: 10px 12px;
}

.text-link {
  align-items: center;
  color: #b9532d;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 0.5em;
  line-height: 1.25;
  margin-top: 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 6px 0;
  text-decoration: none;
  white-space: nowrap;
}

.text-link::after {
  content: "→";
  font-size: 1.08em;
  line-height: 1;
}

.text-link:hover {
  text-decoration: underline;
}

.experience-service-card .text-link {
  align-self: end;
  border: 1px solid rgba(185, 83, 45, 0.22);
  border-radius: 999px;
  background: #fff8ec;
  justify-self: start;
  margin-top: 22px;
  padding: 12px 16px;
  width: fit-content;
}

.generated-full .corp-split {
  background: #eef5f0;
}

.experience-mood-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
  background: #17382f;
  color: #fffaf0;
}

.experience-mood-section h2 {
  color: #fffaf0;
  max-width: 560px;
}

.experience-mood-section p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.8;
  max-width: 560px;
}

.experience-mood-section .text-link {
  color: #f3bd7a;
}

.mood-collage {
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.mood-collage img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.mood-collage img:first-child {
  grid-row: 1 / 3;
}

.generated-full .corp-split li {
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
  padding: 10px 0;
  list-style-position: outside;
}

.generated-full .corp-gallery img,
.generated-full .corp-gallery-wide img {
  border: 1px solid rgba(23, 33, 29, 0.1);
  box-shadow: 0 18px 48px rgba(23, 33, 29, 0.1);
}

.generated-full .corp-company dl {
  max-width: 860px;
}

.generated-full .proposal-section {
  background: #ffffff;
}

.generated-full .launch-flow-section {
  background: #eef5f0;
}

.generated-full .corp-final {
  background: #17211d;
  padding-top: 86px;
  padding-bottom: 92px;
}

.generated-link {
  margin-top: 18px;
}

.generated-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.generated-links .generated-link {
  margin-top: 0;
}

.admin-shell {
  display: grid;
  gap: 20px;
}

.admin-hero-panel,
.admin-edit-panel {
  max-width: 1080px;
}

.admin-hero-panel > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

.notice-edit-list,
.notice-admin-list {
  display: grid;
  gap: 14px;
}

.notice-admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: start;
}

.notice-admin-item {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.notice-admin-item.is-active {
  border-color: #cf6f27;
  background: #fff4e5;
}

.notice-admin-item span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.notice-admin-item span b {
  border-radius: 999px;
  background: #edf4ef;
  color: #17382f;
  padding: 4px 8px;
  font-size: 11px;
}

.notice-admin-item.is-active span b {
  background: #cf6f27;
  color: #fffaf0;
}

.notice-admin-item strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.notice-admin-item small {
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.notice-edit-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 16px;
}

.notice-edit-card strong {
  color: var(--ink);
}

.notice-edit-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

/* Internal generator workspace. This screen is for operators, not customers. */
.generator-simple {
  --workspace-bg: #f9f8f6;
  --workspace-card: #ffffff;
  --workspace-border: #ebe9e4;
  --workspace-text: #1c1a17;
  --workspace-muted: #706e68;
  --workspace-accent: #1c3d27;
  --workspace-gold: #91795e;
  --workspace-hover: #f4f2ee;
  max-width: 920px;
  padding-top: 34px;
}

body:has(.generator-simple) {
  background: #f9f8f6;
  color: #1c1a17;
}

.generator-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #ebe9e4;
  background: rgba(249, 248, 246, 0.86);
  backdrop-filter: blur(16px);
}

.generator-topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(920px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
}

.generator-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #1c3d27;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.generator-topbar strong {
  display: block;
  color: #1c1a17;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-script {
  margin: 0 0 2px;
  color: #91795e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.operator-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #706e68;
  font-size: 12px;
}

.operator-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16835a;
}

.generator-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.generator-intro h1 {
  max-width: 640px;
  margin: 0;
  color: #1c1a17;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

.generator-simple .input-panel h1 {
  max-width: 720px;
}

.simple-lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

.generator-simple .sales-panel,
.generator-simple .recent-panel {
  max-width: 920px;
}

.generator-work-card,
.result-panel,
.archive-panel {
  border-color: #ebe9e4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(28, 26, 23, 0.03);
  padding: 26px;
}

.workspace-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.workspace-section-head > span,
.archive-toolbar h2 {
  color: #706e68;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-section-head > span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: #1c3d27;
  vertical-align: 1px;
}

.workspace-section-head small {
  color: #706e68;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
}

.generator-simple label {
  color: #1c1a17;
  font-size: 12px;
  font-weight: 900;
}

.generator-simple label span {
  color: #91795e;
  font-size: 10px;
  font-weight: 800;
}

.generator-simple input,
.generator-simple textarea,
.archive-controls select {
  border-color: #ebe9e4;
  border-radius: 8px;
  background: #f9f8f6;
  color: #1c1a17;
  font-size: 14px;
  font-weight: 650;
}

.generator-simple textarea {
  min-height: 84px;
}

.generator-simple input:focus,
.generator-simple textarea:focus,
.archive-controls select:focus {
  outline: 1px solid #1c3d27;
  background: #ffffff;
}

.generator-url-row {
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: stretch;
}

.generator-url-row button,
.generator-simple .preview-cta {
  border-radius: 8px;
  background: #1c3d27;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.generator-url-row button:hover,
.generator-simple .preview-cta:hover {
  background: #152e1d;
}

.field-help {
  margin: -2px 0 6px;
  color: #706e68;
  font-size: 11px;
  line-height: 1.6;
}

.generator-simple .status {
  min-height: 20px;
  margin-top: 14px;
  color: #706e68;
  font-size: 12px;
}

.result-panel .sales-pack.empty {
  display: grid;
  min-height: 126px;
  place-items: center;
  border: 1px dashed #ebe9e4;
  border-radius: 12px;
  background: #f9f8f6;
  color: #706e68;
  font-size: 12px;
  text-align: center;
}

.result-panel .sales-pack:not(.empty) {
  grid-template-columns: 1fr;
}

.generator-simple .sales-url {
  position: relative;
  overflow: hidden;
  border: 2px solid #1c3d27;
  border-radius: 12px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(28, 61, 39, 0.08);
}

.generator-simple .sales-url::after {
  content: "Ready";
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(28, 61, 39, 0.05);
  color: rgba(28, 61, 39, 0.24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(12deg);
  text-transform: uppercase;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ebe9e4;
}

.archive-toolbar .eyebrow {
  margin: 0 0 4px;
  color: #91795e;
}

.archive-toolbar h2 {
  margin: 0;
  color: #1c1a17;
}

.archive-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.archive-controls input {
  width: 220px;
  padding: 8px 10px;
  font-size: 12px;
}

.archive-controls select,
.archive-controls .icon-ghost {
  min-height: 35px;
  padding: 8px 10px;
  font-size: 12px;
}

.generator-simple button.ghost,
.generator-simple .ghost {
  border-color: #ebe9e4;
  border-radius: 8px;
  background: #ffffff;
  color: #1c1a17;
  font-size: 12px;
  font-weight: 850;
}

.generator-simple button.ghost:hover,
.generator-simple .ghost:hover {
  background: #f4f2ee;
}

.internal-debug {
  display: none;
  gap: 16px;
  opacity: 0.72;
}

.internal-debug::before {
  content: "内部確認";
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.internal-debug .panel {
  box-shadow: none;
}

.mail-draft {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  padding: 16px;
}

.mail-draft h4 {
  margin: 0;
  font-size: 17px;
}

.mail-draft pre {
  overflow: auto;
  white-space: pre-wrap;
  margin: 0;
  color: var(--muted);
  font: inherit;
  line-height: 1.65;
}

.sales-panel,
.editor-panel,
.recent-panel {
  margin-bottom: 16px;
}

.sales-pack {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
}

.sales-url,
.sales-email,
.recent-site {
  border: 1px solid #ebe9e4;
  border-radius: 12px;
  background: #ffffff;
  padding: 18px;
}

.sales-url,
.sales-email {
  display: grid;
  gap: 8px;
}

.sales-url span,
.sales-email span,
.recent-site span {
  color: #91795e;
  font-size: 12px;
  font-weight: 950;
}

.sales-url a {
  overflow-wrap: anywhere;
  color: var(--accent-dark);
  font-weight: 900;
  line-height: 1.5;
}

.sales-url small {
  color: var(--muted);
  line-height: 1.5;
}

.handoff-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.handoff-checks span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

.handoff-checks .ready {
  background: #eef8ee;
  color: #2d6a3f;
}

.handoff-checks .pending {
  background: #fff7e6;
  color: #8a5a17;
}

.readiness-audit {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
}

.readiness-audit.ready {
  background: #f3faf4;
}

.readiness-audit.warning {
  background: #fff8ea;
}

.readiness-audit.blocked {
  background: #fff0ee;
}

.readiness-audit > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.readiness-audit strong {
  color: var(--ink);
  font-size: 14px;
}

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

.readiness-audit li {
  color: var(--muted);
  line-height: 1.45;
}

.readiness-audit li span {
  display: inline-block;
  margin-right: 6px;
  min-width: 34px;
}

.readiness-audit li.ok span {
  color: #2d6a3f;
}

.readiness-audit li.warn span {
  color: #8a5a17;
}

.readiness-audit li.ng span {
  color: #a12b2b;
}

.readiness-audit small {
  color: var(--muted);
}

.sales-email pre {
  overflow: auto;
  max-height: 260px;
  white-space: pre-wrap;
  margin: 0;
  color: var(--muted);
  font: inherit;
  line-height: 1.65;
}

.recent-sites {
  display: grid;
  gap: 12px;
}

.recent-site {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.recent-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.recent-meta-row span {
  border: 1px solid #ebe9e4;
  border-radius: 999px;
  background: #f9f8f6;
  color: #706e68;
  padding: 3px 8px;
  font-size: 10px;
  line-height: 1.2;
}

.recent-meta-row span.is-ready {
  border-color: #c9e4d3;
  background: #edf8f0;
  color: #1f6b3b;
}

.recent-meta-row span.is-review {
  border-color: #efd6a8;
  background: #fff7e4;
  color: #8a5a12;
}

.recent-meta-row span.is-blocked {
  border-color: #efc8c1;
  background: #fff0ee;
  color: #9c2c1d;
}

.recent-site strong {
  display: block;
  margin-bottom: 6px;
  color: #1c1a17;
  font-size: 15px;
}

.recent-site p {
  overflow-wrap: anywhere;
  margin: 0 0 8px;
  color: #706e68;
  font-size: 12px;
  line-height: 1.5;
}

.recent-quality {
  display: grid;
  grid-template-columns: auto 74px auto;
  gap: 8px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #ebe9e4;
  border-radius: 8px;
  background: #f9f8f6;
  padding: 7px 9px;
}

.recent-quality small {
  color: #706e68;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recent-quality i {
  display: block;
  overflow: hidden;
  height: 4px;
  border-radius: 999px;
  background: #ebe9e4;
}

.recent-quality b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #1c3d27;
}

.recent-quality em {
  color: #1c1a17;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.recent-actions .primary-check {
  min-width: 102px;
  border-color: #d9d4ca;
  background: #f9f8f6;
}

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

.edit-form {
  display: grid;
  gap: 14px;
}

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

.edit-form label,
.edit-services fieldset {
  display: grid;
  gap: 7px;
}

.edit-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.edit-services fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  padding: 12px;
}

.edit-services legend {
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
  padding: 0 4px;
}

.image-editor {
  display: grid;
  gap: 10px;
}

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

.image-choice-grid article {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  padding: 10px;
}

.image-choice-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #e9e1d4;
}

.image-choice-grid label {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.image-choice-grid input {
  min-width: auto;
  padding: 0;
}

.image-choice-grid span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 11px;
}

.generated-page-head h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.generated-page-head p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.generated-full .generated-page-head {
  overflow: hidden;
  border-top: 0;
  background: #17382f;
  color: #fffaf0;
  padding-top: 92px;
  padding-bottom: 66px;
}

.generated-full .generated-page-head .preview-kicker {
  color: #f3bd7a;
}

.generated-full .generated-page-head h1 {
  color: #fffaf0;
  max-width: 920px;
}

.generated-full .generated-page-head p {
  color: rgba(255, 250, 240, 0.78);
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: 560px;
}

.service-detail-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.service-detail-visual {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.service-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.service-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-photo-section .corp-gallery-wide {
  max-width: 1180px;
}

.service-photo-section .corp-gallery-wide img {
  aspect-ratio: 5 / 3.4;
}

.corp-final.generated-page-head p {
  color: rgba(255, 250, 240, 0.8);
}

.corp-nav {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.corp-brand {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.corp-nav strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}

.corp-nav nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.corp-nav nav::-webkit-scrollbar {
  display: none;
}

.corp-nav nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 10px;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
}

.corp-hero {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 520px;
  padding: 46px 34px;
  background: var(--charcoal);
  background-position: center;
  background-size: cover;
  color: #fffaf0;
}

.corp-hero h1,
.corp-hero h2,
.corp-final h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.corp-hero p,
.corp-final p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.78;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.offer-points span {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 240, 0.9);
  font-size: 13px;
  font-weight: 900;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(226, 122, 69, 0.72);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.corp-section,
.corp-final {
  padding: 46px 34px;
  border-top: 1px solid var(--line);
}

.corp-section h3 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
}

.corp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.corp-card-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fffaf0;
}

.corp-card-grid h4 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.corp-card-grid p,
.corp-split li,
.corp-company dd {
  color: var(--muted);
  line-height: 1.68;
}

.corp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 24px;
  background: #f2eadb;
}

.corp-split ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1rem;
}

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

.corp-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #e9e1d4;
}

.corp-gallery-wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.corp-gallery-wide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #e9e1d4;
}

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

.proposal-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  padding: 20px;
}

.proposal-grid span {
  color: var(--warm);
  font-size: 12px;
  font-weight: 950;
}

.proposal-grid h3,
.proposal-grid h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.proposal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.launch-flow article {
  display: grid;
  gap: 10px;
  border-top: 2px solid rgba(23, 33, 29, 0.22);
  padding-top: 16px;
}

.launch-flow span {
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
}

.launch-flow h3,
.launch-flow h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.launch-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.corp-company dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.corp-company dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

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

.corp-company dd {
  margin: 0;
}

.corp-final {
  display: grid;
  gap: 16px;
  background: var(--charcoal);
  color: #fffaf0;
}

@media (max-width: 720px) {
  .workspace,
  .output-grid,
  .generator-hero,
  .sales-pack,
  .recent-site,
  .edit-grid,
  .edit-services,
  .image-choice-grid,
  .service-hero,
  .scene-grid,
  .process-rail,
  .role-grid,
  .offer-section,
  .corp-nav,
  .corp-card-grid,
  .proposal-grid,
  .launch-flow,
  .prebooking-grid,
  .experience-flow-list,
  .craft-story-section,
  .craft-story-photos,
  .craft-story-steps,
  .reservation-board,
  .service-detail-hero,
  .experience-service-grid,
  .experience-mood-section,
  .access-overview-section,
  .branch-grid,
  .source-image-grid,
  .gallery-page-grid,
  .reservation-action-grid,
  .reservation-fact-list,
  .fee-note-grid,
  .quality-card dl,
  .quality-gate dl,
  .corp-split,
  .corp-gallery,
  .corp-gallery-wide,
  .lp-hero,
  .lp-split,
  .lp-grid,
  .lp-faq {
    grid-template-columns: 1fr;
  }

  .generator-simple {
    width: min(100% - 24px, 920px);
    padding-top: 24px;
  }

  .generator-topbar-inner {
    width: min(100% - 24px, 920px);
    grid-template-columns: auto 1fr;
  }

  .operator-status {
    display: none;
  }

  .generator-work-card,
  .result-panel,
  .archive-panel {
    padding: 20px;
  }

  .workspace-section-head,
  .archive-toolbar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .workspace-section-head {
    flex-direction: column;
  }

  .generator-url-row {
    grid-template-columns: 1fr;
  }

  .archive-controls {
    justify-content: stretch;
  }

  .archive-controls input,
  .archive-controls select,
  .archive-controls .icon-ghost {
    width: 100%;
  }

  .recent-actions {
    justify-content: stretch;
  }

  .recent-actions a,
  .recent-actions button {
    width: 100%;
  }

  .price-example-row {
    grid-template-columns: 1fr;
  }

  .price-example-head {
    display: none;
  }

  .service-detail-visual,
  .service-detail-visual img {
    min-height: 260px;
  }

  .craft-story-copy {
    position: static;
  }

  .craft-story-photos img,
  .craft-story-photos img:first-child {
    grid-row: auto;
    min-height: 240px;
  }

  .mood-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mood-collage img:first-child {
    grid-row: auto;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .site-header nav {
    gap: 12px;
  }

  .service-hero {
    min-height: 0;
    padding: 34px 0 58px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .service-section {
    padding: 56px 0;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

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

  .corp-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .corp-nav nav {
    justify-content: flex-end;
    overflow-x: visible;
    width: auto;
  }

  .corp-nav strong {
    font-size: 15px;
  }

  .corp-nav nav a:not(:last-child) {
    display: none;
  }

  .corp-nav nav a:last-child {
    padding: 9px 13px;
    white-space: nowrap;
  }

  .access-overview-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 18px;
  }

  .map-frame iframe {
    min-height: 300px;
  }

  .corp-hero,
  .corp-section,
  .corp-final {
    padding: 34px 20px;
  }

  .generated-full .corp-hero {
    align-content: center;
    min-height: calc(100svh - 65px);
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 10px;
  }

  .generated-full .corp-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.03;
  }

  .generated-full .corp-hero p {
    font-size: 15px;
    line-height: 1.65;
  }

  .offer-points,
  .hero-facts {
    gap: 8px;
  }

  .hero-facts span,
  .offer-points span {
    font-size: 12px;
    padding: 0 0 0 12px;
  }

  .offer-points span {
    padding: 0;
  }

  .generated-full .generated-page-head {
    padding-top: 58px;
    padding-bottom: 46px;
  }

  .corp-company dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 18px;
  }

  .recent-actions {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
  }

  .recent-actions .preview-cta,
  .recent-actions .ghost {
    flex: 1 1 150px;
  }

  .reservation-board .reservation-fact-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }

  .reservation-board,
  .reservation-board-main,
  .reservation-fact-list,
  .reservation-fact-list article,
  .source-info-section article,
  .access-map-section article {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .reservation-board-main strong,
  .reservation-board-main .text-link,
  .source-info-section article p,
  .access-map-section article p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .course-row,
  .course-comparison.compact .course-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .course-row-head {
    display: none;
  }

  .course-group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-nav {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 16px 20px;
  }

  .lp-hero,
  .lp-band,
  .lp-split,
  .lp-grid,
  .lp-faq,
  .lp-final,
  .design-notes {
    padding: 32px 20px;
  }
}
