:root {
  color-scheme: light;
  --ink: #17252b;
  --muted: #5f6f72;
  --line: #d9e1df;
  --paper: #fffdf8;
  --band: #f4f7f3;
  --deep: #1c3940;
  --teal: #2d7373;
  --green: #6f9b72;
  --coral: #d95a4d;
  --amber: #e9b15f;
  --blue: #385f87;
  --shadow: 0 18px 42px rgba(23, 37, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: var(--paper);
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(217, 225, 223, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: conic-gradient(
    from 25deg,
    var(--coral),
    var(--amber),
    var(--green),
    var(--teal),
    var(--coral)
  );
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--deep);
}

.nav-cta {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--deep);
  color: white !important;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(15, 33, 38, 0.84) 0%,
    rgba(15, 33, 38, 0.58) 48%,
    rgba(15, 33, 38, 0.2) 100%
  );
}

.hero-inner {
  align-self: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 86px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffe4b8;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(217, 90, 77, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.button.light {
  background: var(--paper);
  color: var(--deep);
  border-color: var(--line);
  box-shadow: none;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.inline-link::after {
  margin-left: 6px;
  content: ">";
}

.inline-link + .inline-link {
  margin-left: 16px;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 64px);
}

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

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

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

.page-hero {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 64px);
  background: linear-gradient(135deg, #19323c 0%, #2d7373 62%, #e9b15f 100%);
  color: white;
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.page-hero h1 {
  color: white;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: 34px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.deep .section-head p,
.deep .muted {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 37, 43, 0.03);
}

.deep .card {
  color: var(--ink);
}

.card strong {
  color: var(--deep);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e7f0ec;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.price {
  display: block;
  margin: 12px 0 4px;
  color: var(--deep);
  font-size: 28px;
  font-weight: 900;
}

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

.list li {
  position: relative;
  padding-left: 24px;
}

.list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

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

.section-actions {
  margin-top: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.phase {
  color: var(--coral);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.panel {
  padding: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
}

.audio-panel {
  padding: 28px;
  border-radius: 8px;
  background: #f7fbf8;
  border: 1px solid var(--line);
}

.audio-panel audio {
  width: 100%;
  margin-top: 12px;
}

.quote-box {
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: #eef6f2;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.simple-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.simple-table th,
.simple-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.simple-table tr:last-child th,
.simple-table tr:last-child td {
  border-bottom: 0;
}

.simple-table th {
  background: #f4f7f3;
  color: var(--deep);
}

.legal-body {
  display: grid;
  gap: 22px;
}

.legal-body h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 30px);
}

.contact-box {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.footer {
  padding: 28px clamp(18px, 4vw, 64px);
  background: #13272d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
  font-size: 14px;
}

.footer-grid {
  align-items: start;
}

.footer-grid div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.note {
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: #fff8e8;
  color: #604925;
}

.flyer {
  background: #f3f0e8;
}

.sheet {
  width: min(900px, calc(100% - 32px));
  margin: 32px auto;
  padding: 42px;
  background: white;
  box-shadow: var(--shadow);
}

.sheet h1 {
  color: var(--deep);
  font-size: clamp(34px, 5vw, 58px);
}

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

.sheet-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-link-strip {
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid #dce4e2;
  background: #f7faf9;
}

.preview-link-strip .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.preview-link-strip div div {
  display: grid;
  gap: 2px;
}

.preview-link-strip strong {
  display: block;
  color: #17343a;
}

.preview-link-strip span {
  color: #667578;
  font-size: 14px;
}

.preview-link-strip a {
  display: inline-flex;
  min-width: max-content;
  padding: 10px 14px;
  border-radius: 8px;
  background: #1f6f73;
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.preview-site {
  background: #ffffff;
  color: #1d2b31;
  line-height: 1.75;
}

.preview-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.preview-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid #e2e8e7;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #14343a;
  font-weight: 900;
  text-decoration: none;
}

.preview-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #1f6f73;
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.18);
}

.preview-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #536466;
  font-size: 14px;
  white-space: nowrap;
}

.preview-nav a {
  text-decoration: none;
}

.preview-nav-button {
  padding: 9px 14px;
  border-radius: 8px;
  background: #ef7b28;
  color: white !important;
  font-weight: 900;
}

.preview-hero {
  padding: clamp(34px, 6vw, 70px) 0;
  background: #ffffff;
}

.preview-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.55fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.preview-kicker {
  margin-bottom: 10px;
  color: #1f6f73;
  font-size: 13px;
  font-weight: 900;
}

.preview-hero-copy h1,
.preview-section-head h2,
.preview-trust-grid h2,
.preview-final-cta h2 {
  max-width: 700px;
  margin-bottom: 14px;
  color: #14282e;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.16;
}

.preview-section-head h2,
.preview-trust-grid h2,
.preview-final-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.preview-hero-copy p,
.preview-section-head p,
.preview-trust-grid p,
.preview-final-cta p {
  max-width: 680px;
  color: #536466;
  font-size: 16px;
}

.preview-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.preview-trust-row span {
  padding: 8px 11px;
  border: 1px solid #dce4e2;
  border-radius: 999px;
  background: #ffffff;
  color: #415255;
  font-size: 13px;
  font-weight: 800;
}

.preview-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(29, 43, 49, 0.08);
}

.preview-form-head p {
  margin-bottom: 4px;
  color: #1f6f73;
  font-size: 13px;
  font-weight: 900;
}

.preview-form-head h2 {
  margin-bottom: 0;
  color: #14282e;
  font-size: 20px;
}

.preview-form label {
  display: grid;
  gap: 6px;
  color: #536466;
  font-size: 13px;
  font-weight: 900;
}

.preview-form input,
.preview-form select,
.preview-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #ccd7d5;
  border-radius: 8px;
  background: #fff;
  color: #1d2b31;
  font: inherit;
}

.preview-form textarea {
  min-height: 104px;
  resize: vertical;
}

.preview-form button,
.preview-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: #ef7b28;
  color: white;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.preview-form-note {
  margin-bottom: 0;
  color: #788587;
  font-size: 13px;
}

.preview-section {
  padding: clamp(42px, 6vw, 68px) 0;
}

.preview-band {
  background: #f7faf9;
}

.preview-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  margin-bottom: 24px;
}

.preview-section-head.simple {
  display: block;
  max-width: 720px;
}

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

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

.preview-check-grid div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: white;
}

.preview-check-grid strong {
  color: #14282e;
}

.preview-check-grid span {
  color: #536466;
  font-size: 14px;
}

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

.preview-industry-list.simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-industry-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.preview-industry-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e7f2f0;
  color: #1f6f73;
  font-weight: 900;
}

.preview-industry-card h3 {
  margin-bottom: 4px;
  color: #14282e;
}

.preview-industry-card p {
  margin-bottom: 0;
  color: #536466;
}

.preview-price-table {
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.preview-price-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid #e6ecea;
}

.preview-price-table.simple div {
  grid-template-columns: minmax(0, 1fr) 180px;
}

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

.preview-price-table span {
  color: #536466;
  font-weight: 800;
}

.preview-price-table strong {
  color: #14282e;
  text-align: right;
}

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

.preview-article-grid article {
  padding: 20px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
}

.preview-article-grid article p {
  margin-bottom: 8px;
  color: #1f6f73;
  font-size: 13px;
  font-weight: 900;
}

.preview-article-grid article h3 {
  min-height: 78px;
  color: #14282e;
}

.preview-article-grid article a {
  color: #1f6f73;
  font-weight: 900;
  text-decoration: none;
}

.preview-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.preview-trust-grid.simple {
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.7fr);
}

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

.preview-trust-list li {
  padding: 10px 12px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
  color: #415255;
}

.preview-final-cta {
  padding: clamp(42px, 6vw, 68px) 0;
  background: #14343a;
  color: #fff;
  text-align: center;
}

.preview-final-cta h2 {
  max-width: none;
  color: #fff;
}

.preview-final-cta p {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.preview-footer {
  padding: 28px 0;
  background: #0f272c;
  color: rgba(255, 255, 255, 0.8);
}

.preview-footer .preview-container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.preview-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.preview-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.company-preview {
  background: #ffffff;
}

.company-header {
  box-shadow: 0 1px 0 rgba(20, 40, 46, 0.04);
}

.company-hero {
  padding: clamp(42px, 7vw, 86px) 0;
  border-bottom: 1px solid #e6ecea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.company-hero-grid,
.company-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.company-hero-copy h1,
.company-two-column h2,
.company-contact-grid h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #14282e;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.14;
}

.company-two-column h2,
.company-contact-grid h2 {
  font-size: clamp(25px, 3.2vw, 38px);
}

.company-hero-copy p,
.company-two-column p,
.company-contact-grid p {
  max-width: 680px;
  color: #536466;
  font-size: 16px;
}

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

.company-primary,
.company-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.company-primary {
  background: #ef7b28;
  color: #fff;
}

.company-secondary {
  border: 1px solid #cbd8d6;
  background: #fff;
  color: #17343a;
}

.company-status-card {
  padding: 24px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(29, 43, 49, 0.08);
}

.company-visual-card {
  padding: 14px 14px 22px;
}

.company-hero-image,
.service-card-image,
.page-hero-image {
  width: 100%;
  border: 1px solid #e1e9e7;
  border-radius: 8px;
  background: #f7fbfa;
  object-fit: cover;
}

.company-hero-image {
  aspect-ratio: 1.35;
  margin-bottom: 18px;
}

.service-card-image {
  aspect-ratio: 1.38;
  margin-bottom: 8px;
}

.visual-hero-panel {
  padding: 14px 14px 24px;
}

.page-hero-image {
  aspect-ratio: 1.5;
  margin-bottom: 18px;
}

.company-status-card dl,
.company-info-table {
  display: grid;
  gap: 0;
  margin: 0;
}

.company-status-card dl div,
.company-info-table div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f1;
}

.company-status-card dl div:last-child,
.company-info-table div:last-child {
  border-bottom: 0;
}

.company-status-card dt,
.company-info-table span {
  color: #6a7779;
  font-weight: 800;
}

.company-status-card dd,
.company-info-table strong {
  margin: 0;
  color: #14282e;
  font-weight: 900;
}

.company-proof {
  padding: 18px 0;
  border-bottom: 1px solid #e6ecea;
  background: #fff;
}

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

.company-proof-grid div {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #f9fbfa;
}

.company-proof-grid strong {
  color: #14282e;
}

.company-proof-grid span {
  color: #536466;
  font-size: 13px;
}

.company-section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.company-section-head h2 {
  margin-bottom: 10px;
  color: #14282e;
  font-size: clamp(25px, 3.2vw, 38px);
}

.company-section-head p {
  color: #536466;
}

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

.company-service-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
}

.company-service-grid article span {
  color: #1f6f73;
  font-weight: 900;
}

.company-service-grid h3 {
  margin-bottom: 0;
  color: #14282e;
}

.company-service-grid p {
  margin-bottom: 0;
  color: #536466;
}

.company-service-grid strong {
  margin-top: 8px;
  color: #ef7b28;
  font-size: 18px;
}

.company-band {
  background: #f7faf9;
}

.company-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.company-flow li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
}

.company-flow li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #1f6f73;
  color: #fff;
  font-weight: 900;
}

.company-flow h3 {
  margin-bottom: 4px;
  color: #14282e;
}

.company-flow p {
  margin-bottom: 0;
  color: #536466;
}

.company-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.76fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.company-check-list li {
  position: relative;
  padding: 11px 14px 11px 36px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
  color: #415255;
}

.company-check-list li::before {
  position: absolute;
  left: 14px;
  top: 1.05em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #1f6f73;
}

.company-info-table {
  padding: 10px 18px;
  border: 1px solid #dce4e2;
  border-radius: 8px;
  background: #fff;
}

.company-form {
  box-shadow: none;
}

.company-footer {
  background: #10292f;
}

.city-site {
  background: #ffffff;
  color: #17252b;
}

.city-header {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(28, 57, 64, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.city-site .preview-brand {
  color: #10292f;
  letter-spacing: 0.02em;
}

.city-site .preview-brand-mark {
  background: linear-gradient(135deg, #1c3940 0%, #2d7373 62%, #e9b15f 100%);
}

.city-site .preview-nav-button {
  background: #c85f4d;
}

.city-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
  background: #fffaf2;
}

.city-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.86) 38%, rgba(255, 253, 248, 0.16) 74%, rgba(255, 253, 248, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08) 0%, rgba(255, 246, 233, 0.34) 100%);
}

.city-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.city-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-photo-media img {
  object-position: center center;
}

.season-hero-media {
  display: flex;
  justify-content: flex-end;
  padding: clamp(92px, 9vw, 132px) clamp(20px, 5vw, 78px) 62px;
}

.season-slider {
  position: relative;
  width: min(760px, 54vw);
  min-height: 470px;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 248, 0.92);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 20px 42px rgba(98, 73, 50, 0.16);
}

.season-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: var(--season-photo);
  background-position: center;
  background-size: cover;
  animation: seasonFade 24s infinite;
}

.season-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 37, 43, 0) 35%, rgba(23, 37, 43, 0.38) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0));
}

.season-slide span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: #17343a;
  font-size: 16px;
  font-weight: 900;
}

.season-summer {
  animation-delay: 6s;
}

.season-autumn {
  animation-delay: 12s;
  filter: sepia(0.24) saturate(1.22) hue-rotate(-10deg) brightness(1.02);
}

.season-winter {
  animation-delay: 18s;
  filter: saturate(0.76) brightness(1.08) contrast(0.96);
}

.season-dots {
  position: absolute;
  left: 18px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.season-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 0 0 1px rgba(23, 37, 43, 0.08);
}

.season-dots i:nth-child(1) {
  animation: seasonDot 24s infinite;
}

.season-dots i:nth-child(2) {
  animation: seasonDot 24s infinite 6s;
}

.season-dots i:nth-child(3) {
  animation: seasonDot 24s infinite 12s;
}

.season-dots i:nth-child(4) {
  animation: seasonDot 24s infinite 18s;
}

@keyframes seasonFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.025);
  }

  4%,
  25% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0;
    transform: scale(1.012);
  }
}

@keyframes seasonDot {
  0%,
  30%,
  100% {
    background: rgba(255, 253, 248, 0.82);
    transform: scale(1);
  }

  4%,
  25% {
    background: #c85f4d;
    transform: scale(1.25);
  }
}

.city-hero-content {
  display: grid;
  align-content: center;
  min-height: 660px;
  padding: clamp(58px, 8vw, 104px) 0;
  color: #17252b;
}

.city-label {
  margin: 0 0 12px;
  color: #c85f4d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.city-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #17252b;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.08;
}

.city-hero p:not(.city-label) {
  max-width: 680px;
  margin-bottom: 0;
  color: #475d5d;
  font-size: clamp(16px, 2vw, 20px);
}

.city-hero .company-primary {
  background: #c85f4d;
}

.city-hero .company-secondary {
  border-color: #d9e1df;
  background: rgba(255, 255, 255, 0.76);
  color: #17343a;
}

.city-news {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding: 0 0 34px;
}

.city-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e3ddd4;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 30px rgba(98, 73, 50, 0.1);
}

.city-news article {
  padding: 24px;
  border-right: 1px solid #e6ecea;
}

.city-news article:last-child {
  border-right: 0;
}

.city-news span {
  display: block;
  margin-bottom: 8px;
  color: #c85f4d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.city-news strong {
  display: block;
  margin-bottom: 6px;
  color: #14282e;
  font-size: 18px;
}

.city-news p {
  margin-bottom: 0;
  color: #536466;
  font-size: 14px;
}

.photo-credit {
  margin-top: 12px;
  color: #788587;
  font-size: 11px;
  line-height: 1.55;
}

.city-section {
  background: #fffdf8;
}

.city-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 30px;
}

.city-section-head h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  color: #17252b;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.16;
}

.city-section-head p:not(.city-label) {
  grid-column: 2;
  grid-row: 2;
  color: #536466;
}

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

.city-service-grid article {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 14px 14px 22px;
  border: 1px solid #e4ded5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(98, 73, 50, 0.07);
}

.city-service-grid article > span {
  color: #c85f4d;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.city-service-grid h3 {
  margin-bottom: 0;
  color: #14282e;
}

.city-service-grid p {
  margin-bottom: 0;
  color: #536466;
}

.city-about {
  padding: clamp(64px, 8vw, 104px) 0;
  border-top: 1px solid #e4ded5;
  border-bottom: 1px solid #e4ded5;
  background:
    linear-gradient(90deg, rgba(233, 177, 95, 0.12), rgba(111, 155, 114, 0.1)),
    #fffaf2;
  color: #17252b;
}

.city-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.city-about h2 {
  margin-bottom: 0;
  color: #17252b;
  font-size: clamp(30px, 4.2vw, 52px);
}

.city-about p:not(.city-label) {
  color: #536466;
  font-size: 17px;
}

.city-price-section,
.city-contact-section {
  background: #f7fbf8;
}

.city-trust-section {
  background:
    linear-gradient(90deg, rgba(111, 155, 114, 0.1), rgba(233, 177, 95, 0.12)),
    #ffffff;
}

.city-site .preview-price-table {
  box-shadow: 0 10px 28px rgba(23, 37, 43, 0.06);
}

.business-note {
  padding: 18px 0;
  background: #fffdf8;
  border-top: 1px solid #eadfd2;
}

.business-note-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: #6b7778;
  font-size: 13px;
  line-height: 1.6;
}

.business-note-inner strong {
  color: #17343a;
  font-size: 14px;
}

.city-site .service-card-image,
.city-site .page-hero-image {
  border-color: #e4ded5;
  background: #fffaf2;
}

.city-site .company-flow li,
.city-site .company-check-list li,
.city-site .company-info-table,
.city-site .preview-form {
  border-color: #e4ded5;
  background: #fffdf8;
  box-shadow: 0 8px 20px rgba(98, 73, 50, 0.06);
}

.city-site .company-flow li > span,
.city-site .company-check-list li::before {
  background: #77a77c;
}

.city-site .preview-form button {
  background: #c85f4d;
}

.city-site .inline-link {
  color: #2d7373;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .section-head,
  .split,
  .grid,
  .grid.two,
  .sheet-grid,
  .page-hero .section-inner {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 72vh;
  }

  .hero::after {
    background: rgba(15, 33, 38, 0.72);
  }

  .sheet {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .inline-link + .inline-link {
    display: flex;
    margin-left: 0;
  }

  .preview-link-strip .section-inner,
  .preview-header,
  .preview-footer .preview-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .preview-hero-grid,
  .preview-section-head,
  .preview-check-grid,
  .preview-check-grid.simple,
  .preview-industry-list.simple,
  .preview-article-grid,
  .preview-trust-grid {
    grid-template-columns: 1fr;
  }

  .preview-price-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .preview-price-table strong {
    text-align: left;
  }

  .preview-industry-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .company-hero-grid,
  .company-contact-grid,
  .company-proof-grid,
  .company-service-grid,
  .company-flow,
  .company-two-column {
    grid-template-columns: 1fr;
  }

  .company-status-card dl div,
  .company-info-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .city-hero,
  .city-hero-content {
    min-height: 620px;
  }

  .city-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 52%, rgba(255, 246, 233, 0.34) 100%),
      rgba(255, 253, 248, 0.82);
  }

  .city-photo-media img {
    object-position: 58% center;
  }

  .city-news {
    margin-top: 0;
    padding-top: 0;
  }

  .city-news-grid,
  .city-section-head,
  .city-service-grid,
  .city-about-grid {
    grid-template-columns: 1fr;
  }

  .city-section-head h2,
  .city-section-head p:not(.city-label) {
    grid-column: 1;
    grid-row: auto;
  }

  .city-news article {
    border-right: 0;
    border-bottom: 1px solid #e6ecea;
  }

  .city-news article:last-child {
    border-bottom: 0;
  }
}

.vhs-site {
  --vhs-ink: #2c241d;
  --vhs-muted: #665b50;
  --vhs-paper: #fffaf1;
  --vhs-band: #f7efe2;
  --vhs-line: #e8d8c4;
  --vhs-brown: #6c4b33;
  --vhs-green: #5f7f5f;
  --vhs-red: #b95745;
  --vhs-gold: #a86f16;
  --vhs-gold-soft: #fff3cf;
  margin: 0;
  color: var(--vhs-ink);
  background: var(--vhs-paper);
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
}

.vhs-site * {
  min-width: 0;
}

.vhs-site h1,
.vhs-site h2,
.vhs-site h3,
.vhs-site p,
.vhs-site li,
.vhs-site a,
.vhs-site strong,
.vhs-site span {
  overflow-wrap: anywhere;
}

.vhs-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.vhs-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(108, 75, 51, 0.16);
  background: rgba(255, 250, 241, 0.96);
  backdrop-filter: blur(14px);
}

.vhs-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.vhs-logo {
  display: block;
  width: clamp(180px, 18vw, 260px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.vhs-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--vhs-muted);
  font-size: 16px;
  font-weight: 800;
}

.vhs-nav a {
  flex: 0 0 auto;
  text-decoration: none;
}

.vhs-nav-button,
.vhs-primary,
.vhs-secondary,
.vhs-form button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  white-space: normal;
}

.vhs-nav-button,
.vhs-primary,
.vhs-form button {
  border: 1px solid var(--vhs-red);
  background: var(--vhs-red);
  color: #fffdf8;
  box-shadow: 0 12px 24px rgba(185, 87, 69, 0.18);
}

.vhs-secondary {
  border: 1px solid var(--vhs-line);
  background: #fffdf8;
  color: var(--vhs-brown);
}

.vhs-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: clamp(590px, 50vw, 720px);
  padding: 0;
  background: #fffaf1;
}

.vhs-hero .vhs-container {
  width: 100%;
  max-width: none;
}

.vhs-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 241, 0.99) 0%,
      rgba(255, 250, 241, 0.96) 28%,
      rgba(255, 250, 241, 0.78) 48%,
      rgba(255, 250, 241, 0.34) 72%,
      rgba(255, 250, 241, 0.1) 100%
    );
  content: "";
}

.vhs-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: auto;
  height: 150px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(247, 239, 226, 0) 0%, var(--vhs-paper) 88%);
  content: "";
}

.vhs-hero-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: inherit;
  padding: 0 clamp(34px, 4.4vw, 68px);
  box-sizing: border-box;
}

.vhs-label {
  margin: 0 0 12px;
  color: var(--vhs-red);
  font-size: 16px;
  font-weight: 900;
}

.vhs-hero h1,
.vhs-section-head h2,
.vhs-scene h2,
.vhs-care h2,
.vhs-contact h2 {
  margin: 0;
  color: var(--vhs-ink);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
}

.vhs-hero h1 {
  max-width: 670px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.14;
}

.vhs-hero h1 > span {
  display: block;
}

.vhs-nowrap {
  display: inline;
  white-space: nowrap;
}

.vhs-lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--vhs-muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.8;
}

.vhs-lead span {
  display: block;
}

.vhs-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(74px, 8vw, 116px) 0 clamp(104px, 10vw, 132px);
}

.vhs-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.vhs-hero-photo img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  opacity: 0.76;
  object-fit: cover;
  object-position: 76% center;
  filter: brightness(1.08) saturate(0.9);
  box-shadow: none;
}

.vhs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vhs-actions a {
  flex: 0 1 auto;
}

.vhs-small-note {
  margin: 18px 0 0;
  color: var(--vhs-muted);
  font-size: 16px;
}

.vhs-notice {
  position: relative;
  z-index: 3;
  margin-top: -52px;
  padding: 0 0 clamp(52px, 7vw, 90px);
  background: var(--vhs-paper);
}

.vhs-notice .vhs-container {
  width: min(100% - 72px, 1500px);
}

.vhs-notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid var(--vhs-line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 30px rgba(108, 75, 51, 0.1);
}

.vhs-notice article {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: clamp(26px, 2.1vw, 36px);
  border-right: 1px solid var(--vhs-line);
}

.vhs-notice article:last-child {
  border-right: 0;
}

.vhs-notice span {
  display: block;
  color: var(--vhs-red);
  font-size: 16px;
  font-weight: 900;
}

.vhs-notice strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--vhs-ink);
  font-size: clamp(22px, 1.65vw, 27px);
  line-height: 1.45;
  overflow-wrap: normal;
}

.vhs-notice p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.8;
}

.vhs-notice p,
.vhs-service-list p,
.vhs-price-table p,
.vhs-flow p,
.vhs-care p,
.vhs-faq p,
.vhs-contact p {
  margin: 0;
  color: var(--vhs-muted);
}

.vhs-section,
.vhs-scene,
.vhs-care,
.vhs-contact {
  padding: clamp(64px, 8vw, 110px) 0;
}

.vhs-section-head {
  max-width: 100%;
  margin-bottom: 30px;
}

.vhs-section-head h2 {
  font-size: clamp(28px, 3.3vw, 40px);
}

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

.vhs-service-list article,
.vhs-price-table div,
.vhs-faq details,
.vhs-care-box,
.vhs-form {
  border: 1px solid var(--vhs-line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(108, 75, 51, 0.07);
}

.vhs-service-list article {
  padding: 22px;
}

.vhs-service-list h3,
.vhs-flow h3 {
  margin: 0 0 8px;
  color: var(--vhs-brown);
  font-size: 22px;
  line-height: 1.35;
}

.vhs-wide-photo,
.vhs-section-photo,
.vhs-closing-photo figure {
  margin: 0;
}

.vhs-wide-photo {
  margin-top: 24px;
}

.vhs-wide-photo img,
.vhs-section-photo img,
.vhs-closing-photo img {
  width: 100%;
  border: 1px solid var(--vhs-line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(108, 75, 51, 0.1);
}

.vhs-wide-photo img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.vhs-scene,
.vhs-price-section,
.vhs-contact {
  background: var(--vhs-band);
}

.vhs-scene-grid,
.vhs-care-grid,
.vhs-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.vhs-scene-grid {
  grid-template-columns: minmax(420px, 0.98fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 64px);
}

.vhs-scene-head {
  padding-top: clamp(10px, 2vw, 28px);
}

.vhs-scene .vhs-label {
  margin-bottom: 12px;
  color: var(--vhs-red);
  font-size: 16px;
}

.vhs-scene-title {
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.28;
  letter-spacing: 0;
  white-space: nowrap;
}

.vhs-scene-title span {
  display: block;
}

.vhs-scene ul,
.vhs-care ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vhs-scene li,
.vhs-care li {
  position: relative;
  padding-left: 34px;
  color: var(--vhs-ink);
  font-size: 18px;
}

.vhs-scene-list {
  gap: clamp(14px, 2vw, 22px);
}

.vhs-scene-list li {
  min-height: 74px;
  padding: 20px 26px 20px 78px;
  border: 1px solid rgba(228, 210, 186, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf1 0%, #f7ecda 100%);
  box-shadow: 0 14px 26px rgba(108, 75, 51, 0.07);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.vhs-scene li::before,
.vhs-care li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--vhs-green);
  content: "";
}

.vhs-scene-list li::before {
  left: 30px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.vhs-scene-list li::after {
  position: absolute;
  left: 56px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(210, 196, 176, 0.9);
  content: "";
}

.vhs-scene-photo,
.vhs-care-photo {
  grid-column: 1 / -1;
}

.vhs-scene-photo img {
  aspect-ratio: 16 / 6;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
}

.vhs-care-photo img {
  aspect-ratio: 16 / 7;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.vhs-closing-photo {
  padding: clamp(16px, 3vw, 28px) 0 clamp(42px, 6vw, 74px);
  background: #fffdf8;
}

.vhs-closing-photo img {
  aspect-ratio: 16 / 7;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.vhs-price-table {
  display: grid;
  gap: 12px;
}

.vhs-price-note {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(222, 207, 185, 0.9);
  border-radius: 8px;
  background: #fffdf8;
}

.vhs-price-note strong {
  color: var(--vhs-brown);
  font-size: 20px;
}

.vhs-price-note p {
  margin: 0;
  color: var(--vhs-muted);
}

.vhs-price-featured {
  position: relative;
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 2px solid #d9ad54;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 252, 241, 0.97), rgba(255, 243, 207, 0.96)),
    #fffdf8;
  box-shadow: 0 18px 38px rgba(168, 111, 22, 0.16);
}

.vhs-price-featured::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 6px;
  content: "";
}

.vhs-price-featured-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: end;
}

.vhs-recommend-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(168, 111, 22, 0.28);
  border-radius: 999px;
  background: var(--vhs-gold-soft);
  color: var(--vhs-gold);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.vhs-price-featured h3 {
  margin: 0;
  color: var(--vhs-brown);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.35;
}

.vhs-featured-price {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.vhs-featured-price strong {
  color: var(--vhs-gold);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.vhs-featured-price small {
  color: var(--vhs-muted);
  font-size: 15px;
  font-weight: 800;
}

.vhs-price-featured p {
  position: relative;
  max-width: 860px;
  margin: 0;
  color: var(--vhs-ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.85;
}

.vhs-featured-points {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vhs-featured-points li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(222, 207, 185, 0.95);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--vhs-brown);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.vhs-featured-points li:nth-child(n + 3) {
  border-color: rgba(168, 111, 22, 0.2);
  background: rgba(255, 252, 241, 0.9);
  color: var(--vhs-muted);
}

.vhs-price-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 8px 18px;
  align-items: center;
  padding: 22px 24px;
}

.vhs-price-table span {
  color: var(--vhs-brown);
  font-size: 21px;
  font-weight: 900;
}

.vhs-price-table strong {
  color: var(--vhs-red);
  font-size: 24px;
  text-align: right;
}

.vhs-price-table p {
  grid-column: 1 / -1;
}

.vhs-price-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.vhs-price-options article {
  padding: 22px;
  border: 1px solid var(--vhs-line);
  border-radius: 8px;
  background: #fffdf8;
}

.vhs-price-options h3 {
  margin: 0 0 12px;
  color: var(--vhs-brown);
  font-size: 20px;
}

.vhs-price-options dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.vhs-price-options dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(222, 207, 185, 0.8);
}

.vhs-price-options dl div:first-child {
  border-top: 0;
}

.vhs-price-options dt,
.vhs-price-options dd {
  margin: 0;
}

.vhs-price-options dt {
  color: var(--vhs-muted);
  font-weight: 800;
}

.vhs-price-options dd {
  color: var(--vhs-red);
  font-weight: 900;
  text-align: right;
}

.vhs-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vhs-flow li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--vhs-line);
  border-radius: 8px;
  background: #fffdf8;
}

.vhs-flow li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--vhs-green);
  color: #fff;
  font-weight: 900;
}

.vhs-care {
  background: #fffdf8;
}

.vhs-care-box {
  padding: 26px;
}

.vhs-care-box p {
  margin-bottom: 18px;
}

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

.vhs-faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vhs-faq-head > div {
  min-width: 0;
}

.vhs-faq-cta {
  flex: 0 0 auto;
  min-width: 220px;
}

.vhs-faq details {
  padding: 18px 22px;
}

.vhs-faq summary {
  color: var(--vhs-brown);
  cursor: pointer;
  font-size: 21px;
  font-weight: 900;
}

.vhs-faq p {
  padding-top: 12px;
}

.vhs-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.vhs-contact-simple {
  display: grid;
  justify-items: start;
  text-align: left;
}

.vhs-contact-simple .vhs-label {
  justify-self: start;
  color: var(--vhs-red);
}

.vhs-contact-simple h2 {
  max-width: 100%;
}

.vhs-contact-lead {
  max-width: 100%;
  margin-top: 8px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.9;
}

.vhs-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: 100%;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  justify-items: stretch;
  justify-self: start;
}

.vhs-contact-action {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.vhs-contact-card-copy {
  color: var(--vhs-ink);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
  line-height: 1.55;
}

.vhs-contact-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.vhs-contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #ead9c2;
  border-radius: 999px;
  background: #fff7ea;
  color: var(--vhs-brown);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.vhs-form-card h3 {
  margin: 0;
  color: var(--vhs-brown);
  font-size: 24px;
}

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

.vhs-form-list li {
  position: relative;
  padding-left: 26px;
  color: var(--vhs-ink);
}

.vhs-form-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--vhs-green);
  content: "";
}

.vhs-form-link {
  justify-self: start;
}

.vhs-contact-buttons {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 360px);
}

.vhs-contact-card .vhs-form-link {
  width: 100%;
  justify-self: center;
  justify-content: center;
}

.vhs-contact-visual {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 52%, rgba(244, 216, 168, 0.62) 0 42%, transparent 43%),
    linear-gradient(180deg, #fffaf1 0%, #f8eddc 100%);
}

.vhs-tape-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 390px);
  height: 230px;
  transform: translate(-50%, -50%);
}

.vhs-tape {
  position: absolute;
  width: min(78%, 280px);
  height: 72px;
  border: 3px solid #26211d;
  border-radius: 8px;
  background: linear-gradient(135deg, #4b4843 0%, #24211f 100%);
  box-shadow: 0 16px 26px rgba(57, 41, 29, 0.2);
}

.vhs-tape::before,
.vhs-tape::after {
  position: absolute;
  top: 17px;
  width: 38px;
  height: 38px;
  border: 4px solid #6c675f;
  border-radius: 999px;
  background: radial-gradient(circle, #d8d1c2 0 22%, #2f2c29 23% 100%);
  content: "";
}

.vhs-tape::before {
  left: 18px;
}

.vhs-tape::after {
  right: 18px;
}

.vhs-tape span {
  position: absolute;
  left: 84px;
  right: 84px;
  top: 17px;
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 2px solid #bcae99;
  border-radius: 4px;
  background: #fff7e8;
  color: var(--vhs-brown);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.vhs-tape-one {
  left: 42px;
  top: 20px;
  transform: rotate(9deg);
  z-index: 1;
}

.vhs-tape-two {
  right: 26px;
  top: 85px;
  z-index: 2;
}

.vhs-tape-three {
  right: 56px;
  top: 145px;
  transform: rotate(-2deg);
  z-index: 3;
}

.vhs-form-link.is-disabled,
.external-contact .button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.vhs-form label {
  display: grid;
  gap: 8px;
  color: var(--vhs-brown);
  font-size: 17px;
  font-weight: 900;
}

.vhs-form input,
.vhs-form select,
.vhs-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid #d9c9b4;
  border-radius: 8px;
  background: #fff;
  color: var(--vhs-ink);
  font: inherit;
}

.vhs-form textarea {
  min-height: 132px;
  resize: vertical;
}

.vhs-form-note {
  color: var(--vhs-muted);
  font-size: 15px;
}

.vhs-footer {
  padding: 28px 0;
  background: #5c432f;
  color: #fff8ed;
}

.vhs-footer .vhs-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  width: 100%;
  margin: 0;
  padding: 0 clamp(18px, 4vw, 54px);
}

.vhs-footer strong,
.vhs-footer span {
  display: block;
}

.vhs-footer span {
  color: rgba(255, 248, 237, 0.78);
  font-size: 14px;
}

.vhs-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.vhs-footer a {
  color: inherit;
  text-decoration: none;
}

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

.improvement-preview article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.improvement-preview h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 20px;
}

.improvement-mini-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(120px, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 220px;
  padding: 18px;
  border-radius: 10px;
  background: #fff7ec;
}

.improvement-mini-copy span,
.improvement-large-hero span {
  display: block;
  margin-bottom: 8px;
  color: #b95745;
  font-size: 13px;
  font-weight: 900;
}

.improvement-mini-copy strong,
.improvement-large-hero strong {
  display: block;
  color: #2c241f;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
}

.improvement-mini-copy p,
.improvement-large-hero p {
  margin: 12px 0 0;
  color: #6b5f55;
}

.improvement-mini-photo {
  min-height: 170px;
  border-radius: 8px;
  background: url("./assets/vhs-hero-generated.jpg") 72% center / cover;
}

.improvement-large-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 10px;
  background: #fff7ec;
}

.improvement-large-hero img {
  width: 100%;
  min-height: 280px;
  opacity: 0.72;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.9) brightness(1.08);
}

.improvement-large-hero div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(222, 207, 185, 0.9);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 14px 28px rgba(73, 51, 33, 0.14);
}

@media (max-width: 900px) {
  .vhs-header,
  .vhs-footer .vhs-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .vhs-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .vhs-hero-grid,
  .vhs-notice-grid,
  .vhs-service-list,
  .vhs-scene-grid,
  .vhs-care-grid,
  .vhs-contact-grid,
  .vhs-flow {
    grid-template-columns: 1fr;
  }

  .vhs-hero {
    display: block;
    min-height: auto;
    padding-top: 42px;
    background: linear-gradient(180deg, #fffaf1 0%, #f7efe2 100%);
  }

  .vhs-hero::before,
  .vhs-hero::after {
    display: none;
  }

  .vhs-hero .vhs-container {
    width: min(100% - 28px, 1120px);
  }

  .vhs-hero-grid {
    min-height: auto;
    gap: 0;
    padding: 0;
  }

  .vhs-actions a {
    flex: 1 1 220px;
  }

  .vhs-hero-photo {
    position: relative;
    inset: auto;
    z-index: auto;
    grid-area: auto;
    order: -1;
  }

  .vhs-hero-copy {
    grid-area: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 0 0;
    border-radius: 0 0 10px 10px;
  }

  .vhs-hero-photo img {
    width: 100%;
    height: auto;
    border: 1px solid var(--vhs-line);
    aspect-ratio: 4 / 3;
    border-radius: 10px 10px 0 0;
    opacity: 0.9;
    object-position: 100% center;
    box-shadow: 0 14px 28px rgba(108, 75, 51, 0.12);
  }

  .vhs-notice {
    margin-top: 0;
  }

  .vhs-notice .vhs-container {
    width: min(100% - 28px, 1120px);
  }

  .vhs-notice-grid {
    margin-top: 0;
  }

  .vhs-notice article {
    min-height: auto;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--vhs-line);
  }

  .vhs-notice strong {
    font-size: 21px;
  }

  .vhs-notice p {
    font-size: 16px;
  }

  .vhs-notice article:last-child {
    border-bottom: 0;
  }

  .vhs-scene-head {
    padding-top: 0;
  }

  .vhs-scene-title {
    font-size: clamp(44px, 10vw, 64px);
    white-space: normal;
  }

  .vhs-scene-list li {
    min-height: auto;
    padding: 22px 24px 22px 76px;
    font-size: 21px;
  }

  .vhs-scene-list li::before {
    left: 30px;
  }

  .vhs-scene-list li::after {
    left: 58px;
  }

  .vhs-price-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vhs-price-featured-head {
    grid-template-columns: 1fr;
  }

  .vhs-featured-price {
    justify-items: start;
    text-align: left;
  }

  .vhs-price-table strong {
    text-align: left;
  }

  .vhs-price-options {
    grid-template-columns: 1fr;
  }

  .vhs-price-options dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .vhs-price-options dd {
    text-align: left;
  }

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

  .vhs-contact-visual {
    min-height: 230px;
  }

  .improvement-preview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .vhs-site {
    font-size: 16px;
  }

  .vhs-container {
    width: min(100% - 28px, 1120px);
  }

  .vhs-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .vhs-brand {
    max-width: 100%;
  }

  .vhs-logo {
    width: min(210px, 56vw);
    max-height: 50px;
  }

  .vhs-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    font-size: 14px;
    overflow: visible;
    white-space: normal;
  }

  .vhs-nav a:not(.vhs-nav-button) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 7px 8px;
    border: 1px solid rgba(232, 216, 196, 0.95);
    border-radius: 8px;
    background: #fffdf8;
    color: var(--vhs-brown);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
  }

  .vhs-primary,
  .vhs-secondary,
  .vhs-form button {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  .vhs-nav .vhs-nav-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .vhs-hero {
    padding: 24px 0 34px;
  }

  .vhs-actions {
    width: 100%;
    flex-direction: column;
  }

  .vhs-actions a {
    flex: 0 0 auto;
    width: 100%;
  }

  .vhs-faq-head {
    align-items: stretch;
    flex-direction: column;
  }

  .vhs-faq-cta {
    width: 100%;
    min-width: 0;
  }

  .vhs-hero h1 {
    font-size: 29px;
  }

  .vhs-scene .vhs-label {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .vhs-scene-title {
    font-size: 42px;
  }

  .vhs-scene-list li {
    padding: 18px 16px 18px 58px;
    font-size: 17px;
  }

  .vhs-scene-list li::before {
    left: 22px;
    width: 14px;
    height: 14px;
  }

  .vhs-scene-list li::after {
    left: 46px;
    top: 18px;
    bottom: 18px;
  }

  .vhs-hero h1 > span {
    display: block;
  }

  .vhs-hero-photo img {
    aspect-ratio: 4 / 3;
  }

  .vhs-lead {
    font-size: 17px;
    max-width: 100%;
  }

  .vhs-notice article,
  .vhs-service-list article,
  .vhs-flow li,
  .vhs-care-box,
  .vhs-form {
    padding: 18px;
  }

  .vhs-wide-photo img,
  .vhs-care-photo img,
  .vhs-closing-photo img {
    aspect-ratio: 4 / 3;
  }

  .vhs-contact-card {
    padding: 20px;
  }

  .vhs-contact-points {
    width: 100%;
  }

  .vhs-contact-points span {
    flex: 1 1 100%;
    justify-content: center;
    white-space: normal;
  }

  .vhs-contact-visual {
    min-height: 210px;
  }

  .vhs-tape-stack {
    width: 320px;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .vhs-scene-photo img {
    aspect-ratio: 4 / 3;
  }

  .vhs-flow li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .vhs-flow li > span {
    width: 38px;
    height: 38px;
  }
}

@media print {
  .site-header,
  .footer,
  .no-print {
    display: none !important;
  }

  body,
  .flyer {
    background: white;
  }

  .sheet {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 18mm;
    box-shadow: none;
  }
}
